{"id":"67a346836acd6e1f4a4d99bcf165dd5d","_format":"hh-sol-build-info-1","solcVersion":"0.8.19","solcLongVersion":"0.8.19+commit.7dd6d404","input":{"language":"Solidity","sources":{"@openzeppelin/contracts/access/Ownable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n    address private _owner;\n\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n    /**\n     * @dev Initializes the contract setting the deployer as the initial owner.\n     */\n    constructor() {\n        _transferOwnership(_msgSender());\n    }\n\n    /**\n     * @dev Throws if called by any account other than the owner.\n     */\n    modifier onlyOwner() {\n        _checkOwner();\n        _;\n    }\n\n    /**\n     * @dev Returns the address of the current owner.\n     */\n    function owner() public view virtual returns (address) {\n        return _owner;\n    }\n\n    /**\n     * @dev Throws if the sender is not the owner.\n     */\n    function _checkOwner() internal view virtual {\n        require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n    }\n\n    /**\n     * @dev Leaves the contract without owner. It will not be possible to call\n     * `onlyOwner` functions. Can only be called by the current owner.\n     *\n     * NOTE: Renouncing ownership will leave the contract without an owner,\n     * thereby disabling any functionality that is only available to the owner.\n     */\n    function renounceOwnership() public virtual onlyOwner {\n        _transferOwnership(address(0));\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\n     * Can only be called by the current owner.\n     */\n    function transferOwnership(address newOwner) public virtual onlyOwner {\n        require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n        _transferOwnership(newOwner);\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\n     * Internal function without access restriction.\n     */\n    function _transferOwnership(address newOwner) internal virtual {\n        address oldOwner = _owner;\n        _owner = newOwner;\n        emit OwnershipTransferred(oldOwner, newOwner);\n    }\n}\n"},"@openzeppelin/contracts/interfaces/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/introspection/IERC165.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC4906.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\nimport \"./IERC721.sol\";\n\n/// @title EIP-721 Metadata Update Extension\ninterface IERC4906 is IERC165, IERC721 {\n    /// @dev This event emits when the metadata of a token is changed.\n    /// So that the third-party platforms such as NFT market could\n    /// timely update the images and related attributes of the NFT.\n    event MetadataUpdate(uint256 _tokenId);\n\n    /// @dev This event emits when the metadata of a range of tokens is changed.\n    /// So that the third-party platforms such as NFT market could\n    /// timely update the images and related attributes of the NFTs.\n    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);\n}\n"},"@openzeppelin/contracts/interfaces/IERC721.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../token/ERC721/IERC721.sol\";\n"},"@openzeppelin/contracts/security/ReentrancyGuard.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\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 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 */\nabstract contract ReentrancyGuard {\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    uint256 private _status;\n\n    constructor() {\n        _status = _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    function _nonReentrantBefore() private {\n        // On the first call to nonReentrant, _status will be _NOT_ENTERED\n        require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n        // Any calls to nonReentrant after this point will fail\n        _status = _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        _status = _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 _status == _ENTERED;\n    }\n}\n"},"@openzeppelin/contracts/token/ERC1155/ERC1155.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/ERC1155.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC1155.sol\";\nimport \"./IERC1155Receiver.sol\";\nimport \"./extensions/IERC1155MetadataURI.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of the basic standard multi-token.\n * See https://eips.ethereum.org/EIPS/eip-1155\n * Originally based on code by Enjin: https://github.com/enjin/erc-1155\n *\n * _Available since v3.1._\n */\ncontract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {\n    using Address for address;\n\n    // Mapping from token ID to account balances\n    mapping(uint256 => mapping(address => uint256)) private _balances;\n\n    // Mapping from account to operator approvals\n    mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json\n    string private _uri;\n\n    /**\n     * @dev See {_setURI}.\n     */\n    constructor(string memory uri_) {\n        _setURI(uri_);\n    }\n\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n        return\n            interfaceId == type(IERC1155).interfaceId ||\n            interfaceId == type(IERC1155MetadataURI).interfaceId ||\n            super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * @dev See {IERC1155MetadataURI-uri}.\n     *\n     * This implementation returns the same URI for *all* token types. It relies\n     * on the token type ID substitution mechanism\n     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].\n     *\n     * Clients calling this function must replace the `\\{id\\}` substring with the\n     * actual token type ID.\n     */\n    function uri(uint256) public view virtual override returns (string memory) {\n        return _uri;\n    }\n\n    /**\n     * @dev See {IERC1155-balanceOf}.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     */\n    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {\n        require(account != address(0), \"ERC1155: address zero is not a valid owner\");\n        return _balances[id][account];\n    }\n\n    /**\n     * @dev See {IERC1155-balanceOfBatch}.\n     *\n     * Requirements:\n     *\n     * - `accounts` and `ids` must have the same length.\n     */\n    function balanceOfBatch(\n        address[] memory accounts,\n        uint256[] memory ids\n    ) public view virtual override returns (uint256[] memory) {\n        require(accounts.length == ids.length, \"ERC1155: accounts and ids length mismatch\");\n\n        uint256[] memory batchBalances = new uint256[](accounts.length);\n\n        for (uint256 i = 0; i < accounts.length; ++i) {\n            batchBalances[i] = balanceOf(accounts[i], ids[i]);\n        }\n\n        return batchBalances;\n    }\n\n    /**\n     * @dev See {IERC1155-setApprovalForAll}.\n     */\n    function setApprovalForAll(address operator, bool approved) public virtual override {\n        _setApprovalForAll(_msgSender(), operator, approved);\n    }\n\n    /**\n     * @dev See {IERC1155-isApprovedForAll}.\n     */\n    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {\n        return _operatorApprovals[account][operator];\n    }\n\n    /**\n     * @dev See {IERC1155-safeTransferFrom}.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 id,\n        uint256 amount,\n        bytes memory data\n    ) public virtual override {\n        require(\n            from == _msgSender() || isApprovedForAll(from, _msgSender()),\n            \"ERC1155: caller is not token owner or approved\"\n        );\n        _safeTransferFrom(from, to, id, amount, data);\n    }\n\n    /**\n     * @dev See {IERC1155-safeBatchTransferFrom}.\n     */\n    function safeBatchTransferFrom(\n        address from,\n        address to,\n        uint256[] memory ids,\n        uint256[] memory amounts,\n        bytes memory data\n    ) public virtual override {\n        require(\n            from == _msgSender() || isApprovedForAll(from, _msgSender()),\n            \"ERC1155: caller is not token owner or approved\"\n        );\n        _safeBatchTransferFrom(from, to, ids, amounts, data);\n    }\n\n    /**\n     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.\n     *\n     * Emits a {TransferSingle} event.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - `from` must have a balance of tokens of type `id` of at least `amount`.\n     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the\n     * acceptance magic value.\n     */\n    function _safeTransferFrom(\n        address from,\n        address to,\n        uint256 id,\n        uint256 amount,\n        bytes memory data\n    ) internal virtual {\n        require(to != address(0), \"ERC1155: transfer to the zero address\");\n\n        address operator = _msgSender();\n        uint256[] memory ids = _asSingletonArray(id);\n        uint256[] memory amounts = _asSingletonArray(amount);\n\n        _beforeTokenTransfer(operator, from, to, ids, amounts, data);\n\n        uint256 fromBalance = _balances[id][from];\n        require(fromBalance >= amount, \"ERC1155: insufficient balance for transfer\");\n        unchecked {\n            _balances[id][from] = fromBalance - amount;\n        }\n        _balances[id][to] += amount;\n\n        emit TransferSingle(operator, from, to, id, amount);\n\n        _afterTokenTransfer(operator, from, to, ids, amounts, data);\n\n        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);\n    }\n\n    /**\n     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.\n     *\n     * Emits a {TransferBatch} event.\n     *\n     * Requirements:\n     *\n     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the\n     * acceptance magic value.\n     */\n    function _safeBatchTransferFrom(\n        address from,\n        address to,\n        uint256[] memory ids,\n        uint256[] memory amounts,\n        bytes memory data\n    ) internal virtual {\n        require(ids.length == amounts.length, \"ERC1155: ids and amounts length mismatch\");\n        require(to != address(0), \"ERC1155: transfer to the zero address\");\n\n        address operator = _msgSender();\n\n        _beforeTokenTransfer(operator, from, to, ids, amounts, data);\n\n        for (uint256 i = 0; i < ids.length; ++i) {\n            uint256 id = ids[i];\n            uint256 amount = amounts[i];\n\n            uint256 fromBalance = _balances[id][from];\n            require(fromBalance >= amount, \"ERC1155: insufficient balance for transfer\");\n            unchecked {\n                _balances[id][from] = fromBalance - amount;\n            }\n            _balances[id][to] += amount;\n        }\n\n        emit TransferBatch(operator, from, to, ids, amounts);\n\n        _afterTokenTransfer(operator, from, to, ids, amounts, data);\n\n        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);\n    }\n\n    /**\n     * @dev Sets a new URI for all token types, by relying on the token type ID\n     * substitution mechanism\n     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].\n     *\n     * By this mechanism, any occurrence of the `\\{id\\}` substring in either the\n     * URI or any of the amounts in the JSON file at said URI will be replaced by\n     * clients with the token type ID.\n     *\n     * For example, the `https://token-cdn-domain/\\{id\\}.json` URI would be\n     * interpreted by clients as\n     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`\n     * for token type ID 0x4cce0.\n     *\n     * See {uri}.\n     *\n     * Because these URIs cannot be meaningfully represented by the {URI} event,\n     * this function emits no events.\n     */\n    function _setURI(string memory newuri) internal virtual {\n        _uri = newuri;\n    }\n\n    /**\n     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.\n     *\n     * Emits a {TransferSingle} event.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the\n     * acceptance magic value.\n     */\n    function _mint(address to, uint256 id, uint256 amount, bytes memory data) internal virtual {\n        require(to != address(0), \"ERC1155: mint to the zero address\");\n\n        address operator = _msgSender();\n        uint256[] memory ids = _asSingletonArray(id);\n        uint256[] memory amounts = _asSingletonArray(amount);\n\n        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);\n\n        _balances[id][to] += amount;\n        emit TransferSingle(operator, address(0), to, id, amount);\n\n        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);\n\n        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);\n    }\n\n    /**\n     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.\n     *\n     * Emits a {TransferBatch} event.\n     *\n     * Requirements:\n     *\n     * - `ids` and `amounts` must have the same length.\n     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the\n     * acceptance magic value.\n     */\n    function _mintBatch(\n        address to,\n        uint256[] memory ids,\n        uint256[] memory amounts,\n        bytes memory data\n    ) internal virtual {\n        require(to != address(0), \"ERC1155: mint to the zero address\");\n        require(ids.length == amounts.length, \"ERC1155: ids and amounts length mismatch\");\n\n        address operator = _msgSender();\n\n        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);\n\n        for (uint256 i = 0; i < ids.length; i++) {\n            _balances[ids[i]][to] += amounts[i];\n        }\n\n        emit TransferBatch(operator, address(0), to, ids, amounts);\n\n        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);\n\n        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);\n    }\n\n    /**\n     * @dev Destroys `amount` tokens of token type `id` from `from`\n     *\n     * Emits a {TransferSingle} event.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `from` must have at least `amount` tokens of token type `id`.\n     */\n    function _burn(address from, uint256 id, uint256 amount) internal virtual {\n        require(from != address(0), \"ERC1155: burn from the zero address\");\n\n        address operator = _msgSender();\n        uint256[] memory ids = _asSingletonArray(id);\n        uint256[] memory amounts = _asSingletonArray(amount);\n\n        _beforeTokenTransfer(operator, from, address(0), ids, amounts, \"\");\n\n        uint256 fromBalance = _balances[id][from];\n        require(fromBalance >= amount, \"ERC1155: burn amount exceeds balance\");\n        unchecked {\n            _balances[id][from] = fromBalance - amount;\n        }\n\n        emit TransferSingle(operator, from, address(0), id, amount);\n\n        _afterTokenTransfer(operator, from, address(0), ids, amounts, \"\");\n    }\n\n    /**\n     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.\n     *\n     * Emits a {TransferBatch} event.\n     *\n     * Requirements:\n     *\n     * - `ids` and `amounts` must have the same length.\n     */\n    function _burnBatch(address from, uint256[] memory ids, uint256[] memory amounts) internal virtual {\n        require(from != address(0), \"ERC1155: burn from the zero address\");\n        require(ids.length == amounts.length, \"ERC1155: ids and amounts length mismatch\");\n\n        address operator = _msgSender();\n\n        _beforeTokenTransfer(operator, from, address(0), ids, amounts, \"\");\n\n        for (uint256 i = 0; i < ids.length; i++) {\n            uint256 id = ids[i];\n            uint256 amount = amounts[i];\n\n            uint256 fromBalance = _balances[id][from];\n            require(fromBalance >= amount, \"ERC1155: burn amount exceeds balance\");\n            unchecked {\n                _balances[id][from] = fromBalance - amount;\n            }\n        }\n\n        emit TransferBatch(operator, from, address(0), ids, amounts);\n\n        _afterTokenTransfer(operator, from, address(0), ids, amounts, \"\");\n    }\n\n    /**\n     * @dev Approve `operator` to operate on all of `owner` tokens\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {\n        require(owner != operator, \"ERC1155: setting approval status for self\");\n        _operatorApprovals[owner][operator] = approved;\n        emit ApprovalForAll(owner, operator, approved);\n    }\n\n    /**\n     * @dev Hook that is called before any token transfer. This includes minting\n     * and burning, as well as batched variants.\n     *\n     * The same hook is called on both single and batched variants. For single\n     * transfers, the length of the `ids` and `amounts` arrays will be 1.\n     *\n     * Calling conditions (for each `id` and `amount` pair):\n     *\n     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * of token type `id` will be  transferred to `to`.\n     * - When `from` is zero, `amount` tokens of token type `id` will be minted\n     * for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`\n     * will be burned.\n     * - `from` and `to` are never both zero.\n     * - `ids` and `amounts` have the same, non-zero length.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _beforeTokenTransfer(\n        address operator,\n        address from,\n        address to,\n        uint256[] memory ids,\n        uint256[] memory amounts,\n        bytes memory data\n    ) internal virtual {}\n\n    /**\n     * @dev Hook that is called after any token transfer. This includes minting\n     * and burning, as well as batched variants.\n     *\n     * The same hook is called on both single and batched variants. For single\n     * transfers, the length of the `id` and `amount` arrays will be 1.\n     *\n     * Calling conditions (for each `id` and `amount` pair):\n     *\n     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * of token type `id` will be  transferred to `to`.\n     * - When `from` is zero, `amount` tokens of token type `id` will be minted\n     * for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`\n     * will be burned.\n     * - `from` and `to` are never both zero.\n     * - `ids` and `amounts` have the same, non-zero length.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _afterTokenTransfer(\n        address operator,\n        address from,\n        address to,\n        uint256[] memory ids,\n        uint256[] memory amounts,\n        bytes memory data\n    ) internal virtual {}\n\n    function _doSafeTransferAcceptanceCheck(\n        address operator,\n        address from,\n        address to,\n        uint256 id,\n        uint256 amount,\n        bytes memory data\n    ) private {\n        if (to.isContract()) {\n            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {\n                if (response != IERC1155Receiver.onERC1155Received.selector) {\n                    revert(\"ERC1155: ERC1155Receiver rejected tokens\");\n                }\n            } catch Error(string memory reason) {\n                revert(reason);\n            } catch {\n                revert(\"ERC1155: transfer to non-ERC1155Receiver implementer\");\n            }\n        }\n    }\n\n    function _doSafeBatchTransferAcceptanceCheck(\n        address operator,\n        address from,\n        address to,\n        uint256[] memory ids,\n        uint256[] memory amounts,\n        bytes memory data\n    ) private {\n        if (to.isContract()) {\n            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (\n                bytes4 response\n            ) {\n                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {\n                    revert(\"ERC1155: ERC1155Receiver rejected tokens\");\n                }\n            } catch Error(string memory reason) {\n                revert(reason);\n            } catch {\n                revert(\"ERC1155: transfer to non-ERC1155Receiver implementer\");\n            }\n        }\n    }\n\n    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {\n        uint256[] memory array = new uint256[](1);\n        array[0] = element;\n\n        return array;\n    }\n}\n"},"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC1155.sol\";\n\n/**\n * @dev Interface of the optional ERC1155MetadataExtension interface, as defined\n * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].\n *\n * _Available since v3.1._\n */\ninterface IERC1155MetadataURI is IERC1155 {\n    /**\n     * @dev Returns the URI for token type `id`.\n     *\n     * If the `\\{id\\}` substring is present in the URI, it must be replaced by\n     * clients with the actual token type ID.\n     */\n    function uri(uint256 id) external view returns (string memory);\n}\n"},"@openzeppelin/contracts/token/ERC1155/IERC1155.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/IERC1155.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC1155 compliant contract, as defined in the\n * https://eips.ethereum.org/EIPS/eip-1155[EIP].\n *\n * _Available since v3.1._\n */\ninterface IERC1155 is IERC165 {\n    /**\n     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.\n     */\n    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);\n\n    /**\n     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all\n     * transfers.\n     */\n    event TransferBatch(\n        address indexed operator,\n        address indexed from,\n        address indexed to,\n        uint256[] ids,\n        uint256[] values\n    );\n\n    /**\n     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to\n     * `approved`.\n     */\n    event ApprovalForAll(address indexed account, address indexed operator, bool approved);\n\n    /**\n     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.\n     *\n     * If an {URI} event was emitted for `id`, the standard\n     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value\n     * returned by {IERC1155MetadataURI-uri}.\n     */\n    event URI(string value, uint256 indexed id);\n\n    /**\n     * @dev Returns the amount of tokens of token type `id` owned by `account`.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     */\n    function balanceOf(address account, uint256 id) external view returns (uint256);\n\n    /**\n     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.\n     *\n     * Requirements:\n     *\n     * - `accounts` and `ids` must have the same length.\n     */\n    function balanceOfBatch(\n        address[] calldata accounts,\n        uint256[] calldata ids\n    ) external view returns (uint256[] memory);\n\n    /**\n     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,\n     *\n     * Emits an {ApprovalForAll} event.\n     *\n     * Requirements:\n     *\n     * - `operator` cannot be the caller.\n     */\n    function setApprovalForAll(address operator, bool approved) external;\n\n    /**\n     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.\n     *\n     * See {setApprovalForAll}.\n     */\n    function isApprovedForAll(address account, address operator) external view returns (bool);\n\n    /**\n     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.\n     *\n     * Emits a {TransferSingle} event.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.\n     * - `from` must have a balance of tokens of type `id` of at least `amount`.\n     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the\n     * acceptance magic value.\n     */\n    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;\n\n    /**\n     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.\n     *\n     * Emits a {TransferBatch} event.\n     *\n     * Requirements:\n     *\n     * - `ids` and `amounts` must have the same length.\n     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the\n     * acceptance magic value.\n     */\n    function safeBatchTransferFrom(\n        address from,\n        address to,\n        uint256[] calldata ids,\n        uint256[] calldata amounts,\n        bytes calldata data\n    ) external;\n}\n"},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev _Available since v3.1._\n */\ninterface IERC1155Receiver is IERC165 {\n    /**\n     * @dev Handles the receipt of a single ERC1155 token type. This function is\n     * called at the end of a `safeTransferFrom` after the balance has been updated.\n     *\n     * NOTE: To accept the transfer, this must return\n     * `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))`\n     * (i.e. 0xf23a6e61, or its own function selector).\n     *\n     * @param operator The address which initiated the transfer (i.e. msg.sender)\n     * @param from The address which previously owned the token\n     * @param id The ID of the token being transferred\n     * @param value The amount of tokens being transferred\n     * @param data Additional data with no specified format\n     * @return `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))` if transfer is allowed\n     */\n    function onERC1155Received(\n        address operator,\n        address from,\n        uint256 id,\n        uint256 value,\n        bytes calldata data\n    ) external returns (bytes4);\n\n    /**\n     * @dev Handles the receipt of a multiple ERC1155 token types. This function\n     * is called at the end of a `safeBatchTransferFrom` after the balances have\n     * been updated.\n     *\n     * NOTE: To accept the transfer(s), this must return\n     * `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))`\n     * (i.e. 0xbc197c81, or its own function selector).\n     *\n     * @param operator The address which initiated the batch transfer (i.e. msg.sender)\n     * @param from The address which previously owned the token\n     * @param ids An array containing ids of each token being transferred (order and length must match values array)\n     * @param values An array containing amounts of each token being transferred (order and length must match ids array)\n     * @param data Additional data with no specified format\n     * @return `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))` if transfer is allowed\n     */\n    function onERC1155BatchReceived(\n        address operator,\n        address from,\n        uint256[] calldata ids,\n        uint256[] calldata values,\n        bytes calldata data\n    ) external returns (bytes4);\n}\n"},"@openzeppelin/contracts/token/ERC721/ERC721.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC721.sol\";\nimport \"./IERC721Receiver.sol\";\nimport \"./extensions/IERC721Metadata.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/Strings.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\n    using Address for address;\n    using Strings for uint256;\n\n    // Token name\n    string private _name;\n\n    // Token symbol\n    string private _symbol;\n\n    // Mapping from token ID to owner address\n    mapping(uint256 => address) private _owners;\n\n    // Mapping owner address to token count\n    mapping(address => uint256) private _balances;\n\n    // Mapping from token ID to approved address\n    mapping(uint256 => address) private _tokenApprovals;\n\n    // Mapping from owner to operator approvals\n    mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n    /**\n     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n     */\n    constructor(string memory name_, string memory symbol_) {\n        _name = name_;\n        _symbol = symbol_;\n    }\n\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n        return\n            interfaceId == type(IERC721).interfaceId ||\n            interfaceId == type(IERC721Metadata).interfaceId ||\n            super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * @dev See {IERC721-balanceOf}.\n     */\n    function balanceOf(address owner) public view virtual override returns (uint256) {\n        require(owner != address(0), \"ERC721: address zero is not a valid owner\");\n        return _balances[owner];\n    }\n\n    /**\n     * @dev See {IERC721-ownerOf}.\n     */\n    function ownerOf(uint256 tokenId) public view virtual override returns (address) {\n        address owner = _ownerOf(tokenId);\n        require(owner != address(0), \"ERC721: invalid token ID\");\n        return owner;\n    }\n\n    /**\n     * @dev See {IERC721Metadata-name}.\n     */\n    function name() public view virtual override returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev See {IERC721Metadata-symbol}.\n     */\n    function symbol() public view virtual override returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev See {IERC721Metadata-tokenURI}.\n     */\n    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n        _requireMinted(tokenId);\n\n        string memory baseURI = _baseURI();\n        return bytes(baseURI).length > 0 ? string(abi.encodePacked(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    /**\n     * @dev See {IERC721-approve}.\n     */\n    function approve(address to, uint256 tokenId) public virtual override {\n        address owner = ERC721.ownerOf(tokenId);\n        require(to != owner, \"ERC721: approval to current owner\");\n\n        require(\n            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\n            \"ERC721: approve caller is not token owner or approved for all\"\n        );\n\n        _approve(to, tokenId);\n    }\n\n    /**\n     * @dev See {IERC721-getApproved}.\n     */\n    function getApproved(uint256 tokenId) public view virtual override returns (address) {\n        _requireMinted(tokenId);\n\n        return _tokenApprovals[tokenId];\n    }\n\n    /**\n     * @dev See {IERC721-setApprovalForAll}.\n     */\n    function setApprovalForAll(address operator, bool approved) public virtual override {\n        _setApprovalForAll(_msgSender(), operator, approved);\n    }\n\n    /**\n     * @dev See {IERC721-isApprovedForAll}.\n     */\n    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n        return _operatorApprovals[owner][operator];\n    }\n\n    /**\n     * @dev See {IERC721-transferFrom}.\n     */\n    function transferFrom(address from, address to, uint256 tokenId) public virtual override {\n        //solhint-disable-next-line max-line-length\n        require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\");\n\n        _transfer(from, to, tokenId);\n    }\n\n    /**\n     * @dev See {IERC721-safeTransferFrom}.\n     */\n    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {\n        safeTransferFrom(from, to, tokenId, \"\");\n    }\n\n    /**\n     * @dev See {IERC721-safeTransferFrom}.\n     */\n    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {\n        require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\");\n        _safeTransfer(from, to, tokenId, data);\n    }\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n     * are aware of the ERC721 protocol 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 equivalent to {safeTransferFrom}, and can be used to e.g.\n     * implement alternative mechanisms to perform token transfer, such as signature-based.\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 `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, bytes memory data) internal virtual {\n        _transfer(from, to, tokenId);\n        require(_checkOnERC721Received(from, to, tokenId, data), \"ERC721: transfer to non ERC721Receiver implementer\");\n    }\n\n    /**\n     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist\n     */\n    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {\n        return _owners[tokenId];\n    }\n\n    /**\n     * @dev Returns whether `tokenId` exists.\n     *\n     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n     *\n     * Tokens start existing when they are minted (`_mint`),\n     * and stop existing when they are burned (`_burn`).\n     */\n    function _exists(uint256 tokenId) internal view virtual returns (bool) {\n        return _ownerOf(tokenId) != address(0);\n    }\n\n    /**\n     * @dev Returns whether `spender` is allowed to manage `tokenId`.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\n        address owner = ERC721.ownerOf(tokenId);\n        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);\n    }\n\n    /**\n     * @dev Safely mints `tokenId` and transfers it to `to`.\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 virtual {\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        require(\n            _checkOnERC721Received(address(0), to, tokenId, data),\n            \"ERC721: transfer to non ERC721Receiver implementer\"\n        );\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 virtual {\n        require(to != address(0), \"ERC721: mint to the zero address\");\n        require(!_exists(tokenId), \"ERC721: token already minted\");\n\n        _beforeTokenTransfer(address(0), to, tokenId, 1);\n\n        // Check that tokenId was not minted by `_beforeTokenTransfer` hook\n        require(!_exists(tokenId), \"ERC721: token already minted\");\n\n        unchecked {\n            // Will not overflow unless all 2**256 token ids are minted to the same owner.\n            // Given that tokens are minted one by one, it is impossible in practice that\n            // this ever happens. Might change if we allow batch minting.\n            // The ERC fails to describe this case.\n            _balances[to] += 1;\n        }\n\n        _owners[tokenId] = to;\n\n        emit Transfer(address(0), to, tokenId);\n\n        _afterTokenTransfer(address(0), to, tokenId, 1);\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 virtual {\n        address owner = ERC721.ownerOf(tokenId);\n\n        _beforeTokenTransfer(owner, address(0), tokenId, 1);\n\n        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook\n        owner = ERC721.ownerOf(tokenId);\n\n        // Clear approvals\n        delete _tokenApprovals[tokenId];\n\n        unchecked {\n            // Cannot overflow, as that would require more tokens to be burned/transferred\n            // out than the owner initially received through minting and transferring in.\n            _balances[owner] -= 1;\n        }\n        delete _owners[tokenId];\n\n        emit Transfer(owner, address(0), tokenId);\n\n        _afterTokenTransfer(owner, address(0), tokenId, 1);\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 virtual {\n        require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n        require(to != address(0), \"ERC721: transfer to the zero address\");\n\n        _beforeTokenTransfer(from, to, tokenId, 1);\n\n        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook\n        require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n\n        // Clear approvals from the previous owner\n        delete _tokenApprovals[tokenId];\n\n        unchecked {\n            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:\n            // `from`'s balance is the number of token held, which is at least one before the current\n            // transfer.\n            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require\n            // all 2**256 token ids to be minted, which in practice is impossible.\n            _balances[from] -= 1;\n            _balances[to] += 1;\n        }\n        _owners[tokenId] = to;\n\n        emit Transfer(from, to, tokenId);\n\n        _afterTokenTransfer(from, to, tokenId, 1);\n    }\n\n    /**\n     * @dev Approve `to` to operate on `tokenId`\n     *\n     * Emits an {Approval} event.\n     */\n    function _approve(address to, uint256 tokenId) internal virtual {\n        _tokenApprovals[tokenId] = to;\n        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\n    }\n\n    /**\n     * @dev Approve `operator` to operate on all of `owner` tokens\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {\n        require(owner != operator, \"ERC721: approve to caller\");\n        _operatorApprovals[owner][operator] = approved;\n        emit ApprovalForAll(owner, operator, approved);\n    }\n\n    /**\n     * @dev Reverts if the `tokenId` has not been minted yet.\n     */\n    function _requireMinted(uint256 tokenId) internal view virtual {\n        require(_exists(tokenId), \"ERC721: invalid token ID\");\n    }\n\n    /**\n     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n     * The call is not executed if the target address is not a contract.\n     *\n     * @param from address representing the previous owner of the given token ID\n     * @param to target address that will receive the tokens\n     * @param tokenId uint256 ID of the token to be transferred\n     * @param data bytes optional data to send along with the call\n     * @return bool whether the call correctly returned the expected magic value\n     */\n    function _checkOnERC721Received(\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes memory data\n    ) private returns (bool) {\n        if (to.isContract()) {\n            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {\n                return retval == IERC721Receiver.onERC721Received.selector;\n            } catch (bytes memory reason) {\n                if (reason.length == 0) {\n                    revert(\"ERC721: transfer to non ERC721Receiver implementer\");\n                } else {\n                    /// @solidity memory-safe-assembly\n                    assembly {\n                        revert(add(32, reason), mload(reason))\n                    }\n                }\n            }\n        } else {\n            return true;\n        }\n    }\n\n    /**\n     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is\n     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.\n     *\n     * Calling conditions:\n     *\n     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.\n     * - When `from` is zero, the tokens will be minted for `to`.\n     * - When `to` is zero, ``from``'s tokens will be burned.\n     * - `from` and `to` are never both zero.\n     * - `batchSize` is non-zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}\n\n    /**\n     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is\n     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.\n     *\n     * Calling conditions:\n     *\n     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.\n     * - When `from` is zero, the tokens were minted for `to`.\n     * - When `to` is zero, ``from``'s tokens were burned.\n     * - `from` and `to` are never both zero.\n     * - `batchSize` is non-zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}\n\n    /**\n     * @dev Unsafe write access to the balances, used by extensions that \"mint\" tokens using an {ownerOf} override.\n     *\n     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant\n     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such\n     * that `ownerOf(tokenId)` is `a`.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function __unsafe_increaseBalance(address account, uint256 amount) internal {\n        _balances[account] += amount;\n    }\n}\n"},"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/extensions/ERC721URIStorage.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../ERC721.sol\";\nimport \"../../../interfaces/IERC4906.sol\";\n\n/**\n * @dev ERC721 token with storage based token URI management.\n */\nabstract contract ERC721URIStorage is IERC4906, ERC721 {\n    using Strings for uint256;\n\n    // Optional mapping for token URIs\n    mapping(uint256 => string) private _tokenURIs;\n\n    /**\n     * @dev See {IERC165-supportsInterface}\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) {\n        return interfaceId == bytes4(0x49064906) || super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * @dev See {IERC721Metadata-tokenURI}.\n     */\n    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n        _requireMinted(tokenId);\n\n        string memory _tokenURI = _tokenURIs[tokenId];\n        string memory base = _baseURI();\n\n        // If there is no base URI, return the token URI.\n        if (bytes(base).length == 0) {\n            return _tokenURI;\n        }\n        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).\n        if (bytes(_tokenURI).length > 0) {\n            return string(abi.encodePacked(base, _tokenURI));\n        }\n\n        return super.tokenURI(tokenId);\n    }\n\n    /**\n     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.\n     *\n     * Emits {MetadataUpdate}.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {\n        require(_exists(tokenId), \"ERC721URIStorage: URI set of nonexistent token\");\n        _tokenURIs[tokenId] = _tokenURI;\n\n        emit MetadataUpdate(tokenId);\n    }\n\n    /**\n     * @dev See {ERC721-_burn}. This override additionally checks to see if a\n     * token-specific URI was set for the token, and if so, it deletes the token URI from\n     * the storage mapping.\n     */\n    function _burn(uint256 tokenId) internal virtual override {\n        super._burn(tokenId);\n\n        if (bytes(_tokenURIs[tokenId]).length != 0) {\n            delete _tokenURIs[tokenId];\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../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 v4.9.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 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 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 ERC721 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 {setApprovalForAll}.\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 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 ERC721\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 caller.\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 v4.6.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 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 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/utils/Address.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n    /**\n     * @dev Returns true if `account` is a contract.\n     *\n     * [IMPORTANT]\n     * ====\n     * It is unsafe to assume that an address for which this function returns\n     * false is an externally-owned account (EOA) and not a contract.\n     *\n     * Among others, `isContract` will return false for the following\n     * types of addresses:\n     *\n     *  - an externally-owned account\n     *  - a contract in construction\n     *  - an address where a contract will be created\n     *  - an address where a contract lived, but was destroyed\n     *\n     * Furthermore, `isContract` will also return true if the target contract within\n     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n     * which only has an effect at the end of a transaction.\n     * ====\n     *\n     * [IMPORTANT]\n     * ====\n     * You shouldn't rely on `isContract` to protect against flash loan attacks!\n     *\n     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n     * constructor.\n     * ====\n     */\n    function isContract(address account) internal view returns (bool) {\n        // This method relies on extcodesize/address.code.length, which returns 0\n        // for contracts in construction, since the code is only stored at the end\n        // of the constructor execution.\n\n        return account.code.length > 0;\n    }\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.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n     */\n    function sendValue(address payable recipient, uint256 amount) internal {\n        require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n        (bool success, ) = recipient.call{value: amount}(\"\");\n        require(success, \"Address: unable to send value, recipient may have reverted\");\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, it is bubbled up by this\n     * function (like regular Solidity function calls).\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     * _Available since v3.1._\n     */\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n     * `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, errorMessage);\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     * _Available since v3.1._\n     */\n    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(address(this).balance >= value, \"Address: insufficient balance for call\");\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n        return functionStaticCall(target, data, \"Address: low-level static call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n     *\n     * _Available since v4.8._\n     */\n    function verifyCallResultFromTarget(\n        address target,\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        if (success) {\n            if (returndata.length == 0) {\n                // only check isContract if the call was successful and the return data is empty\n                // otherwise we already know that it was a contract\n                require(isContract(target), \"Address: call to non-contract\");\n            }\n            return returndata;\n        } else {\n            _revert(returndata, errorMessage);\n        }\n    }\n\n    /**\n     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n     * revert reason or using the provided one.\n     *\n     * _Available since v4.3._\n     */\n    function verifyCallResult(\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal pure returns (bytes memory) {\n        if (success) {\n            return returndata;\n        } else {\n            _revert(returndata, errorMessage);\n        }\n    }\n\n    function _revert(bytes memory returndata, string memory errorMessage) private pure {\n        // Look for revert reason and bubble it up if present\n        if (returndata.length > 0) {\n            // The easiest way to bubble the revert reason is using memory via assembly\n            /// @solidity memory-safe-assembly\n            assembly {\n                let returndata_size := mload(returndata)\n                revert(add(32, returndata), returndata_size)\n            }\n        } else {\n            revert(errorMessage);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\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/Counters.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title Counters\n * @author Matt Condon (@shrugs)\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\n *\n * Include with `using Counters for Counters.Counter;`\n */\nlibrary Counters {\n    struct Counter {\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\n        uint256 _value; // default: 0\n    }\n\n    function current(Counter storage counter) internal view returns (uint256) {\n        return counter._value;\n    }\n\n    function increment(Counter storage counter) internal {\n        unchecked {\n            counter._value += 1;\n        }\n    }\n\n    function decrement(Counter storage counter) internal {\n        uint256 value = counter._value;\n        require(value > 0, \"Counter: decrement overflow\");\n        unchecked {\n            counter._value = value - 1;\n        }\n    }\n\n    function reset(Counter storage counter) internal {\n        counter._value = 0;\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 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 *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\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[EIP section]\n     * to learn more about how these ids are created.\n     *\n     * This function call must use less than 30 000 gas.\n     */\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"},"@openzeppelin/contracts/utils/math/Math.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n    enum Rounding {\n        Down, // Toward negative infinity\n        Up, // Toward infinity\n        Zero // Toward zero\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 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 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 up instead\n     * of rounding down.\n     */\n    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n        // (a + b - 1) / b can overflow on addition, so we distribute.\n        return a == 0 ? 0 : (a - 1) / b + 1;\n    }\n\n    /**\n     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n     * with further edits by Uniswap Labs also under MIT license.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n        unchecked {\n            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n            // variables such that product = prod1 * 2^256 + prod0.\n            uint256 prod0; // Least significant 256 bits of the product\n            uint256 prod1; // Most significant 256 bits of the product\n            assembly {\n                let mm := mulmod(x, y, not(0))\n                prod0 := mul(x, y)\n                prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n            }\n\n            // Handle non-overflow cases, 256 by 256 division.\n            if (prod1 == 0) {\n                // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n                // The surrounding unchecked block does not change this fact.\n                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n                return prod0 / denominator;\n            }\n\n            // Make sure the result is less than 2^256. Also prevents denominator == 0.\n            require(denominator > prod1, \"Math: mulDiv overflow\");\n\n            ///////////////////////////////////////////////\n            // 512 by 256 division.\n            ///////////////////////////////////////////////\n\n            // Make division exact by subtracting the remainder from [prod1 prod0].\n            uint256 remainder;\n            assembly {\n                // Compute remainder using mulmod.\n                remainder := mulmod(x, y, denominator)\n\n                // Subtract 256 bit number from 512 bit number.\n                prod1 := sub(prod1, gt(remainder, prod0))\n                prod0 := sub(prod0, remainder)\n            }\n\n            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n            // See https://cs.stackexchange.com/q/138556/92363.\n\n            // Does not overflow because the denominator cannot be zero at this stage in the function.\n            uint256 twos = denominator & (~denominator + 1);\n            assembly {\n                // Divide denominator by twos.\n                denominator := div(denominator, twos)\n\n                // Divide [prod1 prod0] by twos.\n                prod0 := div(prod0, twos)\n\n                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n                twos := add(div(sub(0, twos), twos), 1)\n            }\n\n            // Shift in bits from prod1 into prod0.\n            prod0 |= prod1 * twos;\n\n            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n            // four bits. That is, denominator * inv = 1 mod 2^4.\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 works\n            // in modular arithmetic, doubling the correct bits in each step.\n            inverse *= 2 - denominator * inverse; // inverse mod 2^8\n            inverse *= 2 - denominator * inverse; // inverse mod 2^16\n            inverse *= 2 - denominator * inverse; // inverse mod 2^32\n            inverse *= 2 - denominator * inverse; // inverse mod 2^64\n            inverse *= 2 - denominator * inverse; // inverse mod 2^128\n            inverse *= 2 - denominator * inverse; // inverse mod 2^256\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^256. Since the preconditions guarantee that the outcome is\n            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n            // is no longer required.\n            result = prod0 * inverse;\n            return result;\n        }\n    }\n\n    /**\n     * @notice 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        uint256 result = mulDiv(x, y, denominator);\n        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n            result += 1;\n        }\n        return result;\n    }\n\n    /**\n     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n     *\n     * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n     */\n    function sqrt(uint256 a) internal pure returns (uint256) {\n        if (a == 0) {\n            return 0;\n        }\n\n        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n        //\n        // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n        //\n        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n        //\n        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n        uint256 result = 1 << (log2(a) >> 1);\n\n        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n        // into the expected uint128 result.\n        unchecked {\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            return min(result, a / result);\n        }\n    }\n\n    /**\n     * @notice 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 2, rounded down, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        unchecked {\n            if (value >> 128 > 0) {\n                value >>= 128;\n                result += 128;\n            }\n            if (value >> 64 > 0) {\n                value >>= 64;\n                result += 64;\n            }\n            if (value >> 32 > 0) {\n                value >>= 32;\n                result += 32;\n            }\n            if (value >> 16 > 0) {\n                value >>= 16;\n                result += 16;\n            }\n            if (value >> 8 > 0) {\n                value >>= 8;\n                result += 8;\n            }\n            if (value >> 4 > 0) {\n                value >>= 4;\n                result += 4;\n            }\n            if (value >> 2 > 0) {\n                value >>= 2;\n                result += 2;\n            }\n            if (value >> 1 > 0) {\n                result += 1;\n            }\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log2(value);\n            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 10, rounded down, of a positive value.\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 + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 256, rounded down, of a positive value.\n     * Returns 0 if given 0.\n     *\n     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n     */\n    function log256(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        unchecked {\n            if (value >> 128 > 0) {\n                value >>= 128;\n                result += 16;\n            }\n            if (value >> 64 > 0) {\n                value >>= 64;\n                result += 8;\n            }\n            if (value >> 32 > 0) {\n                value >>= 32;\n                result += 4;\n            }\n            if (value >> 16 > 0) {\n                value >>= 16;\n                result += 2;\n            }\n            if (value >> 8 > 0) {\n                result += 1;\n            }\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log256(value);\n            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n    /**\n     * @dev Returns the largest of two signed numbers.\n     */\n    function max(int256 a, int256 b) internal pure returns (int256) {\n        return 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 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            // must be unchecked in order to support `n = type(int256).min`\n            return uint256(n >= 0 ? n : -n);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Strings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/Math.sol\";\nimport \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n    bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n    uint8 private constant _ADDRESS_LENGTH = 20;\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            /// @solidity memory-safe-assembly\n            assembly {\n                ptr := add(buffer, add(32, length))\n            }\n            while (true) {\n                ptr--;\n                /// @solidity memory-safe-assembly\n                assembly {\n                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\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 toString(int256 value) internal pure returns (string memory) {\n        return string(abi.encodePacked(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        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] = _SYMBOLS[value & 0xf];\n            value >>= 4;\n        }\n        require(value == 0, \"Strings: hex length insufficient\");\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 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 Returns true if the two strings are equal.\n     */\n    function equal(string memory a, string memory b) internal pure returns (bool) {\n        return keccak256(bytes(a)) == keccak256(bytes(b));\n    }\n}\n"},"contracts/ERC1155NFT.sol":{"content":"// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.19;\r\n\r\nimport \"@openzeppelin/contracts/token/ERC1155/ERC1155.sol\";\r\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\r\nimport \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\r\nimport \"@openzeppelin/contracts/utils/Counters.sol\";\r\n\r\n/**\r\n * @title ERC1155NFT\r\n * @dev Complete ERC1155 Multi-Token Collection Contract with Minting, Royalties, and Access Control\r\n */\r\ncontract ERC1155NFT is ERC1155, Ownable, ReentrancyGuard {\r\n    using Counters for Counters.Counter;\r\n\r\n    Counters.Counter private _tokenIds;\r\n\r\n    string public name;\r\n    string public symbol;\r\n    string public baseTokenURI;\r\n    uint256 public maxSupply;\r\n    uint256 public mintPrice;\r\n    uint256 public royaltyPercentage; // basis points (250 = 2.5%)\r\n    address public royaltyRecipient;\r\n    bool public isPublicMintEnabled;\r\n\r\n    mapping(address => bool) public whitelist;\r\n    mapping(uint256 => string) private _tokenURIs;\r\n    mapping(uint256 => uint256) public tokenSupply;\r\n\r\n    event NFTMinted(\r\n        address indexed minter,\r\n        uint256 indexed tokenId,\r\n        uint256 amount,\r\n        string tokenURI\r\n    );\r\n    event BaseURIUpdated(string newBaseURI);\r\n    event MintPriceUpdated(uint256 newPrice);\r\n    event PublicMintToggled(bool enabled);\r\n    event Withdrawn(address indexed recipient, uint256 amount);\r\n\r\n    constructor(\r\n        string memory _name,\r\n        string memory _symbol,\r\n        string memory _baseTokenURI,\r\n        uint256 _maxSupply,\r\n        uint256 _royaltyPercentage,\r\n        address _royaltyRecipient,\r\n        uint256 _mintPrice,\r\n        bool _isPublicMint,\r\n        address _owner\r\n    ) ERC1155(_baseTokenURI) {\r\n        name = _name;\r\n        symbol = _symbol;\r\n        baseTokenURI = _baseTokenURI;\r\n        maxSupply = _maxSupply;\r\n        royaltyPercentage = _royaltyPercentage;\r\n        royaltyRecipient = _royaltyRecipient;\r\n        mintPrice = _mintPrice;\r\n        isPublicMintEnabled = _isPublicMint;\r\n\r\n        // Transfer ownership to specified address\r\n        _transferOwnership(_owner);\r\n\r\n        // Add owner to whitelist\r\n        whitelist[_owner] = true;\r\n    }\r\n\r\n    /**\r\n     * @dev Mint new tokens\r\n     */\r\n    function mint(\r\n        uint256 amount,\r\n        string memory tokenURI\r\n    ) external payable nonReentrant returns (uint256) {\r\n        require(\r\n            isPublicMintEnabled || whitelist[msg.sender] || msg.sender == owner(),\r\n            \"Minting not allowed\"\r\n        );\r\n        require(amount > 0, \"Amount must be greater than 0\");\r\n        require(msg.value >= mintPrice * amount, \"Insufficient payment\");\r\n\r\n        _tokenIds.increment();\r\n        uint256 newTokenId = _tokenIds.current();\r\n\r\n        require(\r\n            maxSupply == 0 || tokenSupply[newTokenId] + amount <= maxSupply,\r\n            \"Would exceed max supply\"\r\n        );\r\n\r\n        _mint(msg.sender, newTokenId, amount, \"\");\r\n        _tokenURIs[newTokenId] = tokenURI;\r\n        tokenSupply[newTokenId] += amount;\r\n\r\n        emit NFTMinted(msg.sender, newTokenId, amount, tokenURI);\r\n\r\n        return newTokenId;\r\n    }\r\n\r\n    /**\r\n     * @dev Batch mint tokens (only owner)\r\n     */\r\n    function batchMint(\r\n        address[] memory recipients,\r\n        uint256[] memory tokenIds,\r\n        uint256[] memory amounts,\r\n        string[] memory tokenURIs\r\n    ) external onlyOwner nonReentrant {\r\n        require(\r\n            recipients.length == tokenIds.length &&\r\n            tokenIds.length == amounts.length &&\r\n            amounts.length == tokenURIs.length,\r\n            \"Array length mismatch\"\r\n        );\r\n\r\n        for (uint256 i = 0; i < recipients.length; i++) {\r\n            uint256 tokenId = tokenIds[i];\r\n            uint256 amount = amounts[i];\r\n\r\n            require(\r\n                maxSupply == 0 || tokenSupply[tokenId] + amount <= maxSupply,\r\n                \"Would exceed max supply\"\r\n            );\r\n\r\n            _mint(recipients[i], tokenId, amount, \"\");\r\n\r\n            if (bytes(_tokenURIs[tokenId]).length == 0) {\r\n                _tokenURIs[tokenId] = tokenURIs[i];\r\n            }\r\n\r\n            tokenSupply[tokenId] += amount;\r\n\r\n            emit NFTMinted(recipients[i], tokenId, amount, tokenURIs[i]);\r\n        }\r\n    }\r\n\r\n    /**\r\n     * @dev Set base URI\r\n     */\r\n    function setBaseURI(string memory _baseTokenURI) external onlyOwner {\r\n        baseTokenURI = _baseTokenURI;\r\n        _setURI(_baseTokenURI);\r\n        emit BaseURIUpdated(_baseTokenURI);\r\n    }\r\n\r\n    /**\r\n     * @dev Set token URI for specific token\r\n     */\r\n    function setTokenURI(uint256 tokenId, string memory tokenURI)\r\n        external\r\n        onlyOwner\r\n    {\r\n        require(tokenSupply[tokenId] > 0, \"Token does not exist\");\r\n        _tokenURIs[tokenId] = tokenURI;\r\n    }\r\n\r\n    /**\r\n     * @dev Get token URI\r\n     */\r\n    function uri(uint256 tokenId)\r\n        public\r\n        view\r\n        virtual\r\n        override\r\n        returns (string memory)\r\n    {\r\n        string memory tokenURI = _tokenURIs[tokenId];\r\n\r\n        if (bytes(tokenURI).length > 0) {\r\n            return tokenURI;\r\n        }\r\n\r\n        return string(abi.encodePacked(baseTokenURI, _toString(tokenId)));\r\n    }\r\n\r\n    /**\r\n     * @dev Update mint price\r\n     */\r\n    function setMintPrice(uint256 _mintPrice) external onlyOwner {\r\n        mintPrice = _mintPrice;\r\n        emit MintPriceUpdated(_mintPrice);\r\n    }\r\n\r\n    /**\r\n     * @dev Toggle public minting\r\n     */\r\n    function togglePublicMint(bool _enabled) external onlyOwner {\r\n        isPublicMintEnabled = _enabled;\r\n        emit PublicMintToggled(_enabled);\r\n    }\r\n\r\n    /**\r\n     * @dev Add addresses to whitelist\r\n     */\r\n    function addToWhitelist(address[] memory addresses) external onlyOwner {\r\n        for (uint256 i = 0; i < addresses.length; i++) {\r\n            whitelist[addresses[i]] = true;\r\n        }\r\n    }\r\n\r\n    /**\r\n     * @dev Remove addresses from whitelist\r\n     */\r\n    function removeFromWhitelist(address[] memory addresses) external onlyOwner {\r\n        for (uint256 i = 0; i < addresses.length; i++) {\r\n            whitelist[addresses[i]] = false;\r\n        }\r\n    }\r\n\r\n    /**\r\n     * @dev Get total number of token types\r\n     */\r\n    function totalSupply() external view returns (uint256) {\r\n        return _tokenIds.current();\r\n    }\r\n\r\n    /**\r\n     * @dev Get supply of specific token\r\n     */\r\n    function totalSupply(uint256 tokenId) external view returns (uint256) {\r\n        return tokenSupply[tokenId];\r\n    }\r\n\r\n    /**\r\n     * @dev Withdraw contract balance\r\n     */\r\n    function withdraw() external onlyOwner nonReentrant {\r\n        uint256 balance = address(this).balance;\r\n        require(balance > 0, \"No balance to withdraw\");\r\n\r\n        (bool success, ) = payable(owner()).call{value: balance}(\"\");\r\n        require(success, \"Withdrawal failed\");\r\n\r\n        emit Withdrawn(owner(), balance);\r\n    }\r\n\r\n    /**\r\n     * @dev EIP-2981 royalty info\r\n     */\r\n    function royaltyInfo(uint256, uint256 salePrice)\r\n        external\r\n        view\r\n        returns (address receiver, uint256 royaltyAmount)\r\n    {\r\n        royaltyAmount = (salePrice * royaltyPercentage) / 10000;\r\n        receiver = royaltyRecipient;\r\n    }\r\n\r\n    /**\r\n     * @dev Convert uint256 to string\r\n     */\r\n    function _toString(uint256 value) internal pure returns (string memory) {\r\n        if (value == 0) {\r\n            return \"0\";\r\n        }\r\n        uint256 temp = value;\r\n        uint256 digits;\r\n        while (temp != 0) {\r\n            digits++;\r\n            temp /= 10;\r\n        }\r\n        bytes memory buffer = new bytes(digits);\r\n        while (value != 0) {\r\n            digits -= 1;\r\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\r\n            value /= 10;\r\n        }\r\n        return string(buffer);\r\n    }\r\n\r\n    /**\r\n     * @dev Check interface support\r\n     */\r\n    function supportsInterface(bytes4 interfaceId)\r\n        public\r\n        view\r\n        virtual\r\n        override(ERC1155)\r\n        returns (bool)\r\n    {\r\n        return super.supportsInterface(interfaceId);\r\n    }\r\n}\r\n"},"contracts/ERC721NFT.sol":{"content":"// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.19;\r\n\r\nimport \"@openzeppelin/contracts/token/ERC721/ERC721.sol\";\r\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\";\r\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\r\nimport \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\r\nimport \"@openzeppelin/contracts/utils/Counters.sol\";\r\n\r\n/**\r\n * @title ERC721NFT\r\n * @dev Complete ERC721 NFT Collection Contract with Minting, Royalties, and Access Control\r\n */\r\ncontract ERC721NFT is ERC721, ERC721URIStorage, Ownable, ReentrancyGuard {\r\n    using Counters for Counters.Counter;\r\n\r\n    Counters.Counter private _tokenIds;\r\n\r\n    string public baseTokenURI;\r\n    uint256 public maxSupply;\r\n    uint256 public mintPrice;\r\n    uint256 public royaltyPercentage; // basis points (250 = 2.5%)\r\n    address public royaltyRecipient;\r\n    bool public isPublicMintEnabled;\r\n\r\n    mapping(address => bool) public whitelist;\r\n    mapping(uint256 => string) private _tokenURIs;\r\n\r\n    event NFTMinted(address indexed minter, uint256 indexed tokenId, string tokenURI);\r\n    event BaseURIUpdated(string newBaseURI);\r\n    event MintPriceUpdated(uint256 newPrice);\r\n    event PublicMintToggled(bool enabled);\r\n    event Withdrawn(address indexed recipient, uint256 amount);\r\n\r\n    constructor(\r\n        string memory _name,\r\n        string memory _symbol,\r\n        string memory _baseTokenURI,\r\n        uint256 _maxSupply,\r\n        uint256 _royaltyPercentage,\r\n        address _royaltyRecipient,\r\n        uint256 _mintPrice,\r\n        bool _isPublicMint,\r\n        address _owner\r\n    ) ERC721(_name, _symbol) {\r\n        baseTokenURI = _baseTokenURI;\r\n        maxSupply = _maxSupply;\r\n        royaltyPercentage = _royaltyPercentage;\r\n        royaltyRecipient = _royaltyRecipient;\r\n        mintPrice = _mintPrice;\r\n        isPublicMintEnabled = _isPublicMint;\r\n\r\n        // Transfer ownership to specified address\r\n        _transferOwnership(_owner);\r\n\r\n        // Add owner to whitelist\r\n        whitelist[_owner] = true;\r\n    }\r\n\r\n    /**\r\n     * @dev Mint a new NFT\r\n     */\r\n    function mint(string memory tokenURI)\r\n        external\r\n        payable\r\n        nonReentrant\r\n        returns (uint256)\r\n    {\r\n        require(\r\n            isPublicMintEnabled || whitelist[msg.sender] || msg.sender == owner(),\r\n            \"Minting not allowed\"\r\n        );\r\n        require(\r\n            maxSupply == 0 || _tokenIds.current() < maxSupply,\r\n            \"Max supply reached\"\r\n        );\r\n        require(msg.value >= mintPrice, \"Insufficient payment\");\r\n\r\n        _tokenIds.increment();\r\n        uint256 newTokenId = _tokenIds.current();\r\n\r\n        _safeMint(msg.sender, newTokenId);\r\n        _setTokenURI(newTokenId, tokenURI);\r\n\r\n        emit NFTMinted(msg.sender, newTokenId, tokenURI);\r\n\r\n        return newTokenId;\r\n    }\r\n\r\n    /**\r\n     * @dev Batch mint NFTs (only owner)\r\n     */\r\n    function batchMint(address[] memory recipients, string[] memory tokenURIs)\r\n        external\r\n        onlyOwner\r\n        nonReentrant\r\n    {\r\n        require(recipients.length == tokenURIs.length, \"Array length mismatch\");\r\n        require(\r\n            maxSupply == 0 || _tokenIds.current() + recipients.length <= maxSupply,\r\n            \"Would exceed max supply\"\r\n        );\r\n\r\n        for (uint256 i = 0; i < recipients.length; i++) {\r\n            _tokenIds.increment();\r\n            uint256 newTokenId = _tokenIds.current();\r\n\r\n            _safeMint(recipients[i], newTokenId);\r\n            _setTokenURI(newTokenId, tokenURIs[i]);\r\n\r\n            emit NFTMinted(recipients[i], newTokenId, tokenURIs[i]);\r\n        }\r\n    }\r\n\r\n    /**\r\n     * @dev Set base URI for all tokens\r\n     */\r\n    function setBaseURI(string memory _baseTokenURI) external onlyOwner {\r\n        baseTokenURI = _baseTokenURI;\r\n        emit BaseURIUpdated(_baseTokenURI);\r\n    }\r\n\r\n    /**\r\n     * @dev Update mint price\r\n     */\r\n    function setMintPrice(uint256 _mintPrice) external onlyOwner {\r\n        mintPrice = _mintPrice;\r\n        emit MintPriceUpdated(_mintPrice);\r\n    }\r\n\r\n    /**\r\n     * @dev Toggle public minting\r\n     */\r\n    function togglePublicMint(bool _enabled) external onlyOwner {\r\n        isPublicMintEnabled = _enabled;\r\n        emit PublicMintToggled(_enabled);\r\n    }\r\n\r\n    /**\r\n     * @dev Add addresses to whitelist\r\n     */\r\n    function addToWhitelist(address[] memory addresses) external onlyOwner {\r\n        for (uint256 i = 0; i < addresses.length; i++) {\r\n            whitelist[addresses[i]] = true;\r\n        }\r\n    }\r\n\r\n    /**\r\n     * @dev Remove addresses from whitelist\r\n     */\r\n    function removeFromWhitelist(address[] memory addresses) external onlyOwner {\r\n        for (uint256 i = 0; i < addresses.length; i++) {\r\n            whitelist[addresses[i]] = false;\r\n        }\r\n    }\r\n\r\n    /**\r\n     * @dev Get total supply\r\n     */\r\n    function totalSupply() external view returns (uint256) {\r\n        return _tokenIds.current();\r\n    }\r\n\r\n    /**\r\n     * @dev Withdraw contract balance\r\n     */\r\n    function withdraw() external onlyOwner nonReentrant {\r\n        uint256 balance = address(this).balance;\r\n        require(balance > 0, \"No balance to withdraw\");\r\n\r\n        (bool success, ) = payable(owner()).call{value: balance}(\"\");\r\n        require(success, \"Withdrawal failed\");\r\n\r\n        emit Withdrawn(owner(), balance);\r\n    }\r\n\r\n    /**\r\n     * @dev EIP-2981 royalty info\r\n     */\r\n    function royaltyInfo(uint256 , uint256 salePrice)\r\n        external\r\n        view\r\n        returns (address receiver, uint256 royaltyAmount)\r\n    {\r\n        royaltyAmount = (salePrice * royaltyPercentage) / 10000;\r\n        receiver = royaltyRecipient;\r\n    }\r\n\r\n    /**\r\n     * @dev Override _baseURI\r\n     */\r\n    function _baseURI() internal view virtual override returns (string memory) {\r\n        return baseTokenURI;\r\n    }\r\n\r\n    /**\r\n     * @dev Override tokenURI to return custom URI if set\r\n     */\r\n    function tokenURI(uint256 tokenId)\r\n        public\r\n        view\r\n        virtual\r\n        override(ERC721, ERC721URIStorage)\r\n        returns (string memory)\r\n    {\r\n        return super.tokenURI(tokenId);\r\n    }\r\n\r\n    /**\r\n     * @dev Override _burn\r\n     */\r\n    function _burn(uint256 tokenId)\r\n        internal\r\n        virtual\r\n        override(ERC721, ERC721URIStorage)\r\n    {\r\n        super._burn(tokenId);\r\n    }\r\n\r\n    /**\r\n     * @dev Check interface support\r\n     */\r\n    function supportsInterface(bytes4 interfaceId)\r\n        public\r\n        view\r\n        virtual\r\n        override(ERC721, ERC721URIStorage)\r\n        returns (bool)\r\n    {\r\n        return super.supportsInterface(interfaceId);\r\n    }\r\n}\r\n"},"contracts/NFTMarketplace.sol":{"content":"// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.19;\r\n\r\nimport \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\r\nimport \"@openzeppelin/contracts/token/ERC1155/IERC1155.sol\";\r\nimport \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\r\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\r\n\r\n/**\r\n * @title NFTMarketplace\r\n * @dev Core NFT Marketplace for ERC721 and ERC1155 with royalty support\r\n */\r\ncontract NFTMarketplace is ReentrancyGuard, Ownable {\r\n\r\n    address payable public feeRecipient;\r\n    uint256 public feePercentage; // basis points (250 = 2.5%)\r\n\r\n    struct Listing {\r\n        address seller;\r\n        uint256 price;\r\n        bool active;\r\n        uint256 royaltyPercentage;\r\n        address royaltyRecipient;\r\n    }\r\n\r\n    // nftContract => tokenId => Listing\r\n    mapping(address => mapping(uint256 => Listing)) public listings;\r\n    mapping(address => bool) public supportedTokenStandards;\r\n\r\n    event ItemListed(\r\n        address indexed nftContract,\r\n        uint256 indexed tokenId,\r\n        address indexed seller,\r\n        uint256 price\r\n    );\r\n\r\n    event ItemSold(\r\n        address indexed nftContract,\r\n        uint256 indexed tokenId,\r\n        address indexed buyer,\r\n        address seller,\r\n        uint256 price,\r\n        uint256 marketplaceFee,\r\n        uint256 royaltyFee\r\n    );\r\n\r\n    event ItemCanceled(\r\n        address indexed nftContract,\r\n        uint256 indexed tokenId,\r\n        address indexed seller\r\n    );\r\n\r\n    constructor(address payable _feeRecipient, uint256 _feePercentage) {\r\n        require(_feeRecipient != address(0), \"Invalid fee recipient\");\r\n        require(_feePercentage <= 1000, \"Fee too high\");\r\n\r\n        feeRecipient = _feeRecipient;\r\n        feePercentage = _feePercentage;\r\n    }\r\n\r\n    function listItem(\r\n        address nftContract,\r\n        uint256 tokenId,\r\n        uint256 price,\r\n        uint256 royaltyPercentage,\r\n        address royaltyRecipient\r\n    ) external nonReentrant {\r\n        require(price > 0, \"Price must be greater than zero\");\r\n        require(royaltyPercentage <= 300, \"Royalty percent too high\");\r\n\r\n        IERC721 nft = IERC721(nftContract);\r\n        require(nft.ownerOf(tokenId) == msg.sender, \"Not token owner\");\r\n        require(\r\n            nft.getApproved(tokenId) == address(this) ||\r\n            nft.isApprovedForAll(msg.sender, address(this)),\r\n            \"Contract not approved\"\r\n        );\r\n\r\n        nft.transferFrom(msg.sender, address(this), tokenId);\r\n\r\n        listings[nftContract][tokenId] = Listing({\r\n            seller: msg.sender,\r\n            price: price,\r\n            active: true,\r\n            royaltyPercentage: royaltyPercentage,\r\n            royaltyRecipient: royaltyRecipient\r\n        });\r\n\r\n        emit ItemListed(nftContract, tokenId, msg.sender, price);\r\n    }\r\n\r\n    function buyItem(address nftContract, uint256 tokenId)\r\n        external\r\n        payable\r\n        nonReentrant\r\n    {\r\n        Listing memory listing = listings[nftContract][tokenId];\r\n\r\n        require(listing.active, \"Item not for sale\");\r\n        require(msg.value >= listing.price, \"Insufficient payment\");\r\n\r\n        listings[nftContract][tokenId].active = false;\r\n\r\n        uint256 marketplaceFee = (listing.price * feePercentage) / 10000;\r\n        uint256 royaltyFee = 0;\r\n\r\n        if (listing.royaltyRecipient != address(0) && listing.royaltyPercentage > 0) {\r\n            royaltyFee = (listing.price * listing.royaltyPercentage) / 10000;\r\n        }\r\n\r\n        uint256 sellerProceeds = listing.price - marketplaceFee - royaltyFee;\r\n\r\n        IERC721(nftContract).transferFrom(address(this), msg.sender, tokenId);\r\n\r\n        (bool feeSuccess, ) = feeRecipient.call{value: marketplaceFee}(\"\");\r\n        require(feeSuccess, \"Fee transfer failed\");\r\n\r\n        if (royaltyFee > 0) {\r\n            (bool royaltySuccess, ) = payable(listing.royaltyRecipient).call{value: royaltyFee}(\"\");\r\n            require(royaltySuccess, \"Royalty transfer failed\");\r\n        }\r\n\r\n        (bool sellerSuccess, ) = payable(listing.seller).call{value: sellerProceeds}(\"\");\r\n        require(sellerSuccess, \"Seller payment failed\");\r\n\r\n        if (msg.value > listing.price) {\r\n            (bool refundSuccess, ) = payable(msg.sender).call{value: msg.value - listing.price}(\"\");\r\n            require(refundSuccess, \"Refund failed\");\r\n        }\r\n\r\n        emit ItemSold(\r\n            nftContract,\r\n            tokenId,\r\n            msg.sender,\r\n            listing.seller,\r\n            listing.price,\r\n            marketplaceFee,\r\n            royaltyFee\r\n        );\r\n    }\r\n\r\n    function cancelListing(address nftContract, uint256 tokenId)\r\n        external\r\n        nonReentrant\r\n    {\r\n        Listing memory listing = listings[nftContract][tokenId];\r\n\r\n        require(listing.active, \"Item not listed\");\r\n        require(listing.seller == msg.sender, \"Only seller can cancel\");\r\n\r\n        listings[nftContract][tokenId].active = false;\r\n\r\n        IERC721(nftContract).transferFrom(address(this), msg.sender, tokenId);\r\n\r\n        emit ItemCanceled(nftContract, tokenId, msg.sender);\r\n    }\r\n\r\n    function updatePrice(address nftContract, uint256 tokenId, uint256 newPrice)\r\n        external\r\n    {\r\n        Listing storage listing = listings[nftContract][tokenId];\r\n\r\n        require(listing.active, \"Item not listed\");\r\n        require(listing.seller == msg.sender, \"Only seller can update\");\r\n        require(newPrice > 0, \"Price must be greater than zero\");\r\n\r\n        listing.price = newPrice;\r\n    }\r\n\r\n    function getListing(address nftContract, uint256 tokenId)\r\n        external\r\n        view\r\n        returns (\r\n            address seller,\r\n            uint256 price,\r\n            bool active,\r\n            uint256 royaltyPercentage,\r\n            address royaltyRecipient\r\n        )\r\n    {\r\n        Listing memory listing = listings[nftContract][tokenId];\r\n        return (\r\n            listing.seller,\r\n            listing.price,\r\n            listing.active,\r\n            listing.royaltyPercentage,\r\n            listing.royaltyRecipient\r\n        );\r\n    }\r\n\r\n    function updateFeePercentage(uint256 newFeePercentage) external onlyOwner {\r\n        require(newFeePercentage <= 1000, \"Fee too high\");\r\n        feePercentage = newFeePercentage;\r\n    }\r\n\r\n    function updateFeeRecipient(address payable newFeeRecipient) external onlyOwner {\r\n        require(newFeeRecipient != address(0), \"Invalid recipient\");\r\n        feeRecipient = newFeeRecipient;\r\n    }\r\n\r\n    function updateSupportedTokenStandard(address nftContract, bool supported)\r\n        external\r\n        onlyOwner\r\n    {\r\n        supportedTokenStandards[nftContract] = supported;\r\n    }\r\n\r\n    function isListed(address nftContract, uint256 tokenId)\r\n        external\r\n        view\r\n        returns (bool)\r\n    {\r\n        return listings[nftContract][tokenId].active;\r\n    }\r\n\r\n    function calculateFees(uint256 price, uint256 royaltyPercentage)\r\n        external\r\n        view\r\n        returns (\r\n            uint256 marketplaceFee,\r\n            uint256 royaltyFee,\r\n            uint256 sellerAmount\r\n        )\r\n    {\r\n        marketplaceFee = (price * feePercentage) / 10000;\r\n        royaltyFee = (price * royaltyPercentage) / 10000;\r\n        sellerAmount = price - marketplaceFee - royaltyFee;\r\n    }\r\n\r\n    function withdrawBalance() external onlyOwner {\r\n        uint256 balance = address(this).balance;\r\n        require(balance > 0, \"No balance to withdraw\");\r\n\r\n        (bool success, ) = feeRecipient.call{value: balance}(\"\");\r\n        require(success, \"Withdrawal failed\");\r\n    }\r\n\r\n    function emergencyWithdraw() external onlyOwner {\r\n        uint256 balance = address(this).balance;\r\n        (bool success, ) = payable(owner()).call{value: balance}(\"\");\r\n        require(success, \"Emergency withdrawal failed\");\r\n    }\r\n\r\n    function onERC721Received(\r\n        address,\r\n        address,\r\n        uint256,\r\n        bytes calldata\r\n    ) external pure returns (bytes4) {\r\n        return this.onERC721Received.selector;\r\n    }\r\n\r\n    function supportsInterface(bytes4 interfaceId) external pure returns (bool) {\r\n        return interfaceId == 0x01ffc9a7 || // ERC165\r\n               interfaceId == 0x150b7a02;   // ERC721TokenReceiver\r\n    }\r\n\r\n    receive() external payable {}\r\n}\r\n"}},"settings":{"optimizer":{"enabled":true,"runs":200},"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"errors":[{"component":"general","errorCode":"2519","formattedMessage":"Warning: This declaration shadows an existing declaration.\n  --> contracts/ERC721NFT.sol:63:19:\n   |\n63 |     function mint(string memory tokenURI)\n   |                   ^^^^^^^^^^^^^^^^^^^^^^\nNote: The shadowed declaration is here:\n   --> contracts/ERC721NFT.sol:199:5:\n    |\n199 |     function tokenURI(uint256 tokenId)\n    |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This declaration shadows an existing declaration.","secondarySourceLocations":[{"end":6149,"file":"contracts/ERC721NFT.sol","message":"The shadowed declaration is here:","start":5936}],"severity":"warning","sourceLocation":{"end":2135,"file":"contracts/ERC721NFT.sol","start":2113},"type":"Warning"}],"sources":{"@openzeppelin/contracts/access/Ownable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/Ownable.sol","exportedSymbols":{"Context":[3210],"Ownable":[112]},"id":113,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"102:23:0"},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":113,"sourceUnit":3211,"src":"127:30:0","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4,"name":"Context","nameLocations":["683:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":3210,"src":"683:7:0"},"id":5,"nodeType":"InheritanceSpecifier","src":"683:7:0"}],"canonicalName":"Ownable","contractDependencies":[],"contractKind":"contract","documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"159:494:0","text":" @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n By default, the owner account will be the one that deploys the contract. This\n can later be changed with {transferOwnership}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner."},"fullyImplemented":true,"id":112,"linearizedBaseContracts":[112,3210],"name":"Ownable","nameLocation":"672:7:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":7,"mutability":"mutable","name":"_owner","nameLocation":"713:6:0","nodeType":"VariableDeclaration","scope":112,"src":"697:22:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6,"name":"address","nodeType":"ElementaryTypeName","src":"697:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":13,"name":"OwnershipTransferred","nameLocation":"732:20:0","nodeType":"EventDefinition","parameters":{"id":12,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"769:13:0","nodeType":"VariableDeclaration","scope":13,"src":"753:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8,"name":"address","nodeType":"ElementaryTypeName","src":"753:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"800:8:0","nodeType":"VariableDeclaration","scope":13,"src":"784:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10,"name":"address","nodeType":"ElementaryTypeName","src":"784:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"752:57:0"},"src":"726:84:0"},{"body":{"id":22,"nodeType":"Block","src":"926:49:0","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":18,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"955:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":19,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"955:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"936:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":20,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"936:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21,"nodeType":"ExpressionStatement","src":"936:32:0"}]},"documentation":{"id":14,"nodeType":"StructuredDocumentation","src":"816:91:0","text":" @dev Initializes the contract setting the deployer as the initial owner."},"id":23,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15,"nodeType":"ParameterList","parameters":[],"src":"923:2:0"},"returnParameters":{"id":16,"nodeType":"ParameterList","parameters":[],"src":"926:0:0"},"scope":112,"src":"912:63:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":30,"nodeType":"Block","src":"1084:41:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":26,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":54,"src":"1094:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":27,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1094:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28,"nodeType":"ExpressionStatement","src":"1094:13:0"},{"id":29,"nodeType":"PlaceholderStatement","src":"1117:1:0"}]},"documentation":{"id":24,"nodeType":"StructuredDocumentation","src":"981:77:0","text":" @dev Throws if called by any account other than the owner."},"id":31,"name":"onlyOwner","nameLocation":"1072:9:0","nodeType":"ModifierDefinition","parameters":{"id":25,"nodeType":"ParameterList","parameters":[],"src":"1081:2:0"},"src":"1063:62:0","virtual":false,"visibility":"internal"},{"body":{"id":39,"nodeType":"Block","src":"1256:30:0","statements":[{"expression":{"id":37,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7,"src":"1273:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":36,"id":38,"nodeType":"Return","src":"1266:13:0"}]},"documentation":{"id":32,"nodeType":"StructuredDocumentation","src":"1131:65:0","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":40,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1210:5:0","nodeType":"FunctionDefinition","parameters":{"id":33,"nodeType":"ParameterList","parameters":[],"src":"1215:2:0"},"returnParameters":{"id":36,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":40,"src":"1247:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":34,"name":"address","nodeType":"ElementaryTypeName","src":"1247:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1246:9:0"},"scope":112,"src":"1201:85:0","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":53,"nodeType":"Block","src":"1404:85:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":49,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":45,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"1422:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":46,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1422:7:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":47,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"1433:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":48,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1433:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1422:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","id":50,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1447:34:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""},"value":"Ownable: caller is not the owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""}],"id":44,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1414:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":51,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1414:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":52,"nodeType":"ExpressionStatement","src":"1414:68:0"}]},"documentation":{"id":41,"nodeType":"StructuredDocumentation","src":"1292:62:0","text":" @dev Throws if the sender is not the owner."},"id":54,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1368:11:0","nodeType":"FunctionDefinition","parameters":{"id":42,"nodeType":"ParameterList","parameters":[],"src":"1379:2:0"},"returnParameters":{"id":43,"nodeType":"ParameterList","parameters":[],"src":"1404:0:0"},"scope":112,"src":"1359:130:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":67,"nodeType":"Block","src":"1878:47:0","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":63,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1915:1:0","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":62,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1907:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":61,"name":"address","nodeType":"ElementaryTypeName","src":"1907:7:0","typeDescriptions":{}}},"id":64,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1907:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":60,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"1888:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":65,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1888:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":66,"nodeType":"ExpressionStatement","src":"1888:30:0"}]},"documentation":{"id":55,"nodeType":"StructuredDocumentation","src":"1495:324:0","text":" @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby disabling any functionality that is only available to the owner."},"functionSelector":"715018a6","id":68,"implemented":true,"kind":"function","modifiers":[{"id":58,"kind":"modifierInvocation","modifierName":{"id":57,"name":"onlyOwner","nameLocations":["1868:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"1868:9:0"},"nodeType":"ModifierInvocation","src":"1868:9:0"}],"name":"renounceOwnership","nameLocation":"1833:17:0","nodeType":"FunctionDefinition","parameters":{"id":56,"nodeType":"ParameterList","parameters":[],"src":"1850:2:0"},"returnParameters":{"id":59,"nodeType":"ParameterList","parameters":[],"src":"1878:0:0"},"scope":112,"src":"1824:101:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":90,"nodeType":"Block","src":"2144:128:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":82,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":77,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":71,"src":"2162:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":80,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2182:1:0","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":79,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2174:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":78,"name":"address","nodeType":"ElementaryTypeName","src":"2174:7:0","typeDescriptions":{}}},"id":81,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2174:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2162:22:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373","id":83,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2186:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""},"value":"Ownable: new owner is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""}],"id":76,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2154:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":84,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2154:73:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":85,"nodeType":"ExpressionStatement","src":"2154:73:0"},{"expression":{"arguments":[{"id":87,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":71,"src":"2256:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":86,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"2237:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":88,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2237:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":89,"nodeType":"ExpressionStatement","src":"2237:28:0"}]},"documentation":{"id":69,"nodeType":"StructuredDocumentation","src":"1931:138:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":91,"implemented":true,"kind":"function","modifiers":[{"id":74,"kind":"modifierInvocation","modifierName":{"id":73,"name":"onlyOwner","nameLocations":["2134:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"2134:9:0"},"nodeType":"ModifierInvocation","src":"2134:9:0"}],"name":"transferOwnership","nameLocation":"2083:17:0","nodeType":"FunctionDefinition","parameters":{"id":72,"nodeType":"ParameterList","parameters":[{"constant":false,"id":71,"mutability":"mutable","name":"newOwner","nameLocation":"2109:8:0","nodeType":"VariableDeclaration","scope":91,"src":"2101:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":70,"name":"address","nodeType":"ElementaryTypeName","src":"2101:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2100:18:0"},"returnParameters":{"id":75,"nodeType":"ParameterList","parameters":[],"src":"2144:0:0"},"scope":112,"src":"2074:198:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":110,"nodeType":"Block","src":"2489:124:0","statements":[{"assignments":[98],"declarations":[{"constant":false,"id":98,"mutability":"mutable","name":"oldOwner","nameLocation":"2507:8:0","nodeType":"VariableDeclaration","scope":110,"src":"2499:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":97,"name":"address","nodeType":"ElementaryTypeName","src":"2499:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":100,"initialValue":{"id":99,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7,"src":"2518:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2499:25:0"},{"expression":{"id":103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":101,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7,"src":"2534:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":102,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":94,"src":"2543:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2534:17:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":104,"nodeType":"ExpressionStatement","src":"2534:17:0"},{"eventCall":{"arguments":[{"id":106,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":98,"src":"2587:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":107,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":94,"src":"2597:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":105,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13,"src":"2566:20:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2566:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":109,"nodeType":"EmitStatement","src":"2561:45:0"}]},"documentation":{"id":92,"nodeType":"StructuredDocumentation","src":"2278:143:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":111,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2435:18:0","nodeType":"FunctionDefinition","parameters":{"id":95,"nodeType":"ParameterList","parameters":[{"constant":false,"id":94,"mutability":"mutable","name":"newOwner","nameLocation":"2462:8:0","nodeType":"VariableDeclaration","scope":111,"src":"2454:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":93,"name":"address","nodeType":"ElementaryTypeName","src":"2454:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2453:18:0"},"returnParameters":{"id":96,"nodeType":"ParameterList","parameters":[],"src":"2489:0:0"},"scope":112,"src":"2426:187:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":113,"src":"654:1961:0","usedErrors":[]}],"src":"102:2514:0"},"id":0},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[3549]},"id":116,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":114,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"91:23:1"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":115,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":116,"sourceUnit":3550,"src":"116:44:1","symbolAliases":[],"unitAlias":""}],"src":"91:70:1"},"id":1},"@openzeppelin/contracts/interfaces/IERC4906.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4906.sol","exportedSymbols":{"IERC165":[3549],"IERC4906":[137],"IERC721":[2649]},"id":138,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":117,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:2"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"./IERC165.sol","id":118,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":138,"sourceUnit":116,"src":"132:23:2","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721.sol","file":"./IERC721.sol","id":119,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":138,"sourceUnit":141,"src":"156:23:2","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":121,"name":"IERC165","nameLocations":["248:7:2"],"nodeType":"IdentifierPath","referencedDeclaration":3549,"src":"248:7:2"},"id":122,"nodeType":"InheritanceSpecifier","src":"248:7:2"},{"baseName":{"id":123,"name":"IERC721","nameLocations":["257:7:2"],"nodeType":"IdentifierPath","referencedDeclaration":2649,"src":"257:7:2"},"id":124,"nodeType":"InheritanceSpecifier","src":"257:7:2"}],"canonicalName":"IERC4906","contractDependencies":[],"contractKind":"interface","documentation":{"id":120,"nodeType":"StructuredDocumentation","src":"181:45:2","text":"@title EIP-721 Metadata Update Extension"},"fullyImplemented":false,"id":137,"linearizedBaseContracts":[137,2649,3549],"name":"IERC4906","nameLocation":"236:8:2","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":125,"nodeType":"StructuredDocumentation","src":"271:201:2","text":"@dev This event emits when the metadata of a token is changed.\n So that the third-party platforms such as NFT market could\n timely update the images and related attributes of the NFT."},"eventSelector":"f8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7","id":129,"name":"MetadataUpdate","nameLocation":"483:14:2","nodeType":"EventDefinition","parameters":{"id":128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":127,"indexed":false,"mutability":"mutable","name":"_tokenId","nameLocation":"506:8:2","nodeType":"VariableDeclaration","scope":129,"src":"498:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":126,"name":"uint256","nodeType":"ElementaryTypeName","src":"498:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"497:18:2"},"src":"477:39:2"},{"anonymous":false,"documentation":{"id":130,"nodeType":"StructuredDocumentation","src":"522:212:2","text":"@dev This event emits when the metadata of a range of tokens is changed.\n So that the third-party platforms such as NFT market could\n timely update the images and related attributes of the NFTs."},"eventSelector":"6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c","id":136,"name":"BatchMetadataUpdate","nameLocation":"745:19:2","nodeType":"EventDefinition","parameters":{"id":135,"nodeType":"ParameterList","parameters":[{"constant":false,"id":132,"indexed":false,"mutability":"mutable","name":"_fromTokenId","nameLocation":"773:12:2","nodeType":"VariableDeclaration","scope":136,"src":"765:20:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":131,"name":"uint256","nodeType":"ElementaryTypeName","src":"765:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":134,"indexed":false,"mutability":"mutable","name":"_toTokenId","nameLocation":"795:10:2","nodeType":"VariableDeclaration","scope":136,"src":"787:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":133,"name":"uint256","nodeType":"ElementaryTypeName","src":"787:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"764:42:2"},"src":"739:68:2"}],"scope":138,"src":"226:583:2","usedErrors":[]}],"src":"107:703:2"},"id":2},"@openzeppelin/contracts/interfaces/IERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721.sol","exportedSymbols":{"IERC165":[3549],"IERC721":[2649]},"id":141,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":139,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"91:23:3"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"../token/ERC721/IERC721.sol","id":140,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":141,"sourceUnit":2650,"src":"116:37:3","symbolAliases":[],"unitAlias":""}],"src":"91:63:3"},"id":3},"@openzeppelin/contracts/security/ReentrancyGuard.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/security/ReentrancyGuard.sol","exportedSymbols":{"ReentrancyGuard":[205]},"id":206,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":142,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"112:23:4"},{"abstract":true,"baseContracts":[],"canonicalName":"ReentrancyGuard","contractDependencies":[],"contractKind":"contract","documentation":{"id":143,"nodeType":"StructuredDocumentation","src":"137:750:4","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 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]."},"fullyImplemented":true,"id":205,"linearizedBaseContracts":[205],"name":"ReentrancyGuard","nameLocation":"906:15:4","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":146,"mutability":"constant","name":"_NOT_ENTERED","nameLocation":"1701:12:4","nodeType":"VariableDeclaration","scope":205,"src":"1676:41:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":144,"name":"uint256","nodeType":"ElementaryTypeName","src":"1676:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1716:1:4","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"private"},{"constant":true,"id":149,"mutability":"constant","name":"_ENTERED","nameLocation":"1748:8:4","nodeType":"VariableDeclaration","scope":205,"src":"1723:37:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":147,"name":"uint256","nodeType":"ElementaryTypeName","src":"1723:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1759:1:4","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"private"},{"constant":false,"id":151,"mutability":"mutable","name":"_status","nameLocation":"1783:7:4","nodeType":"VariableDeclaration","scope":205,"src":"1767:23:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":150,"name":"uint256","nodeType":"ElementaryTypeName","src":"1767:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"body":{"id":158,"nodeType":"Block","src":"1811:39:4","statements":[{"expression":{"id":156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":154,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":151,"src":"1821:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":155,"name":"_NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"1831:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1821:22:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":157,"nodeType":"ExpressionStatement","src":"1821:22:4"}]},"id":159,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":152,"nodeType":"ParameterList","parameters":[],"src":"1808:2:4"},"returnParameters":{"id":153,"nodeType":"ParameterList","parameters":[],"src":"1811:0:4"},"scope":205,"src":"1797:53:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":169,"nodeType":"Block","src":"2251:79:4","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":162,"name":"_nonReentrantBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":185,"src":"2261:19:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2261:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":164,"nodeType":"ExpressionStatement","src":"2261:21:4"},{"id":165,"nodeType":"PlaceholderStatement","src":"2292:1:4"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":166,"name":"_nonReentrantAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2303:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2303:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":168,"nodeType":"ExpressionStatement","src":"2303:20:4"}]},"documentation":{"id":160,"nodeType":"StructuredDocumentation","src":"1856:366:4","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":170,"name":"nonReentrant","nameLocation":"2236:12:4","nodeType":"ModifierDefinition","parameters":{"id":161,"nodeType":"ParameterList","parameters":[],"src":"2248:2:4"},"src":"2227:103:4","virtual":false,"visibility":"internal"},{"body":{"id":184,"nodeType":"Block","src":"2375:248:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":174,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":151,"src":"2468:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":175,"name":"_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":149,"src":"2479:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2468:19:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5265656e7472616e637947756172643a207265656e7472616e742063616c6c","id":177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2489:33:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619","typeString":"literal_string \"ReentrancyGuard: reentrant call\""},"value":"ReentrancyGuard: reentrant call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619","typeString":"literal_string \"ReentrancyGuard: reentrant call\""}],"id":173,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2460:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2460:63:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":179,"nodeType":"ExpressionStatement","src":"2460:63:4"},{"expression":{"id":182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":180,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":151,"src":"2598:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":181,"name":"_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":149,"src":"2608:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2598:18:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":183,"nodeType":"ExpressionStatement","src":"2598:18:4"}]},"id":185,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantBefore","nameLocation":"2345:19:4","nodeType":"FunctionDefinition","parameters":{"id":171,"nodeType":"ParameterList","parameters":[],"src":"2364:2:4"},"returnParameters":{"id":172,"nodeType":"ParameterList","parameters":[],"src":"2375:0:4"},"scope":205,"src":"2336:287:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":192,"nodeType":"Block","src":"2667:171:4","statements":[{"expression":{"id":190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":188,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":151,"src":"2809:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":189,"name":"_NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"2819:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2809:22:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":191,"nodeType":"ExpressionStatement","src":"2809:22:4"}]},"id":193,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantAfter","nameLocation":"2638:18:4","nodeType":"FunctionDefinition","parameters":{"id":186,"nodeType":"ParameterList","parameters":[],"src":"2656:2:4"},"returnParameters":{"id":187,"nodeType":"ParameterList","parameters":[],"src":"2667:0:4"},"scope":205,"src":"2629:209:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":203,"nodeType":"Block","src":"3081:43:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":199,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":151,"src":"3098:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":200,"name":"_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":149,"src":"3109:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3098:19:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":198,"id":202,"nodeType":"Return","src":"3091:26:4"}]},"documentation":{"id":194,"nodeType":"StructuredDocumentation","src":"2844:168:4","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":204,"implemented":true,"kind":"function","modifiers":[],"name":"_reentrancyGuardEntered","nameLocation":"3026:23:4","nodeType":"FunctionDefinition","parameters":{"id":195,"nodeType":"ParameterList","parameters":[],"src":"3049:2:4"},"returnParameters":{"id":198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":197,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":204,"src":"3075:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":196,"name":"bool","nodeType":"ElementaryTypeName","src":"3075:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3074:6:4"},"scope":205,"src":"3017:107:4","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":206,"src":"888:2238:4","usedErrors":[]}],"src":"112:3015:4"},"id":4},"@openzeppelin/contracts/token/ERC1155/ERC1155.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/ERC1155.sol","exportedSymbols":{"Address":[3180],"Context":[3210],"ERC1155":[1428],"ERC165":[3537],"IERC1155":[1550],"IERC1155MetadataURI":[1606],"IERC1155Receiver":[1591],"IERC165":[3549]},"id":1429,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":207,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"109:23:5"},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155.sol","file":"./IERC1155.sol","id":208,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1429,"sourceUnit":1551,"src":"134:24:5","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","file":"./IERC1155Receiver.sol","id":209,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1429,"sourceUnit":1592,"src":"159:32:5","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol","file":"./extensions/IERC1155MetadataURI.sol","id":210,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1429,"sourceUnit":1607,"src":"192:46:5","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":211,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1429,"sourceUnit":3181,"src":"239:33:5","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":212,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1429,"sourceUnit":3211,"src":"273:33:5","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../../utils/introspection/ERC165.sol","id":213,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1429,"sourceUnit":3538,"src":"307:46:5","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":215,"name":"Context","nameLocations":["590:7:5"],"nodeType":"IdentifierPath","referencedDeclaration":3210,"src":"590:7:5"},"id":216,"nodeType":"InheritanceSpecifier","src":"590:7:5"},{"baseName":{"id":217,"name":"ERC165","nameLocations":["599:6:5"],"nodeType":"IdentifierPath","referencedDeclaration":3537,"src":"599:6:5"},"id":218,"nodeType":"InheritanceSpecifier","src":"599:6:5"},{"baseName":{"id":219,"name":"IERC1155","nameLocations":["607:8:5"],"nodeType":"IdentifierPath","referencedDeclaration":1550,"src":"607:8:5"},"id":220,"nodeType":"InheritanceSpecifier","src":"607:8:5"},{"baseName":{"id":221,"name":"IERC1155MetadataURI","nameLocations":["617:19:5"],"nodeType":"IdentifierPath","referencedDeclaration":1606,"src":"617:19:5"},"id":222,"nodeType":"InheritanceSpecifier","src":"617:19:5"}],"canonicalName":"ERC1155","contractDependencies":[],"contractKind":"contract","documentation":{"id":214,"nodeType":"StructuredDocumentation","src":"355:214:5","text":" @dev Implementation of the basic standard multi-token.\n See https://eips.ethereum.org/EIPS/eip-1155\n Originally based on code by Enjin: https://github.com/enjin/erc-1155\n _Available since v3.1._"},"fullyImplemented":true,"id":1428,"linearizedBaseContracts":[1428,1606,1550,3537,3549,3210],"name":"ERC1155","nameLocation":"579:7:5","nodeType":"ContractDefinition","nodes":[{"global":false,"id":225,"libraryName":{"id":223,"name":"Address","nameLocations":["649:7:5"],"nodeType":"IdentifierPath","referencedDeclaration":3180,"src":"649:7:5"},"nodeType":"UsingForDirective","src":"643:26:5","typeName":{"id":224,"name":"address","nodeType":"ElementaryTypeName","src":"661:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},{"constant":false,"id":231,"mutability":"mutable","name":"_balances","nameLocation":"780:9:5","nodeType":"VariableDeclaration","scope":1428,"src":"724:65:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"},"typeName":{"id":230,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":226,"name":"uint256","nodeType":"ElementaryTypeName","src":"732:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"724:47:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":229,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":227,"name":"address","nodeType":"ElementaryTypeName","src":"751:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"743:27:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":228,"name":"uint256","nodeType":"ElementaryTypeName","src":"762:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":237,"mutability":"mutable","name":"_operatorApprovals","nameLocation":"899:18:5","nodeType":"VariableDeclaration","scope":1428,"src":"846:71:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"},"typeName":{"id":236,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":232,"name":"address","nodeType":"ElementaryTypeName","src":"854:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"846:44:5","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":235,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":233,"name":"address","nodeType":"ElementaryTypeName","src":"873:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"865:24:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":234,"name":"bool","nodeType":"ElementaryTypeName","src":"884:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}}},"visibility":"private"},{"constant":false,"id":239,"mutability":"mutable","name":"_uri","nameLocation":"1053:4:5","nodeType":"VariableDeclaration","scope":1428,"src":"1038:19:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":238,"name":"string","nodeType":"ElementaryTypeName","src":"1038:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":249,"nodeType":"Block","src":"1139:30:5","statements":[{"expression":{"arguments":[{"id":246,"name":"uri_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":242,"src":"1157:4:5","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":245,"name":"_setURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":761,"src":"1149:7:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1149:13:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":248,"nodeType":"ExpressionStatement","src":"1149:13:5"}]},"documentation":{"id":240,"nodeType":"StructuredDocumentation","src":"1064:38:5","text":" @dev See {_setURI}."},"id":250,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":242,"mutability":"mutable","name":"uri_","nameLocation":"1133:4:5","nodeType":"VariableDeclaration","scope":250,"src":"1119:18:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":241,"name":"string","nodeType":"ElementaryTypeName","src":"1119:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1118:20:5"},"returnParameters":{"id":244,"nodeType":"ParameterList","parameters":[],"src":"1139:0:5"},"scope":1428,"src":"1107:62:5","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[3536,3548],"body":{"id":280,"nodeType":"Block","src":"1344:197:5","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":261,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":253,"src":"1373:11:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":263,"name":"IERC1155","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1550,"src":"1393:8:5","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155_$1550_$","typeString":"type(contract IERC1155)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC1155_$1550_$","typeString":"type(contract IERC1155)"}],"id":262,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1388:4:5","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1388:14:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC1155_$1550","typeString":"type(contract IERC1155)"}},"id":265,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1403:11:5","memberName":"interfaceId","nodeType":"MemberAccess","src":"1388:26:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1373:41:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":267,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":253,"src":"1430:11:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":269,"name":"IERC1155MetadataURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1606,"src":"1450:19:5","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155MetadataURI_$1606_$","typeString":"type(contract IERC1155MetadataURI)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC1155MetadataURI_$1606_$","typeString":"type(contract IERC1155MetadataURI)"}],"id":268,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1445:4:5","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1445:25:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC1155MetadataURI_$1606","typeString":"type(contract IERC1155MetadataURI)"}},"id":271,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1471:11:5","memberName":"interfaceId","nodeType":"MemberAccess","src":"1445:37:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1430:52:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1373:109:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":276,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":253,"src":"1522:11:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":274,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1498:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC1155_$1428_$","typeString":"type(contract super ERC1155)"}},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1504:17:5","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":3536,"src":"1498:23:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1498:36:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1373:161:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":260,"id":279,"nodeType":"Return","src":"1354:180:5"}]},"documentation":{"id":251,"nodeType":"StructuredDocumentation","src":"1175:56:5","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":281,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1245:17:5","nodeType":"FunctionDefinition","overrides":{"id":257,"nodeType":"OverrideSpecifier","overrides":[{"id":255,"name":"ERC165","nameLocations":["1312:6:5"],"nodeType":"IdentifierPath","referencedDeclaration":3537,"src":"1312:6:5"},{"id":256,"name":"IERC165","nameLocations":["1320:7:5"],"nodeType":"IdentifierPath","referencedDeclaration":3549,"src":"1320:7:5"}],"src":"1303:25:5"},"parameters":{"id":254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":253,"mutability":"mutable","name":"interfaceId","nameLocation":"1270:11:5","nodeType":"VariableDeclaration","scope":281,"src":"1263:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":252,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1263:6:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1262:20:5"},"returnParameters":{"id":260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":259,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":281,"src":"1338:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":258,"name":"bool","nodeType":"ElementaryTypeName","src":"1338:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1337:6:5"},"scope":1428,"src":"1236:305:5","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1605],"body":{"id":292,"nodeType":"Block","src":"2015:28:5","statements":[{"expression":{"id":290,"name":"_uri","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":239,"src":"2032:4:5","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":289,"id":291,"nodeType":"Return","src":"2025:11:5"}]},"documentation":{"id":282,"nodeType":"StructuredDocumentation","src":"1547:388:5","text":" @dev See {IERC1155MetadataURI-uri}.\n This implementation returns the same URI for *all* token types. It relies\n on the token type ID substitution mechanism\n https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].\n Clients calling this function must replace the `\\{id\\}` substring with the\n actual token type ID."},"functionSelector":"0e89341c","id":293,"implemented":true,"kind":"function","modifiers":[],"name":"uri","nameLocation":"1949:3:5","nodeType":"FunctionDefinition","overrides":{"id":286,"nodeType":"OverrideSpecifier","overrides":[],"src":"1982:8:5"},"parameters":{"id":285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":284,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":293,"src":"1953:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":283,"name":"uint256","nodeType":"ElementaryTypeName","src":"1953:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1952:9:5"},"returnParameters":{"id":289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":288,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":293,"src":"2000:13:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":287,"name":"string","nodeType":"ElementaryTypeName","src":"2000:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1999:15:5"},"scope":1428,"src":"1940:103:5","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1488],"body":{"id":320,"nodeType":"Block","src":"2280:132:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":305,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":296,"src":"2298:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2317:1:5","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":307,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2309:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":306,"name":"address","nodeType":"ElementaryTypeName","src":"2309:7:5","typeDescriptions":{}}},"id":309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2309:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2298:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a2061646472657373207a65726f206973206e6f7420612076616c6964206f776e6572","id":311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2321:44:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad","typeString":"literal_string \"ERC1155: address zero is not a valid owner\""},"value":"ERC1155: address zero is not a valid owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad","typeString":"literal_string \"ERC1155: address zero is not a valid owner\""}],"id":304,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2290:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2290:76:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":313,"nodeType":"ExpressionStatement","src":"2290:76:5"},{"expression":{"baseExpression":{"baseExpression":{"id":314,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"2383:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":316,"indexExpression":{"id":315,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":298,"src":"2393:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2383:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":318,"indexExpression":{"id":317,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":296,"src":"2397:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2383:22:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":303,"id":319,"nodeType":"Return","src":"2376:29:5"}]},"documentation":{"id":294,"nodeType":"StructuredDocumentation","src":"2049:131:5","text":" @dev See {IERC1155-balanceOf}.\n Requirements:\n - `account` cannot be the zero address."},"functionSelector":"00fdd58e","id":321,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2194:9:5","nodeType":"FunctionDefinition","overrides":{"id":300,"nodeType":"OverrideSpecifier","overrides":[],"src":"2253:8:5"},"parameters":{"id":299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":296,"mutability":"mutable","name":"account","nameLocation":"2212:7:5","nodeType":"VariableDeclaration","scope":321,"src":"2204:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":295,"name":"address","nodeType":"ElementaryTypeName","src":"2204:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":298,"mutability":"mutable","name":"id","nameLocation":"2229:2:5","nodeType":"VariableDeclaration","scope":321,"src":"2221:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":297,"name":"uint256","nodeType":"ElementaryTypeName","src":"2221:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2203:29:5"},"returnParameters":{"id":303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":302,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":321,"src":"2271:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":301,"name":"uint256","nodeType":"ElementaryTypeName","src":"2271:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2270:9:5"},"scope":1428,"src":"2185:227:5","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1501],"body":{"id":384,"nodeType":"Block","src":"2720:335:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":336,"name":"accounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":325,"src":"2738:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2747:6:5","memberName":"length","nodeType":"MemberAccess","src":"2738:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":338,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":328,"src":"2757:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2761:6:5","memberName":"length","nodeType":"MemberAccess","src":"2757:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2738:29:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368","id":341,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2769:43:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5","typeString":"literal_string \"ERC1155: accounts and ids length mismatch\""},"value":"ERC1155: accounts and ids length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5","typeString":"literal_string \"ERC1155: accounts and ids length mismatch\""}],"id":335,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2730:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2730:83:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":343,"nodeType":"ExpressionStatement","src":"2730:83:5"},{"assignments":[348],"declarations":[{"constant":false,"id":348,"mutability":"mutable","name":"batchBalances","nameLocation":"2841:13:5","nodeType":"VariableDeclaration","scope":384,"src":"2824:30:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":346,"name":"uint256","nodeType":"ElementaryTypeName","src":"2824:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":347,"nodeType":"ArrayTypeName","src":"2824:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":355,"initialValue":{"arguments":[{"expression":{"id":352,"name":"accounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":325,"src":"2871:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2880:6:5","memberName":"length","nodeType":"MemberAccess","src":"2871:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":351,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2857:13:5","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":349,"name":"uint256","nodeType":"ElementaryTypeName","src":"2861:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":350,"nodeType":"ArrayTypeName","src":"2861:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2857:30:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"2824:63:5"},{"body":{"id":380,"nodeType":"Block","src":"2944:74:5","statements":[{"expression":{"id":378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":367,"name":"batchBalances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":348,"src":"2958:13:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":369,"indexExpression":{"id":368,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":357,"src":"2972:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2958:16:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":371,"name":"accounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":325,"src":"2987:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":373,"indexExpression":{"id":372,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":357,"src":"2996:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2987:11:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":374,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":328,"src":"3000:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":376,"indexExpression":{"id":375,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":357,"src":"3004:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3000:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":370,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":321,"src":"2977:9:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view returns (uint256)"}},"id":377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2977:30:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2958:49:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":379,"nodeType":"ExpressionStatement","src":"2958:49:5"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":360,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":357,"src":"2918:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":361,"name":"accounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":325,"src":"2922:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2931:6:5","memberName":"length","nodeType":"MemberAccess","src":"2922:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2918:19:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":381,"initializationExpression":{"assignments":[357],"declarations":[{"constant":false,"id":357,"mutability":"mutable","name":"i","nameLocation":"2911:1:5","nodeType":"VariableDeclaration","scope":381,"src":"2903:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":356,"name":"uint256","nodeType":"ElementaryTypeName","src":"2903:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":359,"initialValue":{"hexValue":"30","id":358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2915:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2903:13:5"},"loopExpression":{"expression":{"id":365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"2939:3:5","subExpression":{"id":364,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":357,"src":"2941:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":366,"nodeType":"ExpressionStatement","src":"2939:3:5"},"nodeType":"ForStatement","src":"2898:120:5"},{"expression":{"id":382,"name":"batchBalances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":348,"src":"3035:13:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"functionReturnParameters":334,"id":383,"nodeType":"Return","src":"3028:20:5"}]},"documentation":{"id":322,"nodeType":"StructuredDocumentation","src":"2418:146:5","text":" @dev See {IERC1155-balanceOfBatch}.\n Requirements:\n - `accounts` and `ids` must have the same length."},"functionSelector":"4e1273f4","id":385,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOfBatch","nameLocation":"2578:14:5","nodeType":"FunctionDefinition","overrides":{"id":330,"nodeType":"OverrideSpecifier","overrides":[],"src":"2684:8:5"},"parameters":{"id":329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":325,"mutability":"mutable","name":"accounts","nameLocation":"2619:8:5","nodeType":"VariableDeclaration","scope":385,"src":"2602:25:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":323,"name":"address","nodeType":"ElementaryTypeName","src":"2602:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":324,"nodeType":"ArrayTypeName","src":"2602:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":328,"mutability":"mutable","name":"ids","nameLocation":"2654:3:5","nodeType":"VariableDeclaration","scope":385,"src":"2637:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":326,"name":"uint256","nodeType":"ElementaryTypeName","src":"2637:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":327,"nodeType":"ArrayTypeName","src":"2637:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"2592:71:5"},"returnParameters":{"id":334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":333,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":385,"src":"2702:16:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":331,"name":"uint256","nodeType":"ElementaryTypeName","src":"2702:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":332,"nodeType":"ArrayTypeName","src":"2702:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"2701:18:5"},"scope":1428,"src":"2569:486:5","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1509],"body":{"id":401,"nodeType":"Block","src":"3207:69:5","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":395,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"3236:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3236:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":397,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"3250:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":398,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":390,"src":"3260:8:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":394,"name":"_setApprovalForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1233,"src":"3217:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,address,bool)"}},"id":399,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3217:52:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":400,"nodeType":"ExpressionStatement","src":"3217:52:5"}]},"documentation":{"id":386,"nodeType":"StructuredDocumentation","src":"3061:57:5","text":" @dev See {IERC1155-setApprovalForAll}."},"functionSelector":"a22cb465","id":402,"implemented":true,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"3132:17:5","nodeType":"FunctionDefinition","overrides":{"id":392,"nodeType":"OverrideSpecifier","overrides":[],"src":"3198:8:5"},"parameters":{"id":391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":388,"mutability":"mutable","name":"operator","nameLocation":"3158:8:5","nodeType":"VariableDeclaration","scope":402,"src":"3150:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":387,"name":"address","nodeType":"ElementaryTypeName","src":"3150:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":390,"mutability":"mutable","name":"approved","nameLocation":"3173:8:5","nodeType":"VariableDeclaration","scope":402,"src":"3168:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":389,"name":"bool","nodeType":"ElementaryTypeName","src":"3168:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3149:33:5"},"returnParameters":{"id":393,"nodeType":"ParameterList","parameters":[],"src":"3207:0:5"},"scope":1428,"src":"3123:153:5","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1519],"body":{"id":419,"nodeType":"Block","src":"3448:61:5","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":413,"name":"_operatorApprovals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"3465:18:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"}},"id":415,"indexExpression":{"id":414,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":405,"src":"3484:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3465:27:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":417,"indexExpression":{"id":416,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":407,"src":"3493:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3465:37:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":412,"id":418,"nodeType":"Return","src":"3458:44:5"}]},"documentation":{"id":403,"nodeType":"StructuredDocumentation","src":"3282:56:5","text":" @dev See {IERC1155-isApprovedForAll}."},"functionSelector":"e985e9c5","id":420,"implemented":true,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"3352:16:5","nodeType":"FunctionDefinition","overrides":{"id":409,"nodeType":"OverrideSpecifier","overrides":[],"src":"3424:8:5"},"parameters":{"id":408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":405,"mutability":"mutable","name":"account","nameLocation":"3377:7:5","nodeType":"VariableDeclaration","scope":420,"src":"3369:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":404,"name":"address","nodeType":"ElementaryTypeName","src":"3369:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":407,"mutability":"mutable","name":"operator","nameLocation":"3394:8:5","nodeType":"VariableDeclaration","scope":420,"src":"3386:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":406,"name":"address","nodeType":"ElementaryTypeName","src":"3386:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3368:35:5"},"returnParameters":{"id":412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":411,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":420,"src":"3442:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":410,"name":"bool","nodeType":"ElementaryTypeName","src":"3442:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3441:6:5"},"scope":1428,"src":"3343:166:5","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1533],"body":{"id":457,"nodeType":"Block","src":"3745:225:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":436,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"3776:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":437,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"3784:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3784:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3776:20:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":441,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"3817:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":442,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"3823:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3823:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":440,"name":"isApprovedForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":420,"src":"3800:16:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view returns (bool)"}},"id":444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3800:36:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3776:60:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e6572206f7220617070726f766564","id":446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3850:48:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156","typeString":"literal_string \"ERC1155: caller is not token owner or approved\""},"value":"ERC1155: caller is not token owner or approved"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156","typeString":"literal_string \"ERC1155: caller is not token owner or approved\""}],"id":435,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3755:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3755:153:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":448,"nodeType":"ExpressionStatement","src":"3755:153:5"},{"expression":{"arguments":[{"id":450,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"3936:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":451,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":425,"src":"3942:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":452,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":427,"src":"3946:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":453,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":429,"src":"3950:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":454,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":431,"src":"3958:4:5","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_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":449,"name":"_safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":615,"src":"3918:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,uint256,bytes memory)"}},"id":455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3918:45:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":456,"nodeType":"ExpressionStatement","src":"3918:45:5"}]},"documentation":{"id":421,"nodeType":"StructuredDocumentation","src":"3515:56:5","text":" @dev See {IERC1155-safeTransferFrom}."},"functionSelector":"f242432a","id":458,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"3585:16:5","nodeType":"FunctionDefinition","overrides":{"id":433,"nodeType":"OverrideSpecifier","overrides":[],"src":"3736:8:5"},"parameters":{"id":432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":423,"mutability":"mutable","name":"from","nameLocation":"3619:4:5","nodeType":"VariableDeclaration","scope":458,"src":"3611:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":422,"name":"address","nodeType":"ElementaryTypeName","src":"3611:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":425,"mutability":"mutable","name":"to","nameLocation":"3641:2:5","nodeType":"VariableDeclaration","scope":458,"src":"3633:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":424,"name":"address","nodeType":"ElementaryTypeName","src":"3633:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":427,"mutability":"mutable","name":"id","nameLocation":"3661:2:5","nodeType":"VariableDeclaration","scope":458,"src":"3653:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":426,"name":"uint256","nodeType":"ElementaryTypeName","src":"3653:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":429,"mutability":"mutable","name":"amount","nameLocation":"3681:6:5","nodeType":"VariableDeclaration","scope":458,"src":"3673:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":428,"name":"uint256","nodeType":"ElementaryTypeName","src":"3673:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":431,"mutability":"mutable","name":"data","nameLocation":"3710:4:5","nodeType":"VariableDeclaration","scope":458,"src":"3697:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":430,"name":"bytes","nodeType":"ElementaryTypeName","src":"3697:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3601:119:5"},"returnParameters":{"id":434,"nodeType":"ParameterList","parameters":[],"src":"3745:0:5"},"scope":1428,"src":"3576:394:5","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1549],"body":{"id":497,"nodeType":"Block","src":"4236:232:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":476,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"4267:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":477,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"4275:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4275:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4267:20:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":481,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"4308:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":482,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"4314:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4314:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":480,"name":"isApprovedForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":420,"src":"4291:16:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view returns (bool)"}},"id":484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4291:36:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4267:60:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e6572206f7220617070726f766564","id":486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4341:48:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156","typeString":"literal_string \"ERC1155: caller is not token owner or approved\""},"value":"ERC1155: caller is not token owner or approved"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156","typeString":"literal_string \"ERC1155: caller is not token owner or approved\""}],"id":475,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4246:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4246:153:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":488,"nodeType":"ExpressionStatement","src":"4246:153:5"},{"expression":{"arguments":[{"id":490,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":461,"src":"4432:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":491,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":463,"src":"4438:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":492,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":466,"src":"4442:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":493,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":469,"src":"4447:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":494,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":471,"src":"4456:4:5","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":489,"name":"_safeBatchTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":750,"src":"4409:22:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4409:52:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":496,"nodeType":"ExpressionStatement","src":"4409:52:5"}]},"documentation":{"id":459,"nodeType":"StructuredDocumentation","src":"3976:61:5","text":" @dev See {IERC1155-safeBatchTransferFrom}."},"functionSelector":"2eb2c2d6","id":498,"implemented":true,"kind":"function","modifiers":[],"name":"safeBatchTransferFrom","nameLocation":"4051:21:5","nodeType":"FunctionDefinition","overrides":{"id":473,"nodeType":"OverrideSpecifier","overrides":[],"src":"4227:8:5"},"parameters":{"id":472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":461,"mutability":"mutable","name":"from","nameLocation":"4090:4:5","nodeType":"VariableDeclaration","scope":498,"src":"4082:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":460,"name":"address","nodeType":"ElementaryTypeName","src":"4082:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":463,"mutability":"mutable","name":"to","nameLocation":"4112:2:5","nodeType":"VariableDeclaration","scope":498,"src":"4104:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":462,"name":"address","nodeType":"ElementaryTypeName","src":"4104:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":466,"mutability":"mutable","name":"ids","nameLocation":"4141:3:5","nodeType":"VariableDeclaration","scope":498,"src":"4124:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":464,"name":"uint256","nodeType":"ElementaryTypeName","src":"4124:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":465,"nodeType":"ArrayTypeName","src":"4124:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":469,"mutability":"mutable","name":"amounts","nameLocation":"4171:7:5","nodeType":"VariableDeclaration","scope":498,"src":"4154:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":467,"name":"uint256","nodeType":"ElementaryTypeName","src":"4154:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":468,"nodeType":"ArrayTypeName","src":"4154:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":471,"mutability":"mutable","name":"data","nameLocation":"4201:4:5","nodeType":"VariableDeclaration","scope":498,"src":"4188:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":470,"name":"bytes","nodeType":"ElementaryTypeName","src":"4188:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4072:139:5"},"returnParameters":{"id":474,"nodeType":"ParameterList","parameters":[],"src":"4236:0:5"},"scope":1428,"src":"4042:426:5","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":614,"nodeType":"Block","src":"5081:784:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":513,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"5099:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5113:1:5","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":515,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5105:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":514,"name":"address","nodeType":"ElementaryTypeName","src":"5105:7:5","typeDescriptions":{}}},"id":517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5105:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5099:16:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373","id":519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5117:39:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d","typeString":"literal_string \"ERC1155: transfer to the zero address\""},"value":"ERC1155: transfer to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d","typeString":"literal_string \"ERC1155: transfer to the zero address\""}],"id":512,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5091:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5091:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":521,"nodeType":"ExpressionStatement","src":"5091:66:5"},{"assignments":[523],"declarations":[{"constant":false,"id":523,"mutability":"mutable","name":"operator","nameLocation":"5176:8:5","nodeType":"VariableDeclaration","scope":614,"src":"5168:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":522,"name":"address","nodeType":"ElementaryTypeName","src":"5168:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":526,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":524,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"5187:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5187:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5168:31:5"},{"assignments":[531],"declarations":[{"constant":false,"id":531,"mutability":"mutable","name":"ids","nameLocation":"5226:3:5","nodeType":"VariableDeclaration","scope":614,"src":"5209:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":529,"name":"uint256","nodeType":"ElementaryTypeName","src":"5209:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":530,"nodeType":"ArrayTypeName","src":"5209:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":535,"initialValue":{"arguments":[{"id":533,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":505,"src":"5250:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":532,"name":"_asSingletonArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1427,"src":"5232:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"}},"id":534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5232:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"5209:44:5"},{"assignments":[540],"declarations":[{"constant":false,"id":540,"mutability":"mutable","name":"amounts","nameLocation":"5280:7:5","nodeType":"VariableDeclaration","scope":614,"src":"5263:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":538,"name":"uint256","nodeType":"ElementaryTypeName","src":"5263:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":539,"nodeType":"ArrayTypeName","src":"5263:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":544,"initialValue":{"arguments":[{"id":542,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":507,"src":"5308:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":541,"name":"_asSingletonArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1427,"src":"5290:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"}},"id":543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5290:25:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"5263:52:5"},{"expression":{"arguments":[{"id":546,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"5347:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":547,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"5357:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":548,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"5363:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":549,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"5367:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":550,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":540,"src":"5372:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":551,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":509,"src":"5381:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":545,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1252,"src":"5326:20:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5326:60:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":553,"nodeType":"ExpressionStatement","src":"5326:60:5"},{"assignments":[555],"declarations":[{"constant":false,"id":555,"mutability":"mutable","name":"fromBalance","nameLocation":"5405:11:5","nodeType":"VariableDeclaration","scope":614,"src":"5397:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":554,"name":"uint256","nodeType":"ElementaryTypeName","src":"5397:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":561,"initialValue":{"baseExpression":{"baseExpression":{"id":556,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"5419:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":558,"indexExpression":{"id":557,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":505,"src":"5429:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5419:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":560,"indexExpression":{"id":559,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"5433:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5419:19:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5397:41:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":563,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":555,"src":"5456:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":564,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":507,"src":"5471:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5456:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572","id":566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5479:44:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf","typeString":"literal_string \"ERC1155: insufficient balance for transfer\""},"value":"ERC1155: insufficient balance for transfer"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf","typeString":"literal_string \"ERC1155: insufficient balance for transfer\""}],"id":562,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5448:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5448:76:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":568,"nodeType":"ExpressionStatement","src":"5448:76:5"},{"id":579,"nodeType":"UncheckedBlock","src":"5534:77:5","statements":[{"expression":{"id":577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":569,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"5558:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":572,"indexExpression":{"id":570,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":505,"src":"5568:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5558:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":573,"indexExpression":{"id":571,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"5572:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5558:19:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":574,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":555,"src":"5580:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":575,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":507,"src":"5594:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5580:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5558:42:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":578,"nodeType":"ExpressionStatement","src":"5558:42:5"}]},{"expression":{"id":586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":580,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"5620:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":583,"indexExpression":{"id":581,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":505,"src":"5630:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5620:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":584,"indexExpression":{"id":582,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"5634:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5620:17:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":585,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":507,"src":"5641:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5620:27:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":587,"nodeType":"ExpressionStatement","src":"5620:27:5"},{"eventCall":{"arguments":[{"id":589,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"5678:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":590,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"5688:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":591,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"5694:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":592,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":505,"src":"5698:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":593,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":507,"src":"5702:6:5","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":588,"name":"TransferSingle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1447,"src":"5663:14:5","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":594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5663:46:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":595,"nodeType":"EmitStatement","src":"5658:51:5"},{"expression":{"arguments":[{"id":597,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"5740:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":598,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"5750:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":599,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"5756:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":600,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"5760:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":601,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":540,"src":"5765:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":602,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":509,"src":"5774:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":596,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1271,"src":"5720:19:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5720:59:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":604,"nodeType":"ExpressionStatement","src":"5720:59:5"},{"expression":{"arguments":[{"id":606,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"5821:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":607,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"5831:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":608,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"5837:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":609,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":505,"src":"5841:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":610,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":507,"src":"5845:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":611,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":509,"src":"5853:4:5","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_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":605,"name":"_doSafeTransferAcceptanceCheck","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"5790:30:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256,uint256,bytes memory)"}},"id":612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5790:68:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":613,"nodeType":"ExpressionStatement","src":"5790:68:5"}]},"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"4474:439:5","text":" @dev Transfers `amount` tokens of token type `id` from `from` to `to`.\n Emits a {TransferSingle} event.\n Requirements:\n - `to` cannot be the zero address.\n - `from` must have a balance of tokens of type `id` of at least `amount`.\n - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the\n acceptance magic value."},"id":615,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransferFrom","nameLocation":"4927:17:5","nodeType":"FunctionDefinition","parameters":{"id":510,"nodeType":"ParameterList","parameters":[{"constant":false,"id":501,"mutability":"mutable","name":"from","nameLocation":"4962:4:5","nodeType":"VariableDeclaration","scope":615,"src":"4954:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":500,"name":"address","nodeType":"ElementaryTypeName","src":"4954:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":503,"mutability":"mutable","name":"to","nameLocation":"4984:2:5","nodeType":"VariableDeclaration","scope":615,"src":"4976:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":502,"name":"address","nodeType":"ElementaryTypeName","src":"4976:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":505,"mutability":"mutable","name":"id","nameLocation":"5004:2:5","nodeType":"VariableDeclaration","scope":615,"src":"4996:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":504,"name":"uint256","nodeType":"ElementaryTypeName","src":"4996:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":507,"mutability":"mutable","name":"amount","nameLocation":"5024:6:5","nodeType":"VariableDeclaration","scope":615,"src":"5016:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":506,"name":"uint256","nodeType":"ElementaryTypeName","src":"5016:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":509,"mutability":"mutable","name":"data","nameLocation":"5053:4:5","nodeType":"VariableDeclaration","scope":615,"src":"5040:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":508,"name":"bytes","nodeType":"ElementaryTypeName","src":"5040:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4944:119:5"},"returnParameters":{"id":511,"nodeType":"ParameterList","parameters":[],"src":"5081:0:5"},"scope":1428,"src":"4918:947:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":749,"nodeType":"Block","src":"6399:927:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":632,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"6417:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6421:6:5","memberName":"length","nodeType":"MemberAccess","src":"6417:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":634,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"6431:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6439:6:5","memberName":"length","nodeType":"MemberAccess","src":"6431:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6417:28:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368","id":637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6447:42:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807","typeString":"literal_string \"ERC1155: ids and amounts length mismatch\""},"value":"ERC1155: ids and amounts length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807","typeString":"literal_string \"ERC1155: ids and amounts length mismatch\""}],"id":631,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6409:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6409:81:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":639,"nodeType":"ExpressionStatement","src":"6409:81:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":641,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":620,"src":"6508:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6522:1:5","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":643,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6514:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":642,"name":"address","nodeType":"ElementaryTypeName","src":"6514:7:5","typeDescriptions":{}}},"id":645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6514:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6508:16:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373","id":647,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6526:39:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d","typeString":"literal_string \"ERC1155: transfer to the zero address\""},"value":"ERC1155: transfer to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d","typeString":"literal_string \"ERC1155: transfer to the zero address\""}],"id":640,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6500:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6500:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":649,"nodeType":"ExpressionStatement","src":"6500:66:5"},{"assignments":[651],"declarations":[{"constant":false,"id":651,"mutability":"mutable","name":"operator","nameLocation":"6585:8:5","nodeType":"VariableDeclaration","scope":749,"src":"6577:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":650,"name":"address","nodeType":"ElementaryTypeName","src":"6577:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":654,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":652,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"6596:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6596:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6577:31:5"},{"expression":{"arguments":[{"id":656,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"6640:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":657,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"6650:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":658,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":620,"src":"6656:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":659,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"6660:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":660,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"6665:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":661,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"6674:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":655,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1252,"src":"6619:20:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6619:60:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":663,"nodeType":"ExpressionStatement","src":"6619:60:5"},{"body":{"id":721,"nodeType":"Block","src":"6731:370:5","statements":[{"assignments":[676],"declarations":[{"constant":false,"id":676,"mutability":"mutable","name":"id","nameLocation":"6753:2:5","nodeType":"VariableDeclaration","scope":721,"src":"6745:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":675,"name":"uint256","nodeType":"ElementaryTypeName","src":"6745:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":680,"initialValue":{"baseExpression":{"id":677,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"6758:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":679,"indexExpression":{"id":678,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"6762:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6758:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6745:19:5"},{"assignments":[682],"declarations":[{"constant":false,"id":682,"mutability":"mutable","name":"amount","nameLocation":"6786:6:5","nodeType":"VariableDeclaration","scope":721,"src":"6778:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":681,"name":"uint256","nodeType":"ElementaryTypeName","src":"6778:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":686,"initialValue":{"baseExpression":{"id":683,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"6795:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":685,"indexExpression":{"id":684,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"6803:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6795:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6778:27:5"},{"assignments":[688],"declarations":[{"constant":false,"id":688,"mutability":"mutable","name":"fromBalance","nameLocation":"6828:11:5","nodeType":"VariableDeclaration","scope":721,"src":"6820:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":687,"name":"uint256","nodeType":"ElementaryTypeName","src":"6820:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":694,"initialValue":{"baseExpression":{"baseExpression":{"id":689,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"6842:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":691,"indexExpression":{"id":690,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":676,"src":"6852:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6842:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":693,"indexExpression":{"id":692,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"6856:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6842:19:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6820:41:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":696,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":688,"src":"6883:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":697,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":682,"src":"6898:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6883:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572","id":699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6906:44:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf","typeString":"literal_string \"ERC1155: insufficient balance for transfer\""},"value":"ERC1155: insufficient balance for transfer"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf","typeString":"literal_string \"ERC1155: insufficient balance for transfer\""}],"id":695,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6875:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6875:76:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":701,"nodeType":"ExpressionStatement","src":"6875:76:5"},{"id":712,"nodeType":"UncheckedBlock","src":"6965:85:5","statements":[{"expression":{"id":710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":702,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"6993:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":705,"indexExpression":{"id":703,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":676,"src":"7003:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6993:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":706,"indexExpression":{"id":704,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"7007:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6993:19:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":707,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":688,"src":"7015:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":708,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":682,"src":"7029:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7015:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6993:42:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":711,"nodeType":"ExpressionStatement","src":"6993:42:5"}]},{"expression":{"id":719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":713,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"7063:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":716,"indexExpression":{"id":714,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":676,"src":"7073:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7063:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":717,"indexExpression":{"id":715,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":620,"src":"7077:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7063:17:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":718,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":682,"src":"7084:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7063:27:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":720,"nodeType":"ExpressionStatement","src":"7063:27:5"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":668,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"6710:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":669,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"6714:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6718:6:5","memberName":"length","nodeType":"MemberAccess","src":"6714:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6710:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":722,"initializationExpression":{"assignments":[665],"declarations":[{"constant":false,"id":665,"mutability":"mutable","name":"i","nameLocation":"6703:1:5","nodeType":"VariableDeclaration","scope":722,"src":"6695:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":664,"name":"uint256","nodeType":"ElementaryTypeName","src":"6695:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":667,"initialValue":{"hexValue":"30","id":666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6707:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6695:13:5"},"loopExpression":{"expression":{"id":673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6726:3:5","subExpression":{"id":672,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"6728:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":674,"nodeType":"ExpressionStatement","src":"6726:3:5"},"nodeType":"ForStatement","src":"6690:411:5"},{"eventCall":{"arguments":[{"id":724,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"7130:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":725,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"7140:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":726,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":620,"src":"7146:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":727,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"7150:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":728,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"7155:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}],"id":723,"name":"TransferBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1462,"src":"7116:13:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory)"}},"id":729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7116:47:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":730,"nodeType":"EmitStatement","src":"7111:52:5"},{"expression":{"arguments":[{"id":732,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"7194:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":733,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"7204:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":734,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":620,"src":"7210:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":735,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"7214:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":736,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"7219:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":737,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"7228:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":731,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1271,"src":"7174:19:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7174:59:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":739,"nodeType":"ExpressionStatement","src":"7174:59:5"},{"expression":{"arguments":[{"id":741,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"7280:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":742,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"7290:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":743,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":620,"src":"7296:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":744,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"7300:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":745,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"7305:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":746,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"7314:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":740,"name":"_doSafeBatchTransferAcceptanceCheck","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1399,"src":"7244:35:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7244:75:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":748,"nodeType":"ExpressionStatement","src":"7244:75:5"}]},"documentation":{"id":616,"nodeType":"StructuredDocumentation","src":"5871:335:5","text":" @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.\n Emits a {TransferBatch} event.\n Requirements:\n - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the\n acceptance magic value."},"id":750,"implemented":true,"kind":"function","modifiers":[],"name":"_safeBatchTransferFrom","nameLocation":"6220:22:5","nodeType":"FunctionDefinition","parameters":{"id":629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":618,"mutability":"mutable","name":"from","nameLocation":"6260:4:5","nodeType":"VariableDeclaration","scope":750,"src":"6252:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":617,"name":"address","nodeType":"ElementaryTypeName","src":"6252:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":620,"mutability":"mutable","name":"to","nameLocation":"6282:2:5","nodeType":"VariableDeclaration","scope":750,"src":"6274:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":619,"name":"address","nodeType":"ElementaryTypeName","src":"6274:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":623,"mutability":"mutable","name":"ids","nameLocation":"6311:3:5","nodeType":"VariableDeclaration","scope":750,"src":"6294:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":621,"name":"uint256","nodeType":"ElementaryTypeName","src":"6294:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":622,"nodeType":"ArrayTypeName","src":"6294:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":626,"mutability":"mutable","name":"amounts","nameLocation":"6341:7:5","nodeType":"VariableDeclaration","scope":750,"src":"6324:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":624,"name":"uint256","nodeType":"ElementaryTypeName","src":"6324:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":625,"nodeType":"ArrayTypeName","src":"6324:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":628,"mutability":"mutable","name":"data","nameLocation":"6371:4:5","nodeType":"VariableDeclaration","scope":750,"src":"6358:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":627,"name":"bytes","nodeType":"ElementaryTypeName","src":"6358:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6242:139:5"},"returnParameters":{"id":630,"nodeType":"ParameterList","parameters":[],"src":"6399:0:5"},"scope":1428,"src":"6211:1115:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":760,"nodeType":"Block","src":"8205:30:5","statements":[{"expression":{"id":758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":756,"name":"_uri","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":239,"src":"8215:4:5","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":757,"name":"newuri","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":753,"src":"8222:6:5","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"8215:13:5","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":759,"nodeType":"ExpressionStatement","src":"8215:13:5"}]},"documentation":{"id":751,"nodeType":"StructuredDocumentation","src":"7332:812:5","text":" @dev Sets a new URI for all token types, by relying on the token type ID\n substitution mechanism\n https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].\n By this mechanism, any occurrence of the `\\{id\\}` substring in either the\n URI or any of the amounts in the JSON file at said URI will be replaced by\n clients with the token type ID.\n For example, the `https://token-cdn-domain/\\{id\\}.json` URI would be\n interpreted by clients as\n `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`\n for token type ID 0x4cce0.\n See {uri}.\n Because these URIs cannot be meaningfully represented by the {URI} event,\n this function emits no events."},"id":761,"implemented":true,"kind":"function","modifiers":[],"name":"_setURI","nameLocation":"8158:7:5","nodeType":"FunctionDefinition","parameters":{"id":754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":753,"mutability":"mutable","name":"newuri","nameLocation":"8180:6:5","nodeType":"VariableDeclaration","scope":761,"src":"8166:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":752,"name":"string","nodeType":"ElementaryTypeName","src":"8166:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8165:22:5"},"returnParameters":{"id":755,"nodeType":"ParameterList","parameters":[],"src":"8205:0:5"},"scope":1428,"src":"8149:86:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":861,"nodeType":"Block","src":"8699:580:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":774,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":764,"src":"8717:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":777,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8731:1:5","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":776,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8723:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":775,"name":"address","nodeType":"ElementaryTypeName","src":"8723:7:5","typeDescriptions":{}}},"id":778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8723:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8717:16:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a206d696e7420746f20746865207a65726f2061646472657373","id":780,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8735:35:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2","typeString":"literal_string \"ERC1155: mint to the zero address\""},"value":"ERC1155: mint to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2","typeString":"literal_string \"ERC1155: mint to the zero address\""}],"id":773,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8709:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8709:62:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":782,"nodeType":"ExpressionStatement","src":"8709:62:5"},{"assignments":[784],"declarations":[{"constant":false,"id":784,"mutability":"mutable","name":"operator","nameLocation":"8790:8:5","nodeType":"VariableDeclaration","scope":861,"src":"8782:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":783,"name":"address","nodeType":"ElementaryTypeName","src":"8782:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":787,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":785,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"8801:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8801:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"8782:31:5"},{"assignments":[792],"declarations":[{"constant":false,"id":792,"mutability":"mutable","name":"ids","nameLocation":"8840:3:5","nodeType":"VariableDeclaration","scope":861,"src":"8823:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":790,"name":"uint256","nodeType":"ElementaryTypeName","src":"8823:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":791,"nodeType":"ArrayTypeName","src":"8823:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":796,"initialValue":{"arguments":[{"id":794,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"8864:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":793,"name":"_asSingletonArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1427,"src":"8846:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"}},"id":795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8846:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"8823:44:5"},{"assignments":[801],"declarations":[{"constant":false,"id":801,"mutability":"mutable","name":"amounts","nameLocation":"8894:7:5","nodeType":"VariableDeclaration","scope":861,"src":"8877:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":799,"name":"uint256","nodeType":"ElementaryTypeName","src":"8877:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":800,"nodeType":"ArrayTypeName","src":"8877:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":805,"initialValue":{"arguments":[{"id":803,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"8922:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":802,"name":"_asSingletonArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1427,"src":"8904:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"}},"id":804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8904:25:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"8877:52:5"},{"expression":{"arguments":[{"id":807,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":784,"src":"8961:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8979:1:5","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":809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8971:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":808,"name":"address","nodeType":"ElementaryTypeName","src":"8971:7:5","typeDescriptions":{}}},"id":811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8971:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":812,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":764,"src":"8983:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":813,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":792,"src":"8987:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":814,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":801,"src":"8992:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":815,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"9001:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":806,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1252,"src":"8940:20:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8940:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":817,"nodeType":"ExpressionStatement","src":"8940:66:5"},{"expression":{"id":824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":818,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"9017:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":821,"indexExpression":{"id":819,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"9027:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9017:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":822,"indexExpression":{"id":820,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":764,"src":"9031:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9017:17:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":823,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"9038:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9017:27:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":825,"nodeType":"ExpressionStatement","src":"9017:27:5"},{"eventCall":{"arguments":[{"id":827,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":784,"src":"9074:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9092:1:5","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":829,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9084:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":828,"name":"address","nodeType":"ElementaryTypeName","src":"9084:7:5","typeDescriptions":{}}},"id":831,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9084:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":832,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":764,"src":"9096:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":833,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"9100:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":834,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"9104:6:5","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":826,"name":"TransferSingle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1447,"src":"9059:14:5","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":835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9059:52:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":836,"nodeType":"EmitStatement","src":"9054:57:5"},{"expression":{"arguments":[{"id":838,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":784,"src":"9142:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9160:1:5","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":840,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9152:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":839,"name":"address","nodeType":"ElementaryTypeName","src":"9152:7:5","typeDescriptions":{}}},"id":842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9152:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":843,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":764,"src":"9164:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":844,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":792,"src":"9168:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":845,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":801,"src":"9173:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":846,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"9182:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":837,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1271,"src":"9122:19:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9122:65:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":848,"nodeType":"ExpressionStatement","src":"9122:65:5"},{"expression":{"arguments":[{"id":850,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":784,"src":"9229:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9247:1:5","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":852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9239:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":851,"name":"address","nodeType":"ElementaryTypeName","src":"9239:7:5","typeDescriptions":{}}},"id":854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9239:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":855,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":764,"src":"9251:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":856,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"9255:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":857,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"9259:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":858,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"9267:4:5","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_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":849,"name":"_doSafeTransferAcceptanceCheck","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"9198:30:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256,uint256,bytes memory)"}},"id":859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9198:74:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":860,"nodeType":"ExpressionStatement","src":"9198:74:5"}]},"documentation":{"id":762,"nodeType":"StructuredDocumentation","src":"8241:362:5","text":" @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.\n Emits a {TransferSingle} event.\n Requirements:\n - `to` cannot be the zero address.\n - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the\n acceptance magic value."},"id":862,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"8617:5:5","nodeType":"FunctionDefinition","parameters":{"id":771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":764,"mutability":"mutable","name":"to","nameLocation":"8631:2:5","nodeType":"VariableDeclaration","scope":862,"src":"8623:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":763,"name":"address","nodeType":"ElementaryTypeName","src":"8623:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":766,"mutability":"mutable","name":"id","nameLocation":"8643:2:5","nodeType":"VariableDeclaration","scope":862,"src":"8635:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":765,"name":"uint256","nodeType":"ElementaryTypeName","src":"8635:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":768,"mutability":"mutable","name":"amount","nameLocation":"8655:6:5","nodeType":"VariableDeclaration","scope":862,"src":"8647:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":767,"name":"uint256","nodeType":"ElementaryTypeName","src":"8647:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":770,"mutability":"mutable","name":"data","nameLocation":"8676:4:5","nodeType":"VariableDeclaration","scope":862,"src":"8663:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":769,"name":"bytes","nodeType":"ElementaryTypeName","src":"8663:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8622:59:5"},"returnParameters":{"id":772,"nodeType":"ParameterList","parameters":[],"src":"8699:0:5"},"scope":1428,"src":"8608:671:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":972,"nodeType":"Block","src":"9823:637:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":877,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"9841:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9855:1:5","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":879,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9847:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":878,"name":"address","nodeType":"ElementaryTypeName","src":"9847:7:5","typeDescriptions":{}}},"id":881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9847:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9841:16:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a206d696e7420746f20746865207a65726f2061646472657373","id":883,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9859:35:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2","typeString":"literal_string \"ERC1155: mint to the zero address\""},"value":"ERC1155: mint to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2","typeString":"literal_string \"ERC1155: mint to the zero address\""}],"id":876,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9833:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9833:62:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":885,"nodeType":"ExpressionStatement","src":"9833:62:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":887,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"9913:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9917:6:5","memberName":"length","nodeType":"MemberAccess","src":"9913:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":889,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"9927:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9935:6:5","memberName":"length","nodeType":"MemberAccess","src":"9927:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9913:28:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368","id":892,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9943:42:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807","typeString":"literal_string \"ERC1155: ids and amounts length mismatch\""},"value":"ERC1155: ids and amounts length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807","typeString":"literal_string \"ERC1155: ids and amounts length mismatch\""}],"id":886,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9905:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9905:81:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":894,"nodeType":"ExpressionStatement","src":"9905:81:5"},{"assignments":[896],"declarations":[{"constant":false,"id":896,"mutability":"mutable","name":"operator","nameLocation":"10005:8:5","nodeType":"VariableDeclaration","scope":972,"src":"9997:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":895,"name":"address","nodeType":"ElementaryTypeName","src":"9997:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":899,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":897,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"10016:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10016:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"9997:31:5"},{"expression":{"arguments":[{"id":901,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":896,"src":"10060:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10078:1:5","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":903,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10070:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":902,"name":"address","nodeType":"ElementaryTypeName","src":"10070:7:5","typeDescriptions":{}}},"id":905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10070:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":906,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"10082:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":907,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"10086:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":908,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"10091:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":909,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"10100:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":900,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1252,"src":"10039:20:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10039:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":911,"nodeType":"ExpressionStatement","src":"10039:66:5"},{"body":{"id":935,"nodeType":"Block","src":"10157:60:5","statements":[{"expression":{"id":933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":923,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"10171:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":928,"indexExpression":{"baseExpression":{"id":924,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"10181:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":926,"indexExpression":{"id":925,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":913,"src":"10185:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10181:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10171:17:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":929,"indexExpression":{"id":927,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"10189:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10171:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"baseExpression":{"id":930,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"10196:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":932,"indexExpression":{"id":931,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":913,"src":"10204:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10196:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10171:35:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":934,"nodeType":"ExpressionStatement","src":"10171:35:5"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":916,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":913,"src":"10136:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":917,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"10140:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10144:6:5","memberName":"length","nodeType":"MemberAccess","src":"10140:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10136:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":936,"initializationExpression":{"assignments":[913],"declarations":[{"constant":false,"id":913,"mutability":"mutable","name":"i","nameLocation":"10129:1:5","nodeType":"VariableDeclaration","scope":936,"src":"10121:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":912,"name":"uint256","nodeType":"ElementaryTypeName","src":"10121:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":915,"initialValue":{"hexValue":"30","id":914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10133:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10121:13:5"},"loopExpression":{"expression":{"id":921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"10152:3:5","subExpression":{"id":920,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":913,"src":"10152:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":922,"nodeType":"ExpressionStatement","src":"10152:3:5"},"nodeType":"ForStatement","src":"10116:101:5"},{"eventCall":{"arguments":[{"id":938,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":896,"src":"10246:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10264:1:5","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":940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10256:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":939,"name":"address","nodeType":"ElementaryTypeName","src":"10256:7:5","typeDescriptions":{}}},"id":942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10256:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":943,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"10268:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":944,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"10272:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":945,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"10277:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}],"id":937,"name":"TransferBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1462,"src":"10232:13:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory)"}},"id":946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10232:53:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":947,"nodeType":"EmitStatement","src":"10227:58:5"},{"expression":{"arguments":[{"id":949,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":896,"src":"10316:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10334:1:5","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":951,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10326:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":950,"name":"address","nodeType":"ElementaryTypeName","src":"10326:7:5","typeDescriptions":{}}},"id":953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10326:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":954,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"10338:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":955,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"10342:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":956,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"10347:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":957,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"10356:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":948,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1271,"src":"10296:19:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10296:65:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":959,"nodeType":"ExpressionStatement","src":"10296:65:5"},{"expression":{"arguments":[{"id":961,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":896,"src":"10408:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10426:1:5","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":963,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10418:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":962,"name":"address","nodeType":"ElementaryTypeName","src":"10418:7:5","typeDescriptions":{}}},"id":965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10418:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":966,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"10430:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":967,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"10434:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":968,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"10439:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":969,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"10448:4:5","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_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":960,"name":"_doSafeBatchTransferAcceptanceCheck","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1399,"src":"10372:35:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":970,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10372:81:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":971,"nodeType":"ExpressionStatement","src":"10372:81:5"}]},"documentation":{"id":863,"nodeType":"StructuredDocumentation","src":"9285:379:5","text":" @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.\n Emits a {TransferBatch} event.\n Requirements:\n - `ids` and `amounts` must have the same length.\n - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the\n acceptance magic value."},"id":973,"implemented":true,"kind":"function","modifiers":[],"name":"_mintBatch","nameLocation":"9678:10:5","nodeType":"FunctionDefinition","parameters":{"id":874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":865,"mutability":"mutable","name":"to","nameLocation":"9706:2:5","nodeType":"VariableDeclaration","scope":973,"src":"9698:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":864,"name":"address","nodeType":"ElementaryTypeName","src":"9698:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":868,"mutability":"mutable","name":"ids","nameLocation":"9735:3:5","nodeType":"VariableDeclaration","scope":973,"src":"9718:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":866,"name":"uint256","nodeType":"ElementaryTypeName","src":"9718:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":867,"nodeType":"ArrayTypeName","src":"9718:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":871,"mutability":"mutable","name":"amounts","nameLocation":"9765:7:5","nodeType":"VariableDeclaration","scope":973,"src":"9748:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":869,"name":"uint256","nodeType":"ElementaryTypeName","src":"9748:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":870,"nodeType":"ArrayTypeName","src":"9748:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":873,"mutability":"mutable","name":"data","nameLocation":"9795:4:5","nodeType":"VariableDeclaration","scope":973,"src":"9782:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":872,"name":"bytes","nodeType":"ElementaryTypeName","src":"9782:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9688:117:5"},"returnParameters":{"id":875,"nodeType":"ParameterList","parameters":[],"src":"9823:0:5"},"scope":1428,"src":"9669:791:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1077,"nodeType":"Block","src":"10820:682:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":984,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"10838:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10854:1:5","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":986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10846:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":985,"name":"address","nodeType":"ElementaryTypeName","src":"10846:7:5","typeDescriptions":{}}},"id":988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10846:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10838:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373","id":990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10858:37:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_87fd4aee52f5758d127cd9704d5ffef70f36ed1e87eb99b6f40e37a25c79a76a","typeString":"literal_string \"ERC1155: burn from the zero address\""},"value":"ERC1155: burn from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_87fd4aee52f5758d127cd9704d5ffef70f36ed1e87eb99b6f40e37a25c79a76a","typeString":"literal_string \"ERC1155: burn from the zero address\""}],"id":983,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10830:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10830:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":992,"nodeType":"ExpressionStatement","src":"10830:66:5"},{"assignments":[994],"declarations":[{"constant":false,"id":994,"mutability":"mutable","name":"operator","nameLocation":"10915:8:5","nodeType":"VariableDeclaration","scope":1077,"src":"10907:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":993,"name":"address","nodeType":"ElementaryTypeName","src":"10907:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":997,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":995,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"10926:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10926:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"10907:31:5"},{"assignments":[1002],"declarations":[{"constant":false,"id":1002,"mutability":"mutable","name":"ids","nameLocation":"10965:3:5","nodeType":"VariableDeclaration","scope":1077,"src":"10948:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1000,"name":"uint256","nodeType":"ElementaryTypeName","src":"10948:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1001,"nodeType":"ArrayTypeName","src":"10948:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":1006,"initialValue":{"arguments":[{"id":1004,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"10989:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1003,"name":"_asSingletonArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1427,"src":"10971:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"}},"id":1005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10971:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"10948:44:5"},{"assignments":[1011],"declarations":[{"constant":false,"id":1011,"mutability":"mutable","name":"amounts","nameLocation":"11019:7:5","nodeType":"VariableDeclaration","scope":1077,"src":"11002:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1009,"name":"uint256","nodeType":"ElementaryTypeName","src":"11002:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1010,"nodeType":"ArrayTypeName","src":"11002:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":1015,"initialValue":{"arguments":[{"id":1013,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"11047:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1012,"name":"_asSingletonArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1427,"src":"11029:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"}},"id":1014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11029:25:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"11002:52:5"},{"expression":{"arguments":[{"id":1017,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":994,"src":"11086:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1018,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"11096:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11110:1:5","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":1020,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11102:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1019,"name":"address","nodeType":"ElementaryTypeName","src":"11102:7:5","typeDescriptions":{}}},"id":1022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11102:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1023,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1002,"src":"11114:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1024,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1011,"src":"11119:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"hexValue":"","id":1025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11128:2:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":1016,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1252,"src":"11065:20:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":1026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11065:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1027,"nodeType":"ExpressionStatement","src":"11065:66:5"},{"assignments":[1029],"declarations":[{"constant":false,"id":1029,"mutability":"mutable","name":"fromBalance","nameLocation":"11150:11:5","nodeType":"VariableDeclaration","scope":1077,"src":"11142:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1028,"name":"uint256","nodeType":"ElementaryTypeName","src":"11142:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1035,"initialValue":{"baseExpression":{"baseExpression":{"id":1030,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"11164:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":1032,"indexExpression":{"id":1031,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"11174:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11164:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1034,"indexExpression":{"id":1033,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"11178:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11164:19:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11142:41:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1037,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1029,"src":"11201:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1038,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"11216:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11201:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365","id":1040,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11224:38:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_294a5de01910e2350ff231c633ae2d453ed6b1b72c75506234b7aace63eae685","typeString":"literal_string \"ERC1155: burn amount exceeds balance\""},"value":"ERC1155: burn amount exceeds balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_294a5de01910e2350ff231c633ae2d453ed6b1b72c75506234b7aace63eae685","typeString":"literal_string \"ERC1155: burn amount exceeds balance\""}],"id":1036,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11193:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11193:70:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1042,"nodeType":"ExpressionStatement","src":"11193:70:5"},{"id":1053,"nodeType":"UncheckedBlock","src":"11273:77:5","statements":[{"expression":{"id":1051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":1043,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"11297:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":1046,"indexExpression":{"id":1044,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"11307:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11297:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1047,"indexExpression":{"id":1045,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"11311:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11297:19:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1048,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1029,"src":"11319:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1049,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"11333:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11319:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11297:42:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1052,"nodeType":"ExpressionStatement","src":"11297:42:5"}]},{"eventCall":{"arguments":[{"id":1055,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":994,"src":"11380:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1056,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"11390:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1059,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11404:1:5","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":1058,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11396:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1057,"name":"address","nodeType":"ElementaryTypeName","src":"11396:7:5","typeDescriptions":{}}},"id":1060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11396:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1061,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"11408:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1062,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"11412:6:5","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":1054,"name":"TransferSingle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1447,"src":"11365:14:5","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":1063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11365:54:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1064,"nodeType":"EmitStatement","src":"11360:59:5"},{"expression":{"arguments":[{"id":1066,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":994,"src":"11450:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1067,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"11460:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11474:1:5","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":1069,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11466:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1068,"name":"address","nodeType":"ElementaryTypeName","src":"11466:7:5","typeDescriptions":{}}},"id":1071,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11466:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1072,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1002,"src":"11478:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1073,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1011,"src":"11483:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"hexValue":"","id":1074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11492:2:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":1065,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1271,"src":"11430:19:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":1075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11430:65:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1076,"nodeType":"ExpressionStatement","src":"11430:65:5"}]},"documentation":{"id":974,"nodeType":"StructuredDocumentation","src":"10466:275:5","text":" @dev Destroys `amount` tokens of token type `id` from `from`\n Emits a {TransferSingle} event.\n Requirements:\n - `from` cannot be the zero address.\n - `from` must have at least `amount` tokens of token type `id`."},"id":1078,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"10755:5:5","nodeType":"FunctionDefinition","parameters":{"id":981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":976,"mutability":"mutable","name":"from","nameLocation":"10769:4:5","nodeType":"VariableDeclaration","scope":1078,"src":"10761:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":975,"name":"address","nodeType":"ElementaryTypeName","src":"10761:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":978,"mutability":"mutable","name":"id","nameLocation":"10783:2:5","nodeType":"VariableDeclaration","scope":1078,"src":"10775:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":977,"name":"uint256","nodeType":"ElementaryTypeName","src":"10775:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":980,"mutability":"mutable","name":"amount","nameLocation":"10795:6:5","nodeType":"VariableDeclaration","scope":1078,"src":"10787:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":979,"name":"uint256","nodeType":"ElementaryTypeName","src":"10787:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10760:42:5"},"returnParameters":{"id":982,"nodeType":"ParameterList","parameters":[],"src":"10820:0:5"},"scope":1428,"src":"10746:756:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1200,"nodeType":"Block","src":"11840:814:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1091,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"11858:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11874:1:5","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":1093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11866:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1092,"name":"address","nodeType":"ElementaryTypeName","src":"11866:7:5","typeDescriptions":{}}},"id":1095,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11866:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11858:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373","id":1097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11878:37:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_87fd4aee52f5758d127cd9704d5ffef70f36ed1e87eb99b6f40e37a25c79a76a","typeString":"literal_string \"ERC1155: burn from the zero address\""},"value":"ERC1155: burn from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_87fd4aee52f5758d127cd9704d5ffef70f36ed1e87eb99b6f40e37a25c79a76a","typeString":"literal_string \"ERC1155: burn from the zero address\""}],"id":1090,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11850:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1098,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11850:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1099,"nodeType":"ExpressionStatement","src":"11850:66:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1101,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1084,"src":"11934:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11938:6:5","memberName":"length","nodeType":"MemberAccess","src":"11934:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":1103,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"11948:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11956:6:5","memberName":"length","nodeType":"MemberAccess","src":"11948:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11934:28:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368","id":1106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11964:42:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807","typeString":"literal_string \"ERC1155: ids and amounts length mismatch\""},"value":"ERC1155: ids and amounts length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807","typeString":"literal_string \"ERC1155: ids and amounts length mismatch\""}],"id":1100,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11926:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11926:81:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1108,"nodeType":"ExpressionStatement","src":"11926:81:5"},{"assignments":[1110],"declarations":[{"constant":false,"id":1110,"mutability":"mutable","name":"operator","nameLocation":"12026:8:5","nodeType":"VariableDeclaration","scope":1200,"src":"12018:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1109,"name":"address","nodeType":"ElementaryTypeName","src":"12018:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1113,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1111,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"12037:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12037:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"12018:31:5"},{"expression":{"arguments":[{"id":1115,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1110,"src":"12081:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1116,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"12091:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12105:1:5","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":1118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12097:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1117,"name":"address","nodeType":"ElementaryTypeName","src":"12097:7:5","typeDescriptions":{}}},"id":1120,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12097:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1121,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1084,"src":"12109:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1122,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"12114:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"hexValue":"","id":1123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12123:2:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":1114,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1252,"src":"12060:20:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":1124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12060:66:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1125,"nodeType":"ExpressionStatement","src":"12060:66:5"},{"body":{"id":1175,"nodeType":"Block","src":"12178:323:5","statements":[{"assignments":[1138],"declarations":[{"constant":false,"id":1138,"mutability":"mutable","name":"id","nameLocation":"12200:2:5","nodeType":"VariableDeclaration","scope":1175,"src":"12192:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1137,"name":"uint256","nodeType":"ElementaryTypeName","src":"12192:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1142,"initialValue":{"baseExpression":{"id":1139,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1084,"src":"12205:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1141,"indexExpression":{"id":1140,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1127,"src":"12209:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12205:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12192:19:5"},{"assignments":[1144],"declarations":[{"constant":false,"id":1144,"mutability":"mutable","name":"amount","nameLocation":"12233:6:5","nodeType":"VariableDeclaration","scope":1175,"src":"12225:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1143,"name":"uint256","nodeType":"ElementaryTypeName","src":"12225:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1148,"initialValue":{"baseExpression":{"id":1145,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"12242:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1147,"indexExpression":{"id":1146,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1127,"src":"12250:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12242:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12225:27:5"},{"assignments":[1150],"declarations":[{"constant":false,"id":1150,"mutability":"mutable","name":"fromBalance","nameLocation":"12275:11:5","nodeType":"VariableDeclaration","scope":1175,"src":"12267:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1149,"name":"uint256","nodeType":"ElementaryTypeName","src":"12267:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1156,"initialValue":{"baseExpression":{"baseExpression":{"id":1151,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"12289:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":1153,"indexExpression":{"id":1152,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1138,"src":"12299:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12289:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1155,"indexExpression":{"id":1154,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"12303:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12289:19:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12267:41:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1158,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"12330:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1159,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1144,"src":"12345:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12330:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365","id":1161,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12353:38:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_294a5de01910e2350ff231c633ae2d453ed6b1b72c75506234b7aace63eae685","typeString":"literal_string \"ERC1155: burn amount exceeds balance\""},"value":"ERC1155: burn amount exceeds balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_294a5de01910e2350ff231c633ae2d453ed6b1b72c75506234b7aace63eae685","typeString":"literal_string \"ERC1155: burn amount exceeds balance\""}],"id":1157,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12322:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12322:70:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1163,"nodeType":"ExpressionStatement","src":"12322:70:5"},{"id":1174,"nodeType":"UncheckedBlock","src":"12406:85:5","statements":[{"expression":{"id":1172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":1164,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"12434:9:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(uint256 => mapping(address => uint256))"}},"id":1167,"indexExpression":{"id":1165,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1138,"src":"12444:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12434:13:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1168,"indexExpression":{"id":1166,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"12448:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12434:19:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1169,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"12456:11:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1170,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1144,"src":"12470:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12456:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12434:42:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1173,"nodeType":"ExpressionStatement","src":"12434:42:5"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1130,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1127,"src":"12157:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1131,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1084,"src":"12161:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12165:6:5","memberName":"length","nodeType":"MemberAccess","src":"12161:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12157:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1176,"initializationExpression":{"assignments":[1127],"declarations":[{"constant":false,"id":1127,"mutability":"mutable","name":"i","nameLocation":"12150:1:5","nodeType":"VariableDeclaration","scope":1176,"src":"12142:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1126,"name":"uint256","nodeType":"ElementaryTypeName","src":"12142:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1129,"initialValue":{"hexValue":"30","id":1128,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12154:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"12142:13:5"},"loopExpression":{"expression":{"id":1135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"12173:3:5","subExpression":{"id":1134,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1127,"src":"12173:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1136,"nodeType":"ExpressionStatement","src":"12173:3:5"},"nodeType":"ForStatement","src":"12137:364:5"},{"eventCall":{"arguments":[{"id":1178,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1110,"src":"12530:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1179,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"12540:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12554:1:5","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":1181,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12546:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1180,"name":"address","nodeType":"ElementaryTypeName","src":"12546:7:5","typeDescriptions":{}}},"id":1183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12546:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1184,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1084,"src":"12558:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1185,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"12563:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}],"id":1177,"name":"TransferBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1462,"src":"12516:13:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory)"}},"id":1186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12516:55:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1187,"nodeType":"EmitStatement","src":"12511:60:5"},{"expression":{"arguments":[{"id":1189,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1110,"src":"12602:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1190,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1081,"src":"12612:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12626:1:5","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":1192,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12618:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1191,"name":"address","nodeType":"ElementaryTypeName","src":"12618:7:5","typeDescriptions":{}}},"id":1194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12618:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1195,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1084,"src":"12630:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1196,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"12635:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"hexValue":"","id":1197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12644:2:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":1188,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1271,"src":"12582:19:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256[] memory,uint256[] memory,bytes memory)"}},"id":1198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12582:65:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1199,"nodeType":"ExpressionStatement","src":"12582:65:5"}]},"documentation":{"id":1079,"nodeType":"StructuredDocumentation","src":"11508:228:5","text":" @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.\n Emits a {TransferBatch} event.\n Requirements:\n - `ids` and `amounts` must have the same length."},"id":1201,"implemented":true,"kind":"function","modifiers":[],"name":"_burnBatch","nameLocation":"11750:10:5","nodeType":"FunctionDefinition","parameters":{"id":1088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1081,"mutability":"mutable","name":"from","nameLocation":"11769:4:5","nodeType":"VariableDeclaration","scope":1201,"src":"11761:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1080,"name":"address","nodeType":"ElementaryTypeName","src":"11761:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1084,"mutability":"mutable","name":"ids","nameLocation":"11792:3:5","nodeType":"VariableDeclaration","scope":1201,"src":"11775:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1082,"name":"uint256","nodeType":"ElementaryTypeName","src":"11775:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1083,"nodeType":"ArrayTypeName","src":"11775:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1087,"mutability":"mutable","name":"amounts","nameLocation":"11814:7:5","nodeType":"VariableDeclaration","scope":1201,"src":"11797:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1085,"name":"uint256","nodeType":"ElementaryTypeName","src":"11797:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1086,"nodeType":"ArrayTypeName","src":"11797:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"11760:62:5"},"returnParameters":{"id":1089,"nodeType":"ParameterList","parameters":[],"src":"11840:0:5"},"scope":1428,"src":"11741:913:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1232,"nodeType":"Block","src":"12883:200:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1212,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1204,"src":"12901:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1213,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"12910:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12901:17:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66","id":1215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12920:43:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2","typeString":"literal_string \"ERC1155: setting approval status for self\""},"value":"ERC1155: setting approval status for self"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2","typeString":"literal_string \"ERC1155: setting approval status for self\""}],"id":1211,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12893:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12893:71:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1217,"nodeType":"ExpressionStatement","src":"12893:71:5"},{"expression":{"id":1224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":1218,"name":"_operatorApprovals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"12974:18:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"}},"id":1221,"indexExpression":{"id":1219,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1204,"src":"12993:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12974:25:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1222,"indexExpression":{"id":1220,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"13000:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12974:35:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1223,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1208,"src":"13012:8:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12974:46:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1225,"nodeType":"ExpressionStatement","src":"12974:46:5"},{"eventCall":{"arguments":[{"id":1227,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1204,"src":"13050:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1228,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1206,"src":"13057:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1229,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1208,"src":"13067:8:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":1226,"name":"ApprovalForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1471,"src":"13035:14:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,address,bool)"}},"id":1230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13035:41:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1231,"nodeType":"EmitStatement","src":"13030:46:5"}]},"documentation":{"id":1202,"nodeType":"StructuredDocumentation","src":"12660:125:5","text":" @dev Approve `operator` to operate on all of `owner` tokens\n Emits an {ApprovalForAll} event."},"id":1233,"implemented":true,"kind":"function","modifiers":[],"name":"_setApprovalForAll","nameLocation":"12799:18:5","nodeType":"FunctionDefinition","parameters":{"id":1209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1204,"mutability":"mutable","name":"owner","nameLocation":"12826:5:5","nodeType":"VariableDeclaration","scope":1233,"src":"12818:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1203,"name":"address","nodeType":"ElementaryTypeName","src":"12818:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1206,"mutability":"mutable","name":"operator","nameLocation":"12841:8:5","nodeType":"VariableDeclaration","scope":1233,"src":"12833:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1205,"name":"address","nodeType":"ElementaryTypeName","src":"12833:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1208,"mutability":"mutable","name":"approved","nameLocation":"12856:8:5","nodeType":"VariableDeclaration","scope":1233,"src":"12851:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1207,"name":"bool","nodeType":"ElementaryTypeName","src":"12851:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12817:48:5"},"returnParameters":{"id":1210,"nodeType":"ParameterList","parameters":[],"src":"12883:0:5"},"scope":1428,"src":"12790:293:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1251,"nodeType":"Block","src":"14231:2:5","statements":[]},"documentation":{"id":1234,"nodeType":"StructuredDocumentation","src":"13089:925:5","text":" @dev Hook that is called before any token transfer. This includes minting\n and burning, as well as batched variants.\n The same hook is called on both single and batched variants. For single\n transfers, the length of the `ids` and `amounts` arrays will be 1.\n Calling conditions (for each `id` and `amount` pair):\n - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n of token type `id` will be  transferred to `to`.\n - When `from` is zero, `amount` tokens of token type `id` will be minted\n for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens of token type `id`\n will be burned.\n - `from` and `to` are never both zero.\n - `ids` and `amounts` have the same, non-zero length.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":1252,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeTokenTransfer","nameLocation":"14028:20:5","nodeType":"FunctionDefinition","parameters":{"id":1249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1236,"mutability":"mutable","name":"operator","nameLocation":"14066:8:5","nodeType":"VariableDeclaration","scope":1252,"src":"14058:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1235,"name":"address","nodeType":"ElementaryTypeName","src":"14058:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1238,"mutability":"mutable","name":"from","nameLocation":"14092:4:5","nodeType":"VariableDeclaration","scope":1252,"src":"14084:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1237,"name":"address","nodeType":"ElementaryTypeName","src":"14084:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1240,"mutability":"mutable","name":"to","nameLocation":"14114:2:5","nodeType":"VariableDeclaration","scope":1252,"src":"14106:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1239,"name":"address","nodeType":"ElementaryTypeName","src":"14106:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1243,"mutability":"mutable","name":"ids","nameLocation":"14143:3:5","nodeType":"VariableDeclaration","scope":1252,"src":"14126:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1241,"name":"uint256","nodeType":"ElementaryTypeName","src":"14126:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1242,"nodeType":"ArrayTypeName","src":"14126:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1246,"mutability":"mutable","name":"amounts","nameLocation":"14173:7:5","nodeType":"VariableDeclaration","scope":1252,"src":"14156:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1244,"name":"uint256","nodeType":"ElementaryTypeName","src":"14156:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1245,"nodeType":"ArrayTypeName","src":"14156:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1248,"mutability":"mutable","name":"data","nameLocation":"14203:4:5","nodeType":"VariableDeclaration","scope":1252,"src":"14190:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1247,"name":"bytes","nodeType":"ElementaryTypeName","src":"14190:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14048:165:5"},"returnParameters":{"id":1250,"nodeType":"ParameterList","parameters":[],"src":"14231:0:5"},"scope":1428,"src":"14019:214:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1270,"nodeType":"Block","src":"15377:2:5","statements":[]},"documentation":{"id":1253,"nodeType":"StructuredDocumentation","src":"14239:922:5","text":" @dev Hook that is called after any token transfer. This includes minting\n and burning, as well as batched variants.\n The same hook is called on both single and batched variants. For single\n transfers, the length of the `id` and `amount` arrays will be 1.\n Calling conditions (for each `id` and `amount` pair):\n - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n of token type `id` will be  transferred to `to`.\n - When `from` is zero, `amount` tokens of token type `id` will be minted\n for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens of token type `id`\n will be burned.\n - `from` and `to` are never both zero.\n - `ids` and `amounts` have the same, non-zero length.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":1271,"implemented":true,"kind":"function","modifiers":[],"name":"_afterTokenTransfer","nameLocation":"15175:19:5","nodeType":"FunctionDefinition","parameters":{"id":1268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1255,"mutability":"mutable","name":"operator","nameLocation":"15212:8:5","nodeType":"VariableDeclaration","scope":1271,"src":"15204:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1254,"name":"address","nodeType":"ElementaryTypeName","src":"15204:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1257,"mutability":"mutable","name":"from","nameLocation":"15238:4:5","nodeType":"VariableDeclaration","scope":1271,"src":"15230:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1256,"name":"address","nodeType":"ElementaryTypeName","src":"15230:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1259,"mutability":"mutable","name":"to","nameLocation":"15260:2:5","nodeType":"VariableDeclaration","scope":1271,"src":"15252:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1258,"name":"address","nodeType":"ElementaryTypeName","src":"15252:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1262,"mutability":"mutable","name":"ids","nameLocation":"15289:3:5","nodeType":"VariableDeclaration","scope":1271,"src":"15272:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1260,"name":"uint256","nodeType":"ElementaryTypeName","src":"15272:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1261,"nodeType":"ArrayTypeName","src":"15272:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1265,"mutability":"mutable","name":"amounts","nameLocation":"15319:7:5","nodeType":"VariableDeclaration","scope":1271,"src":"15302:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1263,"name":"uint256","nodeType":"ElementaryTypeName","src":"15302:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1264,"nodeType":"ArrayTypeName","src":"15302:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1267,"mutability":"mutable","name":"data","nameLocation":"15349:4:5","nodeType":"VariableDeclaration","scope":1271,"src":"15336:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1266,"name":"bytes","nodeType":"ElementaryTypeName","src":"15336:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15194:165:5"},"returnParameters":{"id":1269,"nodeType":"ParameterList","parameters":[],"src":"15377:0:5"},"scope":1428,"src":"15166:213:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1333,"nodeType":"Block","src":"15578:532:5","statements":[{"condition":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1286,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1277,"src":"15592:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15595:10:5","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":2868,"src":"15592:13:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$attached_to$_t_address_$","typeString":"function (address) view returns (bool)"}},"id":1288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15592:15:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1332,"nodeType":"IfStatement","src":"15588:516:5","trueBody":{"id":1331,"nodeType":"Block","src":"15609:495:5","statements":[{"clauses":[{"block":{"id":1313,"nodeType":"Block","src":"15726:184:5","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":1306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1302,"name":"response","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1300,"src":"15748:8:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":1303,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"15760:16:5","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$1591_$","typeString":"type(contract IERC1155Receiver)"}},"id":1304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15777:17:5","memberName":"onERC1155Received","nodeType":"MemberAccess","referencedDeclaration":1572,"src":"15760:34:5","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function IERC1155Receiver.onERC1155Received(address,address,uint256,uint256,bytes calldata) returns (bytes4)"}},"id":1305,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15795:8:5","memberName":"selector","nodeType":"MemberAccess","src":"15760:43:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"15748:55:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1312,"nodeType":"IfStatement","src":"15744:152:5","trueBody":{"id":1311,"nodeType":"Block","src":"15805:91:5","statements":[{"expression":{"arguments":[{"hexValue":"455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73","id":1308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15834:42:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503","typeString":"literal_string \"ERC1155: ERC1155Receiver rejected tokens\""},"value":"ERC1155: ERC1155Receiver rejected tokens"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503","typeString":"literal_string \"ERC1155: ERC1155Receiver rejected tokens\""}],"id":1307,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"15827:6:5","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15827:50:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1310,"nodeType":"ExpressionStatement","src":"15827:50:5"}]}}]},"errorName":"","id":1314,"nodeType":"TryCatchClause","parameters":{"id":1301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1300,"mutability":"mutable","name":"response","nameLocation":"15716:8:5","nodeType":"VariableDeclaration","scope":1314,"src":"15709:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1299,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15709:6:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"15708:17:5"},"src":"15700:210:5"},{"block":{"id":1322,"nodeType":"Block","src":"15945:47:5","statements":[{"expression":{"arguments":[{"id":1319,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1316,"src":"15970:6:5","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1318,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"15963:6:5","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15963:14:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1321,"nodeType":"ExpressionStatement","src":"15963:14:5"}]},"errorName":"Error","id":1323,"nodeType":"TryCatchClause","parameters":{"id":1317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1316,"mutability":"mutable","name":"reason","nameLocation":"15937:6:5","nodeType":"VariableDeclaration","scope":1323,"src":"15923:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1315,"name":"string","nodeType":"ElementaryTypeName","src":"15923:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"15922:22:5"},"src":"15911:81:5"},{"block":{"id":1328,"nodeType":"Block","src":"15999:95:5","statements":[{"expression":{"arguments":[{"hexValue":"455243313135353a207472616e7366657220746f206e6f6e2d45524331313535526563656976657220696d706c656d656e746572","id":1325,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16024:54:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d","typeString":"literal_string \"ERC1155: transfer to non-ERC1155Receiver implementer\""},"value":"ERC1155: transfer to non-ERC1155Receiver implementer"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d","typeString":"literal_string \"ERC1155: transfer to non-ERC1155Receiver implementer\""}],"id":1324,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"16017:6:5","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1326,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16017:62:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1327,"nodeType":"ExpressionStatement","src":"16017:62:5"}]},"errorName":"","id":1329,"nodeType":"TryCatchClause","src":"15993:101:5"}],"externalCall":{"arguments":[{"id":1293,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1273,"src":"15666:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1294,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1275,"src":"15676:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1295,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1279,"src":"15682:2:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1296,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"15686:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1297,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1283,"src":"15694:4:5","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_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"arguments":[{"id":1290,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1277,"src":"15644:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1289,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"15627:16:5","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$1591_$","typeString":"type(contract IERC1155Receiver)"}},"id":1291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15627:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC1155Receiver_$1591","typeString":"contract IERC1155Receiver"}},"id":1292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15648:17:5","memberName":"onERC1155Received","nodeType":"MemberAccess","referencedDeclaration":1572,"src":"15627:38:5","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256,bytes memory) external returns (bytes4)"}},"id":1298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15627:72:5","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":1330,"nodeType":"TryStatement","src":"15623:471:5"}]}}]},"id":1334,"implemented":true,"kind":"function","modifiers":[],"name":"_doSafeTransferAcceptanceCheck","nameLocation":"15394:30:5","nodeType":"FunctionDefinition","parameters":{"id":1284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1273,"mutability":"mutable","name":"operator","nameLocation":"15442:8:5","nodeType":"VariableDeclaration","scope":1334,"src":"15434:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1272,"name":"address","nodeType":"ElementaryTypeName","src":"15434:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1275,"mutability":"mutable","name":"from","nameLocation":"15468:4:5","nodeType":"VariableDeclaration","scope":1334,"src":"15460:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1274,"name":"address","nodeType":"ElementaryTypeName","src":"15460:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1277,"mutability":"mutable","name":"to","nameLocation":"15490:2:5","nodeType":"VariableDeclaration","scope":1334,"src":"15482:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1276,"name":"address","nodeType":"ElementaryTypeName","src":"15482:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1279,"mutability":"mutable","name":"id","nameLocation":"15510:2:5","nodeType":"VariableDeclaration","scope":1334,"src":"15502:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1278,"name":"uint256","nodeType":"ElementaryTypeName","src":"15502:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1281,"mutability":"mutable","name":"amount","nameLocation":"15530:6:5","nodeType":"VariableDeclaration","scope":1334,"src":"15522:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1280,"name":"uint256","nodeType":"ElementaryTypeName","src":"15522:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1283,"mutability":"mutable","name":"data","nameLocation":"15559:4:5","nodeType":"VariableDeclaration","scope":1334,"src":"15546:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1282,"name":"bytes","nodeType":"ElementaryTypeName","src":"15546:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15424:145:5"},"returnParameters":{"id":1285,"nodeType":"ParameterList","parameters":[],"src":"15578:0:5"},"scope":1428,"src":"15385:725:5","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":1398,"nodeType":"Block","src":"16334:574:5","statements":[{"condition":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1351,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1340,"src":"16348:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16351:10:5","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":2868,"src":"16348:13:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$attached_to$_t_address_$","typeString":"function (address) view returns (bool)"}},"id":1353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16348:15:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1397,"nodeType":"IfStatement","src":"16344:558:5","trueBody":{"id":1396,"nodeType":"Block","src":"16365:537:5","statements":[{"clauses":[{"block":{"id":1378,"nodeType":"Block","src":"16519:189:5","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":1371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1367,"name":"response","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1365,"src":"16541:8:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":1368,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"16553:16:5","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$1591_$","typeString":"type(contract IERC1155Receiver)"}},"id":1369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16570:22:5","memberName":"onERC1155BatchReceived","nodeType":"MemberAccess","referencedDeclaration":1590,"src":"16553:39:5","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_calldata_ptr_$_t_array$_t_uint256_$dyn_calldata_ptr_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function IERC1155Receiver.onERC1155BatchReceived(address,address,uint256[] calldata,uint256[] calldata,bytes calldata) returns (bytes4)"}},"id":1370,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16593:8:5","memberName":"selector","nodeType":"MemberAccess","src":"16553:48:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"16541:60:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1377,"nodeType":"IfStatement","src":"16537:157:5","trueBody":{"id":1376,"nodeType":"Block","src":"16603:91:5","statements":[{"expression":{"arguments":[{"hexValue":"455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73","id":1373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16632:42:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503","typeString":"literal_string \"ERC1155: ERC1155Receiver rejected tokens\""},"value":"ERC1155: ERC1155Receiver rejected tokens"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503","typeString":"literal_string \"ERC1155: ERC1155Receiver rejected tokens\""}],"id":1372,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"16625:6:5","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16625:50:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1375,"nodeType":"ExpressionStatement","src":"16625:50:5"}]}}]},"errorName":"","id":1379,"nodeType":"TryCatchClause","parameters":{"id":1366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1365,"mutability":"mutable","name":"response","nameLocation":"16496:8:5","nodeType":"VariableDeclaration","scope":1379,"src":"16489:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1364,"name":"bytes4","nodeType":"ElementaryTypeName","src":"16489:6:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"16471:47:5"},"src":"16463:245:5"},{"block":{"id":1387,"nodeType":"Block","src":"16743:47:5","statements":[{"expression":{"arguments":[{"id":1384,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1381,"src":"16768:6:5","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1383,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"16761:6:5","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16761:14:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1386,"nodeType":"ExpressionStatement","src":"16761:14:5"}]},"errorName":"Error","id":1388,"nodeType":"TryCatchClause","parameters":{"id":1382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1381,"mutability":"mutable","name":"reason","nameLocation":"16735:6:5","nodeType":"VariableDeclaration","scope":1388,"src":"16721:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1380,"name":"string","nodeType":"ElementaryTypeName","src":"16721:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"16720:22:5"},"src":"16709:81:5"},{"block":{"id":1393,"nodeType":"Block","src":"16797:95:5","statements":[{"expression":{"arguments":[{"hexValue":"455243313135353a207472616e7366657220746f206e6f6e2d45524331313535526563656976657220696d706c656d656e746572","id":1390,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16822:54:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d","typeString":"literal_string \"ERC1155: transfer to non-ERC1155Receiver implementer\""},"value":"ERC1155: transfer to non-ERC1155Receiver implementer"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d","typeString":"literal_string \"ERC1155: transfer to non-ERC1155Receiver implementer\""}],"id":1389,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"16815:6:5","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16815:62:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1392,"nodeType":"ExpressionStatement","src":"16815:62:5"}]},"errorName":"","id":1394,"nodeType":"TryCatchClause","src":"16791:101:5"}],"externalCall":{"arguments":[{"id":1358,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"16427:8:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1359,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1338,"src":"16437:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1360,"name":"ids","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"16443:3:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1361,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1346,"src":"16448:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1362,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1348,"src":"16457:4:5","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"arguments":[{"id":1355,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1340,"src":"16400:2:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1354,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"16383:16:5","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$1591_$","typeString":"type(contract IERC1155Receiver)"}},"id":1356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16383:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC1155Receiver_$1591","typeString":"contract IERC1155Receiver"}},"id":1357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16404:22:5","memberName":"onERC1155BatchReceived","nodeType":"MemberAccess","referencedDeclaration":1590,"src":"16383:43:5","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256[] memory,uint256[] memory,bytes memory) external returns (bytes4)"}},"id":1363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16383:79:5","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":1395,"nodeType":"TryStatement","src":"16379:513:5"}]}}]},"id":1399,"implemented":true,"kind":"function","modifiers":[],"name":"_doSafeBatchTransferAcceptanceCheck","nameLocation":"16125:35:5","nodeType":"FunctionDefinition","parameters":{"id":1349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1336,"mutability":"mutable","name":"operator","nameLocation":"16178:8:5","nodeType":"VariableDeclaration","scope":1399,"src":"16170:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1335,"name":"address","nodeType":"ElementaryTypeName","src":"16170:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1338,"mutability":"mutable","name":"from","nameLocation":"16204:4:5","nodeType":"VariableDeclaration","scope":1399,"src":"16196:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1337,"name":"address","nodeType":"ElementaryTypeName","src":"16196:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1340,"mutability":"mutable","name":"to","nameLocation":"16226:2:5","nodeType":"VariableDeclaration","scope":1399,"src":"16218:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1339,"name":"address","nodeType":"ElementaryTypeName","src":"16218:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1343,"mutability":"mutable","name":"ids","nameLocation":"16255:3:5","nodeType":"VariableDeclaration","scope":1399,"src":"16238:20:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1341,"name":"uint256","nodeType":"ElementaryTypeName","src":"16238:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1342,"nodeType":"ArrayTypeName","src":"16238:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1346,"mutability":"mutable","name":"amounts","nameLocation":"16285:7:5","nodeType":"VariableDeclaration","scope":1399,"src":"16268:24:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1344,"name":"uint256","nodeType":"ElementaryTypeName","src":"16268:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1345,"nodeType":"ArrayTypeName","src":"16268:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1348,"mutability":"mutable","name":"data","nameLocation":"16315:4:5","nodeType":"VariableDeclaration","scope":1399,"src":"16302:17:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1347,"name":"bytes","nodeType":"ElementaryTypeName","src":"16302:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16160:165:5"},"returnParameters":{"id":1350,"nodeType":"ParameterList","parameters":[],"src":"16334:0:5"},"scope":1428,"src":"16116:792:5","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":1426,"nodeType":"Block","src":"16998:109:5","statements":[{"assignments":[1411],"declarations":[{"constant":false,"id":1411,"mutability":"mutable","name":"array","nameLocation":"17025:5:5","nodeType":"VariableDeclaration","scope":1426,"src":"17008:22:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1409,"name":"uint256","nodeType":"ElementaryTypeName","src":"17008:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1410,"nodeType":"ArrayTypeName","src":"17008:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":1417,"initialValue":{"arguments":[{"hexValue":"31","id":1415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17047:1:5","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":1414,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17033:13:5","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":1412,"name":"uint256","nodeType":"ElementaryTypeName","src":"17037:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1413,"nodeType":"ArrayTypeName","src":"17037:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":1416,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17033:16:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"17008:41:5"},{"expression":{"id":1422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1418,"name":"array","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1411,"src":"17059:5:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1420,"indexExpression":{"hexValue":"30","id":1419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17065:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17059:8:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1421,"name":"element","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1401,"src":"17070:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17059:18:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1423,"nodeType":"ExpressionStatement","src":"17059:18:5"},{"expression":{"id":1424,"name":"array","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1411,"src":"17095:5:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"functionReturnParameters":1406,"id":1425,"nodeType":"Return","src":"17088:12:5"}]},"id":1427,"implemented":true,"kind":"function","modifiers":[],"name":"_asSingletonArray","nameLocation":"16923:17:5","nodeType":"FunctionDefinition","parameters":{"id":1402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1401,"mutability":"mutable","name":"element","nameLocation":"16949:7:5","nodeType":"VariableDeclaration","scope":1427,"src":"16941:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1400,"name":"uint256","nodeType":"ElementaryTypeName","src":"16941:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16940:17:5"},"returnParameters":{"id":1406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1427,"src":"16980:16:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1403,"name":"uint256","nodeType":"ElementaryTypeName","src":"16980:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1404,"nodeType":"ArrayTypeName","src":"16980:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"16979:18:5"},"scope":1428,"src":"16914:193:5","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":1429,"src":"570:16539:5","usedErrors":[]}],"src":"109:17001:5"},"id":5},"@openzeppelin/contracts/token/ERC1155/IERC1155.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155.sol","exportedSymbols":{"IERC1155":[1550],"IERC165":[3549]},"id":1551,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1430,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"110:23:6"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":1431,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1551,"sourceUnit":3550,"src":"135:47:6","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1433,"name":"IERC165","nameLocations":["372:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":3549,"src":"372:7:6"},"id":1434,"nodeType":"InheritanceSpecifier","src":"372:7:6"}],"canonicalName":"IERC1155","contractDependencies":[],"contractKind":"interface","documentation":{"id":1432,"nodeType":"StructuredDocumentation","src":"184:165:6","text":" @dev Required interface of an ERC1155 compliant contract, as defined in the\n https://eips.ethereum.org/EIPS/eip-1155[EIP].\n _Available since v3.1._"},"fullyImplemented":false,"id":1550,"linearizedBaseContracts":[1550,3549],"name":"IERC1155","nameLocation":"360:8:6","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1435,"nodeType":"StructuredDocumentation","src":"386:121:6","text":" @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`."},"eventSelector":"c3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62","id":1447,"name":"TransferSingle","nameLocation":"518:14:6","nodeType":"EventDefinition","parameters":{"id":1446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1437,"indexed":true,"mutability":"mutable","name":"operator","nameLocation":"549:8:6","nodeType":"VariableDeclaration","scope":1447,"src":"533:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1436,"name":"address","nodeType":"ElementaryTypeName","src":"533:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1439,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"575:4:6","nodeType":"VariableDeclaration","scope":1447,"src":"559:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1438,"name":"address","nodeType":"ElementaryTypeName","src":"559:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1441,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"597:2:6","nodeType":"VariableDeclaration","scope":1447,"src":"581:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1440,"name":"address","nodeType":"ElementaryTypeName","src":"581:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1443,"indexed":false,"mutability":"mutable","name":"id","nameLocation":"609:2:6","nodeType":"VariableDeclaration","scope":1447,"src":"601:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1442,"name":"uint256","nodeType":"ElementaryTypeName","src":"601:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1445,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"621:5:6","nodeType":"VariableDeclaration","scope":1447,"src":"613:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1444,"name":"uint256","nodeType":"ElementaryTypeName","src":"613:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"532:95:6"},"src":"512:116:6"},{"anonymous":false,"documentation":{"id":1448,"nodeType":"StructuredDocumentation","src":"634:144:6","text":" @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all\n transfers."},"eventSelector":"4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb","id":1462,"name":"TransferBatch","nameLocation":"789:13:6","nodeType":"EventDefinition","parameters":{"id":1461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1450,"indexed":true,"mutability":"mutable","name":"operator","nameLocation":"828:8:6","nodeType":"VariableDeclaration","scope":1462,"src":"812:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1449,"name":"address","nodeType":"ElementaryTypeName","src":"812:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1452,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"862:4:6","nodeType":"VariableDeclaration","scope":1462,"src":"846:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1451,"name":"address","nodeType":"ElementaryTypeName","src":"846:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1454,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"892:2:6","nodeType":"VariableDeclaration","scope":1462,"src":"876:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1453,"name":"address","nodeType":"ElementaryTypeName","src":"876:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1457,"indexed":false,"mutability":"mutable","name":"ids","nameLocation":"914:3:6","nodeType":"VariableDeclaration","scope":1462,"src":"904:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1455,"name":"uint256","nodeType":"ElementaryTypeName","src":"904:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1456,"nodeType":"ArrayTypeName","src":"904:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1460,"indexed":false,"mutability":"mutable","name":"values","nameLocation":"937:6:6","nodeType":"VariableDeclaration","scope":1462,"src":"927:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1458,"name":"uint256","nodeType":"ElementaryTypeName","src":"927:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1459,"nodeType":"ArrayTypeName","src":"927:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"802:147:6"},"src":"783:167:6"},{"anonymous":false,"documentation":{"id":1463,"nodeType":"StructuredDocumentation","src":"956:147:6","text":" @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to\n `approved`."},"eventSelector":"17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31","id":1471,"name":"ApprovalForAll","nameLocation":"1114:14:6","nodeType":"EventDefinition","parameters":{"id":1470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1465,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1145:7:6","nodeType":"VariableDeclaration","scope":1471,"src":"1129:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1464,"name":"address","nodeType":"ElementaryTypeName","src":"1129:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1467,"indexed":true,"mutability":"mutable","name":"operator","nameLocation":"1170:8:6","nodeType":"VariableDeclaration","scope":1471,"src":"1154:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1466,"name":"address","nodeType":"ElementaryTypeName","src":"1154:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1469,"indexed":false,"mutability":"mutable","name":"approved","nameLocation":"1185:8:6","nodeType":"VariableDeclaration","scope":1471,"src":"1180:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1468,"name":"bool","nodeType":"ElementaryTypeName","src":"1180:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1128:66:6"},"src":"1108:87:6"},{"anonymous":false,"documentation":{"id":1472,"nodeType":"StructuredDocumentation","src":"1201:343:6","text":" @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.\n If an {URI} event was emitted for `id`, the standard\n https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value\n returned by {IERC1155MetadataURI-uri}."},"eventSelector":"6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b","id":1478,"name":"URI","nameLocation":"1555:3:6","nodeType":"EventDefinition","parameters":{"id":1477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1474,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"1566:5:6","nodeType":"VariableDeclaration","scope":1478,"src":"1559:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1473,"name":"string","nodeType":"ElementaryTypeName","src":"1559:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1476,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"1589:2:6","nodeType":"VariableDeclaration","scope":1478,"src":"1573:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1475,"name":"uint256","nodeType":"ElementaryTypeName","src":"1573:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1558:34:6"},"src":"1549:44:6"},{"documentation":{"id":1479,"nodeType":"StructuredDocumentation","src":"1599:173:6","text":" @dev Returns the amount of tokens of token type `id` owned by `account`.\n Requirements:\n - `account` cannot be the zero address."},"functionSelector":"00fdd58e","id":1488,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"1786:9:6","nodeType":"FunctionDefinition","parameters":{"id":1484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1481,"mutability":"mutable","name":"account","nameLocation":"1804:7:6","nodeType":"VariableDeclaration","scope":1488,"src":"1796:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1480,"name":"address","nodeType":"ElementaryTypeName","src":"1796:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1483,"mutability":"mutable","name":"id","nameLocation":"1821:2:6","nodeType":"VariableDeclaration","scope":1488,"src":"1813:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1482,"name":"uint256","nodeType":"ElementaryTypeName","src":"1813:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1795:29:6"},"returnParameters":{"id":1487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1486,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1488,"src":"1848:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1485,"name":"uint256","nodeType":"ElementaryTypeName","src":"1848:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1847:9:6"},"scope":1550,"src":"1777:80:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1489,"nodeType":"StructuredDocumentation","src":"1863:188:6","text":" @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.\n Requirements:\n - `accounts` and `ids` must have the same length."},"functionSelector":"4e1273f4","id":1501,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOfBatch","nameLocation":"2065:14:6","nodeType":"FunctionDefinition","parameters":{"id":1496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1492,"mutability":"mutable","name":"accounts","nameLocation":"2108:8:6","nodeType":"VariableDeclaration","scope":1501,"src":"2089:27:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1490,"name":"address","nodeType":"ElementaryTypeName","src":"2089:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1491,"nodeType":"ArrayTypeName","src":"2089:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1495,"mutability":"mutable","name":"ids","nameLocation":"2145:3:6","nodeType":"VariableDeclaration","scope":1501,"src":"2126:22:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1493,"name":"uint256","nodeType":"ElementaryTypeName","src":"2126:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1494,"nodeType":"ArrayTypeName","src":"2126:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"2079:75:6"},"returnParameters":{"id":1500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1499,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1501,"src":"2178:16:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1497,"name":"uint256","nodeType":"ElementaryTypeName","src":"2178:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1498,"nodeType":"ArrayTypeName","src":"2178:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"2177:18:6"},"scope":1550,"src":"2056:140:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1502,"nodeType":"StructuredDocumentation","src":"2202:248:6","text":" @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,\n Emits an {ApprovalForAll} event.\n Requirements:\n - `operator` cannot be the caller."},"functionSelector":"a22cb465","id":1509,"implemented":false,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"2464:17:6","nodeType":"FunctionDefinition","parameters":{"id":1507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1504,"mutability":"mutable","name":"operator","nameLocation":"2490:8:6","nodeType":"VariableDeclaration","scope":1509,"src":"2482:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1503,"name":"address","nodeType":"ElementaryTypeName","src":"2482:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1506,"mutability":"mutable","name":"approved","nameLocation":"2505:8:6","nodeType":"VariableDeclaration","scope":1509,"src":"2500:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1505,"name":"bool","nodeType":"ElementaryTypeName","src":"2500:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2481:33:6"},"returnParameters":{"id":1508,"nodeType":"ParameterList","parameters":[],"src":"2523:0:6"},"scope":1550,"src":"2455:69:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1510,"nodeType":"StructuredDocumentation","src":"2530:135:6","text":" @dev Returns true if `operator` is approved to transfer ``account``'s tokens.\n See {setApprovalForAll}."},"functionSelector":"e985e9c5","id":1519,"implemented":false,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"2679:16:6","nodeType":"FunctionDefinition","parameters":{"id":1515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1512,"mutability":"mutable","name":"account","nameLocation":"2704:7:6","nodeType":"VariableDeclaration","scope":1519,"src":"2696:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1511,"name":"address","nodeType":"ElementaryTypeName","src":"2696:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1514,"mutability":"mutable","name":"operator","nameLocation":"2721:8:6","nodeType":"VariableDeclaration","scope":1519,"src":"2713:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1513,"name":"address","nodeType":"ElementaryTypeName","src":"2713:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2695:35:6"},"returnParameters":{"id":1518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1517,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1519,"src":"2754:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1516,"name":"bool","nodeType":"ElementaryTypeName","src":"2754:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2753:6:6"},"scope":1550,"src":"2670:90:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1520,"nodeType":"StructuredDocumentation","src":"2766:556:6","text":" @dev Transfers `amount` tokens of token type `id` from `from` to `to`.\n Emits a {TransferSingle} event.\n Requirements:\n - `to` cannot be the zero address.\n - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.\n - `from` must have a balance of tokens of type `id` of at least `amount`.\n - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the\n acceptance magic value."},"functionSelector":"f242432a","id":1533,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"3336:16:6","nodeType":"FunctionDefinition","parameters":{"id":1531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1522,"mutability":"mutable","name":"from","nameLocation":"3361:4:6","nodeType":"VariableDeclaration","scope":1533,"src":"3353:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1521,"name":"address","nodeType":"ElementaryTypeName","src":"3353:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1524,"mutability":"mutable","name":"to","nameLocation":"3375:2:6","nodeType":"VariableDeclaration","scope":1533,"src":"3367:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1523,"name":"address","nodeType":"ElementaryTypeName","src":"3367:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1526,"mutability":"mutable","name":"id","nameLocation":"3387:2:6","nodeType":"VariableDeclaration","scope":1533,"src":"3379:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1525,"name":"uint256","nodeType":"ElementaryTypeName","src":"3379:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1528,"mutability":"mutable","name":"amount","nameLocation":"3399:6:6","nodeType":"VariableDeclaration","scope":1533,"src":"3391:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1527,"name":"uint256","nodeType":"ElementaryTypeName","src":"3391:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1530,"mutability":"mutable","name":"data","nameLocation":"3422:4:6","nodeType":"VariableDeclaration","scope":1533,"src":"3407:19:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1529,"name":"bytes","nodeType":"ElementaryTypeName","src":"3407:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3352:75:6"},"returnParameters":{"id":1532,"nodeType":"ParameterList","parameters":[],"src":"3436:0:6"},"scope":1550,"src":"3327:110:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1534,"nodeType":"StructuredDocumentation","src":"3443:390:6","text":" @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.\n Emits a {TransferBatch} event.\n Requirements:\n - `ids` and `amounts` must have the same length.\n - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the\n acceptance magic value."},"functionSelector":"2eb2c2d6","id":1549,"implemented":false,"kind":"function","modifiers":[],"name":"safeBatchTransferFrom","nameLocation":"3847:21:6","nodeType":"FunctionDefinition","parameters":{"id":1547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1536,"mutability":"mutable","name":"from","nameLocation":"3886:4:6","nodeType":"VariableDeclaration","scope":1549,"src":"3878:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1535,"name":"address","nodeType":"ElementaryTypeName","src":"3878:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1538,"mutability":"mutable","name":"to","nameLocation":"3908:2:6","nodeType":"VariableDeclaration","scope":1549,"src":"3900:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1537,"name":"address","nodeType":"ElementaryTypeName","src":"3900:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1541,"mutability":"mutable","name":"ids","nameLocation":"3939:3:6","nodeType":"VariableDeclaration","scope":1549,"src":"3920:22:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1539,"name":"uint256","nodeType":"ElementaryTypeName","src":"3920:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1540,"nodeType":"ArrayTypeName","src":"3920:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1544,"mutability":"mutable","name":"amounts","nameLocation":"3971:7:6","nodeType":"VariableDeclaration","scope":1549,"src":"3952:26:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1542,"name":"uint256","nodeType":"ElementaryTypeName","src":"3952:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1543,"nodeType":"ArrayTypeName","src":"3952:9:6","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1546,"mutability":"mutable","name":"data","nameLocation":"4003:4:6","nodeType":"VariableDeclaration","scope":1549,"src":"3988:19:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1545,"name":"bytes","nodeType":"ElementaryTypeName","src":"3988:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3868:145:6"},"returnParameters":{"id":1548,"nodeType":"ParameterList","parameters":[],"src":"4022:0:6"},"scope":1550,"src":"3838:185:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1551,"src":"350:3675:6","usedErrors":[]}],"src":"110:3916:6"},"id":6},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","exportedSymbols":{"IERC1155Receiver":[1591],"IERC165":[3549]},"id":1592,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1552,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"118:23:7"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":1553,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1592,"sourceUnit":3550,"src":"143:47:7","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1555,"name":"IERC165","nameLocations":["262:7:7"],"nodeType":"IdentifierPath","referencedDeclaration":3549,"src":"262:7:7"},"id":1556,"nodeType":"InheritanceSpecifier","src":"262:7:7"}],"canonicalName":"IERC1155Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":1554,"nodeType":"StructuredDocumentation","src":"192:39:7","text":" @dev _Available since v3.1._"},"fullyImplemented":false,"id":1591,"linearizedBaseContracts":[1591,3549],"name":"IERC1155Receiver","nameLocation":"242:16:7","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1557,"nodeType":"StructuredDocumentation","src":"276:826:7","text":" @dev Handles the receipt of a single ERC1155 token type. This function is\n called at the end of a `safeTransferFrom` after the balance has been updated.\n NOTE: To accept the transfer, this must return\n `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))`\n (i.e. 0xf23a6e61, or its own function selector).\n @param operator The address which initiated the transfer (i.e. msg.sender)\n @param from The address which previously owned the token\n @param id The ID of the token being transferred\n @param value The amount of tokens being transferred\n @param data Additional data with no specified format\n @return `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))` if transfer is allowed"},"functionSelector":"f23a6e61","id":1572,"implemented":false,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"1116:17:7","nodeType":"FunctionDefinition","parameters":{"id":1568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1559,"mutability":"mutable","name":"operator","nameLocation":"1151:8:7","nodeType":"VariableDeclaration","scope":1572,"src":"1143:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1558,"name":"address","nodeType":"ElementaryTypeName","src":"1143:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1561,"mutability":"mutable","name":"from","nameLocation":"1177:4:7","nodeType":"VariableDeclaration","scope":1572,"src":"1169:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1560,"name":"address","nodeType":"ElementaryTypeName","src":"1169:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1563,"mutability":"mutable","name":"id","nameLocation":"1199:2:7","nodeType":"VariableDeclaration","scope":1572,"src":"1191:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1562,"name":"uint256","nodeType":"ElementaryTypeName","src":"1191:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1565,"mutability":"mutable","name":"value","nameLocation":"1219:5:7","nodeType":"VariableDeclaration","scope":1572,"src":"1211:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1564,"name":"uint256","nodeType":"ElementaryTypeName","src":"1211:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1567,"mutability":"mutable","name":"data","nameLocation":"1249:4:7","nodeType":"VariableDeclaration","scope":1572,"src":"1234:19:7","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1566,"name":"bytes","nodeType":"ElementaryTypeName","src":"1234:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1133:126:7"},"returnParameters":{"id":1571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1570,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1572,"src":"1278:6:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1569,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1278:6:7","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1277:8:7"},"scope":1591,"src":"1107:179:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1573,"nodeType":"StructuredDocumentation","src":"1292:994:7","text":" @dev Handles the receipt of a multiple ERC1155 token types. This function\n is called at the end of a `safeBatchTransferFrom` after the balances have\n been updated.\n NOTE: To accept the transfer(s), this must return\n `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))`\n (i.e. 0xbc197c81, or its own function selector).\n @param operator The address which initiated the batch transfer (i.e. msg.sender)\n @param from The address which previously owned the token\n @param ids An array containing ids of each token being transferred (order and length must match values array)\n @param values An array containing amounts of each token being transferred (order and length must match ids array)\n @param data Additional data with no specified format\n @return `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))` if transfer is allowed"},"functionSelector":"bc197c81","id":1590,"implemented":false,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"2300:22:7","nodeType":"FunctionDefinition","parameters":{"id":1586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1575,"mutability":"mutable","name":"operator","nameLocation":"2340:8:7","nodeType":"VariableDeclaration","scope":1590,"src":"2332:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1574,"name":"address","nodeType":"ElementaryTypeName","src":"2332:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1577,"mutability":"mutable","name":"from","nameLocation":"2366:4:7","nodeType":"VariableDeclaration","scope":1590,"src":"2358:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1576,"name":"address","nodeType":"ElementaryTypeName","src":"2358:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1580,"mutability":"mutable","name":"ids","nameLocation":"2399:3:7","nodeType":"VariableDeclaration","scope":1590,"src":"2380:22:7","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1578,"name":"uint256","nodeType":"ElementaryTypeName","src":"2380:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1579,"nodeType":"ArrayTypeName","src":"2380:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1583,"mutability":"mutable","name":"values","nameLocation":"2431:6:7","nodeType":"VariableDeclaration","scope":1590,"src":"2412:25:7","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1581,"name":"uint256","nodeType":"ElementaryTypeName","src":"2412:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1582,"nodeType":"ArrayTypeName","src":"2412:9:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1585,"mutability":"mutable","name":"data","nameLocation":"2462:4:7","nodeType":"VariableDeclaration","scope":1590,"src":"2447:19:7","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1584,"name":"bytes","nodeType":"ElementaryTypeName","src":"2447:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2322:150:7"},"returnParameters":{"id":1589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1588,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1590,"src":"2491:6:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1587,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2491:6:7","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2490:8:7"},"scope":1591,"src":"2291:208:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1592,"src":"232:2269:7","usedErrors":[]}],"src":"118:2384:7"},"id":7},"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol","exportedSymbols":{"IERC1155":[1550],"IERC1155MetadataURI":[1606],"IERC165":[3549]},"id":1607,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1593,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"117:23:8"},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155.sol","file":"../IERC1155.sol","id":1594,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1607,"sourceUnit":1551,"src":"142:25:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1596,"name":"IERC1155","nameLocations":["397:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":1550,"src":"397:8:8"},"id":1597,"nodeType":"InheritanceSpecifier","src":"397:8:8"}],"canonicalName":"IERC1155MetadataURI","contractDependencies":[],"contractKind":"interface","documentation":{"id":1595,"nodeType":"StructuredDocumentation","src":"169:194:8","text":" @dev Interface of the optional ERC1155MetadataExtension interface, as defined\n in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].\n _Available since v3.1._"},"fullyImplemented":false,"id":1606,"linearizedBaseContracts":[1606,1550,3549],"name":"IERC1155MetadataURI","nameLocation":"374:19:8","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1598,"nodeType":"StructuredDocumentation","src":"412:192:8","text":" @dev Returns the URI for token type `id`.\n If the `\\{id\\}` substring is present in the URI, it must be replaced by\n clients with the actual token type ID."},"functionSelector":"0e89341c","id":1605,"implemented":false,"kind":"function","modifiers":[],"name":"uri","nameLocation":"618:3:8","nodeType":"FunctionDefinition","parameters":{"id":1601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1600,"mutability":"mutable","name":"id","nameLocation":"630:2:8","nodeType":"VariableDeclaration","scope":1605,"src":"622:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1599,"name":"uint256","nodeType":"ElementaryTypeName","src":"622:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"621:12:8"},"returnParameters":{"id":1604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1603,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1605,"src":"657:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1602,"name":"string","nodeType":"ElementaryTypeName","src":"657:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"656:15:8"},"scope":1606,"src":"609:63:8","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1607,"src":"364:310:8","usedErrors":[]}],"src":"117:558:8"},"id":8},"@openzeppelin/contracts/token/ERC721/ERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/ERC721.sol","exportedSymbols":{"Address":[3180],"Context":[3210],"ERC165":[3537],"ERC721":[2533],"IERC165":[3549],"IERC721":[2649],"IERC721Metadata":[2850],"IERC721Receiver":[2667],"Math":[4415],"SignedMath":[4520],"Strings":[3513]},"id":2534,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1608,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:9"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"./IERC721.sol","id":1609,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2534,"sourceUnit":2650,"src":"132:23:9","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"./IERC721Receiver.sol","id":1610,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2534,"sourceUnit":2668,"src":"156:31:9","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","file":"./extensions/IERC721Metadata.sol","id":1611,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2534,"sourceUnit":2851,"src":"188:42:9","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":1612,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2534,"sourceUnit":3181,"src":"231:33:9","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":1613,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2534,"sourceUnit":3211,"src":"265:33:9","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../../utils/Strings.sol","id":1614,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2534,"sourceUnit":3514,"src":"299:33:9","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../../utils/introspection/ERC165.sol","id":1615,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2534,"sourceUnit":3538,"src":"333:46:9","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1617,"name":"Context","nameLocations":["647:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":3210,"src":"647:7:9"},"id":1618,"nodeType":"InheritanceSpecifier","src":"647:7:9"},{"baseName":{"id":1619,"name":"ERC165","nameLocations":["656:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":3537,"src":"656:6:9"},"id":1620,"nodeType":"InheritanceSpecifier","src":"656:6:9"},{"baseName":{"id":1621,"name":"IERC721","nameLocations":["664:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":2649,"src":"664:7:9"},"id":1622,"nodeType":"InheritanceSpecifier","src":"664:7:9"},{"baseName":{"id":1623,"name":"IERC721Metadata","nameLocations":["673:15:9"],"nodeType":"IdentifierPath","referencedDeclaration":2850,"src":"673:15:9"},"id":1624,"nodeType":"InheritanceSpecifier","src":"673:15:9"}],"canonicalName":"ERC721","contractDependencies":[],"contractKind":"contract","documentation":{"id":1616,"nodeType":"StructuredDocumentation","src":"381:246:9","text":" @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] 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":2533,"linearizedBaseContracts":[2533,2850,2649,3537,3549,3210],"name":"ERC721","nameLocation":"637:6:9","nodeType":"ContractDefinition","nodes":[{"global":false,"id":1627,"libraryName":{"id":1625,"name":"Address","nameLocations":["701:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":3180,"src":"701:7:9"},"nodeType":"UsingForDirective","src":"695:26:9","typeName":{"id":1626,"name":"address","nodeType":"ElementaryTypeName","src":"713:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},{"global":false,"id":1630,"libraryName":{"id":1628,"name":"Strings","nameLocations":["732:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":3513,"src":"732:7:9"},"nodeType":"UsingForDirective","src":"726:26:9","typeName":{"id":1629,"name":"uint256","nodeType":"ElementaryTypeName","src":"744:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":false,"id":1632,"mutability":"mutable","name":"_name","nameLocation":"791:5:9","nodeType":"VariableDeclaration","scope":2533,"src":"776:20:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":1631,"name":"string","nodeType":"ElementaryTypeName","src":"776:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":1634,"mutability":"mutable","name":"_symbol","nameLocation":"838:7:9","nodeType":"VariableDeclaration","scope":2533,"src":"823:22:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":1633,"name":"string","nodeType":"ElementaryTypeName","src":"823:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":1638,"mutability":"mutable","name":"_owners","nameLocation":"934:7:9","nodeType":"VariableDeclaration","scope":2533,"src":"898:43:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"typeName":{"id":1637,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1635,"name":"uint256","nodeType":"ElementaryTypeName","src":"906:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"898:27:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1636,"name":"address","nodeType":"ElementaryTypeName","src":"917:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"private"},{"constant":false,"id":1642,"mutability":"mutable","name":"_balances","nameLocation":"1028:9:9","nodeType":"VariableDeclaration","scope":2533,"src":"992:45:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1641,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1639,"name":"address","nodeType":"ElementaryTypeName","src":"1000:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"992:27:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1640,"name":"uint256","nodeType":"ElementaryTypeName","src":"1011:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":1646,"mutability":"mutable","name":"_tokenApprovals","nameLocation":"1129:15:9","nodeType":"VariableDeclaration","scope":2533,"src":"1093:51:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"typeName":{"id":1645,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1643,"name":"uint256","nodeType":"ElementaryTypeName","src":"1101:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1093:27:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1644,"name":"address","nodeType":"ElementaryTypeName","src":"1112:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"private"},{"constant":false,"id":1652,"mutability":"mutable","name":"_operatorApprovals","nameLocation":"1252:18:9","nodeType":"VariableDeclaration","scope":2533,"src":"1199:71:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"},"typeName":{"id":1651,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1647,"name":"address","nodeType":"ElementaryTypeName","src":"1207:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1199:44:9","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":1650,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1648,"name":"address","nodeType":"ElementaryTypeName","src":"1226:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1218:24:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1649,"name":"bool","nodeType":"ElementaryTypeName","src":"1237:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}}},"visibility":"private"},{"body":{"id":1668,"nodeType":"Block","src":"1446:57:9","statements":[{"expression":{"id":1662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1660,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1632,"src":"1456:5:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1661,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1655,"src":"1464:5:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1456:13:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1663,"nodeType":"ExpressionStatement","src":"1456:13:9"},{"expression":{"id":1666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1664,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1634,"src":"1479:7:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1665,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1657,"src":"1489:7:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1479:17:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1667,"nodeType":"ExpressionStatement","src":"1479:17:9"}]},"documentation":{"id":1653,"nodeType":"StructuredDocumentation","src":"1277:108:9","text":" @dev Initializes the contract by setting a `name` and a `symbol` to the token collection."},"id":1669,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1655,"mutability":"mutable","name":"name_","nameLocation":"1416:5:9","nodeType":"VariableDeclaration","scope":1669,"src":"1402:19:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1654,"name":"string","nodeType":"ElementaryTypeName","src":"1402:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1657,"mutability":"mutable","name":"symbol_","nameLocation":"1437:7:9","nodeType":"VariableDeclaration","scope":1669,"src":"1423:21:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1656,"name":"string","nodeType":"ElementaryTypeName","src":"1423:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1401:44:9"},"returnParameters":{"id":1659,"nodeType":"ParameterList","parameters":[],"src":"1446:0:9"},"scope":2533,"src":"1390:113:9","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[3536,3548],"body":{"id":1699,"nodeType":"Block","src":"1678:192:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":1685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1680,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1672,"src":"1707:11:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":1682,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2649,"src":"1727:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$2649_$","typeString":"type(contract IERC721)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721_$2649_$","typeString":"type(contract IERC721)"}],"id":1681,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1722:4:9","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1722:13:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721_$2649","typeString":"type(contract IERC721)"}},"id":1684,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1736:11:9","memberName":"interfaceId","nodeType":"MemberAccess","src":"1722:25:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1707:40:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":1691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1686,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1672,"src":"1763:11:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":1688,"name":"IERC721Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2850,"src":"1783:15:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Metadata_$2850_$","typeString":"type(contract IERC721Metadata)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721Metadata_$2850_$","typeString":"type(contract IERC721Metadata)"}],"id":1687,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1778:4:9","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1778:21:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721Metadata_$2850","typeString":"type(contract IERC721Metadata)"}},"id":1690,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1800:11:9","memberName":"interfaceId","nodeType":"MemberAccess","src":"1778:33:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1763:48:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1707:104:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":1695,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1672,"src":"1851:11:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":1693,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1827:5:9","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721_$2533_$","typeString":"type(contract super ERC721)"}},"id":1694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1833:17:9","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":3536,"src":"1827:23:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":1696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1827:36:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1707:156:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1679,"id":1698,"nodeType":"Return","src":"1688:175:9"}]},"documentation":{"id":1670,"nodeType":"StructuredDocumentation","src":"1509:56:9","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":1700,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1579:17:9","nodeType":"FunctionDefinition","overrides":{"id":1676,"nodeType":"OverrideSpecifier","overrides":[{"id":1674,"name":"ERC165","nameLocations":["1646:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":3537,"src":"1646:6:9"},{"id":1675,"name":"IERC165","nameLocations":["1654:7:9"],"nodeType":"IdentifierPath","referencedDeclaration":3549,"src":"1654:7:9"}],"src":"1637:25:9"},"parameters":{"id":1673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1672,"mutability":"mutable","name":"interfaceId","nameLocation":"1604:11:9","nodeType":"VariableDeclaration","scope":1700,"src":"1597:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1671,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1597:6:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1596:20:9"},"returnParameters":{"id":1679,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1678,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1700,"src":"1672:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1677,"name":"bool","nodeType":"ElementaryTypeName","src":"1672:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1671:6:9"},"scope":2533,"src":"1570:300:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2574],"body":{"id":1723,"nodeType":"Block","src":"2010:123:9","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1710,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1703,"src":"2028:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2045:1:9","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":1712,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2037:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1711,"name":"address","nodeType":"ElementaryTypeName","src":"2037:7:9","typeDescriptions":{}}},"id":1714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2037:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2028:19:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a2061646472657373207a65726f206973206e6f7420612076616c6964206f776e6572","id":1716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2049:43:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159","typeString":"literal_string \"ERC721: address zero is not a valid owner\""},"value":"ERC721: address zero is not a valid owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159","typeString":"literal_string \"ERC721: address zero is not a valid owner\""}],"id":1709,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2020:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2020:73:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1718,"nodeType":"ExpressionStatement","src":"2020:73:9"},{"expression":{"baseExpression":{"id":1719,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"2110:9:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1721,"indexExpression":{"id":1720,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1703,"src":"2120:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2110:16:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1708,"id":1722,"nodeType":"Return","src":"2103:23:9"}]},"documentation":{"id":1701,"nodeType":"StructuredDocumentation","src":"1876:48:9","text":" @dev See {IERC721-balanceOf}."},"functionSelector":"70a08231","id":1724,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"1938:9:9","nodeType":"FunctionDefinition","overrides":{"id":1705,"nodeType":"OverrideSpecifier","overrides":[],"src":"1983:8:9"},"parameters":{"id":1704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1703,"mutability":"mutable","name":"owner","nameLocation":"1956:5:9","nodeType":"VariableDeclaration","scope":1724,"src":"1948:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1702,"name":"address","nodeType":"ElementaryTypeName","src":"1948:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1947:15:9"},"returnParameters":{"id":1708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1707,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1724,"src":"2001:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1706,"name":"uint256","nodeType":"ElementaryTypeName","src":"2001:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2000:9:9"},"scope":2533,"src":"1929:204:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2582],"body":{"id":1751,"nodeType":"Block","src":"2271:138:9","statements":[{"assignments":[1734],"declarations":[{"constant":false,"id":1734,"mutability":"mutable","name":"owner","nameLocation":"2289:5:9","nodeType":"VariableDeclaration","scope":1751,"src":"2281:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1733,"name":"address","nodeType":"ElementaryTypeName","src":"2281:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1738,"initialValue":{"arguments":[{"id":1736,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1727,"src":"2306:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1735,"name":"_ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2034,"src":"2297:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":1737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2297:17:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2281:33:9"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1740,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1734,"src":"2332:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1743,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2349:1:9","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":1742,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2341:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1741,"name":"address","nodeType":"ElementaryTypeName","src":"2341:7:9","typeDescriptions":{}}},"id":1744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2341:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2332:19:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a20696e76616c696420746f6b656e204944","id":1746,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2353:26:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f","typeString":"literal_string \"ERC721: invalid token ID\""},"value":"ERC721: invalid token ID"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f","typeString":"literal_string \"ERC721: invalid token ID\""}],"id":1739,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2324:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2324:56:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1748,"nodeType":"ExpressionStatement","src":"2324:56:9"},{"expression":{"id":1749,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1734,"src":"2397:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1732,"id":1750,"nodeType":"Return","src":"2390:12:9"}]},"documentation":{"id":1725,"nodeType":"StructuredDocumentation","src":"2139:46:9","text":" @dev See {IERC721-ownerOf}."},"functionSelector":"6352211e","id":1752,"implemented":true,"kind":"function","modifiers":[],"name":"ownerOf","nameLocation":"2199:7:9","nodeType":"FunctionDefinition","overrides":{"id":1729,"nodeType":"OverrideSpecifier","overrides":[],"src":"2244:8:9"},"parameters":{"id":1728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1727,"mutability":"mutable","name":"tokenId","nameLocation":"2215:7:9","nodeType":"VariableDeclaration","scope":1752,"src":"2207:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1726,"name":"uint256","nodeType":"ElementaryTypeName","src":"2207:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2206:17:9"},"returnParameters":{"id":1732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1731,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1752,"src":"2262:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1730,"name":"address","nodeType":"ElementaryTypeName","src":"2262:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2261:9:9"},"scope":2533,"src":"2190:219:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2835],"body":{"id":1761,"nodeType":"Block","src":"2540:29:9","statements":[{"expression":{"id":1759,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1632,"src":"2557:5:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":1758,"id":1760,"nodeType":"Return","src":"2550:12:9"}]},"documentation":{"id":1753,"nodeType":"StructuredDocumentation","src":"2415:51:9","text":" @dev See {IERC721Metadata-name}."},"functionSelector":"06fdde03","id":1762,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"2480:4:9","nodeType":"FunctionDefinition","overrides":{"id":1755,"nodeType":"OverrideSpecifier","overrides":[],"src":"2507:8:9"},"parameters":{"id":1754,"nodeType":"ParameterList","parameters":[],"src":"2484:2:9"},"returnParameters":{"id":1758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1757,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1762,"src":"2525:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1756,"name":"string","nodeType":"ElementaryTypeName","src":"2525:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2524:15:9"},"scope":2533,"src":"2471:98:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2841],"body":{"id":1771,"nodeType":"Block","src":"2704:31:9","statements":[{"expression":{"id":1769,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1634,"src":"2721:7:9","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":1768,"id":1770,"nodeType":"Return","src":"2714:14:9"}]},"documentation":{"id":1763,"nodeType":"StructuredDocumentation","src":"2575:53:9","text":" @dev See {IERC721Metadata-symbol}."},"functionSelector":"95d89b41","id":1772,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"2642:6:9","nodeType":"FunctionDefinition","overrides":{"id":1765,"nodeType":"OverrideSpecifier","overrides":[],"src":"2671:8:9"},"parameters":{"id":1764,"nodeType":"ParameterList","parameters":[],"src":"2648:2:9"},"returnParameters":{"id":1768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1767,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1772,"src":"2689:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1766,"name":"string","nodeType":"ElementaryTypeName","src":"2689:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2688:15:9"},"scope":2533,"src":"2633:102:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2849],"body":{"id":1810,"nodeType":"Block","src":"2889:188:9","statements":[{"expression":{"arguments":[{"id":1782,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"2914:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1781,"name":"_requireMinted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2429,"src":"2899:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$__$","typeString":"function (uint256) view"}},"id":1783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2899:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1784,"nodeType":"ExpressionStatement","src":"2899:23:9"},{"assignments":[1786],"declarations":[{"constant":false,"id":1786,"mutability":"mutable","name":"baseURI","nameLocation":"2947:7:9","nodeType":"VariableDeclaration","scope":1810,"src":"2933:21:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1785,"name":"string","nodeType":"ElementaryTypeName","src":"2933:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":1789,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1787,"name":"_baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"2957:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":1788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2957:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"2933:34:9"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1792,"name":"baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"2990:7:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1791,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2984:5:9","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1790,"name":"bytes","nodeType":"ElementaryTypeName","src":"2984:5:9","typeDescriptions":{}}},"id":1793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2984:14:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2999:6:9","memberName":"length","nodeType":"MemberAccess","src":"2984:21:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3008:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2984:25:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":1807,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3068:2:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":1808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2984:86:9","trueExpression":{"arguments":[{"arguments":[{"id":1801,"name":"baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"3036:7:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1802,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"3045:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3053:8:9","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":3343,"src":"3045:16:9","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":1804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3045:18:9","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":1799,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3019:3:9","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1800,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3023:12:9","memberName":"encodePacked","nodeType":"MemberAccess","src":"3019:16:9","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3019:45:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1798,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3012:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":1797,"name":"string","nodeType":"ElementaryTypeName","src":"3012:6:9","typeDescriptions":{}}},"id":1806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3012:53:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":1780,"id":1809,"nodeType":"Return","src":"2977:93:9"}]},"documentation":{"id":1773,"nodeType":"StructuredDocumentation","src":"2741:55:9","text":" @dev See {IERC721Metadata-tokenURI}."},"functionSelector":"c87b56dd","id":1811,"implemented":true,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"2810:8:9","nodeType":"FunctionDefinition","overrides":{"id":1777,"nodeType":"OverrideSpecifier","overrides":[],"src":"2856:8:9"},"parameters":{"id":1776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1775,"mutability":"mutable","name":"tokenId","nameLocation":"2827:7:9","nodeType":"VariableDeclaration","scope":1811,"src":"2819:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1774,"name":"uint256","nodeType":"ElementaryTypeName","src":"2819:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2818:17:9"},"returnParameters":{"id":1780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1779,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1811,"src":"2874:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1778,"name":"string","nodeType":"ElementaryTypeName","src":"2874:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2873:15:9"},"scope":2533,"src":"2801:276:9","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":1819,"nodeType":"Block","src":"3385:26:9","statements":[{"expression":{"hexValue":"","id":1817,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3402:2:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":1816,"id":1818,"nodeType":"Return","src":"3395:9:9"}]},"documentation":{"id":1812,"nodeType":"StructuredDocumentation","src":"3083:231:9","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":1820,"implemented":true,"kind":"function","modifiers":[],"name":"_baseURI","nameLocation":"3328:8:9","nodeType":"FunctionDefinition","parameters":{"id":1813,"nodeType":"ParameterList","parameters":[],"src":"3336:2:9"},"returnParameters":{"id":1816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1815,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1820,"src":"3370:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1814,"name":"string","nodeType":"ElementaryTypeName","src":"3370:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3369:15:9"},"scope":2533,"src":"3319:92:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[2622],"body":{"id":1862,"nodeType":"Block","src":"3538:336:9","statements":[{"assignments":[1830],"declarations":[{"constant":false,"id":1830,"mutability":"mutable","name":"owner","nameLocation":"3556:5:9","nodeType":"VariableDeclaration","scope":1862,"src":"3548:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1829,"name":"address","nodeType":"ElementaryTypeName","src":"3548:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1835,"initialValue":{"arguments":[{"id":1833,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1825,"src":"3579:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1831,"name":"ERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"3564:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721_$2533_$","typeString":"type(contract ERC721)"}},"id":1832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3571:7:9","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":1752,"src":"3564:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":1834,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3564:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3548:39:9"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1837,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1823,"src":"3605:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1838,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1830,"src":"3611:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3605:11:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572","id":1840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3618:35:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942","typeString":"literal_string \"ERC721: approval to current owner\""},"value":"ERC721: approval to current owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942","typeString":"literal_string \"ERC721: approval to current owner\""}],"id":1836,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3597:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3597:57:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1842,"nodeType":"ExpressionStatement","src":"3597:57:9"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1844,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"3686:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3686:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1846,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1830,"src":"3702:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3686:21:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":1849,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1830,"src":"3728:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1850,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"3735:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3735:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1848,"name":"isApprovedForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"3711:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view returns (bool)"}},"id":1852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3711:37:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3686:62:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c","id":1854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3762:63:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83","typeString":"literal_string \"ERC721: approve caller is not token owner or approved for all\""},"value":"ERC721: approve caller is not token owner or approved for all"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83","typeString":"literal_string \"ERC721: approve caller is not token owner or approved for all\""}],"id":1843,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3665:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3665:170:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1856,"nodeType":"ExpressionStatement","src":"3665:170:9"},{"expression":{"arguments":[{"id":1858,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1823,"src":"3855:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1859,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1825,"src":"3859:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1857,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2383,"src":"3846:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":1860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3846:21:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1861,"nodeType":"ExpressionStatement","src":"3846:21:9"}]},"documentation":{"id":1821,"nodeType":"StructuredDocumentation","src":"3417:46:9","text":" @dev See {IERC721-approve}."},"functionSelector":"095ea7b3","id":1863,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3477:7:9","nodeType":"FunctionDefinition","overrides":{"id":1827,"nodeType":"OverrideSpecifier","overrides":[],"src":"3529:8:9"},"parameters":{"id":1826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1823,"mutability":"mutable","name":"to","nameLocation":"3493:2:9","nodeType":"VariableDeclaration","scope":1863,"src":"3485:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1822,"name":"address","nodeType":"ElementaryTypeName","src":"3485:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1825,"mutability":"mutable","name":"tokenId","nameLocation":"3505:7:9","nodeType":"VariableDeclaration","scope":1863,"src":"3497:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1824,"name":"uint256","nodeType":"ElementaryTypeName","src":"3497:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3484:29:9"},"returnParameters":{"id":1828,"nodeType":"ParameterList","parameters":[],"src":"3538:0:9"},"scope":2533,"src":"3468:406:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2638],"body":{"id":1880,"nodeType":"Block","src":"4020:82:9","statements":[{"expression":{"arguments":[{"id":1873,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1866,"src":"4045:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1872,"name":"_requireMinted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2429,"src":"4030:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$__$","typeString":"function (uint256) view"}},"id":1874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4030:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1875,"nodeType":"ExpressionStatement","src":"4030:23:9"},{"expression":{"baseExpression":{"id":1876,"name":"_tokenApprovals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"4071:15:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":1878,"indexExpression":{"id":1877,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1866,"src":"4087:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4071:24:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1871,"id":1879,"nodeType":"Return","src":"4064:31:9"}]},"documentation":{"id":1864,"nodeType":"StructuredDocumentation","src":"3880:50:9","text":" @dev See {IERC721-getApproved}."},"functionSelector":"081812fc","id":1881,"implemented":true,"kind":"function","modifiers":[],"name":"getApproved","nameLocation":"3944:11:9","nodeType":"FunctionDefinition","overrides":{"id":1868,"nodeType":"OverrideSpecifier","overrides":[],"src":"3993:8:9"},"parameters":{"id":1867,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1866,"mutability":"mutable","name":"tokenId","nameLocation":"3964:7:9","nodeType":"VariableDeclaration","scope":1881,"src":"3956:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1865,"name":"uint256","nodeType":"ElementaryTypeName","src":"3956:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3955:17:9"},"returnParameters":{"id":1871,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1870,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1881,"src":"4011:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1869,"name":"address","nodeType":"ElementaryTypeName","src":"4011:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4010:9:9"},"scope":2533,"src":"3935:167:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2630],"body":{"id":1897,"nodeType":"Block","src":"4253:69:9","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":1891,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"4282:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1892,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4282:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1893,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1884,"src":"4296:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1894,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1886,"src":"4306:8:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":1890,"name":"_setApprovalForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2415,"src":"4263:18:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,address,bool)"}},"id":1895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4263:52:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1896,"nodeType":"ExpressionStatement","src":"4263:52:9"}]},"documentation":{"id":1882,"nodeType":"StructuredDocumentation","src":"4108:56:9","text":" @dev See {IERC721-setApprovalForAll}."},"functionSelector":"a22cb465","id":1898,"implemented":true,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"4178:17:9","nodeType":"FunctionDefinition","overrides":{"id":1888,"nodeType":"OverrideSpecifier","overrides":[],"src":"4244:8:9"},"parameters":{"id":1887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1884,"mutability":"mutable","name":"operator","nameLocation":"4204:8:9","nodeType":"VariableDeclaration","scope":1898,"src":"4196:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1883,"name":"address","nodeType":"ElementaryTypeName","src":"4196:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1886,"mutability":"mutable","name":"approved","nameLocation":"4219:8:9","nodeType":"VariableDeclaration","scope":1898,"src":"4214:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1885,"name":"bool","nodeType":"ElementaryTypeName","src":"4214:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4195:33:9"},"returnParameters":{"id":1889,"nodeType":"ParameterList","parameters":[],"src":"4253:0:9"},"scope":2533,"src":"4169:153:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2648],"body":{"id":1915,"nodeType":"Block","src":"4491:59:9","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":1909,"name":"_operatorApprovals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"4508:18:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"}},"id":1911,"indexExpression":{"id":1910,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1901,"src":"4527:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4508:25:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1913,"indexExpression":{"id":1912,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1903,"src":"4534:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4508:35:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1908,"id":1914,"nodeType":"Return","src":"4501:42:9"}]},"documentation":{"id":1899,"nodeType":"StructuredDocumentation","src":"4328:55:9","text":" @dev See {IERC721-isApprovedForAll}."},"functionSelector":"e985e9c5","id":1916,"implemented":true,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"4397:16:9","nodeType":"FunctionDefinition","overrides":{"id":1905,"nodeType":"OverrideSpecifier","overrides":[],"src":"4467:8:9"},"parameters":{"id":1904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1901,"mutability":"mutable","name":"owner","nameLocation":"4422:5:9","nodeType":"VariableDeclaration","scope":1916,"src":"4414:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1900,"name":"address","nodeType":"ElementaryTypeName","src":"4414:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1903,"mutability":"mutable","name":"operator","nameLocation":"4437:8:9","nodeType":"VariableDeclaration","scope":1916,"src":"4429:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1902,"name":"address","nodeType":"ElementaryTypeName","src":"4429:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4413:33:9"},"returnParameters":{"id":1908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1907,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1916,"src":"4485:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1906,"name":"bool","nodeType":"ElementaryTypeName","src":"4485:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4484:6:9"},"scope":2533,"src":"4388:162:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2614],"body":{"id":1942,"nodeType":"Block","src":"4701:207:9","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":1929,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"4790:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4790:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1931,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"4804:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1928,"name":"_isApprovedOrOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2086,"src":"4771:18:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) view returns (bool)"}},"id":1932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:41:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6572206f7220617070726f766564","id":1933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4814:47:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af","typeString":"literal_string \"ERC721: caller is not token owner or approved\""},"value":"ERC721: caller is not token owner or approved"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af","typeString":"literal_string \"ERC721: caller is not token owner or approved\""}],"id":1927,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4763:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4763:99:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1935,"nodeType":"ExpressionStatement","src":"4763:99:9"},{"expression":{"arguments":[{"id":1937,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4883:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1938,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1921,"src":"4889:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1939,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"4893:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1936,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2359,"src":"4873:9:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4873:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1941,"nodeType":"ExpressionStatement","src":"4873:28:9"}]},"documentation":{"id":1917,"nodeType":"StructuredDocumentation","src":"4556:51:9","text":" @dev See {IERC721-transferFrom}."},"functionSelector":"23b872dd","id":1943,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4621:12:9","nodeType":"FunctionDefinition","overrides":{"id":1925,"nodeType":"OverrideSpecifier","overrides":[],"src":"4692:8:9"},"parameters":{"id":1924,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1919,"mutability":"mutable","name":"from","nameLocation":"4642:4:9","nodeType":"VariableDeclaration","scope":1943,"src":"4634:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1918,"name":"address","nodeType":"ElementaryTypeName","src":"4634:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1921,"mutability":"mutable","name":"to","nameLocation":"4656:2:9","nodeType":"VariableDeclaration","scope":1943,"src":"4648:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1920,"name":"address","nodeType":"ElementaryTypeName","src":"4648:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1923,"mutability":"mutable","name":"tokenId","nameLocation":"4668:7:9","nodeType":"VariableDeclaration","scope":1943,"src":"4660:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1922,"name":"uint256","nodeType":"ElementaryTypeName","src":"4660:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4633:43:9"},"returnParameters":{"id":1926,"nodeType":"ParameterList","parameters":[],"src":"4701:0:9"},"scope":2533,"src":"4612:296:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2604],"body":{"id":1961,"nodeType":"Block","src":"5067:56:9","statements":[{"expression":{"arguments":[{"id":1955,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1946,"src":"5094:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1956,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"5100:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1957,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1950,"src":"5104:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":1958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5113:2:9","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":1954,"name":"safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[1962,1992],"referencedDeclaration":1992,"src":"5077:16:9","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":1959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5077:39:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1960,"nodeType":"ExpressionStatement","src":"5077:39:9"}]},"documentation":{"id":1944,"nodeType":"StructuredDocumentation","src":"4914:55:9","text":" @dev See {IERC721-safeTransferFrom}."},"functionSelector":"42842e0e","id":1962,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"4983:16:9","nodeType":"FunctionDefinition","overrides":{"id":1952,"nodeType":"OverrideSpecifier","overrides":[],"src":"5058:8:9"},"parameters":{"id":1951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1946,"mutability":"mutable","name":"from","nameLocation":"5008:4:9","nodeType":"VariableDeclaration","scope":1962,"src":"5000:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1945,"name":"address","nodeType":"ElementaryTypeName","src":"5000:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1948,"mutability":"mutable","name":"to","nameLocation":"5022:2:9","nodeType":"VariableDeclaration","scope":1962,"src":"5014:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1947,"name":"address","nodeType":"ElementaryTypeName","src":"5014:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1950,"mutability":"mutable","name":"tokenId","nameLocation":"5034:7:9","nodeType":"VariableDeclaration","scope":1962,"src":"5026:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1949,"name":"uint256","nodeType":"ElementaryTypeName","src":"5026:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4999:43:9"},"returnParameters":{"id":1953,"nodeType":"ParameterList","parameters":[],"src":"5067:0:9"},"scope":2533,"src":"4974:149:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2594],"body":{"id":1991,"nodeType":"Block","src":"5301:164:9","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":1977,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"5338:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5338:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1979,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1969,"src":"5352:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1976,"name":"_isApprovedOrOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2086,"src":"5319:18:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) view returns (bool)"}},"id":1980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5319:41:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6572206f7220617070726f766564","id":1981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5362:47:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af","typeString":"literal_string \"ERC721: caller is not token owner or approved\""},"value":"ERC721: caller is not token owner or approved"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af","typeString":"literal_string \"ERC721: caller is not token owner or approved\""}],"id":1975,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5311:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1982,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5311:99:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1983,"nodeType":"ExpressionStatement","src":"5311:99:9"},{"expression":{"arguments":[{"id":1985,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"5434:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1986,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"5440:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1987,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1969,"src":"5444:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1988,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1971,"src":"5453:4:9","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"}],"id":1984,"name":"_safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2021,"src":"5420:13:9","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":1989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5420:38:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1990,"nodeType":"ExpressionStatement","src":"5420:38:9"}]},"documentation":{"id":1963,"nodeType":"StructuredDocumentation","src":"5129:55:9","text":" @dev See {IERC721-safeTransferFrom}."},"functionSelector":"b88d4fde","id":1992,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"5198:16:9","nodeType":"FunctionDefinition","overrides":{"id":1973,"nodeType":"OverrideSpecifier","overrides":[],"src":"5292:8:9"},"parameters":{"id":1972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1965,"mutability":"mutable","name":"from","nameLocation":"5223:4:9","nodeType":"VariableDeclaration","scope":1992,"src":"5215:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1964,"name":"address","nodeType":"ElementaryTypeName","src":"5215:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1967,"mutability":"mutable","name":"to","nameLocation":"5237:2:9","nodeType":"VariableDeclaration","scope":1992,"src":"5229:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1966,"name":"address","nodeType":"ElementaryTypeName","src":"5229:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1969,"mutability":"mutable","name":"tokenId","nameLocation":"5249:7:9","nodeType":"VariableDeclaration","scope":1992,"src":"5241:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1968,"name":"uint256","nodeType":"ElementaryTypeName","src":"5241:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1971,"mutability":"mutable","name":"data","nameLocation":"5271:4:9","nodeType":"VariableDeclaration","scope":1992,"src":"5258:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1970,"name":"bytes","nodeType":"ElementaryTypeName","src":"5258:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5214:62:9"},"returnParameters":{"id":1974,"nodeType":"ParameterList","parameters":[],"src":"5301:0:9"},"scope":2533,"src":"5189:276:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":2020,"nodeType":"Block","src":"6428:165:9","statements":[{"expression":{"arguments":[{"id":2005,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1995,"src":"6448:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2006,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1997,"src":"6454:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2007,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1999,"src":"6458:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2004,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2359,"src":"6438:9:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6438:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2009,"nodeType":"ExpressionStatement","src":"6438:28:9"},{"expression":{"arguments":[{"arguments":[{"id":2012,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1995,"src":"6507:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2013,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1997,"src":"6513:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2014,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1999,"src":"6517:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2015,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2001,"src":"6526:4:9","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"}],"id":2011,"name":"_checkOnERC721Received","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2491,"src":"6484:22:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,address,uint256,bytes memory) returns (bool)"}},"id":2016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6484:47:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572","id":2017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6533:52:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e","typeString":"literal_string \"ERC721: transfer to non ERC721Receiver implementer\""},"value":"ERC721: transfer to non ERC721Receiver implementer"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e","typeString":"literal_string \"ERC721: transfer to non ERC721Receiver implementer\""}],"id":2010,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6476:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6476:110:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2019,"nodeType":"ExpressionStatement","src":"6476:110:9"}]},"documentation":{"id":1993,"nodeType":"StructuredDocumentation","src":"5471:850:9","text":" @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC721 protocol 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 equivalent to {safeTransferFrom}, and can be used to e.g.\n implement alternative mechanisms to perform token transfer, such as signature-based.\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 `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."},"id":2021,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransfer","nameLocation":"6335:13:9","nodeType":"FunctionDefinition","parameters":{"id":2002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1995,"mutability":"mutable","name":"from","nameLocation":"6357:4:9","nodeType":"VariableDeclaration","scope":2021,"src":"6349:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1994,"name":"address","nodeType":"ElementaryTypeName","src":"6349:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1997,"mutability":"mutable","name":"to","nameLocation":"6371:2:9","nodeType":"VariableDeclaration","scope":2021,"src":"6363:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1996,"name":"address","nodeType":"ElementaryTypeName","src":"6363:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1999,"mutability":"mutable","name":"tokenId","nameLocation":"6383:7:9","nodeType":"VariableDeclaration","scope":2021,"src":"6375:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1998,"name":"uint256","nodeType":"ElementaryTypeName","src":"6375:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2001,"mutability":"mutable","name":"data","nameLocation":"6405:4:9","nodeType":"VariableDeclaration","scope":2021,"src":"6392:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2000,"name":"bytes","nodeType":"ElementaryTypeName","src":"6392:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6348:62:9"},"returnParameters":{"id":2003,"nodeType":"ParameterList","parameters":[],"src":"6428:0:9"},"scope":2533,"src":"6326:267:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2033,"nodeType":"Block","src":"6777:40:9","statements":[{"expression":{"baseExpression":{"id":2029,"name":"_owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1638,"src":"6794:7:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2031,"indexExpression":{"id":2030,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2024,"src":"6802:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6794:16:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2028,"id":2032,"nodeType":"Return","src":"6787:23:9"}]},"documentation":{"id":2022,"nodeType":"StructuredDocumentation","src":"6599:98:9","text":" @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist"},"id":2034,"implemented":true,"kind":"function","modifiers":[],"name":"_ownerOf","nameLocation":"6711:8:9","nodeType":"FunctionDefinition","parameters":{"id":2025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2024,"mutability":"mutable","name":"tokenId","nameLocation":"6728:7:9","nodeType":"VariableDeclaration","scope":2034,"src":"6720:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2023,"name":"uint256","nodeType":"ElementaryTypeName","src":"6720:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6719:17:9"},"returnParameters":{"id":2028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2034,"src":"6768:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2026,"name":"address","nodeType":"ElementaryTypeName","src":"6768:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6767:9:9"},"scope":2533,"src":"6702:115:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2051,"nodeType":"Block","src":"7191:55:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2043,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2037,"src":"7217:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2042,"name":"_ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2034,"src":"7208:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7208:17:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7237:1:9","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":2046,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7229:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2045,"name":"address","nodeType":"ElementaryTypeName","src":"7229:7:9","typeDescriptions":{}}},"id":2048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7229:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7208:31:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2041,"id":2050,"nodeType":"Return","src":"7201:38:9"}]},"documentation":{"id":2035,"nodeType":"StructuredDocumentation","src":"6823:292:9","text":" @dev Returns whether `tokenId` exists.\n Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n Tokens start existing when they are minted (`_mint`),\n and stop existing when they are burned (`_burn`)."},"id":2052,"implemented":true,"kind":"function","modifiers":[],"name":"_exists","nameLocation":"7129:7:9","nodeType":"FunctionDefinition","parameters":{"id":2038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2037,"mutability":"mutable","name":"tokenId","nameLocation":"7145:7:9","nodeType":"VariableDeclaration","scope":2052,"src":"7137:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2036,"name":"uint256","nodeType":"ElementaryTypeName","src":"7137:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7136:17:9"},"returnParameters":{"id":2041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2040,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2052,"src":"7185:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2039,"name":"bool","nodeType":"ElementaryTypeName","src":"7185:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7184:6:9"},"scope":2533,"src":"7120:126:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2085,"nodeType":"Block","src":"7503:162:9","statements":[{"assignments":[2063],"declarations":[{"constant":false,"id":2063,"mutability":"mutable","name":"owner","nameLocation":"7521:5:9","nodeType":"VariableDeclaration","scope":2085,"src":"7513:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2062,"name":"address","nodeType":"ElementaryTypeName","src":"7513:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2068,"initialValue":{"arguments":[{"id":2066,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"7544:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2064,"name":"ERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"7529:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721_$2533_$","typeString":"type(contract ERC721)"}},"id":2065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7536:7:9","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":1752,"src":"7529:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7529:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"7513:39:9"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2069,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2055,"src":"7570:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2070,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2063,"src":"7581:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7570:16:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":2073,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2063,"src":"7607:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2074,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2055,"src":"7614:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2072,"name":"isApprovedForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"7590:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view returns (bool)"}},"id":2075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7590:32:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7570:52:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2078,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2057,"src":"7638:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2077,"name":"getApproved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1881,"src":"7626:11:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7626:20:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2080,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2055,"src":"7650:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7626:31:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7570:87:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2083,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7569:89:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2061,"id":2084,"nodeType":"Return","src":"7562:96:9"}]},"documentation":{"id":2053,"nodeType":"StructuredDocumentation","src":"7252:147:9","text":" @dev Returns whether `spender` is allowed to manage `tokenId`.\n Requirements:\n - `tokenId` must exist."},"id":2086,"implemented":true,"kind":"function","modifiers":[],"name":"_isApprovedOrOwner","nameLocation":"7413:18:9","nodeType":"FunctionDefinition","parameters":{"id":2058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2055,"mutability":"mutable","name":"spender","nameLocation":"7440:7:9","nodeType":"VariableDeclaration","scope":2086,"src":"7432:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2054,"name":"address","nodeType":"ElementaryTypeName","src":"7432:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2057,"mutability":"mutable","name":"tokenId","nameLocation":"7457:7:9","nodeType":"VariableDeclaration","scope":2086,"src":"7449:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2056,"name":"uint256","nodeType":"ElementaryTypeName","src":"7449:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7431:34:9"},"returnParameters":{"id":2061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2060,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2086,"src":"7497:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2059,"name":"bool","nodeType":"ElementaryTypeName","src":"7497:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7496:6:9"},"scope":2533,"src":"7404:261:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2100,"nodeType":"Block","src":"8060:43:9","statements":[{"expression":{"arguments":[{"id":2095,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2089,"src":"8080:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2096,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2091,"src":"8084:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":2097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8093:2:9","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":2094,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[2101,2130],"referencedDeclaration":2130,"src":"8070:9:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,bytes memory)"}},"id":2098,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8070:26:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2099,"nodeType":"ExpressionStatement","src":"8070:26:9"}]},"documentation":{"id":2087,"nodeType":"StructuredDocumentation","src":"7671:319:9","text":" @dev Safely mints `tokenId` and transfers it to `to`.\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":2101,"implemented":true,"kind":"function","modifiers":[],"name":"_safeMint","nameLocation":"8004:9:9","nodeType":"FunctionDefinition","parameters":{"id":2092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2089,"mutability":"mutable","name":"to","nameLocation":"8022:2:9","nodeType":"VariableDeclaration","scope":2101,"src":"8014:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2088,"name":"address","nodeType":"ElementaryTypeName","src":"8014:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2091,"mutability":"mutable","name":"tokenId","nameLocation":"8034:7:9","nodeType":"VariableDeclaration","scope":2101,"src":"8026:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2090,"name":"uint256","nodeType":"ElementaryTypeName","src":"8026:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8013:29:9"},"returnParameters":{"id":2093,"nodeType":"ParameterList","parameters":[],"src":"8060:0:9"},"scope":2533,"src":"7995:108:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2129,"nodeType":"Block","src":"8408:195:9","statements":[{"expression":{"arguments":[{"id":2112,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2104,"src":"8424:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2113,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2106,"src":"8428:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2111,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2207,"src":"8418:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8418:18:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2115,"nodeType":"ExpressionStatement","src":"8418:18:9"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30","id":2120,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8498:1:9","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":2119,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8490:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2118,"name":"address","nodeType":"ElementaryTypeName","src":"8490:7:9","typeDescriptions":{}}},"id":2121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8490:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2122,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2104,"src":"8502:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2123,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2106,"src":"8506:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2124,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2108,"src":"8515:4:9","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"}],"id":2117,"name":"_checkOnERC721Received","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2491,"src":"8467:22:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,address,uint256,bytes memory) returns (bool)"}},"id":2125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8467:53:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572","id":2126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8534:52:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e","typeString":"literal_string \"ERC721: transfer to non ERC721Receiver implementer\""},"value":"ERC721: transfer to non ERC721Receiver implementer"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e","typeString":"literal_string \"ERC721: transfer to non ERC721Receiver implementer\""}],"id":2116,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8446:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8446:150:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2128,"nodeType":"ExpressionStatement","src":"8446:150:9"}]},"documentation":{"id":2102,"nodeType":"StructuredDocumentation","src":"8109:210:9","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":2130,"implemented":true,"kind":"function","modifiers":[],"name":"_safeMint","nameLocation":"8333:9:9","nodeType":"FunctionDefinition","parameters":{"id":2109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2104,"mutability":"mutable","name":"to","nameLocation":"8351:2:9","nodeType":"VariableDeclaration","scope":2130,"src":"8343:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2103,"name":"address","nodeType":"ElementaryTypeName","src":"8343:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2106,"mutability":"mutable","name":"tokenId","nameLocation":"8363:7:9","nodeType":"VariableDeclaration","scope":2130,"src":"8355:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2105,"name":"uint256","nodeType":"ElementaryTypeName","src":"8355:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2108,"mutability":"mutable","name":"data","nameLocation":"8385:4:9","nodeType":"VariableDeclaration","scope":2130,"src":"8372:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2107,"name":"bytes","nodeType":"ElementaryTypeName","src":"8372:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8342:48:9"},"returnParameters":{"id":2110,"nodeType":"ParameterList","parameters":[],"src":"8408:0:9"},"scope":2533,"src":"8324:279:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2206,"nodeType":"Block","src":"8986:859:9","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2139,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"9004:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9018:1:9","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":2141,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9010:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2140,"name":"address","nodeType":"ElementaryTypeName","src":"9010:7:9","typeDescriptions":{}}},"id":2143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9010:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9004:16:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a206d696e7420746f20746865207a65726f2061646472657373","id":2145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9022:34:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6","typeString":"literal_string \"ERC721: mint to the zero address\""},"value":"ERC721: mint to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6","typeString":"literal_string \"ERC721: mint to the zero address\""}],"id":2138,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8996:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2146,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8996:61:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2147,"nodeType":"ExpressionStatement","src":"8996:61:9"},{"expression":{"arguments":[{"id":2152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"9075:17:9","subExpression":{"arguments":[{"id":2150,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"9084:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2149,"name":"_exists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"9076:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":2151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9076:16:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a20746f6b656e20616c7265616479206d696e746564","id":2153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9094:30:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57","typeString":"literal_string \"ERC721: token already minted\""},"value":"ERC721: token already minted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57","typeString":"literal_string \"ERC721: token already minted\""}],"id":2148,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9067:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9067:58:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2155,"nodeType":"ExpressionStatement","src":"9067:58:9"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":2159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9165:1:9","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":2158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9157:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2157,"name":"address","nodeType":"ElementaryTypeName","src":"9157:7:9","typeDescriptions":{}}},"id":2160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9157:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2161,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"9169:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2162,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"9173:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":2163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9182:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":2156,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2504,"src":"9136:20:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":2164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9136:48:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2165,"nodeType":"ExpressionStatement","src":"9136:48:9"},{"expression":{"arguments":[{"id":2170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"9279:17:9","subExpression":{"arguments":[{"id":2168,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"9288:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2167,"name":"_exists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"9280:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":2169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9280:16:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a20746f6b656e20616c7265616479206d696e746564","id":2171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9298:30:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57","typeString":"literal_string \"ERC721: token already minted\""},"value":"ERC721: token already minted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57","typeString":"literal_string \"ERC721: token already minted\""}],"id":2166,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9271:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9271:58:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2173,"nodeType":"ExpressionStatement","src":"9271:58:9"},{"id":2180,"nodeType":"UncheckedBlock","src":"9340:360:9","statements":[{"expression":{"id":2178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2174,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"9671:9:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2176,"indexExpression":{"id":2175,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"9681:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9671:13:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":2177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9688:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9671:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2179,"nodeType":"ExpressionStatement","src":"9671:18:9"}]},{"expression":{"id":2185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2181,"name":"_owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1638,"src":"9710:7:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2183,"indexExpression":{"id":2182,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"9718:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9710:16:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2184,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"9729:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9710:21:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2186,"nodeType":"ExpressionStatement","src":"9710:21:9"},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":2190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9764:1:9","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":2189,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9756:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2188,"name":"address","nodeType":"ElementaryTypeName","src":"9756:7:9","typeDescriptions":{}}},"id":2191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9756:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2192,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"9768:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2193,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"9772:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2187,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2548,"src":"9747:8:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9747:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2195,"nodeType":"EmitStatement","src":"9742:38:9"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":2199,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9819:1:9","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":2198,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9811:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2197,"name":"address","nodeType":"ElementaryTypeName","src":"9811:7:9","typeDescriptions":{}}},"id":2200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9811:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2201,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2133,"src":"9823:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2202,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"9827:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":2203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9836:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":2196,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2517,"src":"9791:19:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":2204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9791:47:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2205,"nodeType":"ExpressionStatement","src":"9791:47:9"}]},"documentation":{"id":2131,"nodeType":"StructuredDocumentation","src":"8609:311:9","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":2207,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"8934:5:9","nodeType":"FunctionDefinition","parameters":{"id":2136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2133,"mutability":"mutable","name":"to","nameLocation":"8948:2:9","nodeType":"VariableDeclaration","scope":2207,"src":"8940:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2132,"name":"address","nodeType":"ElementaryTypeName","src":"8940:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2135,"mutability":"mutable","name":"tokenId","nameLocation":"8960:7:9","nodeType":"VariableDeclaration","scope":2207,"src":"8952:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2134,"name":"uint256","nodeType":"ElementaryTypeName","src":"8952:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8939:29:9"},"returnParameters":{"id":2137,"nodeType":"ParameterList","parameters":[],"src":"8986:0:9"},"scope":2533,"src":"8925:920:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2273,"nodeType":"Block","src":"10220:713:9","statements":[{"assignments":[2214],"declarations":[{"constant":false,"id":2214,"mutability":"mutable","name":"owner","nameLocation":"10238:5:9","nodeType":"VariableDeclaration","scope":2273,"src":"10230:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2213,"name":"address","nodeType":"ElementaryTypeName","src":"10230:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2219,"initialValue":{"arguments":[{"id":2217,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"10261:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2215,"name":"ERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"10246:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721_$2533_$","typeString":"type(contract ERC721)"}},"id":2216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10253:7:9","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":1752,"src":"10246:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2218,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10246:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"10230:39:9"},{"expression":{"arguments":[{"id":2221,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"10301:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":2224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10316:1:9","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":2223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10308:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2222,"name":"address","nodeType":"ElementaryTypeName","src":"10308:7:9","typeDescriptions":{}}},"id":2225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10308:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2226,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"10320:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":2227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10329:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":2220,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2504,"src":"10280:20:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":2228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10280:51:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2229,"nodeType":"ExpressionStatement","src":"10280:51:9"},{"expression":{"id":2235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2230,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"10433:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2233,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"10456:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2231,"name":"ERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"10441:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721_$2533_$","typeString":"type(contract ERC721)"}},"id":2232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10448:7:9","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":1752,"src":"10441:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10441:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10433:31:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2236,"nodeType":"ExpressionStatement","src":"10433:31:9"},{"expression":{"id":2240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"10502:31:9","subExpression":{"baseExpression":{"id":2237,"name":"_tokenApprovals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"10509:15:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2239,"indexExpression":{"id":2238,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"10525:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10509:24:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2241,"nodeType":"ExpressionStatement","src":"10502:31:9"},{"id":2248,"nodeType":"UncheckedBlock","src":"10544:237:9","statements":[{"expression":{"id":2246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2242,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"10749:9:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2244,"indexExpression":{"id":2243,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"10759:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10749:16:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"31","id":2245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10769:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10749:21:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2247,"nodeType":"ExpressionStatement","src":"10749:21:9"}]},{"expression":{"id":2252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"10790:23:9","subExpression":{"baseExpression":{"id":2249,"name":"_owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1638,"src":"10797:7:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2251,"indexExpression":{"id":2250,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"10805:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10797:16:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2253,"nodeType":"ExpressionStatement","src":"10790:23:9"},{"eventCall":{"arguments":[{"id":2255,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"10838:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":2258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10853:1:9","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":2257,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10845:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2256,"name":"address","nodeType":"ElementaryTypeName","src":"10845:7:9","typeDescriptions":{}}},"id":2259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10845:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2260,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"10857:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2254,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2548,"src":"10829:8:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10829:36:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2262,"nodeType":"EmitStatement","src":"10824:41:9"},{"expression":{"arguments":[{"id":2264,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"10896:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":2267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10911:1:9","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":2266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10903:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2265,"name":"address","nodeType":"ElementaryTypeName","src":"10903:7:9","typeDescriptions":{}}},"id":2268,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10903:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2269,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2210,"src":"10915:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":2270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10924:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":2263,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2517,"src":"10876:19:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":2271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10876:50:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2272,"nodeType":"ExpressionStatement","src":"10876:50:9"}]},"documentation":{"id":2208,"nodeType":"StructuredDocumentation","src":"9851:315:9","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":2274,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"10180:5:9","nodeType":"FunctionDefinition","parameters":{"id":2211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2210,"mutability":"mutable","name":"tokenId","nameLocation":"10194:7:9","nodeType":"VariableDeclaration","scope":2274,"src":"10186:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2209,"name":"uint256","nodeType":"ElementaryTypeName","src":"10186:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10185:17:9"},"returnParameters":{"id":2212,"nodeType":"ParameterList","parameters":[],"src":"10220:0:9"},"scope":2533,"src":"10171:762:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2358,"nodeType":"Block","src":"11336:1124:9","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2287,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"11369:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2285,"name":"ERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"11354:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721_$2533_$","typeString":"type(contract ERC721)"}},"id":2286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11361:7:9","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":1752,"src":"11354:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11354:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2289,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2277,"src":"11381:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11354:31:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a207472616e736665722066726f6d20696e636f7272656374206f776e6572","id":2291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11387:39:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48","typeString":"literal_string \"ERC721: transfer from incorrect owner\""},"value":"ERC721: transfer from incorrect owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48","typeString":"literal_string \"ERC721: transfer from incorrect owner\""}],"id":2284,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11346:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11346:81:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2293,"nodeType":"ExpressionStatement","src":"11346:81:9"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2295,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2279,"src":"11445:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11459:1:9","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":2297,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11451:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2296,"name":"address","nodeType":"ElementaryTypeName","src":"11451:7:9","typeDescriptions":{}}},"id":2299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11451:10:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11445:16:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a207472616e7366657220746f20746865207a65726f2061646472657373","id":2301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11463:38:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4","typeString":"literal_string \"ERC721: transfer to the zero address\""},"value":"ERC721: transfer to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4","typeString":"literal_string \"ERC721: transfer to the zero address\""}],"id":2294,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11437:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11437:65:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2303,"nodeType":"ExpressionStatement","src":"11437:65:9"},{"expression":{"arguments":[{"id":2305,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2277,"src":"11534:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2306,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2279,"src":"11540:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2307,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"11544:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":2308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11553:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":2304,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2504,"src":"11513:20:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":2309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11513:42:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2310,"nodeType":"ExpressionStatement","src":"11513:42:9"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2314,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"11670:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2312,"name":"ERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"11655:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721_$2533_$","typeString":"type(contract ERC721)"}},"id":2313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11662:7:9","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":1752,"src":"11655:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11655:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2316,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2277,"src":"11682:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11655:31:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a207472616e736665722066726f6d20696e636f7272656374206f776e6572","id":2318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11688:39:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48","typeString":"literal_string \"ERC721: transfer from incorrect owner\""},"value":"ERC721: transfer from incorrect owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48","typeString":"literal_string \"ERC721: transfer from incorrect owner\""}],"id":2311,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11647:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11647:81:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2320,"nodeType":"ExpressionStatement","src":"11647:81:9"},{"expression":{"id":2324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"11790:31:9","subExpression":{"baseExpression":{"id":2321,"name":"_tokenApprovals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"11797:15:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2323,"indexExpression":{"id":2322,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"11813:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11797:24:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2325,"nodeType":"ExpressionStatement","src":"11790:31:9"},{"id":2338,"nodeType":"UncheckedBlock","src":"11832:496:9","statements":[{"expression":{"id":2330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2326,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"12265:9:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2328,"indexExpression":{"id":2327,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2277,"src":"12275:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12265:15:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"31","id":2329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12284:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12265:20:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2331,"nodeType":"ExpressionStatement","src":"12265:20:9"},{"expression":{"id":2336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2332,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"12299:9:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2334,"indexExpression":{"id":2333,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2279,"src":"12309:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12299:13:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":2335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12316:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12299:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2337,"nodeType":"ExpressionStatement","src":"12299:18:9"}]},{"expression":{"id":2343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2339,"name":"_owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1638,"src":"12337:7:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2341,"indexExpression":{"id":2340,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"12345:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12337:16:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2342,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2279,"src":"12356:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12337:21:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2344,"nodeType":"ExpressionStatement","src":"12337:21:9"},{"eventCall":{"arguments":[{"id":2346,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2277,"src":"12383:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2347,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2279,"src":"12389:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2348,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"12393:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2345,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2548,"src":"12374:8:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12374:27:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2350,"nodeType":"EmitStatement","src":"12369:32:9"},{"expression":{"arguments":[{"id":2352,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2277,"src":"12432:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2353,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2279,"src":"12438:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2354,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"12442:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":2355,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12451:1:9","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":2351,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2517,"src":"12412:19:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":2356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12412:41:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2357,"nodeType":"ExpressionStatement","src":"12412:41:9"}]},"documentation":{"id":2275,"nodeType":"StructuredDocumentation","src":"10939:313:9","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":2359,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"11266:9:9","nodeType":"FunctionDefinition","parameters":{"id":2282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2277,"mutability":"mutable","name":"from","nameLocation":"11284:4:9","nodeType":"VariableDeclaration","scope":2359,"src":"11276:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2276,"name":"address","nodeType":"ElementaryTypeName","src":"11276:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2279,"mutability":"mutable","name":"to","nameLocation":"11298:2:9","nodeType":"VariableDeclaration","scope":2359,"src":"11290:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2278,"name":"address","nodeType":"ElementaryTypeName","src":"11290:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2281,"mutability":"mutable","name":"tokenId","nameLocation":"11310:7:9","nodeType":"VariableDeclaration","scope":2359,"src":"11302:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2280,"name":"uint256","nodeType":"ElementaryTypeName","src":"11302:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11275:43:9"},"returnParameters":{"id":2283,"nodeType":"ParameterList","parameters":[],"src":"11336:0:9"},"scope":2533,"src":"11257:1203:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2382,"nodeType":"Block","src":"12636:107:9","statements":[{"expression":{"id":2371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2367,"name":"_tokenApprovals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"12646:15:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":2369,"indexExpression":{"id":2368,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2364,"src":"12662:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12646:24:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2370,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2362,"src":"12673:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12646:29:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2372,"nodeType":"ExpressionStatement","src":"12646:29:9"},{"eventCall":{"arguments":[{"arguments":[{"id":2376,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2364,"src":"12714:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2374,"name":"ERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"12699:6:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721_$2533_$","typeString":"type(contract ERC721)"}},"id":2375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12706:7:9","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":1752,"src":"12699:14:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12699:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2378,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2362,"src":"12724:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2379,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2364,"src":"12728:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2373,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2557,"src":"12690:8:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12690:46:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2381,"nodeType":"EmitStatement","src":"12685:51:9"}]},"documentation":{"id":2360,"nodeType":"StructuredDocumentation","src":"12466:101:9","text":" @dev Approve `to` to operate on `tokenId`\n Emits an {Approval} event."},"id":2383,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"12581:8:9","nodeType":"FunctionDefinition","parameters":{"id":2365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2362,"mutability":"mutable","name":"to","nameLocation":"12598:2:9","nodeType":"VariableDeclaration","scope":2383,"src":"12590:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2361,"name":"address","nodeType":"ElementaryTypeName","src":"12590:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2364,"mutability":"mutable","name":"tokenId","nameLocation":"12610:7:9","nodeType":"VariableDeclaration","scope":2383,"src":"12602:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2363,"name":"uint256","nodeType":"ElementaryTypeName","src":"12602:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12589:29:9"},"returnParameters":{"id":2366,"nodeType":"ParameterList","parameters":[],"src":"12636:0:9"},"scope":2533,"src":"12572:171:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2414,"nodeType":"Block","src":"12972:184:9","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2394,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2386,"src":"12990:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2395,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2388,"src":"12999:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12990:17:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a20617070726f766520746f2063616c6c6572","id":2397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13009:27:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05","typeString":"literal_string \"ERC721: approve to caller\""},"value":"ERC721: approve to caller"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05","typeString":"literal_string \"ERC721: approve to caller\""}],"id":2393,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12982:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12982:55:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2399,"nodeType":"ExpressionStatement","src":"12982:55:9"},{"expression":{"id":2406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":2400,"name":"_operatorApprovals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"13047:18:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"}},"id":2403,"indexExpression":{"id":2401,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2386,"src":"13066:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13047:25:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2404,"indexExpression":{"id":2402,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2388,"src":"13073:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13047:35:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2405,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2390,"src":"13085:8:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13047:46:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2407,"nodeType":"ExpressionStatement","src":"13047:46:9"},{"eventCall":{"arguments":[{"id":2409,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2386,"src":"13123:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2410,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2388,"src":"13130:8:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2411,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2390,"src":"13140:8:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":2408,"name":"ApprovalForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2566,"src":"13108:14:9","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,address,bool)"}},"id":2412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13108:41:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2413,"nodeType":"EmitStatement","src":"13103:46:9"}]},"documentation":{"id":2384,"nodeType":"StructuredDocumentation","src":"12749:125:9","text":" @dev Approve `operator` to operate on all of `owner` tokens\n Emits an {ApprovalForAll} event."},"id":2415,"implemented":true,"kind":"function","modifiers":[],"name":"_setApprovalForAll","nameLocation":"12888:18:9","nodeType":"FunctionDefinition","parameters":{"id":2391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2386,"mutability":"mutable","name":"owner","nameLocation":"12915:5:9","nodeType":"VariableDeclaration","scope":2415,"src":"12907:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2385,"name":"address","nodeType":"ElementaryTypeName","src":"12907:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2388,"mutability":"mutable","name":"operator","nameLocation":"12930:8:9","nodeType":"VariableDeclaration","scope":2415,"src":"12922:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2387,"name":"address","nodeType":"ElementaryTypeName","src":"12922:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2390,"mutability":"mutable","name":"approved","nameLocation":"12945:8:9","nodeType":"VariableDeclaration","scope":2415,"src":"12940:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2389,"name":"bool","nodeType":"ElementaryTypeName","src":"12940:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12906:48:9"},"returnParameters":{"id":2392,"nodeType":"ParameterList","parameters":[],"src":"12972:0:9"},"scope":2533,"src":"12879:277:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2428,"nodeType":"Block","src":"13303:70:9","statements":[{"expression":{"arguments":[{"arguments":[{"id":2423,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2418,"src":"13329:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2422,"name":"_exists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"13321:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":2424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13321:16:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4552433732313a20696e76616c696420746f6b656e204944","id":2425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13339:26:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f","typeString":"literal_string \"ERC721: invalid token ID\""},"value":"ERC721: invalid token ID"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f","typeString":"literal_string \"ERC721: invalid token ID\""}],"id":2421,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13313:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13313:53:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2427,"nodeType":"ExpressionStatement","src":"13313:53:9"}]},"documentation":{"id":2416,"nodeType":"StructuredDocumentation","src":"13162:73:9","text":" @dev Reverts if the `tokenId` has not been minted yet."},"id":2429,"implemented":true,"kind":"function","modifiers":[],"name":"_requireMinted","nameLocation":"13249:14:9","nodeType":"FunctionDefinition","parameters":{"id":2419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2418,"mutability":"mutable","name":"tokenId","nameLocation":"13272:7:9","nodeType":"VariableDeclaration","scope":2429,"src":"13264:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2417,"name":"uint256","nodeType":"ElementaryTypeName","src":"13264:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13263:17:9"},"returnParameters":{"id":2420,"nodeType":"ParameterList","parameters":[],"src":"13303:0:9"},"scope":2533,"src":"13240:133:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2490,"nodeType":"Block","src":"14080:676:9","statements":[{"condition":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":2443,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2434,"src":"14094:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14097:10:9","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":2868,"src":"14094:13:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$attached_to$_t_address_$","typeString":"function (address) view returns (bool)"}},"id":2445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14094:15:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2488,"nodeType":"Block","src":"14714:36:9","statements":[{"expression":{"hexValue":"74727565","id":2486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14735:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2442,"id":2487,"nodeType":"Return","src":"14728:11:9"}]},"id":2489,"nodeType":"IfStatement","src":"14090:660:9","trueBody":{"id":2485,"nodeType":"Block","src":"14111:597:9","statements":[{"clauses":[{"block":{"id":2465,"nodeType":"Block","src":"14225:91:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":2463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2459,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2457,"src":"14250:6:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":2460,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2667,"src":"14260:15:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$2667_$","typeString":"type(contract IERC721Receiver)"}},"id":2461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14276:16:9","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":2666,"src":"14260:32:9","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":2462,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14293:8:9","memberName":"selector","nodeType":"MemberAccess","src":"14260:41:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"14250:51:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2442,"id":2464,"nodeType":"Return","src":"14243:58:9"}]},"errorName":"","id":2466,"nodeType":"TryCatchClause","parameters":{"id":2458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2457,"mutability":"mutable","name":"retval","nameLocation":"14217:6:9","nodeType":"VariableDeclaration","scope":2466,"src":"14210:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2456,"name":"bytes4","nodeType":"ElementaryTypeName","src":"14210:6:9","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"14209:15:9"},"src":"14201:115:9"},{"block":{"id":2482,"nodeType":"Block","src":"14345:353:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2470,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2468,"src":"14367:6:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14374:6:9","memberName":"length","nodeType":"MemberAccess","src":"14367:13:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14384:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14367:18:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2480,"nodeType":"Block","src":"14494:190:9","statements":[{"AST":{"nodeType":"YulBlock","src":"14580:86:9","statements":[{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14617:2:9","type":"","value":"32"},{"name":"reason","nodeType":"YulIdentifier","src":"14621:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14613:3:9"},"nodeType":"YulFunctionCall","src":"14613:15:9"},{"arguments":[{"name":"reason","nodeType":"YulIdentifier","src":"14636:6:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14630:5:9"},"nodeType":"YulFunctionCall","src":"14630:13:9"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"14606:6:9"},"nodeType":"YulFunctionCall","src":"14606:38:9"},"nodeType":"YulExpressionStatement","src":"14606:38:9"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"paris","externalReferences":[{"declaration":2468,"isOffset":false,"isSlot":false,"src":"14621:6:9","valueSize":1},{"declaration":2468,"isOffset":false,"isSlot":false,"src":"14636:6:9","valueSize":1}],"id":2479,"nodeType":"InlineAssembly","src":"14571:95:9"}]},"id":2481,"nodeType":"IfStatement","src":"14363:321:9","trueBody":{"id":2478,"nodeType":"Block","src":"14387:101:9","statements":[{"expression":{"arguments":[{"hexValue":"4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572","id":2475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14416:52:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e","typeString":"literal_string \"ERC721: transfer to non ERC721Receiver implementer\""},"value":"ERC721: transfer to non ERC721Receiver implementer"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e","typeString":"literal_string \"ERC721: transfer to non ERC721Receiver implementer\""}],"id":2474,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"14409:6:9","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14409:60:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2477,"nodeType":"ExpressionStatement","src":"14409:60:9"}]}}]},"errorName":"","id":2483,"nodeType":"TryCatchClause","parameters":{"id":2469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2468,"mutability":"mutable","name":"reason","nameLocation":"14337:6:9","nodeType":"VariableDeclaration","scope":2483,"src":"14324:19:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2467,"name":"bytes","nodeType":"ElementaryTypeName","src":"14324:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14323:21:9"},"src":"14317:381:9"}],"externalCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":2450,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3192,"src":"14166:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14166:12:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2452,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2432,"src":"14180:4:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2453,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2436,"src":"14186:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2454,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2438,"src":"14195:4:9","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":2447,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2434,"src":"14145:2:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2446,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2667,"src":"14129:15:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$2667_$","typeString":"type(contract IERC721Receiver)"}},"id":2448,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14129:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721Receiver_$2667","typeString":"contract IERC721Receiver"}},"id":2449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14149:16:9","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":2666,"src":"14129:36:9","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":2455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14129:71:9","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":2484,"nodeType":"TryStatement","src":"14125:573:9"}]}}]},"documentation":{"id":2430,"nodeType":"StructuredDocumentation","src":"13379:541:9","text":" @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n The call is not executed if the target address is not a contract.\n @param from address representing the previous owner of the given token ID\n @param to target address that will receive the tokens\n @param tokenId uint256 ID of the token to be transferred\n @param data bytes optional data to send along with the call\n @return bool whether the call correctly returned the expected magic value"},"id":2491,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOnERC721Received","nameLocation":"13934:22:9","nodeType":"FunctionDefinition","parameters":{"id":2439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2432,"mutability":"mutable","name":"from","nameLocation":"13974:4:9","nodeType":"VariableDeclaration","scope":2491,"src":"13966:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2431,"name":"address","nodeType":"ElementaryTypeName","src":"13966:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2434,"mutability":"mutable","name":"to","nameLocation":"13996:2:9","nodeType":"VariableDeclaration","scope":2491,"src":"13988:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2433,"name":"address","nodeType":"ElementaryTypeName","src":"13988:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2436,"mutability":"mutable","name":"tokenId","nameLocation":"14016:7:9","nodeType":"VariableDeclaration","scope":2491,"src":"14008:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2435,"name":"uint256","nodeType":"ElementaryTypeName","src":"14008:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2438,"mutability":"mutable","name":"data","nameLocation":"14046:4:9","nodeType":"VariableDeclaration","scope":2491,"src":"14033:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2437,"name":"bytes","nodeType":"ElementaryTypeName","src":"14033:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"13956:100:9"},"returnParameters":{"id":2442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2441,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2491,"src":"14074:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2440,"name":"bool","nodeType":"ElementaryTypeName","src":"14074:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"14073:6:9"},"scope":2533,"src":"13925:831:9","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":2503,"nodeType":"Block","src":"15586:2:9","statements":[]},"documentation":{"id":2492,"nodeType":"StructuredDocumentation","src":"14762:705:9","text":" @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is\n used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.\n Calling conditions:\n - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.\n - When `from` is zero, the tokens will be minted for `to`.\n - When `to` is zero, ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n - `batchSize` is non-zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":2504,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeTokenTransfer","nameLocation":"15481:20:9","nodeType":"FunctionDefinition","parameters":{"id":2501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2494,"mutability":"mutable","name":"from","nameLocation":"15510:4:9","nodeType":"VariableDeclaration","scope":2504,"src":"15502:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2493,"name":"address","nodeType":"ElementaryTypeName","src":"15502:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2496,"mutability":"mutable","name":"to","nameLocation":"15524:2:9","nodeType":"VariableDeclaration","scope":2504,"src":"15516:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2495,"name":"address","nodeType":"ElementaryTypeName","src":"15516:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2498,"mutability":"mutable","name":"firstTokenId","nameLocation":"15536:12:9","nodeType":"VariableDeclaration","scope":2504,"src":"15528:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2497,"name":"uint256","nodeType":"ElementaryTypeName","src":"15528:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2500,"mutability":"mutable","name":"batchSize","nameLocation":"15558:9:9","nodeType":"VariableDeclaration","scope":2504,"src":"15550:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2499,"name":"uint256","nodeType":"ElementaryTypeName","src":"15550:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15501:67:9"},"returnParameters":{"id":2502,"nodeType":"ParameterList","parameters":[],"src":"15586:0:9"},"scope":2533,"src":"15472:116:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2516,"nodeType":"Block","src":"16407:2:9","statements":[]},"documentation":{"id":2505,"nodeType":"StructuredDocumentation","src":"15594:695:9","text":" @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is\n used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.\n Calling conditions:\n - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.\n - When `from` is zero, the tokens were minted for `to`.\n - When `to` is zero, ``from``'s tokens were burned.\n - `from` and `to` are never both zero.\n - `batchSize` is non-zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":2517,"implemented":true,"kind":"function","modifiers":[],"name":"_afterTokenTransfer","nameLocation":"16303:19:9","nodeType":"FunctionDefinition","parameters":{"id":2514,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2507,"mutability":"mutable","name":"from","nameLocation":"16331:4:9","nodeType":"VariableDeclaration","scope":2517,"src":"16323:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2506,"name":"address","nodeType":"ElementaryTypeName","src":"16323:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2509,"mutability":"mutable","name":"to","nameLocation":"16345:2:9","nodeType":"VariableDeclaration","scope":2517,"src":"16337:10:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2508,"name":"address","nodeType":"ElementaryTypeName","src":"16337:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2511,"mutability":"mutable","name":"firstTokenId","nameLocation":"16357:12:9","nodeType":"VariableDeclaration","scope":2517,"src":"16349:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2510,"name":"uint256","nodeType":"ElementaryTypeName","src":"16349:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2513,"mutability":"mutable","name":"batchSize","nameLocation":"16379:9:9","nodeType":"VariableDeclaration","scope":2517,"src":"16371:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2512,"name":"uint256","nodeType":"ElementaryTypeName","src":"16371:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16322:67:9"},"returnParameters":{"id":2515,"nodeType":"ParameterList","parameters":[],"src":"16407:0:9"},"scope":2533,"src":"16294:115:9","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2531,"nodeType":"Block","src":"16958:45:9","statements":[{"expression":{"id":2529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2525,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"16968:9:9","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2527,"indexExpression":{"id":2526,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2520,"src":"16978:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"16968:18:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2528,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2522,"src":"16990:6:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16968:28:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2530,"nodeType":"ExpressionStatement","src":"16968:28:9"}]},"documentation":{"id":2518,"nodeType":"StructuredDocumentation","src":"16415:409:9","text":" @dev Unsafe write access to the balances, used by extensions that \"mint\" tokens using an {ownerOf} override.\n WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant\n being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such\n that `ownerOf(tokenId)` is `a`."},"id":2532,"implemented":true,"kind":"function","modifiers":[],"name":"__unsafe_increaseBalance","nameLocation":"16891:24:9","nodeType":"FunctionDefinition","parameters":{"id":2523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2520,"mutability":"mutable","name":"account","nameLocation":"16924:7:9","nodeType":"VariableDeclaration","scope":2532,"src":"16916:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2519,"name":"address","nodeType":"ElementaryTypeName","src":"16916:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2522,"mutability":"mutable","name":"amount","nameLocation":"16941:6:9","nodeType":"VariableDeclaration","scope":2532,"src":"16933:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2521,"name":"uint256","nodeType":"ElementaryTypeName","src":"16933:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16915:33:9"},"returnParameters":{"id":2524,"nodeType":"ParameterList","parameters":[],"src":"16958:0:9"},"scope":2533,"src":"16882:121:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":2534,"src":"628:16377:9","usedErrors":[]}],"src":"107:16899:9"},"id":9},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","exportedSymbols":{"IERC165":[3549],"IERC721":[2649]},"id":2650,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2535,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"108:23:10"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":2536,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2650,"sourceUnit":3550,"src":"133:47:10","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2538,"name":"IERC165","nameLocations":["271:7:10"],"nodeType":"IdentifierPath","referencedDeclaration":3549,"src":"271:7:10"},"id":2539,"nodeType":"InheritanceSpecifier","src":"271:7:10"}],"canonicalName":"IERC721","contractDependencies":[],"contractKind":"interface","documentation":{"id":2537,"nodeType":"StructuredDocumentation","src":"182:67:10","text":" @dev Required interface of an ERC721 compliant contract."},"fullyImplemented":false,"id":2649,"linearizedBaseContracts":[2649,3549],"name":"IERC721","nameLocation":"260:7:10","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":2540,"nodeType":"StructuredDocumentation","src":"285:88:10","text":" @dev Emitted when `tokenId` token is transferred from `from` to `to`."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":2548,"name":"Transfer","nameLocation":"384:8:10","nodeType":"EventDefinition","parameters":{"id":2547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2542,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"409:4:10","nodeType":"VariableDeclaration","scope":2548,"src":"393:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2541,"name":"address","nodeType":"ElementaryTypeName","src":"393:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2544,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"431:2:10","nodeType":"VariableDeclaration","scope":2548,"src":"415:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2543,"name":"address","nodeType":"ElementaryTypeName","src":"415:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2546,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"451:7:10","nodeType":"VariableDeclaration","scope":2548,"src":"435:23:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2545,"name":"uint256","nodeType":"ElementaryTypeName","src":"435:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"392:67:10"},"src":"378:82:10"},{"anonymous":false,"documentation":{"id":2549,"nodeType":"StructuredDocumentation","src":"466:94:10","text":" @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":2557,"name":"Approval","nameLocation":"571:8:10","nodeType":"EventDefinition","parameters":{"id":2556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2551,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"596:5:10","nodeType":"VariableDeclaration","scope":2557,"src":"580:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2550,"name":"address","nodeType":"ElementaryTypeName","src":"580:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2553,"indexed":true,"mutability":"mutable","name":"approved","nameLocation":"619:8:10","nodeType":"VariableDeclaration","scope":2557,"src":"603:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2552,"name":"address","nodeType":"ElementaryTypeName","src":"603:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2555,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"645:7:10","nodeType":"VariableDeclaration","scope":2557,"src":"629:23:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2554,"name":"uint256","nodeType":"ElementaryTypeName","src":"629:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"579:74:10"},"src":"565:89:10"},{"anonymous":false,"documentation":{"id":2558,"nodeType":"StructuredDocumentation","src":"660:117:10","text":" @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."},"eventSelector":"17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31","id":2566,"name":"ApprovalForAll","nameLocation":"788:14:10","nodeType":"EventDefinition","parameters":{"id":2565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2560,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"819:5:10","nodeType":"VariableDeclaration","scope":2566,"src":"803:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2559,"name":"address","nodeType":"ElementaryTypeName","src":"803:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2562,"indexed":true,"mutability":"mutable","name":"operator","nameLocation":"842:8:10","nodeType":"VariableDeclaration","scope":2566,"src":"826:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2561,"name":"address","nodeType":"ElementaryTypeName","src":"826:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2564,"indexed":false,"mutability":"mutable","name":"approved","nameLocation":"857:8:10","nodeType":"VariableDeclaration","scope":2566,"src":"852:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2563,"name":"bool","nodeType":"ElementaryTypeName","src":"852:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"802:64:10"},"src":"782:85:10"},{"documentation":{"id":2567,"nodeType":"StructuredDocumentation","src":"873:76:10","text":" @dev Returns the number of tokens in ``owner``'s account."},"functionSelector":"70a08231","id":2574,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"963:9:10","nodeType":"FunctionDefinition","parameters":{"id":2570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2569,"mutability":"mutable","name":"owner","nameLocation":"981:5:10","nodeType":"VariableDeclaration","scope":2574,"src":"973:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2568,"name":"address","nodeType":"ElementaryTypeName","src":"973:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"972:15:10"},"returnParameters":{"id":2573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2572,"mutability":"mutable","name":"balance","nameLocation":"1019:7:10","nodeType":"VariableDeclaration","scope":2574,"src":"1011:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2571,"name":"uint256","nodeType":"ElementaryTypeName","src":"1011:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1010:17:10"},"scope":2649,"src":"954:74:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2575,"nodeType":"StructuredDocumentation","src":"1034:131:10","text":" @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"6352211e","id":2582,"implemented":false,"kind":"function","modifiers":[],"name":"ownerOf","nameLocation":"1179:7:10","nodeType":"FunctionDefinition","parameters":{"id":2578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2577,"mutability":"mutable","name":"tokenId","nameLocation":"1195:7:10","nodeType":"VariableDeclaration","scope":2582,"src":"1187:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2576,"name":"uint256","nodeType":"ElementaryTypeName","src":"1187:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1186:17:10"},"returnParameters":{"id":2581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2580,"mutability":"mutable","name":"owner","nameLocation":"1235:5:10","nodeType":"VariableDeclaration","scope":2582,"src":"1227:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2579,"name":"address","nodeType":"ElementaryTypeName","src":"1227:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1226:15:10"},"scope":2649,"src":"1170:72:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2583,"nodeType":"StructuredDocumentation","src":"1248:556:10","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 a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"b88d4fde","id":2594,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1818:16:10","nodeType":"FunctionDefinition","parameters":{"id":2592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2585,"mutability":"mutable","name":"from","nameLocation":"1843:4:10","nodeType":"VariableDeclaration","scope":2594,"src":"1835:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2584,"name":"address","nodeType":"ElementaryTypeName","src":"1835:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2587,"mutability":"mutable","name":"to","nameLocation":"1857:2:10","nodeType":"VariableDeclaration","scope":2594,"src":"1849:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2586,"name":"address","nodeType":"ElementaryTypeName","src":"1849:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2589,"mutability":"mutable","name":"tokenId","nameLocation":"1869:7:10","nodeType":"VariableDeclaration","scope":2594,"src":"1861:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2588,"name":"uint256","nodeType":"ElementaryTypeName","src":"1861:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2591,"mutability":"mutable","name":"data","nameLocation":"1893:4:10","nodeType":"VariableDeclaration","scope":2594,"src":"1878:19:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2590,"name":"bytes","nodeType":"ElementaryTypeName","src":"1878:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1834:64:10"},"returnParameters":{"id":2593,"nodeType":"ParameterList","parameters":[],"src":"1907:0:10"},"scope":2649,"src":"1809:99:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2595,"nodeType":"StructuredDocumentation","src":"1914:687:10","text":" @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC721 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 {setApprovalForAll}.\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."},"functionSelector":"42842e0e","id":2604,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"2615:16:10","nodeType":"FunctionDefinition","parameters":{"id":2602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2597,"mutability":"mutable","name":"from","nameLocation":"2640:4:10","nodeType":"VariableDeclaration","scope":2604,"src":"2632:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2596,"name":"address","nodeType":"ElementaryTypeName","src":"2632:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2599,"mutability":"mutable","name":"to","nameLocation":"2654:2:10","nodeType":"VariableDeclaration","scope":2604,"src":"2646:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2598,"name":"address","nodeType":"ElementaryTypeName","src":"2646:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2601,"mutability":"mutable","name":"tokenId","nameLocation":"2666:7:10","nodeType":"VariableDeclaration","scope":2604,"src":"2658:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2600,"name":"uint256","nodeType":"ElementaryTypeName","src":"2658:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2631:43:10"},"returnParameters":{"id":2603,"nodeType":"ParameterList","parameters":[],"src":"2683:0:10"},"scope":2649,"src":"2606:78:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2605,"nodeType":"StructuredDocumentation","src":"2690:732:10","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 ERC721\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":2614,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"3436:12:10","nodeType":"FunctionDefinition","parameters":{"id":2612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2607,"mutability":"mutable","name":"from","nameLocation":"3457:4:10","nodeType":"VariableDeclaration","scope":2614,"src":"3449:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2606,"name":"address","nodeType":"ElementaryTypeName","src":"3449:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2609,"mutability":"mutable","name":"to","nameLocation":"3471:2:10","nodeType":"VariableDeclaration","scope":2614,"src":"3463:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2608,"name":"address","nodeType":"ElementaryTypeName","src":"3463:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2611,"mutability":"mutable","name":"tokenId","nameLocation":"3483:7:10","nodeType":"VariableDeclaration","scope":2614,"src":"3475:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2610,"name":"uint256","nodeType":"ElementaryTypeName","src":"3475:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3448:43:10"},"returnParameters":{"id":2613,"nodeType":"ParameterList","parameters":[],"src":"3500:0:10"},"scope":2649,"src":"3427:74:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2615,"nodeType":"StructuredDocumentation","src":"3507:452:10","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":2622,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3973:7:10","nodeType":"FunctionDefinition","parameters":{"id":2620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2617,"mutability":"mutable","name":"to","nameLocation":"3989:2:10","nodeType":"VariableDeclaration","scope":2622,"src":"3981:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2616,"name":"address","nodeType":"ElementaryTypeName","src":"3981:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2619,"mutability":"mutable","name":"tokenId","nameLocation":"4001:7:10","nodeType":"VariableDeclaration","scope":2622,"src":"3993:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2618,"name":"uint256","nodeType":"ElementaryTypeName","src":"3993:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3980:29:10"},"returnParameters":{"id":2621,"nodeType":"ParameterList","parameters":[],"src":"4018:0:10"},"scope":2649,"src":"3964:55:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2623,"nodeType":"StructuredDocumentation","src":"4025:309:10","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 caller.\n Emits an {ApprovalForAll} event."},"functionSelector":"a22cb465","id":2630,"implemented":false,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"4348:17:10","nodeType":"FunctionDefinition","parameters":{"id":2628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2625,"mutability":"mutable","name":"operator","nameLocation":"4374:8:10","nodeType":"VariableDeclaration","scope":2630,"src":"4366:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2624,"name":"address","nodeType":"ElementaryTypeName","src":"4366:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2627,"mutability":"mutable","name":"approved","nameLocation":"4389:8:10","nodeType":"VariableDeclaration","scope":2630,"src":"4384:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2626,"name":"bool","nodeType":"ElementaryTypeName","src":"4384:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4365:33:10"},"returnParameters":{"id":2629,"nodeType":"ParameterList","parameters":[],"src":"4407:0:10"},"scope":2649,"src":"4339:69:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2631,"nodeType":"StructuredDocumentation","src":"4414:139:10","text":" @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"081812fc","id":2638,"implemented":false,"kind":"function","modifiers":[],"name":"getApproved","nameLocation":"4567:11:10","nodeType":"FunctionDefinition","parameters":{"id":2634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2633,"mutability":"mutable","name":"tokenId","nameLocation":"4587:7:10","nodeType":"VariableDeclaration","scope":2638,"src":"4579:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2632,"name":"uint256","nodeType":"ElementaryTypeName","src":"4579:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4578:17:10"},"returnParameters":{"id":2637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2636,"mutability":"mutable","name":"operator","nameLocation":"4627:8:10","nodeType":"VariableDeclaration","scope":2638,"src":"4619:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2635,"name":"address","nodeType":"ElementaryTypeName","src":"4619:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4618:18:10"},"scope":2649,"src":"4558:79:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2639,"nodeType":"StructuredDocumentation","src":"4643:138:10","text":" @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"},"functionSelector":"e985e9c5","id":2648,"implemented":false,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"4795:16:10","nodeType":"FunctionDefinition","parameters":{"id":2644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2641,"mutability":"mutable","name":"owner","nameLocation":"4820:5:10","nodeType":"VariableDeclaration","scope":2648,"src":"4812:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2640,"name":"address","nodeType":"ElementaryTypeName","src":"4812:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2643,"mutability":"mutable","name":"operator","nameLocation":"4835:8:10","nodeType":"VariableDeclaration","scope":2648,"src":"4827:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2642,"name":"address","nodeType":"ElementaryTypeName","src":"4827:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4811:33:10"},"returnParameters":{"id":2647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2646,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2648,"src":"4868:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2645,"name":"bool","nodeType":"ElementaryTypeName","src":"4868:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4867:6:10"},"scope":2649,"src":"4786:88:10","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2650,"src":"250:4626:10","usedErrors":[]}],"src":"108:4769:10"},"id":10},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[2667]},"id":2668,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2651,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"116:23:11"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":2652,"nodeType":"StructuredDocumentation","src":"141:152:11","text":" @title ERC721 token receiver interface\n @dev Interface for any contract that wants to support safeTransfers\n from ERC721 asset contracts."},"fullyImplemented":false,"id":2667,"linearizedBaseContracts":[2667],"name":"IERC721Receiver","nameLocation":"304:15:11","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2653,"nodeType":"StructuredDocumentation","src":"326:493:11","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 reverted.\n The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`."},"functionSelector":"150b7a02","id":2666,"implemented":false,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"833:16:11","nodeType":"FunctionDefinition","parameters":{"id":2662,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2655,"mutability":"mutable","name":"operator","nameLocation":"867:8:11","nodeType":"VariableDeclaration","scope":2666,"src":"859:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2654,"name":"address","nodeType":"ElementaryTypeName","src":"859:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2657,"mutability":"mutable","name":"from","nameLocation":"893:4:11","nodeType":"VariableDeclaration","scope":2666,"src":"885:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2656,"name":"address","nodeType":"ElementaryTypeName","src":"885:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2659,"mutability":"mutable","name":"tokenId","nameLocation":"915:7:11","nodeType":"VariableDeclaration","scope":2666,"src":"907:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2658,"name":"uint256","nodeType":"ElementaryTypeName","src":"907:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2661,"mutability":"mutable","name":"data","nameLocation":"947:4:11","nodeType":"VariableDeclaration","scope":2666,"src":"932:19:11","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2660,"name":"bytes","nodeType":"ElementaryTypeName","src":"932:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"849:108:11"},"returnParameters":{"id":2665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2664,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2666,"src":"976:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2663,"name":"bytes4","nodeType":"ElementaryTypeName","src":"976:6:11","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"975:8:11"},"scope":2667,"src":"824:160:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2668,"src":"294:692:11","usedErrors":[]}],"src":"116:871:11"},"id":11},"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol","exportedSymbols":{"Address":[3180],"Context":[3210],"ERC165":[3537],"ERC721":[2533],"ERC721URIStorage":[2823],"IERC165":[3549],"IERC4906":[137],"IERC721":[2649],"IERC721Metadata":[2850],"IERC721Receiver":[2667],"Math":[4415],"SignedMath":[4520],"Strings":[3513]},"id":2824,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2669,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"128:23:12"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/ERC721.sol","file":"../ERC721.sol","id":2670,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2824,"sourceUnit":2534,"src":"153:23:12","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4906.sol","file":"../../../interfaces/IERC4906.sol","id":2671,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2824,"sourceUnit":138,"src":"177:42:12","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2673,"name":"IERC4906","nameLocations":["329:8:12"],"nodeType":"IdentifierPath","referencedDeclaration":137,"src":"329:8:12"},"id":2674,"nodeType":"InheritanceSpecifier","src":"329:8:12"},{"baseName":{"id":2675,"name":"ERC721","nameLocations":["339:6:12"],"nodeType":"IdentifierPath","referencedDeclaration":2533,"src":"339:6:12"},"id":2676,"nodeType":"InheritanceSpecifier","src":"339:6:12"}],"canonicalName":"ERC721URIStorage","contractDependencies":[],"contractKind":"contract","documentation":{"id":2672,"nodeType":"StructuredDocumentation","src":"221:69:12","text":" @dev ERC721 token with storage based token URI management."},"fullyImplemented":true,"id":2823,"linearizedBaseContracts":[2823,2533,2850,137,2649,3537,3549,3210],"name":"ERC721URIStorage","nameLocation":"309:16:12","nodeType":"ContractDefinition","nodes":[{"global":false,"id":2679,"libraryName":{"id":2677,"name":"Strings","nameLocations":["358:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":3513,"src":"358:7:12"},"nodeType":"UsingForDirective","src":"352:26:12","typeName":{"id":2678,"name":"uint256","nodeType":"ElementaryTypeName","src":"370:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":false,"id":2683,"mutability":"mutable","name":"_tokenURIs","nameLocation":"458:10:12","nodeType":"VariableDeclaration","scope":2823,"src":"423:45:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string)"},"typeName":{"id":2682,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2680,"name":"uint256","nodeType":"ElementaryTypeName","src":"431:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"423:26:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2681,"name":"string","nodeType":"ElementaryTypeName","src":"442:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"visibility":"private"},{"baseFunctions":[1700,3548],"body":{"id":2706,"nodeType":"Block","src":"643:97:12","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":2699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2694,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2686,"src":"660:11:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30783439303634393036","id":2697,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"682:10:12","typeDescriptions":{"typeIdentifier":"t_rational_1225148678_by_1","typeString":"int_const 1225148678"},"value":"0x49064906"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1225148678_by_1","typeString":"int_const 1225148678"}],"id":2696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"675:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":2695,"name":"bytes4","nodeType":"ElementaryTypeName","src":"675:6:12","typeDescriptions":{}}},"id":2698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"675:18:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"660:33:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":2702,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2686,"src":"721:11:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":2700,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"697:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721URIStorage_$2823_$","typeString":"type(contract super ERC721URIStorage)"}},"id":2701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"703:17:12","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":1700,"src":"697:23:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":2703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"697:36:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"660:73:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2693,"id":2705,"nodeType":"Return","src":"653:80:12"}]},"documentation":{"id":2684,"nodeType":"StructuredDocumentation","src":"475:55:12","text":" @dev See {IERC165-supportsInterface}"},"functionSelector":"01ffc9a7","id":2707,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"544:17:12","nodeType":"FunctionDefinition","overrides":{"id":2690,"nodeType":"OverrideSpecifier","overrides":[{"id":2688,"name":"ERC721","nameLocations":["611:6:12"],"nodeType":"IdentifierPath","referencedDeclaration":2533,"src":"611:6:12"},{"id":2689,"name":"IERC165","nameLocations":["619:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":3549,"src":"619:7:12"}],"src":"602:25:12"},"parameters":{"id":2687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2686,"mutability":"mutable","name":"interfaceId","nameLocation":"569:11:12","nodeType":"VariableDeclaration","scope":2707,"src":"562:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2685,"name":"bytes4","nodeType":"ElementaryTypeName","src":"562:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"561:20:12"},"returnParameters":{"id":2693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2692,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2707,"src":"637:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2691,"name":"bool","nodeType":"ElementaryTypeName","src":"637:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"636:6:12"},"scope":2823,"src":"535:205:12","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1811],"body":{"id":2765,"nodeType":"Block","src":"894:520:12","statements":[{"expression":{"arguments":[{"id":2717,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2710,"src":"919:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2716,"name":"_requireMinted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2429,"src":"904:14:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$__$","typeString":"function (uint256) view"}},"id":2718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"904:23:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2719,"nodeType":"ExpressionStatement","src":"904:23:12"},{"assignments":[2721],"declarations":[{"constant":false,"id":2721,"mutability":"mutable","name":"_tokenURI","nameLocation":"952:9:12","nodeType":"VariableDeclaration","scope":2765,"src":"938:23:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2720,"name":"string","nodeType":"ElementaryTypeName","src":"938:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":2725,"initialValue":{"baseExpression":{"id":2722,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"964:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":2724,"indexExpression":{"id":2723,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2710,"src":"975:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"964:19:12","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"VariableDeclarationStatement","src":"938:45:12"},{"assignments":[2727],"declarations":[{"constant":false,"id":2727,"mutability":"mutable","name":"base","nameLocation":"1007:4:12","nodeType":"VariableDeclaration","scope":2765,"src":"993:18:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2726,"name":"string","nodeType":"ElementaryTypeName","src":"993:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":2730,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":2728,"name":"_baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"1014:8:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":2729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1014:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"993:31:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2733,"name":"base","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2727,"src":"1103:4:12","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2732,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1097:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2731,"name":"bytes","nodeType":"ElementaryTypeName","src":"1097:5:12","typeDescriptions":{}}},"id":2734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1097:11:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1109:6:12","memberName":"length","nodeType":"MemberAccess","src":"1097:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2736,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1119:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1097:23:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2741,"nodeType":"IfStatement","src":"1093:70:12","trueBody":{"id":2740,"nodeType":"Block","src":"1122:41:12","statements":[{"expression":{"id":2738,"name":"_tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2721,"src":"1143:9:12","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2715,"id":2739,"nodeType":"Return","src":"1136:16:12"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2744,"name":"_tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2721,"src":"1271:9:12","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2743,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1265:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2742,"name":"bytes","nodeType":"ElementaryTypeName","src":"1265:5:12","typeDescriptions":{}}},"id":2745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1265:16:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1282:6:12","memberName":"length","nodeType":"MemberAccess","src":"1265:23:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1291:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1265:27:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2759,"nodeType":"IfStatement","src":"1261:106:12","trueBody":{"id":2758,"nodeType":"Block","src":"1294:73:12","statements":[{"expression":{"arguments":[{"arguments":[{"id":2753,"name":"base","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2727,"src":"1339:4:12","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2754,"name":"_tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2721,"src":"1345:9:12","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":2751,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1322:3:12","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2752,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1326:12:12","memberName":"encodePacked","nodeType":"MemberAccess","src":"1322:16:12","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":2755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1322:33:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2750,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1315:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2749,"name":"string","nodeType":"ElementaryTypeName","src":"1315:6:12","typeDescriptions":{}}},"id":2756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1315:41:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2715,"id":2757,"nodeType":"Return","src":"1308:48:12"}]}},{"expression":{"arguments":[{"id":2762,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2710,"src":"1399:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2760,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1384:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721URIStorage_$2823_$","typeString":"type(contract super ERC721URIStorage)"}},"id":2761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1390:8:12","memberName":"tokenURI","nodeType":"MemberAccess","referencedDeclaration":1811,"src":"1384:14:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) view returns (string memory)"}},"id":2763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1384:23:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2715,"id":2764,"nodeType":"Return","src":"1377:30:12"}]},"documentation":{"id":2708,"nodeType":"StructuredDocumentation","src":"746:55:12","text":" @dev See {IERC721Metadata-tokenURI}."},"functionSelector":"c87b56dd","id":2766,"implemented":true,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"815:8:12","nodeType":"FunctionDefinition","overrides":{"id":2712,"nodeType":"OverrideSpecifier","overrides":[],"src":"861:8:12"},"parameters":{"id":2711,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2710,"mutability":"mutable","name":"tokenId","nameLocation":"832:7:12","nodeType":"VariableDeclaration","scope":2766,"src":"824:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2709,"name":"uint256","nodeType":"ElementaryTypeName","src":"824:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"823:17:12"},"returnParameters":{"id":2715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2714,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2766,"src":"879:13:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2713,"name":"string","nodeType":"ElementaryTypeName","src":"879:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"878:15:12"},"scope":2823,"src":"806:608:12","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2791,"nodeType":"Block","src":"1680:172:12","statements":[{"expression":{"arguments":[{"arguments":[{"id":2776,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2769,"src":"1706:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2775,"name":"_exists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2052,"src":"1698:7:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":2777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1698:16:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524337323155524953746f726167653a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e","id":2778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1716:48:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4","typeString":"literal_string \"ERC721URIStorage: URI set of nonexistent token\""},"value":"ERC721URIStorage: URI set of nonexistent token"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4","typeString":"literal_string \"ERC721URIStorage: URI set of nonexistent token\""}],"id":2774,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1690:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1690:75:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2780,"nodeType":"ExpressionStatement","src":"1690:75:12"},{"expression":{"id":2785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2781,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"1775:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":2783,"indexExpression":{"id":2782,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2769,"src":"1786:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1775:19:12","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2784,"name":"_tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2771,"src":"1797:9:12","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1775:31:12","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":2786,"nodeType":"ExpressionStatement","src":"1775:31:12"},{"eventCall":{"arguments":[{"id":2788,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2769,"src":"1837:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2787,"name":"MetadataUpdate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":129,"src":"1822:14:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1822:23:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2790,"nodeType":"EmitStatement","src":"1817:28:12"}]},"documentation":{"id":2767,"nodeType":"StructuredDocumentation","src":"1420:174:12","text":" @dev Sets `_tokenURI` as the tokenURI of `tokenId`.\n Emits {MetadataUpdate}.\n Requirements:\n - `tokenId` must exist."},"id":2792,"implemented":true,"kind":"function","modifiers":[],"name":"_setTokenURI","nameLocation":"1608:12:12","nodeType":"FunctionDefinition","parameters":{"id":2772,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2769,"mutability":"mutable","name":"tokenId","nameLocation":"1629:7:12","nodeType":"VariableDeclaration","scope":2792,"src":"1621:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2768,"name":"uint256","nodeType":"ElementaryTypeName","src":"1621:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2771,"mutability":"mutable","name":"_tokenURI","nameLocation":"1652:9:12","nodeType":"VariableDeclaration","scope":2792,"src":"1638:23:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2770,"name":"string","nodeType":"ElementaryTypeName","src":"1638:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1620:42:12"},"returnParameters":{"id":2773,"nodeType":"ParameterList","parameters":[],"src":"1680:0:12"},"scope":2823,"src":"1599:253:12","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2274],"body":{"id":2821,"nodeType":"Block","src":"2128:142:12","statements":[{"expression":{"arguments":[{"id":2802,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2795,"src":"2150:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2799,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2138:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721URIStorage_$2823_$","typeString":"type(contract super ERC721URIStorage)"}},"id":2801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2144:5:12","memberName":"_burn","nodeType":"MemberAccess","referencedDeclaration":2274,"src":"2138:11:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":2803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2138:20:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2804,"nodeType":"ExpressionStatement","src":"2138:20:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"baseExpression":{"id":2807,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"2179:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":2809,"indexExpression":{"id":2808,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2795,"src":"2190:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2179:19:12","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"id":2806,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2173:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2805,"name":"bytes","nodeType":"ElementaryTypeName","src":"2173:5:12","typeDescriptions":{}}},"id":2810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2173:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes storage pointer"}},"id":2811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2200:6:12","memberName":"length","nodeType":"MemberAccess","src":"2173:33:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2210:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2173:38:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2820,"nodeType":"IfStatement","src":"2169:95:12","trueBody":{"id":2819,"nodeType":"Block","src":"2213:51:12","statements":[{"expression":{"id":2817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"2227:26:12","subExpression":{"baseExpression":{"id":2814,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"2234:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":2816,"indexExpression":{"id":2815,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2795,"src":"2245:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2234:19:12","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2818,"nodeType":"ExpressionStatement","src":"2227:26:12"}]}}]},"documentation":{"id":2793,"nodeType":"StructuredDocumentation","src":"1858:207:12","text":" @dev See {ERC721-_burn}. This override additionally checks to see if a\n token-specific URI was set for the token, and if so, it deletes the token URI from\n the storage mapping."},"id":2822,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"2079:5:12","nodeType":"FunctionDefinition","overrides":{"id":2797,"nodeType":"OverrideSpecifier","overrides":[],"src":"2119:8:12"},"parameters":{"id":2796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2795,"mutability":"mutable","name":"tokenId","nameLocation":"2093:7:12","nodeType":"VariableDeclaration","scope":2822,"src":"2085:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2794,"name":"uint256","nodeType":"ElementaryTypeName","src":"2085:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2084:17:12"},"returnParameters":{"id":2798,"nodeType":"ParameterList","parameters":[],"src":"2128:0:12"},"scope":2823,"src":"2070:200:12","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":2824,"src":"291:1981:12","usedErrors":[]}],"src":"128:2145:12"},"id":12},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","exportedSymbols":{"IERC165":[3549],"IERC721":[2649],"IERC721Metadata":[2850]},"id":2851,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2825,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"112:23:13"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"../IERC721.sol","id":2826,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2851,"sourceUnit":2650,"src":"137:24:13","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2828,"name":"IERC721","nameLocations":["326:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":2649,"src":"326:7:13"},"id":2829,"nodeType":"InheritanceSpecifier","src":"326:7:13"}],"canonicalName":"IERC721Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":2827,"nodeType":"StructuredDocumentation","src":"163:133:13","text":" @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n @dev See https://eips.ethereum.org/EIPS/eip-721"},"fullyImplemented":false,"id":2850,"linearizedBaseContracts":[2850,2649,3549],"name":"IERC721Metadata","nameLocation":"307:15:13","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":2830,"nodeType":"StructuredDocumentation","src":"340:58:13","text":" @dev Returns the token collection name."},"functionSelector":"06fdde03","id":2835,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"412:4:13","nodeType":"FunctionDefinition","parameters":{"id":2831,"nodeType":"ParameterList","parameters":[],"src":"416:2:13"},"returnParameters":{"id":2834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2833,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2835,"src":"442:13:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2832,"name":"string","nodeType":"ElementaryTypeName","src":"442:6:13","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"441:15:13"},"scope":2850,"src":"403:54:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2836,"nodeType":"StructuredDocumentation","src":"463:60:13","text":" @dev Returns the token collection symbol."},"functionSelector":"95d89b41","id":2841,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"537:6:13","nodeType":"FunctionDefinition","parameters":{"id":2837,"nodeType":"ParameterList","parameters":[],"src":"543:2:13"},"returnParameters":{"id":2840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2839,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2841,"src":"569:13:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2838,"name":"string","nodeType":"ElementaryTypeName","src":"569:6:13","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"568:15:13"},"scope":2850,"src":"528:56:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2842,"nodeType":"StructuredDocumentation","src":"590:90:13","text":" @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token."},"functionSelector":"c87b56dd","id":2849,"implemented":false,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"694:8:13","nodeType":"FunctionDefinition","parameters":{"id":2845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2844,"mutability":"mutable","name":"tokenId","nameLocation":"711:7:13","nodeType":"VariableDeclaration","scope":2849,"src":"703:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2843,"name":"uint256","nodeType":"ElementaryTypeName","src":"703:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"702:17:13"},"returnParameters":{"id":2848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2847,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2849,"src":"743:13:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2846,"name":"string","nodeType":"ElementaryTypeName","src":"743:6:13","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"742:15:13"},"scope":2850,"src":"685:73:13","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2851,"src":"297:463:13","usedErrors":[]}],"src":"112:649:13"},"id":13},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[3180]},"id":3181,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2852,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:14"},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":2853,"nodeType":"StructuredDocumentation","src":"126:67:14","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":3180,"linearizedBaseContracts":[3180],"name":"Address","nameLocation":"202:7:14","nodeType":"ContractDefinition","nodes":[{"body":{"id":2867,"nodeType":"Block","src":"1478:254:14","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":2861,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2856,"src":"1702:7:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1710:4:14","memberName":"code","nodeType":"MemberAccess","src":"1702:12:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1715:6:14","memberName":"length","nodeType":"MemberAccess","src":"1702:19:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1724:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1702:23:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2860,"id":2866,"nodeType":"Return","src":"1695:30:14"}]},"documentation":{"id":2854,"nodeType":"StructuredDocumentation","src":"216:1191:14","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n  - an externally-owned account\n  - a contract in construction\n  - an address where a contract will be created\n  - an address where a contract lived, but was destroyed\n Furthermore, `isContract` will also return true if the target contract within\n the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n which only has an effect at the end of a transaction.\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":2868,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1421:10:14","nodeType":"FunctionDefinition","parameters":{"id":2857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2856,"mutability":"mutable","name":"account","nameLocation":"1440:7:14","nodeType":"VariableDeclaration","scope":2868,"src":"1432:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2855,"name":"address","nodeType":"ElementaryTypeName","src":"1432:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1431:17:14"},"returnParameters":{"id":2860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2859,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2868,"src":"1472:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2858,"name":"bool","nodeType":"ElementaryTypeName","src":"1472:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1471:6:14"},"scope":3180,"src":"1412:320:14","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2901,"nodeType":"Block","src":"2718:241:14","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2879,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2744:4:14","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$3180","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$3180","typeString":"library Address"}],"id":2878,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2736:7:14","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2877,"name":"address","nodeType":"ElementaryTypeName","src":"2736:7:14","typeDescriptions":{}}},"id":2880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2736:13:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2750:7:14","memberName":"balance","nodeType":"MemberAccess","src":"2736:21:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2882,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2873,"src":"2761:6:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2736:31:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":2884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2769:31:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":2876,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2728:7:14","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2728:73:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2886,"nodeType":"ExpressionStatement","src":"2728:73:14"},{"assignments":[2888,null],"declarations":[{"constant":false,"id":2888,"mutability":"mutable","name":"success","nameLocation":"2818:7:14","nodeType":"VariableDeclaration","scope":2901,"src":"2813:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2887,"name":"bool","nodeType":"ElementaryTypeName","src":"2813:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":2895,"initialValue":{"arguments":[{"hexValue":"","id":2893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2861:2:14","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":2889,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2871,"src":"2831:9:14","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":2890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2841:4:14","memberName":"call","nodeType":"MemberAccess","src":"2831:14:14","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":2892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2891,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2873,"src":"2853:6:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2831:29:14","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":2894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:33:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2812:52:14"},{"expression":{"arguments":[{"id":2897,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2888,"src":"2882:7:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":2898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2891:60:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":2896,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2874:7:14","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2874:78:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2900,"nodeType":"ExpressionStatement","src":"2874:78:14"}]},"documentation":{"id":2869,"nodeType":"StructuredDocumentation","src":"1738:904:14","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.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":2902,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2656:9:14","nodeType":"FunctionDefinition","parameters":{"id":2874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2871,"mutability":"mutable","name":"recipient","nameLocation":"2682:9:14","nodeType":"VariableDeclaration","scope":2902,"src":"2666:25:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":2870,"name":"address","nodeType":"ElementaryTypeName","src":"2666:15:14","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":2873,"mutability":"mutable","name":"amount","nameLocation":"2701:6:14","nodeType":"VariableDeclaration","scope":2902,"src":"2693:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2872,"name":"uint256","nodeType":"ElementaryTypeName","src":"2693:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:43:14"},"returnParameters":{"id":2875,"nodeType":"ParameterList","parameters":[],"src":"2718:0:14"},"scope":3180,"src":"2647:312:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2919,"nodeType":"Block","src":"3790:96:14","statements":[{"expression":{"arguments":[{"id":2913,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2905,"src":"3829:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2914,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2907,"src":"3837:4:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":2915,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3843:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":2916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3846:32:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"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"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":2912,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[2960,3004],"referencedDeclaration":3004,"src":"3807:21:14","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":2917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3807:72:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2911,"id":2918,"nodeType":"Return","src":"3800:79:14"}]},"documentation":{"id":2903,"nodeType":"StructuredDocumentation","src":"2965:731:14","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, it is bubbled up by this\n function (like regular Solidity function calls).\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.\n _Available since v3.1._"},"id":2920,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3710:12:14","nodeType":"FunctionDefinition","parameters":{"id":2908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2905,"mutability":"mutable","name":"target","nameLocation":"3731:6:14","nodeType":"VariableDeclaration","scope":2920,"src":"3723:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2904,"name":"address","nodeType":"ElementaryTypeName","src":"3723:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2907,"mutability":"mutable","name":"data","nameLocation":"3752:4:14","nodeType":"VariableDeclaration","scope":2920,"src":"3739:17:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2906,"name":"bytes","nodeType":"ElementaryTypeName","src":"3739:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3722:35:14"},"returnParameters":{"id":2911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2910,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2920,"src":"3776:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2909,"name":"bytes","nodeType":"ElementaryTypeName","src":"3776:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3775:14:14"},"scope":3180,"src":"3701:185:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2939,"nodeType":"Block","src":"4255:76:14","statements":[{"expression":{"arguments":[{"id":2933,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2923,"src":"4294:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2934,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2925,"src":"4302:4:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":2935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4308:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":2936,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2927,"src":"4311:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"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"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2932,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[2960,3004],"referencedDeclaration":3004,"src":"4272:21:14","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":2937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4272:52:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2931,"id":2938,"nodeType":"Return","src":"4265:59:14"}]},"documentation":{"id":2921,"nodeType":"StructuredDocumentation","src":"3892:211:14","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":2940,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"4117:12:14","nodeType":"FunctionDefinition","parameters":{"id":2928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2923,"mutability":"mutable","name":"target","nameLocation":"4147:6:14","nodeType":"VariableDeclaration","scope":2940,"src":"4139:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2922,"name":"address","nodeType":"ElementaryTypeName","src":"4139:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2925,"mutability":"mutable","name":"data","nameLocation":"4176:4:14","nodeType":"VariableDeclaration","scope":2940,"src":"4163:17:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2924,"name":"bytes","nodeType":"ElementaryTypeName","src":"4163:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2927,"mutability":"mutable","name":"errorMessage","nameLocation":"4204:12:14","nodeType":"VariableDeclaration","scope":2940,"src":"4190:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2926,"name":"string","nodeType":"ElementaryTypeName","src":"4190:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4129:93:14"},"returnParameters":{"id":2931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2930,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2940,"src":"4241:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2929,"name":"bytes","nodeType":"ElementaryTypeName","src":"4241:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4240:14:14"},"scope":3180,"src":"4108:223:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2959,"nodeType":"Block","src":"4806:111:14","statements":[{"expression":{"arguments":[{"id":2953,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2943,"src":"4845:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2954,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2945,"src":"4853:4:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2955,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2947,"src":"4859:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":2956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4866:43:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":2952,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[2960,3004],"referencedDeclaration":3004,"src":"4823:21:14","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":2957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:87:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2951,"id":2958,"nodeType":"Return","src":"4816:94:14"}]},"documentation":{"id":2941,"nodeType":"StructuredDocumentation","src":"4337:351:14","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`.\n _Available since v3.1._"},"id":2960,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4702:21:14","nodeType":"FunctionDefinition","parameters":{"id":2948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2943,"mutability":"mutable","name":"target","nameLocation":"4732:6:14","nodeType":"VariableDeclaration","scope":2960,"src":"4724:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2942,"name":"address","nodeType":"ElementaryTypeName","src":"4724:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2945,"mutability":"mutable","name":"data","nameLocation":"4753:4:14","nodeType":"VariableDeclaration","scope":2960,"src":"4740:17:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2944,"name":"bytes","nodeType":"ElementaryTypeName","src":"4740:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2947,"mutability":"mutable","name":"value","nameLocation":"4767:5:14","nodeType":"VariableDeclaration","scope":2960,"src":"4759:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2946,"name":"uint256","nodeType":"ElementaryTypeName","src":"4759:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4723:50:14"},"returnParameters":{"id":2951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2950,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2960,"src":"4792:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2949,"name":"bytes","nodeType":"ElementaryTypeName","src":"4792:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4791:14:14"},"scope":3180,"src":"4693:224:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3003,"nodeType":"Block","src":"5344:267:14","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2977,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5370:4:14","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$3180","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$3180","typeString":"library Address"}],"id":2976,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5362:7:14","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2975,"name":"address","nodeType":"ElementaryTypeName","src":"5362:7:14","typeDescriptions":{}}},"id":2978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5362:13:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5376:7:14","memberName":"balance","nodeType":"MemberAccess","src":"5362:21:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2980,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2967,"src":"5387:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5362:30:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":2982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5394:40:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":2974,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5354:7:14","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5354:81:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2984,"nodeType":"ExpressionStatement","src":"5354:81:14"},{"assignments":[2986,2988],"declarations":[{"constant":false,"id":2986,"mutability":"mutable","name":"success","nameLocation":"5451:7:14","nodeType":"VariableDeclaration","scope":3003,"src":"5446:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2985,"name":"bool","nodeType":"ElementaryTypeName","src":"5446:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2988,"mutability":"mutable","name":"returndata","nameLocation":"5473:10:14","nodeType":"VariableDeclaration","scope":3003,"src":"5460:23:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2987,"name":"bytes","nodeType":"ElementaryTypeName","src":"5460:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2995,"initialValue":{"arguments":[{"id":2993,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"5513:4:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2989,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"5487:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5494:4:14","memberName":"call","nodeType":"MemberAccess","src":"5487:11:14","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":2992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2991,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2967,"src":"5506:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5487:25:14","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":2994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5487:31:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5445:73:14"},{"expression":{"arguments":[{"id":2997,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"5562:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2998,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2986,"src":"5570:7:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2999,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2988,"src":"5579:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3000,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2969,"src":"5591:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2996,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3135,"src":"5535:26:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":3001,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:69:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2973,"id":3002,"nodeType":"Return","src":"5528:76:14"}]},"documentation":{"id":2961,"nodeType":"StructuredDocumentation","src":"4923:237:14","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":3004,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"5174:21:14","nodeType":"FunctionDefinition","parameters":{"id":2970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2963,"mutability":"mutable","name":"target","nameLocation":"5213:6:14","nodeType":"VariableDeclaration","scope":3004,"src":"5205:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2962,"name":"address","nodeType":"ElementaryTypeName","src":"5205:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2965,"mutability":"mutable","name":"data","nameLocation":"5242:4:14","nodeType":"VariableDeclaration","scope":3004,"src":"5229:17:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2964,"name":"bytes","nodeType":"ElementaryTypeName","src":"5229:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2967,"mutability":"mutable","name":"value","nameLocation":"5264:5:14","nodeType":"VariableDeclaration","scope":3004,"src":"5256:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2966,"name":"uint256","nodeType":"ElementaryTypeName","src":"5256:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2969,"mutability":"mutable","name":"errorMessage","nameLocation":"5293:12:14","nodeType":"VariableDeclaration","scope":3004,"src":"5279:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2968,"name":"string","nodeType":"ElementaryTypeName","src":"5279:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5195:116:14"},"returnParameters":{"id":2973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2972,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3004,"src":"5330:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2971,"name":"bytes","nodeType":"ElementaryTypeName","src":"5330:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5329:14:14"},"scope":3180,"src":"5165:446:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3020,"nodeType":"Block","src":"5888:97:14","statements":[{"expression":{"arguments":[{"id":3015,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3007,"src":"5924:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3016,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3009,"src":"5932:4:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":3017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5938:39:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":3014,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[3021,3050],"referencedDeclaration":3050,"src":"5905:18:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":3018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5905:73:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3013,"id":3019,"nodeType":"Return","src":"5898:80:14"}]},"documentation":{"id":3005,"nodeType":"StructuredDocumentation","src":"5617:166:14","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":3021,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5797:18:14","nodeType":"FunctionDefinition","parameters":{"id":3010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3007,"mutability":"mutable","name":"target","nameLocation":"5824:6:14","nodeType":"VariableDeclaration","scope":3021,"src":"5816:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3006,"name":"address","nodeType":"ElementaryTypeName","src":"5816:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3009,"mutability":"mutable","name":"data","nameLocation":"5845:4:14","nodeType":"VariableDeclaration","scope":3021,"src":"5832:17:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3008,"name":"bytes","nodeType":"ElementaryTypeName","src":"5832:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5815:35:14"},"returnParameters":{"id":3013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3012,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3021,"src":"5874:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3011,"name":"bytes","nodeType":"ElementaryTypeName","src":"5874:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5873:14:14"},"scope":3180,"src":"5788:197:14","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3049,"nodeType":"Block","src":"6327:168:14","statements":[{"assignments":[3034,3036],"declarations":[{"constant":false,"id":3034,"mutability":"mutable","name":"success","nameLocation":"6343:7:14","nodeType":"VariableDeclaration","scope":3049,"src":"6338:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3033,"name":"bool","nodeType":"ElementaryTypeName","src":"6338:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3036,"mutability":"mutable","name":"returndata","nameLocation":"6365:10:14","nodeType":"VariableDeclaration","scope":3049,"src":"6352:23:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3035,"name":"bytes","nodeType":"ElementaryTypeName","src":"6352:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3041,"initialValue":{"arguments":[{"id":3039,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3026,"src":"6397:4:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":3037,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3024,"src":"6379:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6386:10:14","memberName":"staticcall","nodeType":"MemberAccess","src":"6379:17:14","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":3040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6379:23:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6337:65:14"},{"expression":{"arguments":[{"id":3043,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3024,"src":"6446:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3044,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3034,"src":"6454:7:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":3045,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3036,"src":"6463:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3046,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3028,"src":"6475:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3042,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3135,"src":"6419:26:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":3047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6419:69:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3032,"id":3048,"nodeType":"Return","src":"6412:76:14"}]},"documentation":{"id":3022,"nodeType":"StructuredDocumentation","src":"5991:173:14","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":3050,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6178:18:14","nodeType":"FunctionDefinition","parameters":{"id":3029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3024,"mutability":"mutable","name":"target","nameLocation":"6214:6:14","nodeType":"VariableDeclaration","scope":3050,"src":"6206:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3023,"name":"address","nodeType":"ElementaryTypeName","src":"6206:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3026,"mutability":"mutable","name":"data","nameLocation":"6243:4:14","nodeType":"VariableDeclaration","scope":3050,"src":"6230:17:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3025,"name":"bytes","nodeType":"ElementaryTypeName","src":"6230:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3028,"mutability":"mutable","name":"errorMessage","nameLocation":"6271:12:14","nodeType":"VariableDeclaration","scope":3050,"src":"6257:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3027,"name":"string","nodeType":"ElementaryTypeName","src":"6257:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6196:93:14"},"returnParameters":{"id":3032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3031,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3050,"src":"6313:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3030,"name":"bytes","nodeType":"ElementaryTypeName","src":"6313:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6312:14:14"},"scope":3180,"src":"6169:326:14","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3066,"nodeType":"Block","src":"6771:101:14","statements":[{"expression":{"arguments":[{"id":3061,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3053,"src":"6809:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3062,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3055,"src":"6817:4:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":3063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6823:41:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":3060,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[3067,3096],"referencedDeclaration":3096,"src":"6788:20:14","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":3064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6788:77:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3059,"id":3065,"nodeType":"Return","src":"6781:84:14"}]},"documentation":{"id":3051,"nodeType":"StructuredDocumentation","src":"6501:168:14","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":3067,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6683:20:14","nodeType":"FunctionDefinition","parameters":{"id":3056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3053,"mutability":"mutable","name":"target","nameLocation":"6712:6:14","nodeType":"VariableDeclaration","scope":3067,"src":"6704:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3052,"name":"address","nodeType":"ElementaryTypeName","src":"6704:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3055,"mutability":"mutable","name":"data","nameLocation":"6733:4:14","nodeType":"VariableDeclaration","scope":3067,"src":"6720:17:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3054,"name":"bytes","nodeType":"ElementaryTypeName","src":"6720:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6703:35:14"},"returnParameters":{"id":3059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3058,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3067,"src":"6757:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3057,"name":"bytes","nodeType":"ElementaryTypeName","src":"6757:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6756:14:14"},"scope":3180,"src":"6674:198:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3095,"nodeType":"Block","src":"7213:170:14","statements":[{"assignments":[3080,3082],"declarations":[{"constant":false,"id":3080,"mutability":"mutable","name":"success","nameLocation":"7229:7:14","nodeType":"VariableDeclaration","scope":3095,"src":"7224:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3079,"name":"bool","nodeType":"ElementaryTypeName","src":"7224:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3082,"mutability":"mutable","name":"returndata","nameLocation":"7251:10:14","nodeType":"VariableDeclaration","scope":3095,"src":"7238:23:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3081,"name":"bytes","nodeType":"ElementaryTypeName","src":"7238:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3087,"initialValue":{"arguments":[{"id":3085,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3072,"src":"7285:4:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":3083,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3070,"src":"7265:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7272:12:14","memberName":"delegatecall","nodeType":"MemberAccess","src":"7265:19:14","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":3086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7265:25:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7223:67:14"},{"expression":{"arguments":[{"id":3089,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3070,"src":"7334:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3090,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3080,"src":"7342:7:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":3091,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3082,"src":"7351:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3092,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3074,"src":"7363:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3088,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3135,"src":"7307:26:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":3093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7307:69:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3078,"id":3094,"nodeType":"Return","src":"7300:76:14"}]},"documentation":{"id":3068,"nodeType":"StructuredDocumentation","src":"6878:175:14","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":3096,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"7067:20:14","nodeType":"FunctionDefinition","parameters":{"id":3075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3070,"mutability":"mutable","name":"target","nameLocation":"7105:6:14","nodeType":"VariableDeclaration","scope":3096,"src":"7097:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3069,"name":"address","nodeType":"ElementaryTypeName","src":"7097:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3072,"mutability":"mutable","name":"data","nameLocation":"7134:4:14","nodeType":"VariableDeclaration","scope":3096,"src":"7121:17:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3071,"name":"bytes","nodeType":"ElementaryTypeName","src":"7121:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3074,"mutability":"mutable","name":"errorMessage","nameLocation":"7162:12:14","nodeType":"VariableDeclaration","scope":3096,"src":"7148:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3073,"name":"string","nodeType":"ElementaryTypeName","src":"7148:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7087:93:14"},"returnParameters":{"id":3078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3096,"src":"7199:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3076,"name":"bytes","nodeType":"ElementaryTypeName","src":"7199:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7198:14:14"},"scope":3180,"src":"7058:325:14","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3134,"nodeType":"Block","src":"7865:434:14","statements":[{"condition":{"id":3110,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3101,"src":"7879:7:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3132,"nodeType":"Block","src":"8235:58:14","statements":[{"expression":{"arguments":[{"id":3128,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3103,"src":"8257:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3129,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3105,"src":"8269:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3127,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3179,"src":"8249:7:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":3130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8249:33:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3131,"nodeType":"ExpressionStatement","src":"8249:33:14"}]},"id":3133,"nodeType":"IfStatement","src":"7875:418:14","trueBody":{"id":3126,"nodeType":"Block","src":"7888:341:14","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3111,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3103,"src":"7906:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7917:6:14","memberName":"length","nodeType":"MemberAccess","src":"7906:17:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7927:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7906:22:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3123,"nodeType":"IfStatement","src":"7902:286:14","trueBody":{"id":3122,"nodeType":"Block","src":"7930:258:14","statements":[{"expression":{"arguments":[{"arguments":[{"id":3117,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3099,"src":"8132:6:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3116,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2868,"src":"8121:10:14","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":3118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8121:18:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":3119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8141:31:14","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":3115,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8113:7:14","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8113:60:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3121,"nodeType":"ExpressionStatement","src":"8113:60:14"}]}},{"expression":{"id":3124,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3103,"src":"8208:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3109,"id":3125,"nodeType":"Return","src":"8201:17:14"}]}}]},"documentation":{"id":3097,"nodeType":"StructuredDocumentation","src":"7389:277:14","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":3135,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"7680:26:14","nodeType":"FunctionDefinition","parameters":{"id":3106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3099,"mutability":"mutable","name":"target","nameLocation":"7724:6:14","nodeType":"VariableDeclaration","scope":3135,"src":"7716:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3098,"name":"address","nodeType":"ElementaryTypeName","src":"7716:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3101,"mutability":"mutable","name":"success","nameLocation":"7745:7:14","nodeType":"VariableDeclaration","scope":3135,"src":"7740:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3100,"name":"bool","nodeType":"ElementaryTypeName","src":"7740:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3103,"mutability":"mutable","name":"returndata","nameLocation":"7775:10:14","nodeType":"VariableDeclaration","scope":3135,"src":"7762:23:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3102,"name":"bytes","nodeType":"ElementaryTypeName","src":"7762:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3105,"mutability":"mutable","name":"errorMessage","nameLocation":"7809:12:14","nodeType":"VariableDeclaration","scope":3135,"src":"7795:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3104,"name":"string","nodeType":"ElementaryTypeName","src":"7795:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7706:121:14"},"returnParameters":{"id":3109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3108,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3135,"src":"7851:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3107,"name":"bytes","nodeType":"ElementaryTypeName","src":"7851:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7850:14:14"},"scope":3180,"src":"7671:628:14","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3158,"nodeType":"Block","src":"8680:135:14","statements":[{"condition":{"id":3147,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3138,"src":"8694:7:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3156,"nodeType":"Block","src":"8751:58:14","statements":[{"expression":{"arguments":[{"id":3152,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3140,"src":"8773:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3153,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3142,"src":"8785:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3151,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3179,"src":"8765:7:14","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":3154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8765:33:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3155,"nodeType":"ExpressionStatement","src":"8765:33:14"}]},"id":3157,"nodeType":"IfStatement","src":"8690:119:14","trueBody":{"id":3150,"nodeType":"Block","src":"8703:42:14","statements":[{"expression":{"id":3148,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3140,"src":"8724:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3146,"id":3149,"nodeType":"Return","src":"8717:17:14"}]}}]},"documentation":{"id":3136,"nodeType":"StructuredDocumentation","src":"8305:210:14","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":3159,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"8529:16:14","nodeType":"FunctionDefinition","parameters":{"id":3143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3138,"mutability":"mutable","name":"success","nameLocation":"8560:7:14","nodeType":"VariableDeclaration","scope":3159,"src":"8555:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3137,"name":"bool","nodeType":"ElementaryTypeName","src":"8555:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3140,"mutability":"mutable","name":"returndata","nameLocation":"8590:10:14","nodeType":"VariableDeclaration","scope":3159,"src":"8577:23:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3139,"name":"bytes","nodeType":"ElementaryTypeName","src":"8577:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3142,"mutability":"mutable","name":"errorMessage","nameLocation":"8624:12:14","nodeType":"VariableDeclaration","scope":3159,"src":"8610:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3141,"name":"string","nodeType":"ElementaryTypeName","src":"8610:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8545:97:14"},"returnParameters":{"id":3146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3145,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3159,"src":"8666:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3144,"name":"bytes","nodeType":"ElementaryTypeName","src":"8666:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8665:14:14"},"scope":3180,"src":"8520:295:14","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3178,"nodeType":"Block","src":"8904:457:14","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3166,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3161,"src":"8980:10:14","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8991:6:14","memberName":"length","nodeType":"MemberAccess","src":"8980:17:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9000:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8980:21:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3176,"nodeType":"Block","src":"9310:45:14","statements":[{"expression":{"arguments":[{"id":3173,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3163,"src":"9331:12:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3172,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9324:6:14","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":3174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9324:20:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3175,"nodeType":"ExpressionStatement","src":"9324:20:14"}]},"id":3177,"nodeType":"IfStatement","src":"8976:379:14","trueBody":{"id":3171,"nodeType":"Block","src":"9003:301:14","statements":[{"AST":{"nodeType":"YulBlock","src":"9161:133:14","statements":[{"nodeType":"YulVariableDeclaration","src":"9179:40:14","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"9208:10:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9202:5:14"},"nodeType":"YulFunctionCall","src":"9202:17:14"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"9183:15:14","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9247:2:14","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"9251:10:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9243:3:14"},"nodeType":"YulFunctionCall","src":"9243:19:14"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"9264:15:14"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9236:6:14"},"nodeType":"YulFunctionCall","src":"9236:44:14"},"nodeType":"YulExpressionStatement","src":"9236:44:14"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"paris","externalReferences":[{"declaration":3161,"isOffset":false,"isSlot":false,"src":"9208:10:14","valueSize":1},{"declaration":3161,"isOffset":false,"isSlot":false,"src":"9251:10:14","valueSize":1}],"id":3170,"nodeType":"InlineAssembly","src":"9152:142:14"}]}}]},"id":3179,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"8830:7:14","nodeType":"FunctionDefinition","parameters":{"id":3164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3161,"mutability":"mutable","name":"returndata","nameLocation":"8851:10:14","nodeType":"VariableDeclaration","scope":3179,"src":"8838:23:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3160,"name":"bytes","nodeType":"ElementaryTypeName","src":"8838:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3163,"mutability":"mutable","name":"errorMessage","nameLocation":"8877:12:14","nodeType":"VariableDeclaration","scope":3179,"src":"8863:26:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3162,"name":"string","nodeType":"ElementaryTypeName","src":"8863:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8837:53:14"},"returnParameters":{"id":3165,"nodeType":"ParameterList","parameters":[],"src":"8904:0:14"},"scope":3180,"src":"8821:540:14","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":3181,"src":"194:9169:14","usedErrors":[]}],"src":"101:9263:14"},"id":14},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[3210]},"id":3211,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3182,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:15"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":3183,"nodeType":"StructuredDocumentation","src":"126:496:15","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":3210,"linearizedBaseContracts":[3210],"name":"Context","nameLocation":"641:7:15","nodeType":"ContractDefinition","nodes":[{"body":{"id":3191,"nodeType":"Block","src":"717:34:15","statements":[{"expression":{"expression":{"id":3188,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"734:3:15","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"738:6:15","memberName":"sender","nodeType":"MemberAccess","src":"734:10:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3187,"id":3190,"nodeType":"Return","src":"727:17:15"}]},"id":3192,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"664:10:15","nodeType":"FunctionDefinition","parameters":{"id":3184,"nodeType":"ParameterList","parameters":[],"src":"674:2:15"},"returnParameters":{"id":3187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3186,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3192,"src":"708:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3185,"name":"address","nodeType":"ElementaryTypeName","src":"708:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"707:9:15"},"scope":3210,"src":"655:96:15","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":3200,"nodeType":"Block","src":"824:32:15","statements":[{"expression":{"expression":{"id":3197,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"841:3:15","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"845:4:15","memberName":"data","nodeType":"MemberAccess","src":"841:8:15","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":3196,"id":3199,"nodeType":"Return","src":"834:15:15"}]},"id":3201,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"766:8:15","nodeType":"FunctionDefinition","parameters":{"id":3193,"nodeType":"ParameterList","parameters":[],"src":"774:2:15"},"returnParameters":{"id":3196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3195,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3201,"src":"808:14:15","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3194,"name":"bytes","nodeType":"ElementaryTypeName","src":"808:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"807:16:15"},"scope":3210,"src":"757:99:15","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":3208,"nodeType":"Block","src":"934:25:15","statements":[{"expression":{"hexValue":"30","id":3206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"951:1:15","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":3205,"id":3207,"nodeType":"Return","src":"944:8:15"}]},"id":3209,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"871:20:15","nodeType":"FunctionDefinition","parameters":{"id":3202,"nodeType":"ParameterList","parameters":[],"src":"891:2:15"},"returnParameters":{"id":3205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3204,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3209,"src":"925:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3203,"name":"uint256","nodeType":"ElementaryTypeName","src":"925:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"924:9:15"},"scope":3210,"src":"862:97:15","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":3211,"src":"623:338:15","usedErrors":[]}],"src":"101:861:15"},"id":15},"@openzeppelin/contracts/utils/Counters.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Counters.sol","exportedSymbols":{"Counters":[3284]},"id":3285,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3212,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"87:23:16"},{"abstract":false,"baseContracts":[],"canonicalName":"Counters","contractDependencies":[],"contractKind":"library","documentation":{"id":3213,"nodeType":"StructuredDocumentation","src":"112:311:16","text":" @title Counters\n @author Matt Condon (@shrugs)\n @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n of elements in a mapping, issuing ERC721 ids, or counting request ids.\n Include with `using Counters for Counters.Counter;`"},"fullyImplemented":true,"id":3284,"linearizedBaseContracts":[3284],"name":"Counters","nameLocation":"432:8:16","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Counters.Counter","id":3216,"members":[{"constant":false,"id":3215,"mutability":"mutable","name":"_value","nameLocation":"794:6:16","nodeType":"VariableDeclaration","scope":3216,"src":"786:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3214,"name":"uint256","nodeType":"ElementaryTypeName","src":"786:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Counter","nameLocation":"454:7:16","nodeType":"StructDefinition","scope":3284,"src":"447:374:16","visibility":"public"},{"body":{"id":3227,"nodeType":"Block","src":"901:38:16","statements":[{"expression":{"expression":{"id":3224,"name":"counter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"918:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter storage pointer"}},"id":3225,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"926:6:16","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":3215,"src":"918:14:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3223,"id":3226,"nodeType":"Return","src":"911:21:16"}]},"id":3228,"implemented":true,"kind":"function","modifiers":[],"name":"current","nameLocation":"836:7:16","nodeType":"FunctionDefinition","parameters":{"id":3220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3219,"mutability":"mutable","name":"counter","nameLocation":"860:7:16","nodeType":"VariableDeclaration","scope":3228,"src":"844:23:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"},"typeName":{"id":3218,"nodeType":"UserDefinedTypeName","pathNode":{"id":3217,"name":"Counter","nameLocations":["844:7:16"],"nodeType":"IdentifierPath","referencedDeclaration":3216,"src":"844:7:16"},"referencedDeclaration":3216,"src":"844:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"}},"visibility":"internal"}],"src":"843:25:16"},"returnParameters":{"id":3223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3222,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3228,"src":"892:7:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3221,"name":"uint256","nodeType":"ElementaryTypeName","src":"892:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"891:9:16"},"scope":3284,"src":"827:112:16","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3241,"nodeType":"Block","src":"998:70:16","statements":[{"id":3240,"nodeType":"UncheckedBlock","src":"1008:54:16","statements":[{"expression":{"id":3238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3234,"name":"counter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3231,"src":"1032:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter storage pointer"}},"id":3236,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1040:6:16","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":3215,"src":"1032:14:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":3237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1050:1:16","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1032:19:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3239,"nodeType":"ExpressionStatement","src":"1032:19:16"}]}]},"id":3242,"implemented":true,"kind":"function","modifiers":[],"name":"increment","nameLocation":"954:9:16","nodeType":"FunctionDefinition","parameters":{"id":3232,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3231,"mutability":"mutable","name":"counter","nameLocation":"980:7:16","nodeType":"VariableDeclaration","scope":3242,"src":"964:23:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"},"typeName":{"id":3230,"nodeType":"UserDefinedTypeName","pathNode":{"id":3229,"name":"Counter","nameLocations":["964:7:16"],"nodeType":"IdentifierPath","referencedDeclaration":3216,"src":"964:7:16"},"referencedDeclaration":3216,"src":"964:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"}},"visibility":"internal"}],"src":"963:25:16"},"returnParameters":{"id":3233,"nodeType":"ParameterList","parameters":[],"src":"998:0:16"},"scope":3284,"src":"945:123:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3269,"nodeType":"Block","src":"1127:176:16","statements":[{"assignments":[3249],"declarations":[{"constant":false,"id":3249,"mutability":"mutable","name":"value","nameLocation":"1145:5:16","nodeType":"VariableDeclaration","scope":3269,"src":"1137:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3248,"name":"uint256","nodeType":"ElementaryTypeName","src":"1137:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3252,"initialValue":{"expression":{"id":3250,"name":"counter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3245,"src":"1153:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter storage pointer"}},"id":3251,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1161:6:16","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":3215,"src":"1153:14:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1137:30:16"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3254,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3249,"src":"1185:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1193:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1185:9:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436f756e7465723a2064656372656d656e74206f766572666c6f77","id":3257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1196:29:16","typeDescriptions":{"typeIdentifier":"t_stringliteral_1dfd0d5389474d871b8e8929aab9d4def041f55f90f625754fb5f9a9ba08af6f","typeString":"literal_string \"Counter: decrement overflow\""},"value":"Counter: decrement overflow"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1dfd0d5389474d871b8e8929aab9d4def041f55f90f625754fb5f9a9ba08af6f","typeString":"literal_string \"Counter: decrement overflow\""}],"id":3253,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1177:7:16","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1177:49:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3259,"nodeType":"ExpressionStatement","src":"1177:49:16"},{"id":3268,"nodeType":"UncheckedBlock","src":"1236:61:16","statements":[{"expression":{"id":3266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3260,"name":"counter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3245,"src":"1260:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter storage pointer"}},"id":3262,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1268:6:16","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":3215,"src":"1260:14:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3263,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3249,"src":"1277:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":3264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1285:1:16","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1277:9:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1260:26:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3267,"nodeType":"ExpressionStatement","src":"1260:26:16"}]}]},"id":3270,"implemented":true,"kind":"function","modifiers":[],"name":"decrement","nameLocation":"1083:9:16","nodeType":"FunctionDefinition","parameters":{"id":3246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3245,"mutability":"mutable","name":"counter","nameLocation":"1109:7:16","nodeType":"VariableDeclaration","scope":3270,"src":"1093:23:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"},"typeName":{"id":3244,"nodeType":"UserDefinedTypeName","pathNode":{"id":3243,"name":"Counter","nameLocations":["1093:7:16"],"nodeType":"IdentifierPath","referencedDeclaration":3216,"src":"1093:7:16"},"referencedDeclaration":3216,"src":"1093:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"}},"visibility":"internal"}],"src":"1092:25:16"},"returnParameters":{"id":3247,"nodeType":"ParameterList","parameters":[],"src":"1127:0:16"},"scope":3284,"src":"1074:229:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3282,"nodeType":"Block","src":"1358:35:16","statements":[{"expression":{"id":3280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3276,"name":"counter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3273,"src":"1368:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter storage pointer"}},"id":3278,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1376:6:16","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":3215,"src":"1368:14:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1385:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1368:18:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3281,"nodeType":"ExpressionStatement","src":"1368:18:16"}]},"id":3283,"implemented":true,"kind":"function","modifiers":[],"name":"reset","nameLocation":"1318:5:16","nodeType":"FunctionDefinition","parameters":{"id":3274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3273,"mutability":"mutable","name":"counter","nameLocation":"1340:7:16","nodeType":"VariableDeclaration","scope":3283,"src":"1324:23:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"},"typeName":{"id":3272,"nodeType":"UserDefinedTypeName","pathNode":{"id":3271,"name":"Counter","nameLocations":["1324:7:16"],"nodeType":"IdentifierPath","referencedDeclaration":3216,"src":"1324:7:16"},"referencedDeclaration":3216,"src":"1324:7:16","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"}},"visibility":"internal"}],"src":"1323:25:16"},"returnParameters":{"id":3275,"nodeType":"ParameterList","parameters":[],"src":"1358:0:16"},"scope":3284,"src":"1309:84:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":3285,"src":"424:971:16","usedErrors":[]}],"src":"87:1309:16"},"id":16},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Math":[4415],"SignedMath":[4520],"Strings":[3513]},"id":3514,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3286,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:17"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":3287,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3514,"sourceUnit":4416,"src":"126:25:17","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":3288,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3514,"sourceUnit":4521,"src":"152:31:17","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":3289,"nodeType":"StructuredDocumentation","src":"185:34:17","text":" @dev String operations."},"fullyImplemented":true,"id":3513,"linearizedBaseContracts":[3513],"name":"Strings","nameLocation":"228:7:17","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":3292,"mutability":"constant","name":"_SYMBOLS","nameLocation":"267:8:17","nodeType":"VariableDeclaration","scope":3513,"src":"242:54:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":3290,"name":"bytes16","nodeType":"ElementaryTypeName","src":"242:7:17","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":3291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"278:18:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":3295,"mutability":"constant","name":"_ADDRESS_LENGTH","nameLocation":"325:15:17","nodeType":"VariableDeclaration","scope":3513,"src":"302:43:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3293,"name":"uint8","nodeType":"ElementaryTypeName","src":"302:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":3294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"343:2:17","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"body":{"id":3342,"nodeType":"Block","src":"518:625:17","statements":[{"id":3341,"nodeType":"UncheckedBlock","src":"528:609:17","statements":[{"assignments":[3304],"declarations":[{"constant":false,"id":3304,"mutability":"mutable","name":"length","nameLocation":"560:6:17","nodeType":"VariableDeclaration","scope":3341,"src":"552:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3303,"name":"uint256","nodeType":"ElementaryTypeName","src":"552:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3311,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3307,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3298,"src":"580:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":3305,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4415,"src":"569:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$4415_$","typeString":"type(library Math)"}},"id":3306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"574:5:17","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":4252,"src":"569:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":3308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"569:17:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"589:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"569:21:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"552:38:17"},{"assignments":[3313],"declarations":[{"constant":false,"id":3313,"mutability":"mutable","name":"buffer","nameLocation":"618:6:17","nodeType":"VariableDeclaration","scope":3341,"src":"604:20:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3312,"name":"string","nodeType":"ElementaryTypeName","src":"604:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":3318,"initialValue":{"arguments":[{"id":3316,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3304,"src":"638:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3315,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"627:10:17","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":3314,"name":"string","nodeType":"ElementaryTypeName","src":"631:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":3317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"627:18:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"604:41:17"},{"assignments":[3320],"declarations":[{"constant":false,"id":3320,"mutability":"mutable","name":"ptr","nameLocation":"667:3:17","nodeType":"VariableDeclaration","scope":3341,"src":"659:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3319,"name":"uint256","nodeType":"ElementaryTypeName","src":"659:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3321,"nodeType":"VariableDeclarationStatement","src":"659:11:17"},{"AST":{"nodeType":"YulBlock","src":"740:67:17","statements":[{"nodeType":"YulAssignment","src":"758:35:17","value":{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"769:6:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"781:2:17","type":"","value":"32"},{"name":"length","nodeType":"YulIdentifier","src":"785:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"777:3:17"},"nodeType":"YulFunctionCall","src":"777:15:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"765:3:17"},"nodeType":"YulFunctionCall","src":"765:28:17"},"variableNames":[{"name":"ptr","nodeType":"YulIdentifier","src":"758:3:17"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"paris","externalReferences":[{"declaration":3313,"isOffset":false,"isSlot":false,"src":"769:6:17","valueSize":1},{"declaration":3304,"isOffset":false,"isSlot":false,"src":"785:6:17","valueSize":1},{"declaration":3320,"isOffset":false,"isSlot":false,"src":"758:3:17","valueSize":1}],"id":3322,"nodeType":"InlineAssembly","src":"731:76:17"},{"body":{"id":3337,"nodeType":"Block","src":"833:267:17","statements":[{"expression":{"id":3325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"851:5:17","subExpression":{"id":3324,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3320,"src":"851:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3326,"nodeType":"ExpressionStatement","src":"851:5:17"},{"AST":{"nodeType":"YulBlock","src":"934:84:17","statements":[{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"964:3:17"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"978:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"985:2:17","type":"","value":"10"}],"functionName":{"name":"mod","nodeType":"YulIdentifier","src":"974:3:17"},"nodeType":"YulFunctionCall","src":"974:14:17"},{"name":"_SYMBOLS","nodeType":"YulIdentifier","src":"990:8:17"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"969:4:17"},"nodeType":"YulFunctionCall","src":"969:30:17"}],"functionName":{"name":"mstore8","nodeType":"YulIdentifier","src":"956:7:17"},"nodeType":"YulFunctionCall","src":"956:44:17"},"nodeType":"YulExpressionStatement","src":"956:44:17"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"paris","externalReferences":[{"declaration":3292,"isOffset":false,"isSlot":false,"src":"990:8:17","valueSize":1},{"declaration":3320,"isOffset":false,"isSlot":false,"src":"964:3:17","valueSize":1},{"declaration":3298,"isOffset":false,"isSlot":false,"src":"978:5:17","valueSize":1}],"id":3327,"nodeType":"InlineAssembly","src":"925:93:17"},{"expression":{"id":3330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3328,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3298,"src":"1035:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":3329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1044:2:17","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1035:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3331,"nodeType":"ExpressionStatement","src":"1035:11:17"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3332,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3298,"src":"1068:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1077:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1068:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3336,"nodeType":"IfStatement","src":"1064:21:17","trueBody":{"id":3335,"nodeType":"Break","src":"1080:5:17"}}]},"condition":{"hexValue":"74727565","id":3323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"827:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":3338,"nodeType":"WhileStatement","src":"820:280:17"},{"expression":{"id":3339,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3313,"src":"1120:6:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3302,"id":3340,"nodeType":"Return","src":"1113:13:17"}]}]},"documentation":{"id":3296,"nodeType":"StructuredDocumentation","src":"352:90:17","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":3343,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"456:8:17","nodeType":"FunctionDefinition","parameters":{"id":3299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3298,"mutability":"mutable","name":"value","nameLocation":"473:5:17","nodeType":"VariableDeclaration","scope":3343,"src":"465:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3297,"name":"uint256","nodeType":"ElementaryTypeName","src":"465:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"464:15:17"},"returnParameters":{"id":3302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3301,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3343,"src":"503:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3300,"name":"string","nodeType":"ElementaryTypeName","src":"503:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"502:15:17"},"scope":3513,"src":"447:696:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3370,"nodeType":"Block","src":"1313:103:17","statements":[{"expression":{"arguments":[{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3355,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3346,"src":"1354:5:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":3356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1362:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1354:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":3359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1372:2:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":3360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1354:20:17","trueExpression":{"hexValue":"2d","id":3358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1366:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":3364,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3346,"src":"1400:5:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":3362,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4520,"src":"1385:10:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$4520_$","typeString":"type(library SignedMath)"}},"id":3363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1396:3:17","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":4519,"src":"1385:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":3365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1385:21:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3361,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[3343,3371],"referencedDeclaration":3343,"src":"1376:8:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":3366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1376:31:17","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":3353,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1337:3:17","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1341:12:17","memberName":"encodePacked","nodeType":"MemberAccess","src":"1337:16:17","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1337:71:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1330:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":3351,"name":"string","nodeType":"ElementaryTypeName","src":"1330:6:17","typeDescriptions":{}}},"id":3368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1330:79:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3350,"id":3369,"nodeType":"Return","src":"1323:86:17"}]},"documentation":{"id":3344,"nodeType":"StructuredDocumentation","src":"1149:89:17","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":3371,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"1252:8:17","nodeType":"FunctionDefinition","parameters":{"id":3347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3346,"mutability":"mutable","name":"value","nameLocation":"1268:5:17","nodeType":"VariableDeclaration","scope":3371,"src":"1261:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3345,"name":"int256","nodeType":"ElementaryTypeName","src":"1261:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1260:14:17"},"returnParameters":{"id":3350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3349,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3371,"src":"1298:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3348,"name":"string","nodeType":"ElementaryTypeName","src":"1298:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1297:15:17"},"scope":3513,"src":"1243:173:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3390,"nodeType":"Block","src":"1595:100:17","statements":[{"id":3389,"nodeType":"UncheckedBlock","src":"1605:84:17","statements":[{"expression":{"arguments":[{"id":3380,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3374,"src":"1648:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3383,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3374,"src":"1667:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":3381,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4415,"src":"1655:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$4415_$","typeString":"type(library Math)"}},"id":3382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1660:6:17","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":4375,"src":"1655:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":3384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1655:18:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3385,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1676:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1655:22:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3379,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[3391,3467,3487],"referencedDeclaration":3467,"src":"1636:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":3387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1636:42:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3378,"id":3388,"nodeType":"Return","src":"1629:49:17"}]}]},"documentation":{"id":3372,"nodeType":"StructuredDocumentation","src":"1422:94:17","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":3391,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"1530:11:17","nodeType":"FunctionDefinition","parameters":{"id":3375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3374,"mutability":"mutable","name":"value","nameLocation":"1550:5:17","nodeType":"VariableDeclaration","scope":3391,"src":"1542:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3373,"name":"uint256","nodeType":"ElementaryTypeName","src":"1542:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1541:15:17"},"returnParameters":{"id":3378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3377,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3391,"src":"1580:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3376,"name":"string","nodeType":"ElementaryTypeName","src":"1580:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1579:15:17"},"scope":3513,"src":"1521:174:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3466,"nodeType":"Block","src":"1908:347:17","statements":[{"assignments":[3402],"declarations":[{"constant":false,"id":3402,"mutability":"mutable","name":"buffer","nameLocation":"1931:6:17","nodeType":"VariableDeclaration","scope":3466,"src":"1918:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3401,"name":"bytes","nodeType":"ElementaryTypeName","src":"1918:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3411,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3405,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1950:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3406,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3396,"src":"1954:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1950:10:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":3408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1963:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"1950:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3404,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1940:9:17","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":3403,"name":"bytes","nodeType":"ElementaryTypeName","src":"1944:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":3410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1940:25:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1918:47:17"},{"expression":{"id":3416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3412,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3402,"src":"1975:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3414,"indexExpression":{"hexValue":"30","id":3413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1982:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1975:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1987:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"1975:15:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3417,"nodeType":"ExpressionStatement","src":"1975:15:17"},{"expression":{"id":3422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3418,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3402,"src":"2000:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3420,"indexExpression":{"hexValue":"31","id":3419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2007:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2000:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":3421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2012:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2000:15:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3423,"nodeType":"ExpressionStatement","src":"2000:15:17"},{"body":{"id":3452,"nodeType":"Block","src":"2070:83:17","statements":[{"expression":{"id":3446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3438,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3402,"src":"2084:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3440,"indexExpression":{"id":3439,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3425,"src":"2091:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2084:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":3441,"name":"_SYMBOLS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3292,"src":"2096:8:17","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":3445,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3442,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"2105:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":3443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2113:3:17","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2105:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2096:21:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2084:33:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3447,"nodeType":"ExpressionStatement","src":"2084:33:17"},{"expression":{"id":3450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3448,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"2131:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":3449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2141:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2131:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3451,"nodeType":"ExpressionStatement","src":"2131:11:17"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3432,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3425,"src":"2058:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":3433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2062:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2058:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3453,"initializationExpression":{"assignments":[3425],"declarations":[{"constant":false,"id":3425,"mutability":"mutable","name":"i","nameLocation":"2038:1:17","nodeType":"VariableDeclaration","scope":3453,"src":"2030:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3424,"name":"uint256","nodeType":"ElementaryTypeName","src":"2030:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3431,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2042:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3427,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3396,"src":"2046:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2042:10:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2055:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2042:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2030:26:17"},"loopExpression":{"expression":{"id":3436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2065:3:17","subExpression":{"id":3435,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3425,"src":"2067:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3437,"nodeType":"ExpressionStatement","src":"2065:3:17"},"nodeType":"ForStatement","src":"2025:128:17"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3455,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3394,"src":"2170:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2179:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2170:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"537472696e67733a20686578206c656e67746820696e73756666696369656e74","id":3458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2182:34:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2","typeString":"literal_string \"Strings: hex length insufficient\""},"value":"Strings: hex length insufficient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2","typeString":"literal_string \"Strings: hex length insufficient\""}],"id":3454,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2162:7:17","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2162:55:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3460,"nodeType":"ExpressionStatement","src":"2162:55:17"},{"expression":{"arguments":[{"id":3463,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3402,"src":"2241:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3462,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2234:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":3461,"name":"string","nodeType":"ElementaryTypeName","src":"2234:6:17","typeDescriptions":{}}},"id":3464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2234:14:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3400,"id":3465,"nodeType":"Return","src":"2227:21:17"}]},"documentation":{"id":3392,"nodeType":"StructuredDocumentation","src":"1701:112:17","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":3467,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"1827:11:17","nodeType":"FunctionDefinition","parameters":{"id":3397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3394,"mutability":"mutable","name":"value","nameLocation":"1847:5:17","nodeType":"VariableDeclaration","scope":3467,"src":"1839:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3393,"name":"uint256","nodeType":"ElementaryTypeName","src":"1839:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3396,"mutability":"mutable","name":"length","nameLocation":"1862:6:17","nodeType":"VariableDeclaration","scope":3467,"src":"1854:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3395,"name":"uint256","nodeType":"ElementaryTypeName","src":"1854:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1838:31:17"},"returnParameters":{"id":3400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3399,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3467,"src":"1893:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3398,"name":"string","nodeType":"ElementaryTypeName","src":"1893:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1892:15:17"},"scope":3513,"src":"1818:437:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3486,"nodeType":"Block","src":"2480:76:17","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":3480,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3470,"src":"2525:4:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3479,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2517:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":3478,"name":"uint160","nodeType":"ElementaryTypeName","src":"2517:7:17","typeDescriptions":{}}},"id":3481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2517:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":3477,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2509:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3476,"name":"uint256","nodeType":"ElementaryTypeName","src":"2509:7:17","typeDescriptions":{}}},"id":3482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2509:22:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3483,"name":"_ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3295,"src":"2533:15:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":3475,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[3391,3467,3487],"referencedDeclaration":3467,"src":"2497:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":3484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2497:52:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3474,"id":3485,"nodeType":"Return","src":"2490:59:17"}]},"documentation":{"id":3468,"nodeType":"StructuredDocumentation","src":"2261:141:17","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation."},"id":3487,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2416:11:17","nodeType":"FunctionDefinition","parameters":{"id":3471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3470,"mutability":"mutable","name":"addr","nameLocation":"2436:4:17","nodeType":"VariableDeclaration","scope":3487,"src":"2428:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3469,"name":"address","nodeType":"ElementaryTypeName","src":"2428:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2427:14:17"},"returnParameters":{"id":3474,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3473,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3487,"src":"2465:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3472,"name":"string","nodeType":"ElementaryTypeName","src":"2465:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2464:15:17"},"scope":3513,"src":"2407:149:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3511,"nodeType":"Block","src":"2711:66:17","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":3500,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3490,"src":"2744:1:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3499,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2738:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3498,"name":"bytes","nodeType":"ElementaryTypeName","src":"2738:5:17","typeDescriptions":{}}},"id":3501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2738:8:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3497,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2728:9:17","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2728:19:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"id":3506,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3492,"src":"2767:1:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2761:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3504,"name":"bytes","nodeType":"ElementaryTypeName","src":"2761:5:17","typeDescriptions":{}}},"id":3507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2761:8:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3503,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2751:9:17","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2751:19:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2728:42:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3496,"id":3510,"nodeType":"Return","src":"2721:49:17"}]},"documentation":{"id":3488,"nodeType":"StructuredDocumentation","src":"2562:66:17","text":" @dev Returns true if the two strings are equal."},"id":3512,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"2642:5:17","nodeType":"FunctionDefinition","parameters":{"id":3493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3490,"mutability":"mutable","name":"a","nameLocation":"2662:1:17","nodeType":"VariableDeclaration","scope":3512,"src":"2648:15:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3489,"name":"string","nodeType":"ElementaryTypeName","src":"2648:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3492,"mutability":"mutable","name":"b","nameLocation":"2679:1:17","nodeType":"VariableDeclaration","scope":3512,"src":"2665:15:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3491,"name":"string","nodeType":"ElementaryTypeName","src":"2665:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2647:34:17"},"returnParameters":{"id":3496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3495,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3512,"src":"2705:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3494,"name":"bool","nodeType":"ElementaryTypeName","src":"2705:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2704:6:17"},"scope":3513,"src":"2633:144:17","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":3514,"src":"220:2559:17","usedErrors":[]}],"src":"101:2679:17"},"id":17},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[3537],"IERC165":[3549]},"id":3538,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3515,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"99:23:18"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":3516,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3538,"sourceUnit":3550,"src":"124:23:18","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3518,"name":"IERC165","nameLocations":["754:7:18"],"nodeType":"IdentifierPath","referencedDeclaration":3549,"src":"754:7:18"},"id":3519,"nodeType":"InheritanceSpecifier","src":"754:7:18"}],"canonicalName":"ERC165","contractDependencies":[],"contractKind":"contract","documentation":{"id":3517,"nodeType":"StructuredDocumentation","src":"149:576:18","text":" @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC165 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 ```\n Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation."},"fullyImplemented":true,"id":3537,"linearizedBaseContracts":[3537,3549],"name":"ERC165","nameLocation":"744:6:18","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[3548],"body":{"id":3535,"nodeType":"Block","src":"920:64:18","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":3533,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3528,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3522,"src":"937:11:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":3530,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3549,"src":"957:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$3549_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$3549_$","typeString":"type(contract IERC165)"}],"id":3529,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"952:4:18","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"952:13:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$3549","typeString":"type(contract IERC165)"}},"id":3532,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"966:11:18","memberName":"interfaceId","nodeType":"MemberAccess","src":"952:25:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"937:40:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3527,"id":3534,"nodeType":"Return","src":"930:47:18"}]},"documentation":{"id":3520,"nodeType":"StructuredDocumentation","src":"768:56:18","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":3536,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"838:17:18","nodeType":"FunctionDefinition","overrides":{"id":3524,"nodeType":"OverrideSpecifier","overrides":[],"src":"896:8:18"},"parameters":{"id":3523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3522,"mutability":"mutable","name":"interfaceId","nameLocation":"863:11:18","nodeType":"VariableDeclaration","scope":3536,"src":"856:18:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":3521,"name":"bytes4","nodeType":"ElementaryTypeName","src":"856:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"855:20:18"},"returnParameters":{"id":3527,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3526,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3536,"src":"914:4:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3525,"name":"bool","nodeType":"ElementaryTypeName","src":"914:4:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"913:6:18"},"scope":3537,"src":"829:155:18","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":3538,"src":"726:260:18","usedErrors":[]}],"src":"99:888:18"},"id":18},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[3549]},"id":3550,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3539,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"100:23:19"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":3540,"nodeType":"StructuredDocumentation","src":"125:279:19","text":" @dev Interface of the ERC165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[EIP].\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":3549,"linearizedBaseContracts":[3549],"name":"IERC165","nameLocation":"415:7:19","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3541,"nodeType":"StructuredDocumentation","src":"429:340:19","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[EIP 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":3548,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"783:17:19","nodeType":"FunctionDefinition","parameters":{"id":3544,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3543,"mutability":"mutable","name":"interfaceId","nameLocation":"808:11:19","nodeType":"VariableDeclaration","scope":3548,"src":"801:18:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":3542,"name":"bytes4","nodeType":"ElementaryTypeName","src":"801:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"800:20:19"},"returnParameters":{"id":3547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3546,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3548,"src":"844:4:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3545,"name":"bool","nodeType":"ElementaryTypeName","src":"844:4:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"843:6:19"},"scope":3549,"src":"774:76:19","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":3550,"src":"405:447:19","usedErrors":[]}],"src":"100:753:19"},"id":19},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[4415]},"id":4416,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3551,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"103:23:20"},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":3552,"nodeType":"StructuredDocumentation","src":"128:73:20","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":4415,"linearizedBaseContracts":[4415],"name":"Math","nameLocation":"210:4:20","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":3556,"members":[{"id":3553,"name":"Down","nameLocation":"245:4:20","nodeType":"EnumValue","src":"245:4:20"},{"id":3554,"name":"Up","nameLocation":"287:2:20","nodeType":"EnumValue","src":"287:2:20"},{"id":3555,"name":"Zero","nameLocation":"318:4:20","nodeType":"EnumValue","src":"318:4:20"}],"name":"Rounding","nameLocation":"226:8:20","nodeType":"EnumDefinition","src":"221:122:20"},{"body":{"id":3573,"nodeType":"Block","src":"480:37:20","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3566,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3559,"src":"497:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":3567,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3561,"src":"501:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"497:5:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":3570,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3561,"src":"509:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"497:13:20","trueExpression":{"id":3569,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3559,"src":"505:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3565,"id":3572,"nodeType":"Return","src":"490:20:20"}]},"documentation":{"id":3557,"nodeType":"StructuredDocumentation","src":"349:59:20","text":" @dev Returns the largest of two numbers."},"id":3574,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"422:3:20","nodeType":"FunctionDefinition","parameters":{"id":3562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3559,"mutability":"mutable","name":"a","nameLocation":"434:1:20","nodeType":"VariableDeclaration","scope":3574,"src":"426:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3558,"name":"uint256","nodeType":"ElementaryTypeName","src":"426:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3561,"mutability":"mutable","name":"b","nameLocation":"445:1:20","nodeType":"VariableDeclaration","scope":3574,"src":"437:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3560,"name":"uint256","nodeType":"ElementaryTypeName","src":"437:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"425:22:20"},"returnParameters":{"id":3565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3564,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3574,"src":"471:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3563,"name":"uint256","nodeType":"ElementaryTypeName","src":"471:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"470:9:20"},"scope":4415,"src":"413:104:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3591,"nodeType":"Block","src":"655:37:20","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3584,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3577,"src":"672:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3585,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3579,"src":"676:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"672:5:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":3588,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3579,"src":"684:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"672:13:20","trueExpression":{"id":3587,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3577,"src":"680:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3583,"id":3590,"nodeType":"Return","src":"665:20:20"}]},"documentation":{"id":3575,"nodeType":"StructuredDocumentation","src":"523:60:20","text":" @dev Returns the smallest of two numbers."},"id":3592,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"597:3:20","nodeType":"FunctionDefinition","parameters":{"id":3580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3577,"mutability":"mutable","name":"a","nameLocation":"609:1:20","nodeType":"VariableDeclaration","scope":3592,"src":"601:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3576,"name":"uint256","nodeType":"ElementaryTypeName","src":"601:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3579,"mutability":"mutable","name":"b","nameLocation":"620:1:20","nodeType":"VariableDeclaration","scope":3592,"src":"612:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3578,"name":"uint256","nodeType":"ElementaryTypeName","src":"612:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"600:22:20"},"returnParameters":{"id":3583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3582,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3592,"src":"646:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3581,"name":"uint256","nodeType":"ElementaryTypeName","src":"646:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"645:9:20"},"scope":4415,"src":"588:104:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3614,"nodeType":"Block","src":"876:82:20","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3602,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3595,"src":"931:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":3603,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3597,"src":"935:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"931:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3605,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"930:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3606,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3595,"src":"941:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":3607,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3597,"src":"945:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"941:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3609,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"940:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":3610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"950:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"940:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"930:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3601,"id":3613,"nodeType":"Return","src":"923:28:20"}]},"documentation":{"id":3593,"nodeType":"StructuredDocumentation","src":"698:102:20","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":3615,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"814:7:20","nodeType":"FunctionDefinition","parameters":{"id":3598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3595,"mutability":"mutable","name":"a","nameLocation":"830:1:20","nodeType":"VariableDeclaration","scope":3615,"src":"822:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3594,"name":"uint256","nodeType":"ElementaryTypeName","src":"822:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3597,"mutability":"mutable","name":"b","nameLocation":"841:1:20","nodeType":"VariableDeclaration","scope":3615,"src":"833:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3596,"name":"uint256","nodeType":"ElementaryTypeName","src":"833:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"821:22:20"},"returnParameters":{"id":3601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3600,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3615,"src":"867:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3599,"name":"uint256","nodeType":"ElementaryTypeName","src":"867:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"866:9:20"},"scope":4415,"src":"805:153:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3639,"nodeType":"Block","src":"1228:123:20","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3625,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3618,"src":"1316:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1321:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1316:6:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3629,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3618,"src":"1330:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":3630,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1334:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1330:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3632,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1329:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3633,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3620,"src":"1339:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1329:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1343:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1329:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1316:28:20","trueExpression":{"hexValue":"30","id":3628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1325:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3624,"id":3638,"nodeType":"Return","src":"1309:35:20"}]},"documentation":{"id":3616,"nodeType":"StructuredDocumentation","src":"964:188:20","text":" @dev Returns the ceiling of the division of two numbers.\n This differs from standard division with `/` in that it rounds up instead\n of rounding down."},"id":3640,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"1166:7:20","nodeType":"FunctionDefinition","parameters":{"id":3621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3618,"mutability":"mutable","name":"a","nameLocation":"1182:1:20","nodeType":"VariableDeclaration","scope":3640,"src":"1174:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3617,"name":"uint256","nodeType":"ElementaryTypeName","src":"1174:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3620,"mutability":"mutable","name":"b","nameLocation":"1193:1:20","nodeType":"VariableDeclaration","scope":3640,"src":"1185:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3619,"name":"uint256","nodeType":"ElementaryTypeName","src":"1185:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1173:22:20"},"returnParameters":{"id":3624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3623,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3640,"src":"1219:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3622,"name":"uint256","nodeType":"ElementaryTypeName","src":"1219:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1218:9:20"},"scope":4415,"src":"1157:194:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3762,"nodeType":"Block","src":"1765:4115:20","statements":[{"id":3761,"nodeType":"UncheckedBlock","src":"1775:4099:20","statements":[{"assignments":[3653],"declarations":[{"constant":false,"id":3653,"mutability":"mutable","name":"prod0","nameLocation":"2104:5:20","nodeType":"VariableDeclaration","scope":3761,"src":"2096:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3652,"name":"uint256","nodeType":"ElementaryTypeName","src":"2096:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3654,"nodeType":"VariableDeclarationStatement","src":"2096:13:20"},{"assignments":[3656],"declarations":[{"constant":false,"id":3656,"mutability":"mutable","name":"prod1","nameLocation":"2176:5:20","nodeType":"VariableDeclaration","scope":3761,"src":"2168:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3655,"name":"uint256","nodeType":"ElementaryTypeName","src":"2168:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3657,"nodeType":"VariableDeclarationStatement","src":"2168:13:20"},{"AST":{"nodeType":"YulBlock","src":"2248:157:20","statements":[{"nodeType":"YulVariableDeclaration","src":"2266:30:20","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"2283:1:20"},{"name":"y","nodeType":"YulIdentifier","src":"2286:1:20"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2293:1:20","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2289:3:20"},"nodeType":"YulFunctionCall","src":"2289:6:20"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"2276:6:20"},"nodeType":"YulFunctionCall","src":"2276:20:20"},"variables":[{"name":"mm","nodeType":"YulTypedName","src":"2270:2:20","type":""}]},{"nodeType":"YulAssignment","src":"2313:18:20","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"2326:1:20"},{"name":"y","nodeType":"YulIdentifier","src":"2329:1:20"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"2322:3:20"},"nodeType":"YulFunctionCall","src":"2322:9:20"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"2313:5:20"}]},{"nodeType":"YulAssignment","src":"2348:43:20","value":{"arguments":[{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"2365:2:20"},{"name":"prod0","nodeType":"YulIdentifier","src":"2369:5:20"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2361:3:20"},"nodeType":"YulFunctionCall","src":"2361:14:20"},{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"2380:2:20"},{"name":"prod0","nodeType":"YulIdentifier","src":"2384:5:20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2377:2:20"},"nodeType":"YulFunctionCall","src":"2377:13:20"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2357:3:20"},"nodeType":"YulFunctionCall","src":"2357:34:20"},"variableNames":[{"name":"prod1","nodeType":"YulIdentifier","src":"2348:5:20"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":3653,"isOffset":false,"isSlot":false,"src":"2313:5:20","valueSize":1},{"declaration":3653,"isOffset":false,"isSlot":false,"src":"2369:5:20","valueSize":1},{"declaration":3653,"isOffset":false,"isSlot":false,"src":"2384:5:20","valueSize":1},{"declaration":3656,"isOffset":false,"isSlot":false,"src":"2348:5:20","valueSize":1},{"declaration":3643,"isOffset":false,"isSlot":false,"src":"2283:1:20","valueSize":1},{"declaration":3643,"isOffset":false,"isSlot":false,"src":"2326:1:20","valueSize":1},{"declaration":3645,"isOffset":false,"isSlot":false,"src":"2286:1:20","valueSize":1},{"declaration":3645,"isOffset":false,"isSlot":false,"src":"2329:1:20","valueSize":1}],"id":3658,"nodeType":"InlineAssembly","src":"2239:166:20"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3659,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3656,"src":"2486:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2495:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2486:10:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3667,"nodeType":"IfStatement","src":"2482:368:20","trueBody":{"id":3666,"nodeType":"Block","src":"2498:352:20","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3662,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3653,"src":"2816:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3663,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"2824:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2816:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3651,"id":3665,"nodeType":"Return","src":"2809:26:20"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3669,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"2960:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":3670,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3656,"src":"2974:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2960:19:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6174683a206d756c446976206f766572666c6f77","id":3672,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2981:23:20","typeDescriptions":{"typeIdentifier":"t_stringliteral_d87093691d63b122ac2c14d1b11554b287e2431cf2b03550b3be7cffb0f86851","typeString":"literal_string \"Math: mulDiv overflow\""},"value":"Math: mulDiv overflow"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d87093691d63b122ac2c14d1b11554b287e2431cf2b03550b3be7cffb0f86851","typeString":"literal_string \"Math: mulDiv overflow\""}],"id":3668,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2952:7:20","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2952:53:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3674,"nodeType":"ExpressionStatement","src":"2952:53:20"},{"assignments":[3676],"declarations":[{"constant":false,"id":3676,"mutability":"mutable","name":"remainder","nameLocation":"3269:9:20","nodeType":"VariableDeclaration","scope":3761,"src":"3261:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3675,"name":"uint256","nodeType":"ElementaryTypeName","src":"3261:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3677,"nodeType":"VariableDeclarationStatement","src":"3261:17:20"},{"AST":{"nodeType":"YulBlock","src":"3301:291:20","statements":[{"nodeType":"YulAssignment","src":"3370:38:20","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3390:1:20"},{"name":"y","nodeType":"YulIdentifier","src":"3393:1:20"},{"name":"denominator","nodeType":"YulIdentifier","src":"3396:11:20"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"3383:6:20"},"nodeType":"YulFunctionCall","src":"3383:25:20"},"variableNames":[{"name":"remainder","nodeType":"YulIdentifier","src":"3370:9:20"}]},{"nodeType":"YulAssignment","src":"3490:41:20","value":{"arguments":[{"name":"prod1","nodeType":"YulIdentifier","src":"3503:5:20"},{"arguments":[{"name":"remainder","nodeType":"YulIdentifier","src":"3513:9:20"},{"name":"prod0","nodeType":"YulIdentifier","src":"3524:5:20"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3510:2:20"},"nodeType":"YulFunctionCall","src":"3510:20:20"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3499:3:20"},"nodeType":"YulFunctionCall","src":"3499:32:20"},"variableNames":[{"name":"prod1","nodeType":"YulIdentifier","src":"3490:5:20"}]},{"nodeType":"YulAssignment","src":"3548:30:20","value":{"arguments":[{"name":"prod0","nodeType":"YulIdentifier","src":"3561:5:20"},{"name":"remainder","nodeType":"YulIdentifier","src":"3568:9:20"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3557:3:20"},"nodeType":"YulFunctionCall","src":"3557:21:20"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"3548:5:20"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":3647,"isOffset":false,"isSlot":false,"src":"3396:11:20","valueSize":1},{"declaration":3653,"isOffset":false,"isSlot":false,"src":"3524:5:20","valueSize":1},{"declaration":3653,"isOffset":false,"isSlot":false,"src":"3548:5:20","valueSize":1},{"declaration":3653,"isOffset":false,"isSlot":false,"src":"3561:5:20","valueSize":1},{"declaration":3656,"isOffset":false,"isSlot":false,"src":"3490:5:20","valueSize":1},{"declaration":3656,"isOffset":false,"isSlot":false,"src":"3503:5:20","valueSize":1},{"declaration":3676,"isOffset":false,"isSlot":false,"src":"3370:9:20","valueSize":1},{"declaration":3676,"isOffset":false,"isSlot":false,"src":"3513:9:20","valueSize":1},{"declaration":3676,"isOffset":false,"isSlot":false,"src":"3568:9:20","valueSize":1},{"declaration":3643,"isOffset":false,"isSlot":false,"src":"3390:1:20","valueSize":1},{"declaration":3645,"isOffset":false,"isSlot":false,"src":"3393:1:20","valueSize":1}],"id":3678,"nodeType":"InlineAssembly","src":"3292:300:20"},{"assignments":[3680],"declarations":[{"constant":false,"id":3680,"mutability":"mutable","name":"twos","nameLocation":"3907:4:20","nodeType":"VariableDeclaration","scope":3761,"src":"3899:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3679,"name":"uint256","nodeType":"ElementaryTypeName","src":"3899:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3688,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3681,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"3914:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"~","prefix":true,"src":"3929:12:20","subExpression":{"id":3682,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"3930:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3944:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3929:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3686,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3928:18:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3914:32:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3899:47:20"},{"AST":{"nodeType":"YulBlock","src":"3969:362:20","statements":[{"nodeType":"YulAssignment","src":"4034:37:20","value":{"arguments":[{"name":"denominator","nodeType":"YulIdentifier","src":"4053:11:20"},{"name":"twos","nodeType":"YulIdentifier","src":"4066:4:20"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"4049:3:20"},"nodeType":"YulFunctionCall","src":"4049:22:20"},"variableNames":[{"name":"denominator","nodeType":"YulIdentifier","src":"4034:11:20"}]},{"nodeType":"YulAssignment","src":"4138:25:20","value":{"arguments":[{"name":"prod0","nodeType":"YulIdentifier","src":"4151:5:20"},{"name":"twos","nodeType":"YulIdentifier","src":"4158:4:20"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"4147:3:20"},"nodeType":"YulFunctionCall","src":"4147:16:20"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"4138:5:20"}]},{"nodeType":"YulAssignment","src":"4278:39:20","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4298:1:20","type":"","value":"0"},{"name":"twos","nodeType":"YulIdentifier","src":"4301:4:20"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4294:3:20"},"nodeType":"YulFunctionCall","src":"4294:12:20"},{"name":"twos","nodeType":"YulIdentifier","src":"4308:4:20"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"4290:3:20"},"nodeType":"YulFunctionCall","src":"4290:23:20"},{"kind":"number","nodeType":"YulLiteral","src":"4315:1:20","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4286:3:20"},"nodeType":"YulFunctionCall","src":"4286:31:20"},"variableNames":[{"name":"twos","nodeType":"YulIdentifier","src":"4278:4:20"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":3647,"isOffset":false,"isSlot":false,"src":"4034:11:20","valueSize":1},{"declaration":3647,"isOffset":false,"isSlot":false,"src":"4053:11:20","valueSize":1},{"declaration":3653,"isOffset":false,"isSlot":false,"src":"4138:5:20","valueSize":1},{"declaration":3653,"isOffset":false,"isSlot":false,"src":"4151:5:20","valueSize":1},{"declaration":3680,"isOffset":false,"isSlot":false,"src":"4066:4:20","valueSize":1},{"declaration":3680,"isOffset":false,"isSlot":false,"src":"4158:4:20","valueSize":1},{"declaration":3680,"isOffset":false,"isSlot":false,"src":"4278:4:20","valueSize":1},{"declaration":3680,"isOffset":false,"isSlot":false,"src":"4301:4:20","valueSize":1},{"declaration":3680,"isOffset":false,"isSlot":false,"src":"4308:4:20","valueSize":1}],"id":3689,"nodeType":"InlineAssembly","src":"3960:371:20"},{"expression":{"id":3694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3690,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3653,"src":"4397:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3691,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3656,"src":"4406:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3692,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3680,"src":"4414:4:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4406:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4397:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3695,"nodeType":"ExpressionStatement","src":"4397:21:20"},{"assignments":[3697],"declarations":[{"constant":false,"id":3697,"mutability":"mutable","name":"inverse","nameLocation":"4744:7:20","nodeType":"VariableDeclaration","scope":3761,"src":"4736:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3696,"name":"uint256","nodeType":"ElementaryTypeName","src":"4736:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3704,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":3698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4755:1:20","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3699,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"4759:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4755:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3701,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4754:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":3702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4774:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"4754:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4736:39:20"},{"expression":{"id":3711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3705,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"4992:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5003:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3707,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"5007:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3708,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5021:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5007:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5003:25:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4992:36:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3712,"nodeType":"ExpressionStatement","src":"4992:36:20"},{"expression":{"id":3719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3713,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5061:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5072:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3715,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"5076:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3716,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5090:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5076:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5072:25:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5061:36:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3720,"nodeType":"ExpressionStatement","src":"5061:36:20"},{"expression":{"id":3727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3721,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5131:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5142:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3723,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"5146:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3724,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5160:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5146:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5142:25:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5131:36:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3728,"nodeType":"ExpressionStatement","src":"5131:36:20"},{"expression":{"id":3735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3729,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5201:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5212:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3731,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"5216:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3732,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5230:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5216:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5212:25:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5201:36:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3736,"nodeType":"ExpressionStatement","src":"5201:36:20"},{"expression":{"id":3743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3737,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5271:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5282:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3739,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"5286:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3740,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5300:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5286:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5282:25:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5271:36:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3744,"nodeType":"ExpressionStatement","src":"5271:36:20"},{"expression":{"id":3751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3745,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5342:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3746,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5353:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3747,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"5357:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3748,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5371:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5357:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5353:25:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5342:36:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3752,"nodeType":"ExpressionStatement","src":"5342:36:20"},{"expression":{"id":3757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3753,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3650,"src":"5812:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3754,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3653,"src":"5821:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3755,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3697,"src":"5829:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5821:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5812:24:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3758,"nodeType":"ExpressionStatement","src":"5812:24:20"},{"expression":{"id":3759,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3650,"src":"5857:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3651,"id":3760,"nodeType":"Return","src":"5850:13:20"}]}]},"documentation":{"id":3641,"nodeType":"StructuredDocumentation","src":"1357:305:20","text":" @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n with further edits by Uniswap Labs also under MIT license."},"id":3763,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"1676:6:20","nodeType":"FunctionDefinition","parameters":{"id":3648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3643,"mutability":"mutable","name":"x","nameLocation":"1691:1:20","nodeType":"VariableDeclaration","scope":3763,"src":"1683:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3642,"name":"uint256","nodeType":"ElementaryTypeName","src":"1683:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3645,"mutability":"mutable","name":"y","nameLocation":"1702:1:20","nodeType":"VariableDeclaration","scope":3763,"src":"1694:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3644,"name":"uint256","nodeType":"ElementaryTypeName","src":"1694:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3647,"mutability":"mutable","name":"denominator","nameLocation":"1713:11:20","nodeType":"VariableDeclaration","scope":3763,"src":"1705:19:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3646,"name":"uint256","nodeType":"ElementaryTypeName","src":"1705:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1682:43:20"},"returnParameters":{"id":3651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3650,"mutability":"mutable","name":"result","nameLocation":"1757:6:20","nodeType":"VariableDeclaration","scope":3763,"src":"1749:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3649,"name":"uint256","nodeType":"ElementaryTypeName","src":"1749:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1748:16:20"},"scope":4415,"src":"1667:4213:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3806,"nodeType":"Block","src":"6122:189:20","statements":[{"assignments":[3779],"declarations":[{"constant":false,"id":3779,"mutability":"mutable","name":"result","nameLocation":"6140:6:20","nodeType":"VariableDeclaration","scope":3806,"src":"6132:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3778,"name":"uint256","nodeType":"ElementaryTypeName","src":"6132:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3785,"initialValue":{"arguments":[{"id":3781,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3766,"src":"6156:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3782,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3768,"src":"6159:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3783,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3770,"src":"6162:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3780,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[3763,3807],"referencedDeclaration":3763,"src":"6149:6:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":3784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6149:25:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6132:42:20"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"id":3789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3786,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3773,"src":"6188:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3787,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"6200:8:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$3556_$","typeString":"type(enum Math.Rounding)"}},"id":3788,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6209:2:20","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":3554,"src":"6200:11:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"src":"6188:23:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3791,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3766,"src":"6222:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3792,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3768,"src":"6225:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3793,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3770,"src":"6228:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3790,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"6215:6:20","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":3794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6215:25:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6243:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6215:29:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6188:56:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3803,"nodeType":"IfStatement","src":"6184:98:20","trueBody":{"id":3802,"nodeType":"Block","src":"6246:36:20","statements":[{"expression":{"id":3800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3798,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3779,"src":"6260:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":3799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6270:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6260:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3801,"nodeType":"ExpressionStatement","src":"6260:11:20"}]}},{"expression":{"id":3804,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3779,"src":"6298:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3777,"id":3805,"nodeType":"Return","src":"6291:13:20"}]},"documentation":{"id":3764,"nodeType":"StructuredDocumentation","src":"5886:121:20","text":" @notice Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":3807,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"6021:6:20","nodeType":"FunctionDefinition","parameters":{"id":3774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3766,"mutability":"mutable","name":"x","nameLocation":"6036:1:20","nodeType":"VariableDeclaration","scope":3807,"src":"6028:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3765,"name":"uint256","nodeType":"ElementaryTypeName","src":"6028:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3768,"mutability":"mutable","name":"y","nameLocation":"6047:1:20","nodeType":"VariableDeclaration","scope":3807,"src":"6039:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3767,"name":"uint256","nodeType":"ElementaryTypeName","src":"6039:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3770,"mutability":"mutable","name":"denominator","nameLocation":"6058:11:20","nodeType":"VariableDeclaration","scope":3807,"src":"6050:19:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3769,"name":"uint256","nodeType":"ElementaryTypeName","src":"6050:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3773,"mutability":"mutable","name":"rounding","nameLocation":"6080:8:20","nodeType":"VariableDeclaration","scope":3807,"src":"6071:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"typeName":{"id":3772,"nodeType":"UserDefinedTypeName","pathNode":{"id":3771,"name":"Rounding","nameLocations":["6071:8:20"],"nodeType":"IdentifierPath","referencedDeclaration":3556,"src":"6071:8:20"},"referencedDeclaration":3556,"src":"6071:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"6027:62:20"},"returnParameters":{"id":3777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3776,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3807,"src":"6113:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3775,"name":"uint256","nodeType":"ElementaryTypeName","src":"6113:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6112:9:20"},"scope":4415,"src":"6012:299:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3918,"nodeType":"Block","src":"6587:1585:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3815,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"6601:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3816,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6606:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6601:6:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3821,"nodeType":"IfStatement","src":"6597:45:20","trueBody":{"id":3820,"nodeType":"Block","src":"6609:33:20","statements":[{"expression":{"hexValue":"30","id":3818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6630:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":3814,"id":3819,"nodeType":"Return","src":"6623:8:20"}]}},{"assignments":[3823],"declarations":[{"constant":false,"id":3823,"mutability":"mutable","name":"result","nameLocation":"7329:6:20","nodeType":"VariableDeclaration","scope":3918,"src":"7321:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3822,"name":"uint256","nodeType":"ElementaryTypeName","src":"7321:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3832,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":3824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7338:1:20","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":3829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3826,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"7349:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3825,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[4087,4123],"referencedDeclaration":4087,"src":"7344:4:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":3827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7344:7:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":3828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7355:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7344:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3830,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7343:14:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7338:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7321:36:20"},{"id":3917,"nodeType":"UncheckedBlock","src":"7758:408:20","statements":[{"expression":{"id":3842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3833,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7782:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3834,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7792:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3835,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"7801:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3836,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7805:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7801:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7792:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3839,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7791:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":3840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7816:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7791:26:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7782:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3843,"nodeType":"ExpressionStatement","src":"7782:35:20"},{"expression":{"id":3853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3844,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7831:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3845,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7841:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3846,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"7850:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3847,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7854:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7850:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7841:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3850,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7840:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":3851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7865:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7840:26:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7831:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3854,"nodeType":"ExpressionStatement","src":"7831:35:20"},{"expression":{"id":3864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3855,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7880:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3856,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7890:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3857,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"7899:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3858,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7903:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7899:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7890:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3861,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7889:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":3862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7914:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7889:26:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7880:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3865,"nodeType":"ExpressionStatement","src":"7880:35:20"},{"expression":{"id":3875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3866,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7929:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3867,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7939:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3868,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"7948:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3869,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7952:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7948:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7939:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3872,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7938:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":3873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7963:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7938:26:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7929:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3876,"nodeType":"ExpressionStatement","src":"7929:35:20"},{"expression":{"id":3886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3877,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7978:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3878,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"7988:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3879,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"7997:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3880,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8001:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7997:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7988:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3883,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7987:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":3884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8012:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7987:26:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7978:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3887,"nodeType":"ExpressionStatement","src":"7978:35:20"},{"expression":{"id":3897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3888,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8027:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3889,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8037:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3890,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"8046:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3891,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8050:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8046:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8037:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3894,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8036:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":3895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8061:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8036:26:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8027:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3898,"nodeType":"ExpressionStatement","src":"8027:35:20"},{"expression":{"id":3908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3899,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8076:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3900,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8086:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3901,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"8095:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3902,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8099:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8095:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8086:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3905,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8085:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":3906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8110:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8085:26:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8076:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3909,"nodeType":"ExpressionStatement","src":"8076:35:20"},{"expression":{"arguments":[{"id":3911,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8136:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3912,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"8144:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3913,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"8148:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8144:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3910,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3592,"src":"8132:3:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8132:23:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3814,"id":3916,"nodeType":"Return","src":"8125:30:20"}]}]},"documentation":{"id":3808,"nodeType":"StructuredDocumentation","src":"6317:208:20","text":" @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11)."},"id":3919,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"6539:4:20","nodeType":"FunctionDefinition","parameters":{"id":3811,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3810,"mutability":"mutable","name":"a","nameLocation":"6552:1:20","nodeType":"VariableDeclaration","scope":3919,"src":"6544:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3809,"name":"uint256","nodeType":"ElementaryTypeName","src":"6544:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6543:11:20"},"returnParameters":{"id":3814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3813,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3919,"src":"6578:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3812,"name":"uint256","nodeType":"ElementaryTypeName","src":"6578:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6577:9:20"},"scope":4415,"src":"6530:1642:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3954,"nodeType":"Block","src":"8348:161:20","statements":[{"id":3953,"nodeType":"UncheckedBlock","src":"8358:145:20","statements":[{"assignments":[3931],"declarations":[{"constant":false,"id":3931,"mutability":"mutable","name":"result","nameLocation":"8390:6:20","nodeType":"VariableDeclaration","scope":3953,"src":"8382:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3930,"name":"uint256","nodeType":"ElementaryTypeName","src":"8382:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3935,"initialValue":{"arguments":[{"id":3933,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3922,"src":"8404:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3932,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[3919,3955],"referencedDeclaration":3919,"src":"8399:4:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":3934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8399:7:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8382:24:20"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3936,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3931,"src":"8427:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"id":3940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3937,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3925,"src":"8437:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3938,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"8449:8:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$3556_$","typeString":"type(enum Math.Rounding)"}},"id":3939,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8458:2:20","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":3554,"src":"8449:11:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"src":"8437:23:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3941,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3931,"src":"8464:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3942,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3931,"src":"8473:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8464:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3944,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3922,"src":"8482:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8464:19:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8437:46:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":3948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8490:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":3949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8437:54:20","trueExpression":{"hexValue":"31","id":3947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8486:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":3950,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8436:56:20","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"8427:65:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3929,"id":3952,"nodeType":"Return","src":"8420:72:20"}]}]},"documentation":{"id":3920,"nodeType":"StructuredDocumentation","src":"8178:89:20","text":" @notice Calculates sqrt(a), following the selected rounding direction."},"id":3955,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"8281:4:20","nodeType":"FunctionDefinition","parameters":{"id":3926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3922,"mutability":"mutable","name":"a","nameLocation":"8294:1:20","nodeType":"VariableDeclaration","scope":3955,"src":"8286:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3921,"name":"uint256","nodeType":"ElementaryTypeName","src":"8286:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3925,"mutability":"mutable","name":"rounding","nameLocation":"8306:8:20","nodeType":"VariableDeclaration","scope":3955,"src":"8297:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"typeName":{"id":3924,"nodeType":"UserDefinedTypeName","pathNode":{"id":3923,"name":"Rounding","nameLocations":["8297:8:20"],"nodeType":"IdentifierPath","referencedDeclaration":3556,"src":"8297:8:20"},"referencedDeclaration":3556,"src":"8297:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"8285:30:20"},"returnParameters":{"id":3929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3928,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3955,"src":"8339:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3927,"name":"uint256","nodeType":"ElementaryTypeName","src":"8339:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8338:9:20"},"scope":4415,"src":"8272:237:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4086,"nodeType":"Block","src":"8694:922:20","statements":[{"assignments":[3964],"declarations":[{"constant":false,"id":3964,"mutability":"mutable","name":"result","nameLocation":"8712:6:20","nodeType":"VariableDeclaration","scope":4086,"src":"8704:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3963,"name":"uint256","nodeType":"ElementaryTypeName","src":"8704:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3966,"initialValue":{"hexValue":"30","id":3965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8721:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8704:18:20"},{"id":4083,"nodeType":"UncheckedBlock","src":"8732:855:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3967,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"8760:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":3968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8769:3:20","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8760:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8775:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8760:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3981,"nodeType":"IfStatement","src":"8756:99:20","trueBody":{"id":3980,"nodeType":"Block","src":"8778:77:20","statements":[{"expression":{"id":3974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3972,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"8796:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":3973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8806:3:20","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8796:13:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3975,"nodeType":"ExpressionStatement","src":"8796:13:20"},{"expression":{"id":3978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3976,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"8827:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"313238","id":3977,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8837:3:20","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8827:13:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3979,"nodeType":"ExpressionStatement","src":"8827:13:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3982,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"8872:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":3983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8881:2:20","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8872:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8886:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8872:15:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3996,"nodeType":"IfStatement","src":"8868:96:20","trueBody":{"id":3995,"nodeType":"Block","src":"8889:75:20","statements":[{"expression":{"id":3989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3987,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"8907:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":3988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8917:2:20","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8907:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3990,"nodeType":"ExpressionStatement","src":"8907:12:20"},{"expression":{"id":3993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3991,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"8937:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":3992,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8947:2:20","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8937:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3994,"nodeType":"ExpressionStatement","src":"8937:12:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3997,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"8981:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":3998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8990:2:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"8981:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4000,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8995:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8981:15:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4011,"nodeType":"IfStatement","src":"8977:96:20","trueBody":{"id":4010,"nodeType":"Block","src":"8998:75:20","statements":[{"expression":{"id":4004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4002,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9016:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":4003,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9026:2:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9016:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4005,"nodeType":"ExpressionStatement","src":"9016:12:20"},{"expression":{"id":4008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4006,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"9046:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":4007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9056:2:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9046:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4009,"nodeType":"ExpressionStatement","src":"9046:12:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4012,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9090:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":4013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9099:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9090:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9104:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9090:15:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4026,"nodeType":"IfStatement","src":"9086:96:20","trueBody":{"id":4025,"nodeType":"Block","src":"9107:75:20","statements":[{"expression":{"id":4019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4017,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9125:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":4018,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9135:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9125:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4020,"nodeType":"ExpressionStatement","src":"9125:12:20"},{"expression":{"id":4023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4021,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"9155:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":4022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9165:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9155:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4024,"nodeType":"ExpressionStatement","src":"9155:12:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4027,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9199:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":4028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9208:1:20","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9199:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9212:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9199:14:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4041,"nodeType":"IfStatement","src":"9195:93:20","trueBody":{"id":4040,"nodeType":"Block","src":"9215:73:20","statements":[{"expression":{"id":4034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4032,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9233:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":4033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9243:1:20","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9233:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4035,"nodeType":"ExpressionStatement","src":"9233:11:20"},{"expression":{"id":4038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4036,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"9262:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":4037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9272:1:20","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9262:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4039,"nodeType":"ExpressionStatement","src":"9262:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4042,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9305:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"34","id":4043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9314:1:20","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"9305:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4045,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9318:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9305:14:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4056,"nodeType":"IfStatement","src":"9301:93:20","trueBody":{"id":4055,"nodeType":"Block","src":"9321:73:20","statements":[{"expression":{"id":4049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4047,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9339:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":4048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9349:1:20","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"9339:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4050,"nodeType":"ExpressionStatement","src":"9339:11:20"},{"expression":{"id":4053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4051,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"9368:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":4052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9378:1:20","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"9368:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4054,"nodeType":"ExpressionStatement","src":"9368:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4057,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9411:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"32","id":4058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9420:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9411:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9424:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9411:14:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4071,"nodeType":"IfStatement","src":"9407:93:20","trueBody":{"id":4070,"nodeType":"Block","src":"9427:73:20","statements":[{"expression":{"id":4064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4062,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9445:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"32","id":4063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9455:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9445:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4065,"nodeType":"ExpressionStatement","src":"9445:11:20"},{"expression":{"id":4068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4066,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"9474:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":4067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9484:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9474:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4069,"nodeType":"ExpressionStatement","src":"9474:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4072,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3958,"src":"9517:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":4073,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9526:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9517:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9530:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9517:14:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4082,"nodeType":"IfStatement","src":"9513:64:20","trueBody":{"id":4081,"nodeType":"Block","src":"9533:44:20","statements":[{"expression":{"id":4079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4077,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"9551:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":4078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9561:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9551:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4080,"nodeType":"ExpressionStatement","src":"9551:11:20"}]}}]},{"expression":{"id":4084,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3964,"src":"9603:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3962,"id":4085,"nodeType":"Return","src":"9596:13:20"}]},"documentation":{"id":3956,"nodeType":"StructuredDocumentation","src":"8515:113:20","text":" @dev Return the log in base 2, rounded down, of a positive value.\n Returns 0 if given 0."},"id":4087,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"8642:4:20","nodeType":"FunctionDefinition","parameters":{"id":3959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3958,"mutability":"mutable","name":"value","nameLocation":"8655:5:20","nodeType":"VariableDeclaration","scope":4087,"src":"8647:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3957,"name":"uint256","nodeType":"ElementaryTypeName","src":"8647:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8646:15:20"},"returnParameters":{"id":3962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4087,"src":"8685:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3960,"name":"uint256","nodeType":"ElementaryTypeName","src":"8685:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8684:9:20"},"scope":4415,"src":"8633:983:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4122,"nodeType":"Block","src":"9849:165:20","statements":[{"id":4121,"nodeType":"UncheckedBlock","src":"9859:149:20","statements":[{"assignments":[4099],"declarations":[{"constant":false,"id":4099,"mutability":"mutable","name":"result","nameLocation":"9891:6:20","nodeType":"VariableDeclaration","scope":4121,"src":"9883:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4098,"name":"uint256","nodeType":"ElementaryTypeName","src":"9883:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4103,"initialValue":{"arguments":[{"id":4101,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4090,"src":"9905:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4100,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[4087,4123],"referencedDeclaration":4087,"src":"9900:4:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":4102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9900:11:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9883:28:20"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4104,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4099,"src":"9932:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"id":4108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4105,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4093,"src":"9942:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4106,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"9954:8:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$3556_$","typeString":"type(enum Math.Rounding)"}},"id":4107,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9963:2:20","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":3554,"src":"9954:11:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"src":"9942:23:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":4109,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9969:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":4110,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4099,"src":"9974:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9969:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4112,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4090,"src":"9983:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9969:19:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9942:46:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":4116,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9995:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":4117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9942:54:20","trueExpression":{"hexValue":"31","id":4115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9991:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":4118,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9941:56:20","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"9932:65:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4097,"id":4120,"nodeType":"Return","src":"9925:72:20"}]}]},"documentation":{"id":4088,"nodeType":"StructuredDocumentation","src":"9622:142:20","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":4123,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"9778:4:20","nodeType":"FunctionDefinition","parameters":{"id":4094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4090,"mutability":"mutable","name":"value","nameLocation":"9791:5:20","nodeType":"VariableDeclaration","scope":4123,"src":"9783:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4089,"name":"uint256","nodeType":"ElementaryTypeName","src":"9783:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4093,"mutability":"mutable","name":"rounding","nameLocation":"9807:8:20","nodeType":"VariableDeclaration","scope":4123,"src":"9798:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"typeName":{"id":4092,"nodeType":"UserDefinedTypeName","pathNode":{"id":4091,"name":"Rounding","nameLocations":["9798:8:20"],"nodeType":"IdentifierPath","referencedDeclaration":3556,"src":"9798:8:20"},"referencedDeclaration":3556,"src":"9798:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"9782:34:20"},"returnParameters":{"id":4097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4096,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4123,"src":"9840:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4095,"name":"uint256","nodeType":"ElementaryTypeName","src":"9840:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9839:9:20"},"scope":4415,"src":"9769:245:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4251,"nodeType":"Block","src":"10201:854:20","statements":[{"assignments":[4132],"declarations":[{"constant":false,"id":4132,"mutability":"mutable","name":"result","nameLocation":"10219:6:20","nodeType":"VariableDeclaration","scope":4251,"src":"10211:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4131,"name":"uint256","nodeType":"ElementaryTypeName","src":"10211:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4134,"initialValue":{"hexValue":"30","id":4133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10228:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10211:18:20"},{"id":4248,"nodeType":"UncheckedBlock","src":"10239:787:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4135,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10267:5:20","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":4138,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10276:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":4137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10282:2:20","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"10276:8:20","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"10267:17:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4151,"nodeType":"IfStatement","src":"10263:103:20","trueBody":{"id":4150,"nodeType":"Block","src":"10286:80:20","statements":[{"expression":{"id":4144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4140,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10304:5:20","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":4143,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10313:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":4142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10319:2:20","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"10313:8:20","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"10304:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4145,"nodeType":"ExpressionStatement","src":"10304:17:20"},{"expression":{"id":4148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4146,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4132,"src":"10339:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":4147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10349:2:20","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"10339:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4149,"nodeType":"ExpressionStatement","src":"10339:12:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4152,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10383:5:20","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":4155,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10392:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":4154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10398:2:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"10392:8:20","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"10383:17:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4168,"nodeType":"IfStatement","src":"10379:103:20","trueBody":{"id":4167,"nodeType":"Block","src":"10402:80:20","statements":[{"expression":{"id":4161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4157,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10420:5:20","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":4160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10429:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":4159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10435:2:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"10429:8:20","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"10420:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4162,"nodeType":"ExpressionStatement","src":"10420:17:20"},{"expression":{"id":4165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4163,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4132,"src":"10455:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":4164,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10465:2:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"10455:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4166,"nodeType":"ExpressionStatement","src":"10455:12:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4169,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10499:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":4172,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4170,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10508:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":4171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10514:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"10508:8:20","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"10499:17:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4185,"nodeType":"IfStatement","src":"10495:103:20","trueBody":{"id":4184,"nodeType":"Block","src":"10518:80:20","statements":[{"expression":{"id":4178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4174,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10536:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":4177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10545:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":4176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10551:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"10545:8:20","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"10536:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4179,"nodeType":"ExpressionStatement","src":"10536:17:20"},{"expression":{"id":4182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4180,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4132,"src":"10571:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":4181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10581:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"10571:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4183,"nodeType":"ExpressionStatement","src":"10571:12:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4186,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10615:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":4189,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4187,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10624:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":4188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10630:1:20","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10624:7:20","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"10615:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4202,"nodeType":"IfStatement","src":"10611:100:20","trueBody":{"id":4201,"nodeType":"Block","src":"10633:78:20","statements":[{"expression":{"id":4195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4191,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10651:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":4194,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10660:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":4193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10666:1:20","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10660:7:20","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"10651:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4196,"nodeType":"ExpressionStatement","src":"10651:16:20"},{"expression":{"id":4199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4197,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4132,"src":"10685:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":4198,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10695:1:20","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10685:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4200,"nodeType":"ExpressionStatement","src":"10685:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4203,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10728:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":4206,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10737:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":4205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10743:1:20","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"10737:7:20","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"10728:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4219,"nodeType":"IfStatement","src":"10724:100:20","trueBody":{"id":4218,"nodeType":"Block","src":"10746:78:20","statements":[{"expression":{"id":4212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4208,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10764:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":4211,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10773:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":4210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10779:1:20","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"10773:7:20","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"10764:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4213,"nodeType":"ExpressionStatement","src":"10764:16:20"},{"expression":{"id":4216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4214,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4132,"src":"10798:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":4215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10808:1:20","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"10798:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4217,"nodeType":"ExpressionStatement","src":"10798:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4220,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10841:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":4223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10850:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":4222,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10856:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"10850:7:20","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"10841:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4236,"nodeType":"IfStatement","src":"10837:100:20","trueBody":{"id":4235,"nodeType":"Block","src":"10859:78:20","statements":[{"expression":{"id":4229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4225,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10877:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":4228,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10886:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":4227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10892:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"10886:7:20","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"10877:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4230,"nodeType":"ExpressionStatement","src":"10877:16:20"},{"expression":{"id":4233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4231,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4132,"src":"10911:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":4232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10921:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"10911:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4234,"nodeType":"ExpressionStatement","src":"10911:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4237,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4126,"src":"10954:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":4240,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10963:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":4239,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10969:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10963:7:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"10954:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4247,"nodeType":"IfStatement","src":"10950:66:20","trueBody":{"id":4246,"nodeType":"Block","src":"10972:44:20","statements":[{"expression":{"id":4244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4242,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4132,"src":"10990:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":4243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11000:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10990:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4245,"nodeType":"ExpressionStatement","src":"10990:11:20"}]}}]},{"expression":{"id":4249,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4132,"src":"11042:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4130,"id":4250,"nodeType":"Return","src":"11035:13:20"}]},"documentation":{"id":4124,"nodeType":"StructuredDocumentation","src":"10020:114:20","text":" @dev Return the log in base 10, rounded down, of a positive value.\n Returns 0 if given 0."},"id":4252,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"10148:5:20","nodeType":"FunctionDefinition","parameters":{"id":4127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4126,"mutability":"mutable","name":"value","nameLocation":"10162:5:20","nodeType":"VariableDeclaration","scope":4252,"src":"10154:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4125,"name":"uint256","nodeType":"ElementaryTypeName","src":"10154:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10153:15:20"},"returnParameters":{"id":4130,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4129,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4252,"src":"10192:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4128,"name":"uint256","nodeType":"ElementaryTypeName","src":"10192:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10191:9:20"},"scope":4415,"src":"10139:916:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4287,"nodeType":"Block","src":"11290:167:20","statements":[{"id":4286,"nodeType":"UncheckedBlock","src":"11300:151:20","statements":[{"assignments":[4264],"declarations":[{"constant":false,"id":4264,"mutability":"mutable","name":"result","nameLocation":"11332:6:20","nodeType":"VariableDeclaration","scope":4286,"src":"11324:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4263,"name":"uint256","nodeType":"ElementaryTypeName","src":"11324:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4268,"initialValue":{"arguments":[{"id":4266,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4255,"src":"11347:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4265,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[4252,4288],"referencedDeclaration":4252,"src":"11341:5:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":4267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11341:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11324:29:20"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4269,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4264,"src":"11374:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"id":4273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4270,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4258,"src":"11384:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4271,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"11396:8:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$3556_$","typeString":"type(enum Math.Rounding)"}},"id":4272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11405:2:20","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":3554,"src":"11396:11:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"src":"11384:23:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":4274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11411:2:20","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":4275,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4264,"src":"11417:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11411:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4277,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4255,"src":"11426:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11411:20:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11384:47:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":4281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11438:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":4282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"11384:55:20","trueExpression":{"hexValue":"31","id":4280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11434:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":4283,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11383:57:20","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11374:66:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4262,"id":4285,"nodeType":"Return","src":"11367:73:20"}]}]},"documentation":{"id":4253,"nodeType":"StructuredDocumentation","src":"11061:143:20","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":4288,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"11218:5:20","nodeType":"FunctionDefinition","parameters":{"id":4259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4255,"mutability":"mutable","name":"value","nameLocation":"11232:5:20","nodeType":"VariableDeclaration","scope":4288,"src":"11224:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4254,"name":"uint256","nodeType":"ElementaryTypeName","src":"11224:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4258,"mutability":"mutable","name":"rounding","nameLocation":"11248:8:20","nodeType":"VariableDeclaration","scope":4288,"src":"11239:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"typeName":{"id":4257,"nodeType":"UserDefinedTypeName","pathNode":{"id":4256,"name":"Rounding","nameLocations":["11239:8:20"],"nodeType":"IdentifierPath","referencedDeclaration":3556,"src":"11239:8:20"},"referencedDeclaration":3556,"src":"11239:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11223:34:20"},"returnParameters":{"id":4262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4261,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4288,"src":"11281:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4260,"name":"uint256","nodeType":"ElementaryTypeName","src":"11281:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11280:9:20"},"scope":4415,"src":"11209:248:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4374,"nodeType":"Block","src":"11771:600:20","statements":[{"assignments":[4297],"declarations":[{"constant":false,"id":4297,"mutability":"mutable","name":"result","nameLocation":"11789:6:20","nodeType":"VariableDeclaration","scope":4374,"src":"11781:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4296,"name":"uint256","nodeType":"ElementaryTypeName","src":"11781:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4299,"initialValue":{"hexValue":"30","id":4298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11798:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"11781:18:20"},{"id":4371,"nodeType":"UncheckedBlock","src":"11809:533:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4300,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"11837:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":4301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11846:3:20","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"11837:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4303,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11852:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11837:16:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4314,"nodeType":"IfStatement","src":"11833:98:20","trueBody":{"id":4313,"nodeType":"Block","src":"11855:76:20","statements":[{"expression":{"id":4307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4305,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"11873:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":4306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11883:3:20","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"11873:13:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4308,"nodeType":"ExpressionStatement","src":"11873:13:20"},{"expression":{"id":4311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4309,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"11904:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":4310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11914:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"11904:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4312,"nodeType":"ExpressionStatement","src":"11904:12:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4315,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"11948:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":4316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11957:2:20","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"11948:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11962:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11948:15:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4329,"nodeType":"IfStatement","src":"11944:95:20","trueBody":{"id":4328,"nodeType":"Block","src":"11965:74:20","statements":[{"expression":{"id":4322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4320,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"11983:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":4321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11993:2:20","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"11983:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4323,"nodeType":"ExpressionStatement","src":"11983:12:20"},{"expression":{"id":4326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4324,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"12013:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":4325,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12023:1:20","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"12013:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4327,"nodeType":"ExpressionStatement","src":"12013:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4330,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12056:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":4331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12065:2:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"12056:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12070:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12056:15:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4344,"nodeType":"IfStatement","src":"12052:95:20","trueBody":{"id":4343,"nodeType":"Block","src":"12073:74:20","statements":[{"expression":{"id":4337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4335,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12091:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":4336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12101:2:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"12091:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4338,"nodeType":"ExpressionStatement","src":"12091:12:20"},{"expression":{"id":4341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4339,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"12121:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":4340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12131:1:20","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"12121:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4342,"nodeType":"ExpressionStatement","src":"12121:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4345,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12164:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":4346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12173:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"12164:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12178:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12164:15:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4359,"nodeType":"IfStatement","src":"12160:95:20","trueBody":{"id":4358,"nodeType":"Block","src":"12181:74:20","statements":[{"expression":{"id":4352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4350,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12199:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":4351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12209:2:20","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"12199:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4353,"nodeType":"ExpressionStatement","src":"12199:12:20"},{"expression":{"id":4356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4354,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"12229:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":4355,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12239:1:20","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12229:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4357,"nodeType":"ExpressionStatement","src":"12229:11:20"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4360,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4291,"src":"12272:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":4361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12281:1:20","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"12272:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12285:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12272:14:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4370,"nodeType":"IfStatement","src":"12268:64:20","trueBody":{"id":4369,"nodeType":"Block","src":"12288:44:20","statements":[{"expression":{"id":4367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4365,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"12306:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":4366,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12316:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12306:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4368,"nodeType":"ExpressionStatement","src":"12306:11:20"}]}}]},{"expression":{"id":4372,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"12358:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4295,"id":4373,"nodeType":"Return","src":"12351:13:20"}]},"documentation":{"id":4289,"nodeType":"StructuredDocumentation","src":"11463:240:20","text":" @dev Return the log in base 256, rounded down, of a positive value.\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":4375,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"11717:6:20","nodeType":"FunctionDefinition","parameters":{"id":4292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4291,"mutability":"mutable","name":"value","nameLocation":"11732:5:20","nodeType":"VariableDeclaration","scope":4375,"src":"11724:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4290,"name":"uint256","nodeType":"ElementaryTypeName","src":"11724:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11723:15:20"},"returnParameters":{"id":4295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4294,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4375,"src":"11762:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4293,"name":"uint256","nodeType":"ElementaryTypeName","src":"11762:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11761:9:20"},"scope":4415,"src":"11708:663:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4413,"nodeType":"Block","src":"12608:174:20","statements":[{"id":4412,"nodeType":"UncheckedBlock","src":"12618:158:20","statements":[{"assignments":[4387],"declarations":[{"constant":false,"id":4387,"mutability":"mutable","name":"result","nameLocation":"12650:6:20","nodeType":"VariableDeclaration","scope":4412,"src":"12642:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4386,"name":"uint256","nodeType":"ElementaryTypeName","src":"12642:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4391,"initialValue":{"arguments":[{"id":4389,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4378,"src":"12666:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4388,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[4375,4414],"referencedDeclaration":4375,"src":"12659:6:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":4390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12659:13:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12642:30:20"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4392,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4387,"src":"12693:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"id":4396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4393,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4381,"src":"12703:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4394,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"12715:8:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$3556_$","typeString":"type(enum Math.Rounding)"}},"id":4395,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12724:2:20","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":3554,"src":"12715:11:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"src":"12703:23:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":4397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12730:1:20","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":4400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4398,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4387,"src":"12736:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":4399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12746:1:20","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"12736:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4401,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12735:13:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12730:18:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4403,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4378,"src":"12751:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12730:26:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12703:53:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":4407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12763:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":4408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"12703:61:20","trueExpression":{"hexValue":"31","id":4406,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12759:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":4409,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12702:63:20","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12693:72:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4385,"id":4411,"nodeType":"Return","src":"12686:79:20"}]}]},"documentation":{"id":4376,"nodeType":"StructuredDocumentation","src":"12377:144:20","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":4414,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"12535:6:20","nodeType":"FunctionDefinition","parameters":{"id":4382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4378,"mutability":"mutable","name":"value","nameLocation":"12550:5:20","nodeType":"VariableDeclaration","scope":4414,"src":"12542:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4377,"name":"uint256","nodeType":"ElementaryTypeName","src":"12542:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4381,"mutability":"mutable","name":"rounding","nameLocation":"12566:8:20","nodeType":"VariableDeclaration","scope":4414,"src":"12557:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"},"typeName":{"id":4380,"nodeType":"UserDefinedTypeName","pathNode":{"id":4379,"name":"Rounding","nameLocations":["12557:8:20"],"nodeType":"IdentifierPath","referencedDeclaration":3556,"src":"12557:8:20"},"referencedDeclaration":3556,"src":"12557:8:20","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$3556","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"12541:34:20"},"returnParameters":{"id":4385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4384,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4414,"src":"12599:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4383,"name":"uint256","nodeType":"ElementaryTypeName","src":"12599:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12598:9:20"},"scope":4415,"src":"12526:256:20","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":4416,"src":"202:12582:20","usedErrors":[]}],"src":"103:12682:20"},"id":20},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SignedMath":[4520]},"id":4521,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4417,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"109:23:21"},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":4418,"nodeType":"StructuredDocumentation","src":"134:80:21","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":4520,"linearizedBaseContracts":[4520],"name":"SignedMath","nameLocation":"223:10:21","nodeType":"ContractDefinition","nodes":[{"body":{"id":4435,"nodeType":"Block","src":"375:37:21","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4428,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4421,"src":"392:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4429,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4423,"src":"396:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"392:5:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4432,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4423,"src":"404:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":4433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"392:13:21","trueExpression":{"id":4431,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4421,"src":"400:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":4427,"id":4434,"nodeType":"Return","src":"385:20:21"}]},"documentation":{"id":4419,"nodeType":"StructuredDocumentation","src":"240:66:21","text":" @dev Returns the largest of two signed numbers."},"id":4436,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"320:3:21","nodeType":"FunctionDefinition","parameters":{"id":4424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4421,"mutability":"mutable","name":"a","nameLocation":"331:1:21","nodeType":"VariableDeclaration","scope":4436,"src":"324:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4420,"name":"int256","nodeType":"ElementaryTypeName","src":"324:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":4423,"mutability":"mutable","name":"b","nameLocation":"341:1:21","nodeType":"VariableDeclaration","scope":4436,"src":"334:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4422,"name":"int256","nodeType":"ElementaryTypeName","src":"334:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"323:20:21"},"returnParameters":{"id":4427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4426,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4436,"src":"367:6:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4425,"name":"int256","nodeType":"ElementaryTypeName","src":"367:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"366:8:21"},"scope":4520,"src":"311:101:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4453,"nodeType":"Block","src":"554:37:21","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4446,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4439,"src":"571:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4447,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4441,"src":"575:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"571:5:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4450,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4441,"src":"583:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":4451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"571:13:21","trueExpression":{"id":4449,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4439,"src":"579:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":4445,"id":4452,"nodeType":"Return","src":"564:20:21"}]},"documentation":{"id":4437,"nodeType":"StructuredDocumentation","src":"418:67:21","text":" @dev Returns the smallest of two signed numbers."},"id":4454,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"499:3:21","nodeType":"FunctionDefinition","parameters":{"id":4442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4439,"mutability":"mutable","name":"a","nameLocation":"510:1:21","nodeType":"VariableDeclaration","scope":4454,"src":"503:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4438,"name":"int256","nodeType":"ElementaryTypeName","src":"503:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":4441,"mutability":"mutable","name":"b","nameLocation":"520:1:21","nodeType":"VariableDeclaration","scope":4454,"src":"513:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4440,"name":"int256","nodeType":"ElementaryTypeName","src":"513:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"502:20:21"},"returnParameters":{"id":4445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4444,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4454,"src":"546:6:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4443,"name":"int256","nodeType":"ElementaryTypeName","src":"546:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"545:8:21"},"scope":4520,"src":"490:101:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4497,"nodeType":"Block","src":"796:162:21","statements":[{"assignments":[4465],"declarations":[{"constant":false,"id":4465,"mutability":"mutable","name":"x","nameLocation":"865:1:21","nodeType":"VariableDeclaration","scope":4497,"src":"858:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4464,"name":"int256","nodeType":"ElementaryTypeName","src":"858:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":4478,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4466,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4457,"src":"870:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":4467,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4459,"src":"874:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"870:5:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":4469,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"869:7:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4470,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4457,"src":"881:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":4471,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4459,"src":"885:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"881:5:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":4473,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"880:7:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":4474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"891:1:21","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"880:12:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":4476,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"879:14:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"869:24:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"858:35:21"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4479,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4465,"src":"910:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4484,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4465,"src":"930:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4483,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"922:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4482,"name":"uint256","nodeType":"ElementaryTypeName","src":"922:7:21","typeDescriptions":{}}},"id":4485,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"922:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":4486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"936:3:21","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"922:17:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4481,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"915:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":4480,"name":"int256","nodeType":"ElementaryTypeName","src":"915:6:21","typeDescriptions":{}}},"id":4488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"915:25:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4489,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4457,"src":"944:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":4490,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4459,"src":"948:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"944:5:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":4492,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"943:7:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"915:35:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":4494,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"914:37:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"910:41:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":4463,"id":4496,"nodeType":"Return","src":"903:48:21"}]},"documentation":{"id":4455,"nodeType":"StructuredDocumentation","src":"597:126:21","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":4498,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"737:7:21","nodeType":"FunctionDefinition","parameters":{"id":4460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4457,"mutability":"mutable","name":"a","nameLocation":"752:1:21","nodeType":"VariableDeclaration","scope":4498,"src":"745:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4456,"name":"int256","nodeType":"ElementaryTypeName","src":"745:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":4459,"mutability":"mutable","name":"b","nameLocation":"762:1:21","nodeType":"VariableDeclaration","scope":4498,"src":"755:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4458,"name":"int256","nodeType":"ElementaryTypeName","src":"755:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"744:20:21"},"returnParameters":{"id":4463,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4462,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4498,"src":"788:6:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4461,"name":"int256","nodeType":"ElementaryTypeName","src":"788:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"787:8:21"},"scope":4520,"src":"728:230:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4518,"nodeType":"Block","src":"1102:158:21","statements":[{"id":4517,"nodeType":"UncheckedBlock","src":"1112:142:21","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4508,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4501,"src":"1227:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":4509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1227:6:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"1240:2:21","subExpression":{"id":4512,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4501,"src":"1241:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":4514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1227:15:21","trueExpression":{"id":4511,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4501,"src":"1236:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4507,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1219:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4506,"name":"uint256","nodeType":"ElementaryTypeName","src":"1219:7:21","typeDescriptions":{}}},"id":4515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1219:24:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4505,"id":4516,"nodeType":"Return","src":"1212:31:21"}]}]},"documentation":{"id":4499,"nodeType":"StructuredDocumentation","src":"964:78:21","text":" @dev Returns the absolute unsigned value of a signed value."},"id":4519,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1056:3:21","nodeType":"FunctionDefinition","parameters":{"id":4502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4501,"mutability":"mutable","name":"n","nameLocation":"1067:1:21","nodeType":"VariableDeclaration","scope":4519,"src":"1060:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4500,"name":"int256","nodeType":"ElementaryTypeName","src":"1060:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1059:10:21"},"returnParameters":{"id":4505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4504,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4519,"src":"1093:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4503,"name":"uint256","nodeType":"ElementaryTypeName","src":"1093:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1092:9:21"},"scope":4520,"src":"1047:213:21","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":4521,"src":"215:1047:21","usedErrors":[]}],"src":"109:1154:21"},"id":21},"contracts/ERC1155NFT.sol":{"ast":{"absolutePath":"contracts/ERC1155NFT.sol","exportedSymbols":{"Address":[3180],"Context":[3210],"Counters":[3284],"ERC1155":[1428],"ERC1155NFT":[5267],"ERC165":[3537],"IERC1155":[1550],"IERC1155MetadataURI":[1606],"IERC1155Receiver":[1591],"IERC165":[3549],"Ownable":[112],"ReentrancyGuard":[205]},"id":5268,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4522,"literals":["solidity","^","0.8",".19"],"nodeType":"PragmaDirective","src":"33:24:22"},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/ERC1155.sol","file":"@openzeppelin/contracts/token/ERC1155/ERC1155.sol","id":4523,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5268,"sourceUnit":1429,"src":"61:59:22","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/Ownable.sol","file":"@openzeppelin/contracts/access/Ownable.sol","id":4524,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5268,"sourceUnit":113,"src":"122:52:22","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/security/ReentrancyGuard.sol","file":"@openzeppelin/contracts/security/ReentrancyGuard.sol","id":4525,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5268,"sourceUnit":206,"src":"176:62:22","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Counters.sol","file":"@openzeppelin/contracts/utils/Counters.sol","id":4526,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5268,"sourceUnit":3285,"src":"240:52:22","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4528,"name":"ERC1155","nameLocations":["453:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":1428,"src":"453:7:22"},"id":4529,"nodeType":"InheritanceSpecifier","src":"453:7:22"},{"baseName":{"id":4530,"name":"Ownable","nameLocations":["462:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":112,"src":"462:7:22"},"id":4531,"nodeType":"InheritanceSpecifier","src":"462:7:22"},{"baseName":{"id":4532,"name":"ReentrancyGuard","nameLocations":["471:15:22"],"nodeType":"IdentifierPath","referencedDeclaration":205,"src":"471:15:22"},"id":4533,"nodeType":"InheritanceSpecifier","src":"471:15:22"}],"canonicalName":"ERC1155NFT","contractDependencies":[],"contractKind":"contract","documentation":{"id":4527,"nodeType":"StructuredDocumentation","src":"296:132:22","text":" @title ERC1155NFT\n @dev Complete ERC1155 Multi-Token Collection Contract with Minting, Royalties, and Access Control"},"fullyImplemented":true,"id":5267,"linearizedBaseContracts":[5267,205,112,1428,1606,1550,3537,3549,3210],"name":"ERC1155NFT","nameLocation":"439:10:22","nodeType":"ContractDefinition","nodes":[{"global":false,"id":4537,"libraryName":{"id":4534,"name":"Counters","nameLocations":["500:8:22"],"nodeType":"IdentifierPath","referencedDeclaration":3284,"src":"500:8:22"},"nodeType":"UsingForDirective","src":"494:36:22","typeName":{"id":4536,"nodeType":"UserDefinedTypeName","pathNode":{"id":4535,"name":"Counters.Counter","nameLocations":["513:8:22","522:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":3216,"src":"513:16:22"},"referencedDeclaration":3216,"src":"513:16:22","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"}}},{"constant":false,"id":4540,"mutability":"mutable","name":"_tokenIds","nameLocation":"563:9:22","nodeType":"VariableDeclaration","scope":5267,"src":"538:34:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter"},"typeName":{"id":4539,"nodeType":"UserDefinedTypeName","pathNode":{"id":4538,"name":"Counters.Counter","nameLocations":["538:8:22","547:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":3216,"src":"538:16:22"},"referencedDeclaration":3216,"src":"538:16:22","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"}},"visibility":"private"},{"constant":false,"functionSelector":"06fdde03","id":4542,"mutability":"mutable","name":"name","nameLocation":"595:4:22","nodeType":"VariableDeclaration","scope":5267,"src":"581:18:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":4541,"name":"string","nodeType":"ElementaryTypeName","src":"581:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"public"},{"constant":false,"functionSelector":"95d89b41","id":4544,"mutability":"mutable","name":"symbol","nameLocation":"620:6:22","nodeType":"VariableDeclaration","scope":5267,"src":"606:20:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":4543,"name":"string","nodeType":"ElementaryTypeName","src":"606:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"public"},{"constant":false,"functionSelector":"d547cfb7","id":4546,"mutability":"mutable","name":"baseTokenURI","nameLocation":"647:12:22","nodeType":"VariableDeclaration","scope":5267,"src":"633:26:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":4545,"name":"string","nodeType":"ElementaryTypeName","src":"633:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"public"},{"constant":false,"functionSelector":"d5abeb01","id":4548,"mutability":"mutable","name":"maxSupply","nameLocation":"681:9:22","nodeType":"VariableDeclaration","scope":5267,"src":"666:24:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4547,"name":"uint256","nodeType":"ElementaryTypeName","src":"666:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"6817c76c","id":4550,"mutability":"mutable","name":"mintPrice","nameLocation":"712:9:22","nodeType":"VariableDeclaration","scope":5267,"src":"697:24:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4549,"name":"uint256","nodeType":"ElementaryTypeName","src":"697:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"8a71bb2d","id":4552,"mutability":"mutable","name":"royaltyPercentage","nameLocation":"743:17:22","nodeType":"VariableDeclaration","scope":5267,"src":"728:32:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4551,"name":"uint256","nodeType":"ElementaryTypeName","src":"728:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"4c00de82","id":4554,"mutability":"mutable","name":"royaltyRecipient","nameLocation":"811:16:22","nodeType":"VariableDeclaration","scope":5267,"src":"796:31:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4553,"name":"address","nodeType":"ElementaryTypeName","src":"796:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"constant":false,"functionSelector":"0116bc2d","id":4556,"mutability":"mutable","name":"isPublicMintEnabled","nameLocation":"846:19:22","nodeType":"VariableDeclaration","scope":5267,"src":"834:31:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4555,"name":"bool","nodeType":"ElementaryTypeName","src":"834:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"9b19251a","id":4560,"mutability":"mutable","name":"whitelist","nameLocation":"906:9:22","nodeType":"VariableDeclaration","scope":5267,"src":"874:41:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":4559,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4557,"name":"address","nodeType":"ElementaryTypeName","src":"882:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"874:24:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4558,"name":"bool","nodeType":"ElementaryTypeName","src":"893:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"id":4564,"mutability":"mutable","name":"_tokenURIs","nameLocation":"957:10:22","nodeType":"VariableDeclaration","scope":5267,"src":"922:45:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string)"},"typeName":{"id":4563,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4561,"name":"uint256","nodeType":"ElementaryTypeName","src":"930:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"922:26:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4562,"name":"string","nodeType":"ElementaryTypeName","src":"941:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"visibility":"private"},{"constant":false,"functionSelector":"2693ebf2","id":4568,"mutability":"mutable","name":"tokenSupply","nameLocation":"1009:11:22","nodeType":"VariableDeclaration","scope":5267,"src":"974:46:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"typeName":{"id":4567,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4565,"name":"uint256","nodeType":"ElementaryTypeName","src":"982:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"974:27:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4566,"name":"uint256","nodeType":"ElementaryTypeName","src":"993:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"anonymous":false,"eventSelector":"01f8bd07e6c27ff813d5c6d3c4bf0313a1d75043cf978214b504b794075e5266","id":4578,"name":"NFTMinted","nameLocation":"1035:9:22","nodeType":"EventDefinition","parameters":{"id":4577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4570,"indexed":true,"mutability":"mutable","name":"minter","nameLocation":"1071:6:22","nodeType":"VariableDeclaration","scope":4578,"src":"1055:22:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4569,"name":"address","nodeType":"ElementaryTypeName","src":"1055:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4572,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"1104:7:22","nodeType":"VariableDeclaration","scope":4578,"src":"1088:23:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4571,"name":"uint256","nodeType":"ElementaryTypeName","src":"1088:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4574,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1130:6:22","nodeType":"VariableDeclaration","scope":4578,"src":"1122:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4573,"name":"uint256","nodeType":"ElementaryTypeName","src":"1122:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4576,"indexed":false,"mutability":"mutable","name":"tokenURI","nameLocation":"1154:8:22","nodeType":"VariableDeclaration","scope":4578,"src":"1147:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4575,"name":"string","nodeType":"ElementaryTypeName","src":"1147:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1044:125:22"},"src":"1029:141:22"},{"anonymous":false,"eventSelector":"6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad","id":4582,"name":"BaseURIUpdated","nameLocation":"1182:14:22","nodeType":"EventDefinition","parameters":{"id":4581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4580,"indexed":false,"mutability":"mutable","name":"newBaseURI","nameLocation":"1204:10:22","nodeType":"VariableDeclaration","scope":4582,"src":"1197:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4579,"name":"string","nodeType":"ElementaryTypeName","src":"1197:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1196:19:22"},"src":"1176:40:22"},{"anonymous":false,"eventSelector":"525b762709cc2a983aec5ccdfd807a061f993c91090b5bcd7da92ca254976aaa","id":4586,"name":"MintPriceUpdated","nameLocation":"1228:16:22","nodeType":"EventDefinition","parameters":{"id":4585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4584,"indexed":false,"mutability":"mutable","name":"newPrice","nameLocation":"1253:8:22","nodeType":"VariableDeclaration","scope":4586,"src":"1245:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4583,"name":"uint256","nodeType":"ElementaryTypeName","src":"1245:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1244:18:22"},"src":"1222:41:22"},{"anonymous":false,"eventSelector":"a81e445dac2343503dc87e4663774817434721db7d985310a6959766e6d4480e","id":4590,"name":"PublicMintToggled","nameLocation":"1275:17:22","nodeType":"EventDefinition","parameters":{"id":4589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4588,"indexed":false,"mutability":"mutable","name":"enabled","nameLocation":"1298:7:22","nodeType":"VariableDeclaration","scope":4590,"src":"1293:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4587,"name":"bool","nodeType":"ElementaryTypeName","src":"1293:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1292:14:22"},"src":"1269:38:22"},{"anonymous":false,"eventSelector":"7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5","id":4596,"name":"Withdrawn","nameLocation":"1319:9:22","nodeType":"EventDefinition","parameters":{"id":4595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4592,"indexed":true,"mutability":"mutable","name":"recipient","nameLocation":"1345:9:22","nodeType":"VariableDeclaration","scope":4596,"src":"1329:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4591,"name":"address","nodeType":"ElementaryTypeName","src":"1329:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4594,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1364:6:22","nodeType":"VariableDeclaration","scope":4596,"src":"1356:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4593,"name":"uint256","nodeType":"ElementaryTypeName","src":"1356:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1328:43:22"},"src":"1313:59:22"},{"body":{"id":4662,"nodeType":"Block","src":"1707:468:22","statements":[{"expression":{"id":4622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4620,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4542,"src":"1718:4:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4621,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4598,"src":"1725:5:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1718:12:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":4623,"nodeType":"ExpressionStatement","src":"1718:12:22"},{"expression":{"id":4626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4624,"name":"symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4544,"src":"1741:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4625,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4600,"src":"1750:7:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1741:16:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":4627,"nodeType":"ExpressionStatement","src":"1741:16:22"},{"expression":{"id":4630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4628,"name":"baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4546,"src":"1768:12:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4629,"name":"_baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4602,"src":"1783:13:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1768:28:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":4631,"nodeType":"ExpressionStatement","src":"1768:28:22"},{"expression":{"id":4634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4632,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4548,"src":"1807:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4633,"name":"_maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4604,"src":"1819:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1807:22:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4635,"nodeType":"ExpressionStatement","src":"1807:22:22"},{"expression":{"id":4638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4636,"name":"royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4552,"src":"1840:17:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4637,"name":"_royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4606,"src":"1860:18:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1840:38:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4639,"nodeType":"ExpressionStatement","src":"1840:38:22"},{"expression":{"id":4642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4640,"name":"royaltyRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4554,"src":"1889:16:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4641,"name":"_royaltyRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4608,"src":"1908:17:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1889:36:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4643,"nodeType":"ExpressionStatement","src":"1889:36:22"},{"expression":{"id":4646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4644,"name":"mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4550,"src":"1936:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4645,"name":"_mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"1948:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1936:22:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4647,"nodeType":"ExpressionStatement","src":"1936:22:22"},{"expression":{"id":4650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4648,"name":"isPublicMintEnabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4556,"src":"1969:19:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4649,"name":"_isPublicMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4612,"src":"1991:13:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1969:35:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4651,"nodeType":"ExpressionStatement","src":"1969:35:22"},{"expression":{"arguments":[{"id":4653,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4614,"src":"2088:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4652,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"2069:18:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":4654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2069:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4655,"nodeType":"ExpressionStatement","src":"2069:26:22"},{"expression":{"id":4660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4656,"name":"whitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4560,"src":"2143:9:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":4658,"indexExpression":{"id":4657,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4614,"src":"2153:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2143:17:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":4659,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2163:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2143:24:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4661,"nodeType":"ExpressionStatement","src":"2143:24:22"}]},"id":4663,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":4617,"name":"_baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4602,"src":"1692:13:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":4618,"kind":"baseConstructorSpecifier","modifierName":{"id":4616,"name":"ERC1155","nameLocations":["1684:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":1428,"src":"1684:7:22"},"nodeType":"ModifierInvocation","src":"1684:22:22"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4598,"mutability":"mutable","name":"_name","nameLocation":"1416:5:22","nodeType":"VariableDeclaration","scope":4663,"src":"1402:19:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4597,"name":"string","nodeType":"ElementaryTypeName","src":"1402:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4600,"mutability":"mutable","name":"_symbol","nameLocation":"1446:7:22","nodeType":"VariableDeclaration","scope":4663,"src":"1432:21:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4599,"name":"string","nodeType":"ElementaryTypeName","src":"1432:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4602,"mutability":"mutable","name":"_baseTokenURI","nameLocation":"1478:13:22","nodeType":"VariableDeclaration","scope":4663,"src":"1464:27:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4601,"name":"string","nodeType":"ElementaryTypeName","src":"1464:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4604,"mutability":"mutable","name":"_maxSupply","nameLocation":"1510:10:22","nodeType":"VariableDeclaration","scope":4663,"src":"1502:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4603,"name":"uint256","nodeType":"ElementaryTypeName","src":"1502:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4606,"mutability":"mutable","name":"_royaltyPercentage","nameLocation":"1539:18:22","nodeType":"VariableDeclaration","scope":4663,"src":"1531:26:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4605,"name":"uint256","nodeType":"ElementaryTypeName","src":"1531:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4608,"mutability":"mutable","name":"_royaltyRecipient","nameLocation":"1576:17:22","nodeType":"VariableDeclaration","scope":4663,"src":"1568:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4607,"name":"address","nodeType":"ElementaryTypeName","src":"1568:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4610,"mutability":"mutable","name":"_mintPrice","nameLocation":"1612:10:22","nodeType":"VariableDeclaration","scope":4663,"src":"1604:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4609,"name":"uint256","nodeType":"ElementaryTypeName","src":"1604:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4612,"mutability":"mutable","name":"_isPublicMint","nameLocation":"1638:13:22","nodeType":"VariableDeclaration","scope":4663,"src":"1633:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4611,"name":"bool","nodeType":"ElementaryTypeName","src":"1633:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4614,"mutability":"mutable","name":"_owner","nameLocation":"1670:6:22","nodeType":"VariableDeclaration","scope":4663,"src":"1662:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4613,"name":"address","nodeType":"ElementaryTypeName","src":"1662:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1391:292:22"},"returnParameters":{"id":4619,"nodeType":"ParameterList","parameters":[],"src":"1707:0:22"},"scope":5267,"src":"1380:795:22","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":4764,"nodeType":"Block","src":"2357:770:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4676,"name":"isPublicMintEnabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4556,"src":"2390:19:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"baseExpression":{"id":4677,"name":"whitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4560,"src":"2413:9:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":4680,"indexExpression":{"expression":{"id":4678,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2423:3:22","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2427:6:22","memberName":"sender","nodeType":"MemberAccess","src":"2423:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2413:21:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2390:44:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4682,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2438:3:22","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2442:6:22","memberName":"sender","nodeType":"MemberAccess","src":"2438:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":4684,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"2452:5:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2452:7:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2438:21:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2390:69:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d696e74696e67206e6f7420616c6c6f776564","id":4688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2474:21:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a","typeString":"literal_string \"Minting not allowed\""},"value":"Minting not allowed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a","typeString":"literal_string \"Minting not allowed\""}],"id":4675,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2368:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2368:138:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4690,"nodeType":"ExpressionStatement","src":"2368:138:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4692,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4666,"src":"2525:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2534:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2525:10:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416d6f756e74206d7573742062652067726561746572207468616e2030","id":4695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2537:31:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296","typeString":"literal_string \"Amount must be greater than 0\""},"value":"Amount must be greater than 0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296","typeString":"literal_string \"Amount must be greater than 0\""}],"id":4691,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2517:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2517:52:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4697,"nodeType":"ExpressionStatement","src":"2517:52:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4699,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2588:3:22","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2592:5:22","memberName":"value","nodeType":"MemberAccess","src":"2588:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4701,"name":"mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4550,"src":"2601:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4702,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4666,"src":"2613:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2601:18:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2588:31:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e74207061796d656e74","id":4705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2621:22:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e","typeString":"literal_string \"Insufficient payment\""},"value":"Insufficient payment"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e","typeString":"literal_string \"Insufficient payment\""}],"id":4698,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2580:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2580:64:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4707,"nodeType":"ExpressionStatement","src":"2580:64:22"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4708,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4540,"src":"2657:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":4710,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2667:9:22","memberName":"increment","nodeType":"MemberAccess","referencedDeclaration":3242,"src":"2657:19:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Counter_$3216_storage_ptr_$returns$__$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer)"}},"id":4711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2657:21:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4712,"nodeType":"ExpressionStatement","src":"2657:21:22"},{"assignments":[4714],"declarations":[{"constant":false,"id":4714,"mutability":"mutable","name":"newTokenId","nameLocation":"2697:10:22","nodeType":"VariableDeclaration","scope":4764,"src":"2689:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4713,"name":"uint256","nodeType":"ElementaryTypeName","src":"2689:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4718,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4715,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4540,"src":"2710:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":4716,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2720:7:22","memberName":"current","nodeType":"MemberAccess","referencedDeclaration":3228,"src":"2710:17:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Counter_$3216_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer) view returns (uint256)"}},"id":4717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2710:19:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2689:40:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4720,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4548,"src":"2764:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2777:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2764:14:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4723,"name":"tokenSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"2782:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":4725,"indexExpression":{"id":4724,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4714,"src":"2794:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2782:23:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4726,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4666,"src":"2808:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2782:32:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":4728,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4548,"src":"2818:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2782:45:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2764:63:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"576f756c6420657863656564206d617820737570706c79","id":4731,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2842:25:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3","typeString":"literal_string \"Would exceed max supply\""},"value":"Would exceed max supply"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3","typeString":"literal_string \"Would exceed max supply\""}],"id":4719,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2742:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4732,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2742:136:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4733,"nodeType":"ExpressionStatement","src":"2742:136:22"},{"expression":{"arguments":[{"expression":{"id":4735,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2897:3:22","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2901:6:22","memberName":"sender","nodeType":"MemberAccess","src":"2897:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4737,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4714,"src":"2909:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4738,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4666,"src":"2921:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":4739,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2929:2:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":4734,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":862,"src":"2891:5:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,uint256,bytes memory)"}},"id":4740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2891:41:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4741,"nodeType":"ExpressionStatement","src":"2891:41:22"},{"expression":{"id":4746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4742,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4564,"src":"2943:10:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":4744,"indexExpression":{"id":4743,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4714,"src":"2954:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2943:22:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4745,"name":"tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4668,"src":"2968:8:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2943:33:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":4747,"nodeType":"ExpressionStatement","src":"2943:33:22"},{"expression":{"id":4752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4748,"name":"tokenSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"2987:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":4750,"indexExpression":{"id":4749,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4714,"src":"2999:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2987:23:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4751,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4666,"src":"3014:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2987:33:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4753,"nodeType":"ExpressionStatement","src":"2987:33:22"},{"eventCall":{"arguments":[{"expression":{"id":4755,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3048:3:22","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3052:6:22","memberName":"sender","nodeType":"MemberAccess","src":"3048:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4757,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4714,"src":"3060:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4758,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4666,"src":"3072:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4759,"name":"tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4668,"src":"3080:8:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4754,"name":"NFTMinted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4578,"src":"3038:9:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,uint256,uint256,string memory)"}},"id":4760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3038:51:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4761,"nodeType":"EmitStatement","src":"3033:56:22"},{"expression":{"id":4762,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4714,"src":"3109:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4674,"id":4763,"nodeType":"Return","src":"3102:17:22"}]},"documentation":{"id":4664,"nodeType":"StructuredDocumentation","src":"2183:41:22","text":" @dev Mint new tokens"},"functionSelector":"77097fc8","id":4765,"implemented":true,"kind":"function","modifiers":[{"id":4671,"kind":"modifierInvocation","modifierName":{"id":4670,"name":"nonReentrant","nameLocations":["2326:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"2326:12:22"},"nodeType":"ModifierInvocation","src":"2326:12:22"}],"name":"mint","nameLocation":"2239:4:22","nodeType":"FunctionDefinition","parameters":{"id":4669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4666,"mutability":"mutable","name":"amount","nameLocation":"2262:6:22","nodeType":"VariableDeclaration","scope":4765,"src":"2254:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4665,"name":"uint256","nodeType":"ElementaryTypeName","src":"2254:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4668,"mutability":"mutable","name":"tokenURI","nameLocation":"2293:8:22","nodeType":"VariableDeclaration","scope":4765,"src":"2279:22:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4667,"name":"string","nodeType":"ElementaryTypeName","src":"2279:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2243:65:22"},"returnParameters":{"id":4674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4673,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4765,"src":"2348:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4672,"name":"uint256","nodeType":"ElementaryTypeName","src":"2348:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2347:9:22"},"scope":5267,"src":"2230:897:22","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":4891,"nodeType":"Block","src":"3400:858:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4786,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4769,"src":"3433:10:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":4787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3444:6:22","memberName":"length","nodeType":"MemberAccess","src":"3433:17:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4788,"name":"tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4772,"src":"3454:8:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3463:6:22","memberName":"length","nodeType":"MemberAccess","src":"3454:15:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3433:36:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4791,"name":"tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4772,"src":"3486:8:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3495:6:22","memberName":"length","nodeType":"MemberAccess","src":"3486:15:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4793,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4775,"src":"3505:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3513:6:22","memberName":"length","nodeType":"MemberAccess","src":"3505:14:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3486:33:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3433:86:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4797,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4775,"src":"3536:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3544:6:22","memberName":"length","nodeType":"MemberAccess","src":"3536:14:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4799,"name":"tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4778,"src":"3554:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":4800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3564:6:22","memberName":"length","nodeType":"MemberAccess","src":"3554:16:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3536:34:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3433:137:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4172726179206c656e677468206d69736d61746368","id":4803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3585:23:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea","typeString":"literal_string \"Array length mismatch\""},"value":"Array length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea","typeString":"literal_string \"Array length mismatch\""}],"id":4785,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3411:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3411:208:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4805,"nodeType":"ExpressionStatement","src":"3411:208:22"},{"body":{"id":4889,"nodeType":"Block","src":"3680:571:22","statements":[{"assignments":[4818],"declarations":[{"constant":false,"id":4818,"mutability":"mutable","name":"tokenId","nameLocation":"3703:7:22","nodeType":"VariableDeclaration","scope":4889,"src":"3695:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4817,"name":"uint256","nodeType":"ElementaryTypeName","src":"3695:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4822,"initialValue":{"baseExpression":{"id":4819,"name":"tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4772,"src":"3713:8:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4821,"indexExpression":{"id":4820,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"3722:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3713:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3695:29:22"},{"assignments":[4824],"declarations":[{"constant":false,"id":4824,"mutability":"mutable","name":"amount","nameLocation":"3747:6:22","nodeType":"VariableDeclaration","scope":4889,"src":"3739:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4823,"name":"uint256","nodeType":"ElementaryTypeName","src":"3739:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4828,"initialValue":{"baseExpression":{"id":4825,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4775,"src":"3756:7:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4827,"indexExpression":{"id":4826,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"3764:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3756:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3739:27:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4830,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4548,"src":"3809:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4831,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3822:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3809:14:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4833,"name":"tokenSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"3827:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":4835,"indexExpression":{"id":4834,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4818,"src":"3839:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3827:20:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4836,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4824,"src":"3850:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3827:29:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":4838,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4548,"src":"3860:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3827:42:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3809:60:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"576f756c6420657863656564206d617820737570706c79","id":4841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3888:25:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3","typeString":"literal_string \"Would exceed max supply\""},"value":"Would exceed max supply"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3","typeString":"literal_string \"Would exceed max supply\""}],"id":4829,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3783:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3783:145:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4843,"nodeType":"ExpressionStatement","src":"3783:145:22"},{"expression":{"arguments":[{"baseExpression":{"id":4845,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4769,"src":"3951:10:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":4847,"indexExpression":{"id":4846,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"3962:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3951:13:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4848,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4818,"src":"3966:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4849,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4824,"src":"3975:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":4850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3983:2:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":4844,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":862,"src":"3945:5:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,uint256,bytes memory)"}},"id":4851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3945:41:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4852,"nodeType":"ExpressionStatement","src":"3945:41:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"baseExpression":{"id":4855,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4564,"src":"4013:10:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":4857,"indexExpression":{"id":4856,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4818,"src":"4024:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4013:19:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"id":4854,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4007:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4853,"name":"bytes","nodeType":"ElementaryTypeName","src":"4007:5:22","typeDescriptions":{}}},"id":4858,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4007:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes storage pointer"}},"id":4859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4034:6:22","memberName":"length","nodeType":"MemberAccess","src":"4007:33:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4860,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4044:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4007:38:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4871,"nodeType":"IfStatement","src":"4003:113:22","trueBody":{"id":4870,"nodeType":"Block","src":"4047:69:22","statements":[{"expression":{"id":4868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4862,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4564,"src":"4066:10:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":4864,"indexExpression":{"id":4863,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4818,"src":"4077:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4066:19:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":4865,"name":"tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4778,"src":"4088:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":4867,"indexExpression":{"id":4866,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"4098:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4088:12:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"4066:34:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":4869,"nodeType":"ExpressionStatement","src":"4066:34:22"}]}},{"expression":{"id":4876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4872,"name":"tokenSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4132:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":4874,"indexExpression":{"id":4873,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4818,"src":"4144:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4132:20:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4875,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4824,"src":"4156:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4132:30:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4877,"nodeType":"ExpressionStatement","src":"4132:30:22"},{"eventCall":{"arguments":[{"baseExpression":{"id":4879,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4769,"src":"4194:10:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":4881,"indexExpression":{"id":4880,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"4205:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4194:13:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4882,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4818,"src":"4209:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4883,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4824,"src":"4218:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":4884,"name":"tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4778,"src":"4226:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":4886,"indexExpression":{"id":4885,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"4236:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4226:12:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4878,"name":"NFTMinted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4578,"src":"4184:9:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,uint256,uint256,string memory)"}},"id":4887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4184:55:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4888,"nodeType":"EmitStatement","src":"4179:60:22"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4810,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"3652:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":4811,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4769,"src":"3656:10:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":4812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3667:6:22","memberName":"length","nodeType":"MemberAccess","src":"3656:17:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3652:21:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4890,"initializationExpression":{"assignments":[4807],"declarations":[{"constant":false,"id":4807,"mutability":"mutable","name":"i","nameLocation":"3645:1:22","nodeType":"VariableDeclaration","scope":4890,"src":"3637:9:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4806,"name":"uint256","nodeType":"ElementaryTypeName","src":"3637:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4809,"initialValue":{"hexValue":"30","id":4808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3649:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3637:13:22"},"loopExpression":{"expression":{"id":4815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3675:3:22","subExpression":{"id":4814,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4807,"src":"3675:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4816,"nodeType":"ExpressionStatement","src":"3675:3:22"},"nodeType":"ForStatement","src":"3632:619:22"}]},"documentation":{"id":4766,"nodeType":"StructuredDocumentation","src":"3135:56:22","text":" @dev Batch mint tokens (only owner)"},"functionSelector":"b3a80e9c","id":4892,"implemented":true,"kind":"function","modifiers":[{"id":4781,"kind":"modifierInvocation","modifierName":{"id":4780,"name":"onlyOwner","nameLocations":["3377:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"3377:9:22"},"nodeType":"ModifierInvocation","src":"3377:9:22"},{"id":4783,"kind":"modifierInvocation","modifierName":{"id":4782,"name":"nonReentrant","nameLocations":["3387:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"3387:12:22"},"nodeType":"ModifierInvocation","src":"3387:12:22"}],"name":"batchMint","nameLocation":"3206:9:22","nodeType":"FunctionDefinition","parameters":{"id":4779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4769,"mutability":"mutable","name":"recipients","nameLocation":"3243:10:22","nodeType":"VariableDeclaration","scope":4892,"src":"3226:27:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4767,"name":"address","nodeType":"ElementaryTypeName","src":"3226:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4768,"nodeType":"ArrayTypeName","src":"3226:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4772,"mutability":"mutable","name":"tokenIds","nameLocation":"3281:8:22","nodeType":"VariableDeclaration","scope":4892,"src":"3264:25:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4770,"name":"uint256","nodeType":"ElementaryTypeName","src":"3264:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4771,"nodeType":"ArrayTypeName","src":"3264:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4775,"mutability":"mutable","name":"amounts","nameLocation":"3317:7:22","nodeType":"VariableDeclaration","scope":4892,"src":"3300:24:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4773,"name":"uint256","nodeType":"ElementaryTypeName","src":"3300:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4774,"nodeType":"ArrayTypeName","src":"3300:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4778,"mutability":"mutable","name":"tokenURIs","nameLocation":"3351:9:22","nodeType":"VariableDeclaration","scope":4892,"src":"3335:25:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":4776,"name":"string","nodeType":"ElementaryTypeName","src":"3335:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":4777,"nodeType":"ArrayTypeName","src":"3335:8:22","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"3215:152:22"},"returnParameters":{"id":4784,"nodeType":"ParameterList","parameters":[],"src":"3400:0:22"},"scope":5267,"src":"3197:1061:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4912,"nodeType":"Block","src":"4378:125:22","statements":[{"expression":{"id":4902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4900,"name":"baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4546,"src":"4389:12:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4901,"name":"_baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4895,"src":"4404:13:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"4389:28:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":4903,"nodeType":"ExpressionStatement","src":"4389:28:22"},{"expression":{"arguments":[{"id":4905,"name":"_baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4895,"src":"4436:13:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4904,"name":"_setURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":761,"src":"4428:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":4906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4428:22:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4907,"nodeType":"ExpressionStatement","src":"4428:22:22"},{"eventCall":{"arguments":[{"id":4909,"name":"_baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4895,"src":"4481:13:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4908,"name":"BaseURIUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4582,"src":"4466:14:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":4910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4466:29:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4911,"nodeType":"EmitStatement","src":"4461:34:22"}]},"documentation":{"id":4893,"nodeType":"StructuredDocumentation","src":"4266:38:22","text":" @dev Set base URI"},"functionSelector":"55f804b3","id":4913,"implemented":true,"kind":"function","modifiers":[{"id":4898,"kind":"modifierInvocation","modifierName":{"id":4897,"name":"onlyOwner","nameLocations":["4368:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"4368:9:22"},"nodeType":"ModifierInvocation","src":"4368:9:22"}],"name":"setBaseURI","nameLocation":"4319:10:22","nodeType":"FunctionDefinition","parameters":{"id":4896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4895,"mutability":"mutable","name":"_baseTokenURI","nameLocation":"4344:13:22","nodeType":"VariableDeclaration","scope":4913,"src":"4330:27:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4894,"name":"string","nodeType":"ElementaryTypeName","src":"4330:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4329:29:22"},"returnParameters":{"id":4899,"nodeType":"ParameterList","parameters":[],"src":"4378:0:22"},"scope":5267,"src":"4310:193:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4938,"nodeType":"Block","src":"4679:117:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4924,"name":"tokenSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4698:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":4926,"indexExpression":{"id":4925,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4916,"src":"4710:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4698:20:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4721:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4698:24:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e20646f6573206e6f74206578697374","id":4929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4724:22:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_547be7f5ed2d17cca91d35e8212265e350385ed13daeee07722cf3e686dd6726","typeString":"literal_string \"Token does not exist\""},"value":"Token does not exist"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_547be7f5ed2d17cca91d35e8212265e350385ed13daeee07722cf3e686dd6726","typeString":"literal_string \"Token does not exist\""}],"id":4923,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4690:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4690:57:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4931,"nodeType":"ExpressionStatement","src":"4690:57:22"},{"expression":{"id":4936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4932,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4564,"src":"4758:10:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":4934,"indexExpression":{"id":4933,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4916,"src":"4769:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4758:19:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4935,"name":"tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4918,"src":"4780:8:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"4758:30:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":4937,"nodeType":"ExpressionStatement","src":"4758:30:22"}]},"documentation":{"id":4914,"nodeType":"StructuredDocumentation","src":"4511:58:22","text":" @dev Set token URI for specific token"},"functionSelector":"162094c4","id":4939,"implemented":true,"kind":"function","modifiers":[{"id":4921,"kind":"modifierInvocation","modifierName":{"id":4920,"name":"onlyOwner","nameLocations":["4664:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"4664:9:22"},"nodeType":"ModifierInvocation","src":"4664:9:22"}],"name":"setTokenURI","nameLocation":"4584:11:22","nodeType":"FunctionDefinition","parameters":{"id":4919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4916,"mutability":"mutable","name":"tokenId","nameLocation":"4604:7:22","nodeType":"VariableDeclaration","scope":4939,"src":"4596:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4915,"name":"uint256","nodeType":"ElementaryTypeName","src":"4596:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4918,"mutability":"mutable","name":"tokenURI","nameLocation":"4627:8:22","nodeType":"VariableDeclaration","scope":4939,"src":"4613:22:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4917,"name":"string","nodeType":"ElementaryTypeName","src":"4613:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4595:41:22"},"returnParameters":{"id":4922,"nodeType":"ParameterList","parameters":[],"src":"4679:0:22"},"scope":5267,"src":"4575:221:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[293],"body":{"id":4976,"nodeType":"Block","src":"4982:227:22","statements":[{"assignments":[4949],"declarations":[{"constant":false,"id":4949,"mutability":"mutable","name":"tokenURI","nameLocation":"5007:8:22","nodeType":"VariableDeclaration","scope":4976,"src":"4993:22:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4948,"name":"string","nodeType":"ElementaryTypeName","src":"4993:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":4953,"initialValue":{"baseExpression":{"id":4950,"name":"_tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4564,"src":"5018:10:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string storage ref)"}},"id":4952,"indexExpression":{"id":4951,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4942,"src":"5029:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5018:19:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"VariableDeclarationStatement","src":"4993:44:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":4956,"name":"tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4949,"src":"5060:8:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4955,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5054:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4954,"name":"bytes","nodeType":"ElementaryTypeName","src":"5054:5:22","typeDescriptions":{}}},"id":4957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5054:15:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5070:6:22","memberName":"length","nodeType":"MemberAccess","src":"5054:22:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5079:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5054:26:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4964,"nodeType":"IfStatement","src":"5050:74:22","trueBody":{"id":4963,"nodeType":"Block","src":"5082:42:22","statements":[{"expression":{"id":4961,"name":"tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4949,"src":"5104:8:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4947,"id":4962,"nodeType":"Return","src":"5097:15:22"}]}},{"expression":{"arguments":[{"arguments":[{"id":4969,"name":"baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4546,"src":"5167:12:22","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},{"arguments":[{"id":4971,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4942,"src":"5191:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4970,"name":"_toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5250,"src":"5181:9:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":4972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5181:18:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":4967,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5150:3:22","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4968,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5154:12:22","memberName":"encodePacked","nodeType":"MemberAccess","src":"5150:16:22","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5150:50:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5143:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":4965,"name":"string","nodeType":"ElementaryTypeName","src":"5143:6:22","typeDescriptions":{}}},"id":4974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5143:58:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4947,"id":4975,"nodeType":"Return","src":"5136:65:22"}]},"documentation":{"id":4940,"nodeType":"StructuredDocumentation","src":"4804:39:22","text":" @dev Get token URI"},"functionSelector":"0e89341c","id":4977,"implemented":true,"kind":"function","modifiers":[],"name":"uri","nameLocation":"4858:3:22","nodeType":"FunctionDefinition","overrides":{"id":4944,"nodeType":"OverrideSpecifier","overrides":[],"src":"4935:8:22"},"parameters":{"id":4943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4942,"mutability":"mutable","name":"tokenId","nameLocation":"4870:7:22","nodeType":"VariableDeclaration","scope":4977,"src":"4862:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4941,"name":"uint256","nodeType":"ElementaryTypeName","src":"4862:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4861:17:22"},"returnParameters":{"id":4947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4946,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4977,"src":"4962:13:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4945,"name":"string","nodeType":"ElementaryTypeName","src":"4962:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4961:15:22"},"scope":5267,"src":"4849:360:22","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4993,"nodeType":"Block","src":"5327:85:22","statements":[{"expression":{"id":4987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4985,"name":"mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4550,"src":"5338:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4986,"name":"_mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4980,"src":"5350:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5338:22:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4988,"nodeType":"ExpressionStatement","src":"5338:22:22"},{"eventCall":{"arguments":[{"id":4990,"name":"_mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4980,"src":"5393:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4989,"name":"MintPriceUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4586,"src":"5376:16:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5376:28:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4992,"nodeType":"EmitStatement","src":"5371:33:22"}]},"documentation":{"id":4978,"nodeType":"StructuredDocumentation","src":"5217:43:22","text":" @dev Update mint price"},"functionSelector":"f4a0a528","id":4994,"implemented":true,"kind":"function","modifiers":[{"id":4983,"kind":"modifierInvocation","modifierName":{"id":4982,"name":"onlyOwner","nameLocations":["5317:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"5317:9:22"},"nodeType":"ModifierInvocation","src":"5317:9:22"}],"name":"setMintPrice","nameLocation":"5275:12:22","nodeType":"FunctionDefinition","parameters":{"id":4981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4980,"mutability":"mutable","name":"_mintPrice","nameLocation":"5296:10:22","nodeType":"VariableDeclaration","scope":4994,"src":"5288:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4979,"name":"uint256","nodeType":"ElementaryTypeName","src":"5288:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5287:20:22"},"returnParameters":{"id":4984,"nodeType":"ParameterList","parameters":[],"src":"5327:0:22"},"scope":5267,"src":"5266:146:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5010,"nodeType":"Block","src":"5533:92:22","statements":[{"expression":{"id":5004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5002,"name":"isPublicMintEnabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4556,"src":"5544:19:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5003,"name":"_enabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4997,"src":"5566:8:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5544:30:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5005,"nodeType":"ExpressionStatement","src":"5544:30:22"},{"eventCall":{"arguments":[{"id":5007,"name":"_enabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4997,"src":"5608:8:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":5006,"name":"PublicMintToggled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4590,"src":"5590:17:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bool_$returns$__$","typeString":"function (bool)"}},"id":5008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5590:27:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5009,"nodeType":"EmitStatement","src":"5585:32:22"}]},"documentation":{"id":4995,"nodeType":"StructuredDocumentation","src":"5420:47:22","text":" @dev Toggle public minting"},"functionSelector":"9b7c1c83","id":5011,"implemented":true,"kind":"function","modifiers":[{"id":5000,"kind":"modifierInvocation","modifierName":{"id":4999,"name":"onlyOwner","nameLocations":["5523:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"5523:9:22"},"nodeType":"ModifierInvocation","src":"5523:9:22"}],"name":"togglePublicMint","nameLocation":"5482:16:22","nodeType":"FunctionDefinition","parameters":{"id":4998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4997,"mutability":"mutable","name":"_enabled","nameLocation":"5504:8:22","nodeType":"VariableDeclaration","scope":5011,"src":"5499:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4996,"name":"bool","nodeType":"ElementaryTypeName","src":"5499:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5498:15:22"},"returnParameters":{"id":5001,"nodeType":"ParameterList","parameters":[],"src":"5533:0:22"},"scope":5267,"src":"5473:152:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5041,"nodeType":"Block","src":"5762:122:22","statements":[{"body":{"id":5039,"nodeType":"Block","src":"5820:57:22","statements":[{"expression":{"id":5037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5031,"name":"whitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4560,"src":"5835:9:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":5035,"indexExpression":{"baseExpression":{"id":5032,"name":"addresses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5015,"src":"5845:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5034,"indexExpression":{"id":5033,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5021,"src":"5855:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5845:12:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5835:23:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":5036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5861:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5835:30:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5038,"nodeType":"ExpressionStatement","src":"5835:30:22"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5024,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5021,"src":"5793:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5025,"name":"addresses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5015,"src":"5797:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5807:6:22","memberName":"length","nodeType":"MemberAccess","src":"5797:16:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5793:20:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5040,"initializationExpression":{"assignments":[5021],"declarations":[{"constant":false,"id":5021,"mutability":"mutable","name":"i","nameLocation":"5786:1:22","nodeType":"VariableDeclaration","scope":5040,"src":"5778:9:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5020,"name":"uint256","nodeType":"ElementaryTypeName","src":"5778:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5023,"initialValue":{"hexValue":"30","id":5022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5790:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"5778:13:22"},"loopExpression":{"expression":{"id":5029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"5815:3:22","subExpression":{"id":5028,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5021,"src":"5815:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5030,"nodeType":"ExpressionStatement","src":"5815:3:22"},"nodeType":"ForStatement","src":"5773:104:22"}]},"documentation":{"id":5012,"nodeType":"StructuredDocumentation","src":"5633:52:22","text":" @dev Add addresses to whitelist"},"functionSelector":"7f649783","id":5042,"implemented":true,"kind":"function","modifiers":[{"id":5018,"kind":"modifierInvocation","modifierName":{"id":5017,"name":"onlyOwner","nameLocations":["5752:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"5752:9:22"},"nodeType":"ModifierInvocation","src":"5752:9:22"}],"name":"addToWhitelist","nameLocation":"5700:14:22","nodeType":"FunctionDefinition","parameters":{"id":5016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5015,"mutability":"mutable","name":"addresses","nameLocation":"5732:9:22","nodeType":"VariableDeclaration","scope":5042,"src":"5715:26:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":5013,"name":"address","nodeType":"ElementaryTypeName","src":"5715:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5014,"nodeType":"ArrayTypeName","src":"5715:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"5714:28:22"},"returnParameters":{"id":5019,"nodeType":"ParameterList","parameters":[],"src":"5762:0:22"},"scope":5267,"src":"5691:193:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5072,"nodeType":"Block","src":"6031:123:22","statements":[{"body":{"id":5070,"nodeType":"Block","src":"6089:58:22","statements":[{"expression":{"id":5068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5062,"name":"whitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4560,"src":"6104:9:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":5066,"indexExpression":{"baseExpression":{"id":5063,"name":"addresses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5046,"src":"6114:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5065,"indexExpression":{"id":5064,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5052,"src":"6124:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6114:12:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6104:23:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":5067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6130:5:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6104:31:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5069,"nodeType":"ExpressionStatement","src":"6104:31:22"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5055,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5052,"src":"6062:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5056,"name":"addresses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5046,"src":"6066:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6076:6:22","memberName":"length","nodeType":"MemberAccess","src":"6066:16:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6062:20:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5071,"initializationExpression":{"assignments":[5052],"declarations":[{"constant":false,"id":5052,"mutability":"mutable","name":"i","nameLocation":"6055:1:22","nodeType":"VariableDeclaration","scope":5071,"src":"6047:9:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5051,"name":"uint256","nodeType":"ElementaryTypeName","src":"6047:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5054,"initialValue":{"hexValue":"30","id":5053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6059:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6047:13:22"},"loopExpression":{"expression":{"id":5060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"6084:3:22","subExpression":{"id":5059,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5052,"src":"6084:1:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5061,"nodeType":"ExpressionStatement","src":"6084:3:22"},"nodeType":"ForStatement","src":"6042:105:22"}]},"documentation":{"id":5043,"nodeType":"StructuredDocumentation","src":"5892:57:22","text":" @dev Remove addresses from whitelist"},"functionSelector":"548db174","id":5073,"implemented":true,"kind":"function","modifiers":[{"id":5049,"kind":"modifierInvocation","modifierName":{"id":5048,"name":"onlyOwner","nameLocations":["6021:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"6021:9:22"},"nodeType":"ModifierInvocation","src":"6021:9:22"}],"name":"removeFromWhitelist","nameLocation":"5964:19:22","nodeType":"FunctionDefinition","parameters":{"id":5047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5046,"mutability":"mutable","name":"addresses","nameLocation":"6001:9:22","nodeType":"VariableDeclaration","scope":5073,"src":"5984:26:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":5044,"name":"address","nodeType":"ElementaryTypeName","src":"5984:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5045,"nodeType":"ArrayTypeName","src":"5984:9:22","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"5983:28:22"},"returnParameters":{"id":5050,"nodeType":"ParameterList","parameters":[],"src":"6031:0:22"},"scope":5267,"src":"5955:199:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5083,"nodeType":"Block","src":"6280:45:22","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5079,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4540,"src":"6298:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":5080,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6308:7:22","memberName":"current","nodeType":"MemberAccess","referencedDeclaration":3228,"src":"6298:17:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Counter_$3216_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer) view returns (uint256)"}},"id":5081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:19:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5078,"id":5082,"nodeType":"Return","src":"6291:26:22"}]},"documentation":{"id":5074,"nodeType":"StructuredDocumentation","src":"6162:57:22","text":" @dev Get total number of token types"},"functionSelector":"18160ddd","id":5084,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"6234:11:22","nodeType":"FunctionDefinition","parameters":{"id":5075,"nodeType":"ParameterList","parameters":[],"src":"6245:2:22"},"returnParameters":{"id":5078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5084,"src":"6271:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5076,"name":"uint256","nodeType":"ElementaryTypeName","src":"6271:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6270:9:22"},"scope":5267,"src":"6225:100:22","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5096,"nodeType":"Block","src":"6463:46:22","statements":[{"expression":{"baseExpression":{"id":5092,"name":"tokenSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"6481:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":5094,"indexExpression":{"id":5093,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5087,"src":"6493:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6481:20:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5091,"id":5095,"nodeType":"Return","src":"6474:27:22"}]},"documentation":{"id":5085,"nodeType":"StructuredDocumentation","src":"6333:54:22","text":" @dev Get supply of specific token"},"functionSelector":"bd85b039","id":5097,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"6402:11:22","nodeType":"FunctionDefinition","parameters":{"id":5088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5087,"mutability":"mutable","name":"tokenId","nameLocation":"6422:7:22","nodeType":"VariableDeclaration","scope":5097,"src":"6414:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5086,"name":"uint256","nodeType":"ElementaryTypeName","src":"6414:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6413:17:22"},"returnParameters":{"id":5091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5090,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5097,"src":"6454:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5089,"name":"uint256","nodeType":"ElementaryTypeName","src":"6454:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6453:9:22"},"scope":5267,"src":"6393:116:22","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5144,"nodeType":"Block","src":"6626:281:22","statements":[{"assignments":[5106],"declarations":[{"constant":false,"id":5106,"mutability":"mutable","name":"balance","nameLocation":"6645:7:22","nodeType":"VariableDeclaration","scope":5144,"src":"6637:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5105,"name":"uint256","nodeType":"ElementaryTypeName","src":"6637:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5112,"initialValue":{"expression":{"arguments":[{"id":5109,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6663:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_ERC1155NFT_$5267","typeString":"contract ERC1155NFT"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC1155NFT_$5267","typeString":"contract ERC1155NFT"}],"id":5108,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6655:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5107,"name":"address","nodeType":"ElementaryTypeName","src":"6655:7:22","typeDescriptions":{}}},"id":5110,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6655:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6669:7:22","memberName":"balance","nodeType":"MemberAccess","src":"6655:21:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6637:39:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5114,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5106,"src":"6695:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6705:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6695:11:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f2062616c616e636520746f207769746864726177","id":5117,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6708:24:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5","typeString":"literal_string \"No balance to withdraw\""},"value":"No balance to withdraw"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5","typeString":"literal_string \"No balance to withdraw\""}],"id":5113,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6687:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6687:46:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5119,"nodeType":"ExpressionStatement","src":"6687:46:22"},{"assignments":[5121,null],"declarations":[{"constant":false,"id":5121,"mutability":"mutable","name":"success","nameLocation":"6752:7:22","nodeType":"VariableDeclaration","scope":5144,"src":"6747:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5120,"name":"bool","nodeType":"ElementaryTypeName","src":"6747:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":5132,"initialValue":{"arguments":[{"hexValue":"","id":5130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6803:2:22","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":[{"arguments":[],"expression":{"argumentTypes":[],"id":5124,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"6773:5:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6773:7:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5123,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6765:8:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":5122,"name":"address","nodeType":"ElementaryTypeName","src":"6765:8:22","stateMutability":"payable","typeDescriptions":{}}},"id":5126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6765:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":5127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6782:4:22","memberName":"call","nodeType":"MemberAccess","src":"6765:21:22","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":5129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":5128,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5106,"src":"6794:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"6765:37:22","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":5131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6765:41:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6746:60:22"},{"expression":{"arguments":[{"id":5134,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5121,"src":"6825:7:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5769746864726177616c206661696c6564","id":5135,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6834:19:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88","typeString":"literal_string \"Withdrawal failed\""},"value":"Withdrawal failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88","typeString":"literal_string \"Withdrawal failed\""}],"id":5133,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6817:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6817:37:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5137,"nodeType":"ExpressionStatement","src":"6817:37:22"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":5139,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"6882:5:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6882:7:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5141,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5106,"src":"6891:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5138,"name":"Withdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4596,"src":"6872:9:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6872:27:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5143,"nodeType":"EmitStatement","src":"6867:32:22"}]},"documentation":{"id":5098,"nodeType":"StructuredDocumentation","src":"6517:51:22","text":" @dev Withdraw contract balance"},"functionSelector":"3ccfd60b","id":5145,"implemented":true,"kind":"function","modifiers":[{"id":5101,"kind":"modifierInvocation","modifierName":{"id":5100,"name":"onlyOwner","nameLocations":["6603:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"6603:9:22"},"nodeType":"ModifierInvocation","src":"6603:9:22"},{"id":5103,"kind":"modifierInvocation","modifierName":{"id":5102,"name":"nonReentrant","nameLocations":["6613:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"6613:12:22"},"nodeType":"ModifierInvocation","src":"6613:12:22"}],"name":"withdraw","nameLocation":"6583:8:22","nodeType":"FunctionDefinition","parameters":{"id":5099,"nodeType":"ParameterList","parameters":[],"src":"6591:2:22"},"returnParameters":{"id":5104,"nodeType":"ParameterList","parameters":[],"src":"6626:0:22"},"scope":5267,"src":"6574:333:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5170,"nodeType":"Block","src":"7113:112:22","statements":[{"expression":{"id":5164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5157,"name":"royaltyAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5155,"src":"7124:13:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5158,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5150,"src":"7141:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5159,"name":"royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4552,"src":"7153:17:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7141:29:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5161,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7140:31:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":5162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7174:5:22","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"7140:39:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7124:55:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5165,"nodeType":"ExpressionStatement","src":"7124:55:22"},{"expression":{"id":5168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5166,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5153,"src":"7190:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5167,"name":"royaltyRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4554,"src":"7201:16:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7190:27:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5169,"nodeType":"ExpressionStatement","src":"7190:27:22"}]},"documentation":{"id":5146,"nodeType":"StructuredDocumentation","src":"6915:47:22","text":" @dev EIP-2981 royalty info"},"functionSelector":"2a55205a","id":5171,"implemented":true,"kind":"function","modifiers":[],"name":"royaltyInfo","nameLocation":"6977:11:22","nodeType":"FunctionDefinition","parameters":{"id":5151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5148,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5171,"src":"6989:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5147,"name":"uint256","nodeType":"ElementaryTypeName","src":"6989:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5150,"mutability":"mutable","name":"salePrice","nameLocation":"7006:9:22","nodeType":"VariableDeclaration","scope":5171,"src":"6998:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5149,"name":"uint256","nodeType":"ElementaryTypeName","src":"6998:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6988:28:22"},"returnParameters":{"id":5156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5153,"mutability":"mutable","name":"receiver","nameLocation":"7075:8:22","nodeType":"VariableDeclaration","scope":5171,"src":"7067:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5152,"name":"address","nodeType":"ElementaryTypeName","src":"7067:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5155,"mutability":"mutable","name":"royaltyAmount","nameLocation":"7093:13:22","nodeType":"VariableDeclaration","scope":5171,"src":"7085:21:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5154,"name":"uint256","nodeType":"ElementaryTypeName","src":"7085:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7066:41:22"},"scope":5267,"src":"6968:257:22","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5249,"nodeType":"Block","src":"7362:461:22","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5179,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5174,"src":"7377:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7386:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7377:10:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5185,"nodeType":"IfStatement","src":"7373:53:22","trueBody":{"id":5184,"nodeType":"Block","src":"7389:37:22","statements":[{"expression":{"hexValue":"30","id":5182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7411:3:22","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"functionReturnParameters":5178,"id":5183,"nodeType":"Return","src":"7404:10:22"}]}},{"assignments":[5187],"declarations":[{"constant":false,"id":5187,"mutability":"mutable","name":"temp","nameLocation":"7444:4:22","nodeType":"VariableDeclaration","scope":5249,"src":"7436:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5186,"name":"uint256","nodeType":"ElementaryTypeName","src":"7436:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5189,"initialValue":{"id":5188,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5174,"src":"7451:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7436:20:22"},{"assignments":[5191],"declarations":[{"constant":false,"id":5191,"mutability":"mutable","name":"digits","nameLocation":"7475:6:22","nodeType":"VariableDeclaration","scope":5249,"src":"7467:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5190,"name":"uint256","nodeType":"ElementaryTypeName","src":"7467:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5192,"nodeType":"VariableDeclarationStatement","src":"7467:14:22"},{"body":{"id":5203,"nodeType":"Block","src":"7510:60:22","statements":[{"expression":{"id":5197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"7525:8:22","subExpression":{"id":5196,"name":"digits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5191,"src":"7525:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5198,"nodeType":"ExpressionStatement","src":"7525:8:22"},{"expression":{"id":5201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5199,"name":"temp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5187,"src":"7548:4:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":5200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7556:2:22","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7548:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5202,"nodeType":"ExpressionStatement","src":"7548:10:22"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5193,"name":"temp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5187,"src":"7499:4:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":5194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7507:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7499:9:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5204,"nodeType":"WhileStatement","src":"7492:78:22"},{"assignments":[5206],"declarations":[{"constant":false,"id":5206,"mutability":"mutable","name":"buffer","nameLocation":"7593:6:22","nodeType":"VariableDeclaration","scope":5249,"src":"7580:19:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5205,"name":"bytes","nodeType":"ElementaryTypeName","src":"7580:5:22","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":5211,"initialValue":{"arguments":[{"id":5209,"name":"digits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5191,"src":"7612:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5208,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"7602:9:22","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":5207,"name":"bytes","nodeType":"ElementaryTypeName","src":"7606:5:22","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":5210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7602:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"7580:39:22"},{"body":{"id":5242,"nodeType":"Block","src":"7649:135:22","statements":[{"expression":{"id":5217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5215,"name":"digits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5191,"src":"7664:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"31","id":5216,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7674:1:22","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7664:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5218,"nodeType":"ExpressionStatement","src":"7664:11:22"},{"expression":{"id":5236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5219,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5206,"src":"7690:6:22","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5221,"indexExpression":{"id":5220,"name":"digits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5191,"src":"7697:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7690:14:22","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3438","id":5226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7720:2:22","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5229,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5174,"src":"7733:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3130","id":5230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7741:2:22","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7733:10:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5228,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7725:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5227,"name":"uint256","nodeType":"ElementaryTypeName","src":"7725:7:22","typeDescriptions":{}}},"id":5232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7725:19:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7720:24:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7714:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":5224,"name":"uint8","nodeType":"ElementaryTypeName","src":"7714:5:22","typeDescriptions":{}}},"id":5234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7714:31:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":5223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7707:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":5222,"name":"bytes1","nodeType":"ElementaryTypeName","src":"7707:6:22","typeDescriptions":{}}},"id":5235,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7707:39:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"7690:56:22","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":5237,"nodeType":"ExpressionStatement","src":"7690:56:22"},{"expression":{"id":5240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5238,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5174,"src":"7761:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":5239,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7770:2:22","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7761:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5241,"nodeType":"ExpressionStatement","src":"7761:11:22"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5212,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5174,"src":"7637:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":5213,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7646:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7637:10:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5243,"nodeType":"WhileStatement","src":"7630:154:22"},{"expression":{"arguments":[{"id":5246,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5206,"src":"7808:6:22","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5245,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7801:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":5244,"name":"string","nodeType":"ElementaryTypeName","src":"7801:6:22","typeDescriptions":{}}},"id":5247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7801:14:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":5178,"id":5248,"nodeType":"Return","src":"7794:21:22"}]},"documentation":{"id":5172,"nodeType":"StructuredDocumentation","src":"7233:51:22","text":" @dev Convert uint256 to string"},"id":5250,"implemented":true,"kind":"function","modifiers":[],"name":"_toString","nameLocation":"7299:9:22","nodeType":"FunctionDefinition","parameters":{"id":5175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5174,"mutability":"mutable","name":"value","nameLocation":"7317:5:22","nodeType":"VariableDeclaration","scope":5250,"src":"7309:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5173,"name":"uint256","nodeType":"ElementaryTypeName","src":"7309:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7308:15:22"},"returnParameters":{"id":5178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5177,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5250,"src":"7347:13:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5176,"name":"string","nodeType":"ElementaryTypeName","src":"7347:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7346:15:22"},"scope":5267,"src":"7290:533:22","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[281],"body":{"id":5265,"nodeType":"Block","src":"8036:62:22","statements":[{"expression":{"arguments":[{"id":5262,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5253,"src":"8078:11:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":5260,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8054:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC1155NFT_$5267_$","typeString":"type(contract super ERC1155NFT)"}},"id":5261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8060:17:22","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":281,"src":"8054:23:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":5263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8054:36:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5259,"id":5264,"nodeType":"Return","src":"8047:43:22"}]},"documentation":{"id":5251,"nodeType":"StructuredDocumentation","src":"7831:49:22","text":" @dev Check interface support"},"functionSelector":"01ffc9a7","id":5266,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"7895:17:22","nodeType":"FunctionDefinition","overrides":{"id":5256,"nodeType":"OverrideSpecifier","overrides":[{"id":5255,"name":"ERC1155","nameLocations":["7998:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":1428,"src":"7998:7:22"}],"src":"7989:17:22"},"parameters":{"id":5254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5253,"mutability":"mutable","name":"interfaceId","nameLocation":"7920:11:22","nodeType":"VariableDeclaration","scope":5266,"src":"7913:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5252,"name":"bytes4","nodeType":"ElementaryTypeName","src":"7913:6:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"7912:20:22"},"returnParameters":{"id":5259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5258,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5266,"src":"8025:4:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5257,"name":"bool","nodeType":"ElementaryTypeName","src":"8025:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8024:6:22"},"scope":5267,"src":"7886:212:22","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":5268,"src":"430:7671:22","usedErrors":[]}],"src":"33:8070:22"},"id":22},"contracts/ERC721NFT.sol":{"ast":{"absolutePath":"contracts/ERC721NFT.sol","exportedSymbols":{"Address":[3180],"Context":[3210],"Counters":[3284],"ERC165":[3537],"ERC721":[2533],"ERC721NFT":[5822],"ERC721URIStorage":[2823],"IERC165":[3549],"IERC4906":[137],"IERC721":[2649],"IERC721Metadata":[2850],"IERC721Receiver":[2667],"Math":[4415],"Ownable":[112],"ReentrancyGuard":[205],"SignedMath":[4520],"Strings":[3513]},"id":5823,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5269,"literals":["solidity","^","0.8",".19"],"nodeType":"PragmaDirective","src":"33:24:23"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/ERC721.sol","file":"@openzeppelin/contracts/token/ERC721/ERC721.sol","id":5270,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5823,"sourceUnit":2534,"src":"61:57:23","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol","file":"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol","id":5271,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5823,"sourceUnit":2824,"src":"120:78:23","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/Ownable.sol","file":"@openzeppelin/contracts/access/Ownable.sol","id":5272,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5823,"sourceUnit":113,"src":"200:52:23","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/security/ReentrancyGuard.sol","file":"@openzeppelin/contracts/security/ReentrancyGuard.sol","id":5273,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5823,"sourceUnit":206,"src":"254:62:23","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Counters.sol","file":"@openzeppelin/contracts/utils/Counters.sol","id":5274,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5823,"sourceUnit":3285,"src":"318:52:23","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5276,"name":"ERC721","nameLocations":["520:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":2533,"src":"520:6:23"},"id":5277,"nodeType":"InheritanceSpecifier","src":"520:6:23"},{"baseName":{"id":5278,"name":"ERC721URIStorage","nameLocations":["528:16:23"],"nodeType":"IdentifierPath","referencedDeclaration":2823,"src":"528:16:23"},"id":5279,"nodeType":"InheritanceSpecifier","src":"528:16:23"},{"baseName":{"id":5280,"name":"Ownable","nameLocations":["546:7:23"],"nodeType":"IdentifierPath","referencedDeclaration":112,"src":"546:7:23"},"id":5281,"nodeType":"InheritanceSpecifier","src":"546:7:23"},{"baseName":{"id":5282,"name":"ReentrancyGuard","nameLocations":["555:15:23"],"nodeType":"IdentifierPath","referencedDeclaration":205,"src":"555:15:23"},"id":5283,"nodeType":"InheritanceSpecifier","src":"555:15:23"}],"canonicalName":"ERC721NFT","contractDependencies":[],"contractKind":"contract","documentation":{"id":5275,"nodeType":"StructuredDocumentation","src":"374:122:23","text":" @title ERC721NFT\n @dev Complete ERC721 NFT Collection Contract with Minting, Royalties, and Access Control"},"fullyImplemented":true,"id":5822,"linearizedBaseContracts":[5822,205,112,2823,2533,2850,137,2649,3537,3549,3210],"name":"ERC721NFT","nameLocation":"507:9:23","nodeType":"ContractDefinition","nodes":[{"global":false,"id":5287,"libraryName":{"id":5284,"name":"Counters","nameLocations":["584:8:23"],"nodeType":"IdentifierPath","referencedDeclaration":3284,"src":"584:8:23"},"nodeType":"UsingForDirective","src":"578:36:23","typeName":{"id":5286,"nodeType":"UserDefinedTypeName","pathNode":{"id":5285,"name":"Counters.Counter","nameLocations":["597:8:23","606:7:23"],"nodeType":"IdentifierPath","referencedDeclaration":3216,"src":"597:16:23"},"referencedDeclaration":3216,"src":"597:16:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"}}},{"constant":false,"id":5290,"mutability":"mutable","name":"_tokenIds","nameLocation":"647:9:23","nodeType":"VariableDeclaration","scope":5822,"src":"622:34:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter"},"typeName":{"id":5289,"nodeType":"UserDefinedTypeName","pathNode":{"id":5288,"name":"Counters.Counter","nameLocations":["622:8:23","631:7:23"],"nodeType":"IdentifierPath","referencedDeclaration":3216,"src":"622:16:23"},"referencedDeclaration":3216,"src":"622:16:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage_ptr","typeString":"struct Counters.Counter"}},"visibility":"private"},{"constant":false,"functionSelector":"d547cfb7","id":5292,"mutability":"mutable","name":"baseTokenURI","nameLocation":"679:12:23","nodeType":"VariableDeclaration","scope":5822,"src":"665:26:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":5291,"name":"string","nodeType":"ElementaryTypeName","src":"665:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"public"},{"constant":false,"functionSelector":"d5abeb01","id":5294,"mutability":"mutable","name":"maxSupply","nameLocation":"713:9:23","nodeType":"VariableDeclaration","scope":5822,"src":"698:24:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5293,"name":"uint256","nodeType":"ElementaryTypeName","src":"698:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"6817c76c","id":5296,"mutability":"mutable","name":"mintPrice","nameLocation":"744:9:23","nodeType":"VariableDeclaration","scope":5822,"src":"729:24:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5295,"name":"uint256","nodeType":"ElementaryTypeName","src":"729:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"8a71bb2d","id":5298,"mutability":"mutable","name":"royaltyPercentage","nameLocation":"775:17:23","nodeType":"VariableDeclaration","scope":5822,"src":"760:32:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5297,"name":"uint256","nodeType":"ElementaryTypeName","src":"760:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"4c00de82","id":5300,"mutability":"mutable","name":"royaltyRecipient","nameLocation":"843:16:23","nodeType":"VariableDeclaration","scope":5822,"src":"828:31:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5299,"name":"address","nodeType":"ElementaryTypeName","src":"828:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"constant":false,"functionSelector":"0116bc2d","id":5302,"mutability":"mutable","name":"isPublicMintEnabled","nameLocation":"878:19:23","nodeType":"VariableDeclaration","scope":5822,"src":"866:31:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5301,"name":"bool","nodeType":"ElementaryTypeName","src":"866:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"constant":false,"functionSelector":"9b19251a","id":5306,"mutability":"mutable","name":"whitelist","nameLocation":"938:9:23","nodeType":"VariableDeclaration","scope":5822,"src":"906:41:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":5305,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5303,"name":"address","nodeType":"ElementaryTypeName","src":"914:7:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"906:24:23","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5304,"name":"bool","nodeType":"ElementaryTypeName","src":"925:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"id":5310,"mutability":"mutable","name":"_tokenURIs","nameLocation":"989:10:23","nodeType":"VariableDeclaration","scope":5822,"src":"954:45:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string)"},"typeName":{"id":5309,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5307,"name":"uint256","nodeType":"ElementaryTypeName","src":"962:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"954:26:23","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_string_storage_$","typeString":"mapping(uint256 => string)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5308,"name":"string","nodeType":"ElementaryTypeName","src":"973:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"visibility":"private"},{"anonymous":false,"eventSelector":"d35bb95e09c04b219e35047ce7b7b300e3384264ef84a40456943dbc0fc17c14","id":5318,"name":"NFTMinted","nameLocation":"1014:9:23","nodeType":"EventDefinition","parameters":{"id":5317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5312,"indexed":true,"mutability":"mutable","name":"minter","nameLocation":"1040:6:23","nodeType":"VariableDeclaration","scope":5318,"src":"1024:22:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5311,"name":"address","nodeType":"ElementaryTypeName","src":"1024:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5314,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"1064:7:23","nodeType":"VariableDeclaration","scope":5318,"src":"1048:23:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5313,"name":"uint256","nodeType":"ElementaryTypeName","src":"1048:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5316,"indexed":false,"mutability":"mutable","name":"tokenURI","nameLocation":"1080:8:23","nodeType":"VariableDeclaration","scope":5318,"src":"1073:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5315,"name":"string","nodeType":"ElementaryTypeName","src":"1073:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1023:66:23"},"src":"1008:82:23"},{"anonymous":false,"eventSelector":"6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad","id":5322,"name":"BaseURIUpdated","nameLocation":"1102:14:23","nodeType":"EventDefinition","parameters":{"id":5321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5320,"indexed":false,"mutability":"mutable","name":"newBaseURI","nameLocation":"1124:10:23","nodeType":"VariableDeclaration","scope":5322,"src":"1117:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5319,"name":"string","nodeType":"ElementaryTypeName","src":"1117:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1116:19:23"},"src":"1096:40:23"},{"anonymous":false,"eventSelector":"525b762709cc2a983aec5ccdfd807a061f993c91090b5bcd7da92ca254976aaa","id":5326,"name":"MintPriceUpdated","nameLocation":"1148:16:23","nodeType":"EventDefinition","parameters":{"id":5325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5324,"indexed":false,"mutability":"mutable","name":"newPrice","nameLocation":"1173:8:23","nodeType":"VariableDeclaration","scope":5326,"src":"1165:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5323,"name":"uint256","nodeType":"ElementaryTypeName","src":"1165:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1164:18:23"},"src":"1142:41:23"},{"anonymous":false,"eventSelector":"a81e445dac2343503dc87e4663774817434721db7d985310a6959766e6d4480e","id":5330,"name":"PublicMintToggled","nameLocation":"1195:17:23","nodeType":"EventDefinition","parameters":{"id":5329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5328,"indexed":false,"mutability":"mutable","name":"enabled","nameLocation":"1218:7:23","nodeType":"VariableDeclaration","scope":5330,"src":"1213:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5327,"name":"bool","nodeType":"ElementaryTypeName","src":"1213:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1212:14:23"},"src":"1189:38:23"},{"anonymous":false,"eventSelector":"7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5","id":5336,"name":"Withdrawn","nameLocation":"1239:9:23","nodeType":"EventDefinition","parameters":{"id":5335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5332,"indexed":true,"mutability":"mutable","name":"recipient","nameLocation":"1265:9:23","nodeType":"VariableDeclaration","scope":5336,"src":"1249:25:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5331,"name":"address","nodeType":"ElementaryTypeName","src":"1249:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5334,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1284:6:23","nodeType":"VariableDeclaration","scope":5336,"src":"1276:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5333,"name":"uint256","nodeType":"ElementaryTypeName","src":"1276:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1248:43:23"},"src":"1233:59:23"},{"body":{"id":5395,"nodeType":"Block","src":"1627:418:23","statements":[{"expression":{"id":5363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5361,"name":"baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5292,"src":"1638:12:23","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5362,"name":"_baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5342,"src":"1653:13:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1638:28:23","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5364,"nodeType":"ExpressionStatement","src":"1638:28:23"},{"expression":{"id":5367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5365,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"1677:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5366,"name":"_maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5344,"src":"1689:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1677:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5368,"nodeType":"ExpressionStatement","src":"1677:22:23"},{"expression":{"id":5371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5369,"name":"royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5298,"src":"1710:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5370,"name":"_royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5346,"src":"1730:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1710:38:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5372,"nodeType":"ExpressionStatement","src":"1710:38:23"},{"expression":{"id":5375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5373,"name":"royaltyRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5300,"src":"1759:16:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5374,"name":"_royaltyRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5348,"src":"1778:17:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1759:36:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5376,"nodeType":"ExpressionStatement","src":"1759:36:23"},{"expression":{"id":5379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5377,"name":"mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5296,"src":"1806:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5378,"name":"_mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5350,"src":"1818:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1806:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5380,"nodeType":"ExpressionStatement","src":"1806:22:23"},{"expression":{"id":5383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5381,"name":"isPublicMintEnabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5302,"src":"1839:19:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5382,"name":"_isPublicMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5352,"src":"1861:13:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1839:35:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5384,"nodeType":"ExpressionStatement","src":"1839:35:23"},{"expression":{"arguments":[{"id":5386,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5354,"src":"1958:6:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5385,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"1939:18:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":5387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1939:26:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5388,"nodeType":"ExpressionStatement","src":"1939:26:23"},{"expression":{"id":5393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5389,"name":"whitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5306,"src":"2013:9:23","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":5391,"indexExpression":{"id":5390,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5354,"src":"2023:6:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2013:17:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":5392,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2033:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2013:24:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5394,"nodeType":"ExpressionStatement","src":"2013:24:23"}]},"id":5396,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":5357,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5338,"src":"1611:5:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":5358,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5340,"src":"1618:7:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":5359,"kind":"baseConstructorSpecifier","modifierName":{"id":5356,"name":"ERC721","nameLocations":["1604:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":2533,"src":"1604:6:23"},"nodeType":"ModifierInvocation","src":"1604:22:23"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":5355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5338,"mutability":"mutable","name":"_name","nameLocation":"1336:5:23","nodeType":"VariableDeclaration","scope":5396,"src":"1322:19:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5337,"name":"string","nodeType":"ElementaryTypeName","src":"1322:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5340,"mutability":"mutable","name":"_symbol","nameLocation":"1366:7:23","nodeType":"VariableDeclaration","scope":5396,"src":"1352:21:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5339,"name":"string","nodeType":"ElementaryTypeName","src":"1352:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5342,"mutability":"mutable","name":"_baseTokenURI","nameLocation":"1398:13:23","nodeType":"VariableDeclaration","scope":5396,"src":"1384:27:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5341,"name":"string","nodeType":"ElementaryTypeName","src":"1384:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5344,"mutability":"mutable","name":"_maxSupply","nameLocation":"1430:10:23","nodeType":"VariableDeclaration","scope":5396,"src":"1422:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5343,"name":"uint256","nodeType":"ElementaryTypeName","src":"1422:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5346,"mutability":"mutable","name":"_royaltyPercentage","nameLocation":"1459:18:23","nodeType":"VariableDeclaration","scope":5396,"src":"1451:26:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5345,"name":"uint256","nodeType":"ElementaryTypeName","src":"1451:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5348,"mutability":"mutable","name":"_royaltyRecipient","nameLocation":"1496:17:23","nodeType":"VariableDeclaration","scope":5396,"src":"1488:25:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5347,"name":"address","nodeType":"ElementaryTypeName","src":"1488:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5350,"mutability":"mutable","name":"_mintPrice","nameLocation":"1532:10:23","nodeType":"VariableDeclaration","scope":5396,"src":"1524:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5349,"name":"uint256","nodeType":"ElementaryTypeName","src":"1524:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5352,"mutability":"mutable","name":"_isPublicMint","nameLocation":"1558:13:23","nodeType":"VariableDeclaration","scope":5396,"src":"1553:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5351,"name":"bool","nodeType":"ElementaryTypeName","src":"1553:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5354,"mutability":"mutable","name":"_owner","nameLocation":"1590:6:23","nodeType":"VariableDeclaration","scope":5396,"src":"1582:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5353,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1311:292:23"},"returnParameters":{"id":5360,"nodeType":"ParameterList","parameters":[],"src":"1627:0:23"},"scope":5822,"src":"1300:745:23","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":5474,"nodeType":"Block","src":"2226:618:23","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5407,"name":"isPublicMintEnabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5302,"src":"2259:19:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"baseExpression":{"id":5408,"name":"whitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5306,"src":"2282:9:23","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":5411,"indexExpression":{"expression":{"id":5409,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2292:3:23","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2296:6:23","memberName":"sender","nodeType":"MemberAccess","src":"2292:10:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2282:21:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2259:44:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5413,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2307:3:23","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2311:6:23","memberName":"sender","nodeType":"MemberAccess","src":"2307:10:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":5415,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"2321:5:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2321:7:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2307:21:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2259:69:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d696e74696e67206e6f7420616c6c6f776564","id":5419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2343:21:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a","typeString":"literal_string \"Minting not allowed\""},"value":"Minting not allowed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a","typeString":"literal_string \"Minting not allowed\""}],"id":5406,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2237:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2237:138:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5421,"nodeType":"ExpressionStatement","src":"2237:138:23"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5423,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"2408:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2421:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2408:14:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5426,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5290,"src":"2426:9:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":5427,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2436:7:23","memberName":"current","nodeType":"MemberAccess","referencedDeclaration":3228,"src":"2426:17:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Counter_$3216_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer) view returns (uint256)"}},"id":5428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2426:19:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5429,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"2448:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2426:31:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2408:49:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d617820737570706c792072656163686564","id":5432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2472:20:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_cf40cb9708e1320ee04bc59cb2f8b4ce47ba0c93638609957810c412abce51a7","typeString":"literal_string \"Max supply reached\""},"value":"Max supply reached"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cf40cb9708e1320ee04bc59cb2f8b4ce47ba0c93638609957810c412abce51a7","typeString":"literal_string \"Max supply reached\""}],"id":5422,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2386:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2386:117:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5434,"nodeType":"ExpressionStatement","src":"2386:117:23"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5436,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2522:3:23","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2526:5:23","memberName":"value","nodeType":"MemberAccess","src":"2522:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":5438,"name":"mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5296,"src":"2535:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2522:22:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e74207061796d656e74","id":5440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2546:22:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e","typeString":"literal_string \"Insufficient payment\""},"value":"Insufficient payment"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e","typeString":"literal_string \"Insufficient payment\""}],"id":5435,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2514:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2514:55:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5442,"nodeType":"ExpressionStatement","src":"2514:55:23"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5443,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5290,"src":"2582:9:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":5445,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2592:9:23","memberName":"increment","nodeType":"MemberAccess","referencedDeclaration":3242,"src":"2582:19:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Counter_$3216_storage_ptr_$returns$__$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer)"}},"id":5446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2582:21:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5447,"nodeType":"ExpressionStatement","src":"2582:21:23"},{"assignments":[5449],"declarations":[{"constant":false,"id":5449,"mutability":"mutable","name":"newTokenId","nameLocation":"2622:10:23","nodeType":"VariableDeclaration","scope":5474,"src":"2614:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5448,"name":"uint256","nodeType":"ElementaryTypeName","src":"2614:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5453,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5450,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5290,"src":"2635:9:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":5451,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2645:7:23","memberName":"current","nodeType":"MemberAccess","referencedDeclaration":3228,"src":"2635:17:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Counter_$3216_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer) view returns (uint256)"}},"id":5452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2635:19:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2614:40:23"},{"expression":{"arguments":[{"expression":{"id":5455,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2677:3:23","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2681:6:23","memberName":"sender","nodeType":"MemberAccess","src":"2677:10:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5457,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5449,"src":"2689:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5454,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[2101,2130],"referencedDeclaration":2101,"src":"2667:9:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2667:33:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5459,"nodeType":"ExpressionStatement","src":"2667:33:23"},{"expression":{"arguments":[{"id":5461,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5449,"src":"2724:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5462,"name":"tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5399,"src":"2736:8:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":5460,"name":"_setTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2792,"src":"2711:12:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint256,string memory)"}},"id":5463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2711:34:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5464,"nodeType":"ExpressionStatement","src":"2711:34:23"},{"eventCall":{"arguments":[{"expression":{"id":5466,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2773:3:23","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2777:6:23","memberName":"sender","nodeType":"MemberAccess","src":"2773:10:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5468,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5449,"src":"2785:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5469,"name":"tokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5399,"src":"2797:8:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":5465,"name":"NFTMinted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5318,"src":"2763:9:23","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,uint256,string memory)"}},"id":5470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2763:43:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5471,"nodeType":"EmitStatement","src":"2758:48:23"},{"expression":{"id":5472,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5449,"src":"2826:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5405,"id":5473,"nodeType":"Return","src":"2819:17:23"}]},"documentation":{"id":5397,"nodeType":"StructuredDocumentation","src":"2053:40:23","text":" @dev Mint a new NFT"},"functionSelector":"d85d3d27","id":5475,"implemented":true,"kind":"function","modifiers":[{"id":5402,"kind":"modifierInvocation","modifierName":{"id":5401,"name":"nonReentrant","nameLocations":["2181:12:23"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"2181:12:23"},"nodeType":"ModifierInvocation","src":"2181:12:23"}],"name":"mint","nameLocation":"2108:4:23","nodeType":"FunctionDefinition","parameters":{"id":5400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5399,"mutability":"mutable","name":"tokenURI","nameLocation":"2127:8:23","nodeType":"VariableDeclaration","scope":5475,"src":"2113:22:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5398,"name":"string","nodeType":"ElementaryTypeName","src":"2113:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2112:24:23"},"returnParameters":{"id":5405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5404,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5475,"src":"2212:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5403,"name":"uint256","nodeType":"ElementaryTypeName","src":"2212:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2211:9:23"},"scope":5822,"src":"2099:745:23","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":5562,"nodeType":"Block","src":"3051:585:23","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5490,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5479,"src":"3070:10:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3081:6:23","memberName":"length","nodeType":"MemberAccess","src":"3070:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":5492,"name":"tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5482,"src":"3091:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":5493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3101:6:23","memberName":"length","nodeType":"MemberAccess","src":"3091:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3070:37:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4172726179206c656e677468206d69736d61746368","id":5495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3109:23:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea","typeString":"literal_string \"Array length mismatch\""},"value":"Array length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea","typeString":"literal_string \"Array length mismatch\""}],"id":5489,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3062:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3062:71:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5497,"nodeType":"ExpressionStatement","src":"3062:71:23"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5499,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"3166:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3179:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3166:14:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5502,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5290,"src":"3184:9:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":5503,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3194:7:23","memberName":"current","nodeType":"MemberAccess","referencedDeclaration":3228,"src":"3184:17:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Counter_$3216_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer) view returns (uint256)"}},"id":5504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3184:19:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":5505,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5479,"src":"3206:10:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3217:6:23","memberName":"length","nodeType":"MemberAccess","src":"3206:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3184:39:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":5508,"name":"maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"3227:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3184:52:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3166:70:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"576f756c6420657863656564206d617820737570706c79","id":5511,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3251:25:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3","typeString":"literal_string \"Would exceed max supply\""},"value":"Would exceed max supply"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3","typeString":"literal_string \"Would exceed max supply\""}],"id":5498,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3144:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3144:143:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5513,"nodeType":"ExpressionStatement","src":"3144:143:23"},{"body":{"id":5560,"nodeType":"Block","src":"3348:281:23","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5525,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5290,"src":"3363:9:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":5527,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3373:9:23","memberName":"increment","nodeType":"MemberAccess","referencedDeclaration":3242,"src":"3363:19:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Counter_$3216_storage_ptr_$returns$__$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer)"}},"id":5528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3363:21:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5529,"nodeType":"ExpressionStatement","src":"3363:21:23"},{"assignments":[5531],"declarations":[{"constant":false,"id":5531,"mutability":"mutable","name":"newTokenId","nameLocation":"3407:10:23","nodeType":"VariableDeclaration","scope":5560,"src":"3399:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5530,"name":"uint256","nodeType":"ElementaryTypeName","src":"3399:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5535,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5532,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5290,"src":"3420:9:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":5533,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3430:7:23","memberName":"current","nodeType":"MemberAccess","referencedDeclaration":3228,"src":"3420:17:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Counter_$3216_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer) view returns (uint256)"}},"id":5534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3420:19:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3399:40:23"},{"expression":{"arguments":[{"baseExpression":{"id":5537,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5479,"src":"3466:10:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5539,"indexExpression":{"id":5538,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5515,"src":"3477:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3466:13:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5540,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5531,"src":"3481:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5536,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[2101,2130],"referencedDeclaration":2101,"src":"3456:9:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3456:36:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5542,"nodeType":"ExpressionStatement","src":"3456:36:23"},{"expression":{"arguments":[{"id":5544,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5531,"src":"3520:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":5545,"name":"tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5482,"src":"3532:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":5547,"indexExpression":{"id":5546,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5515,"src":"3542:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3532:12:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":5543,"name":"_setTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2792,"src":"3507:12:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint256,string memory)"}},"id":5548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3507:38:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5549,"nodeType":"ExpressionStatement","src":"3507:38:23"},{"eventCall":{"arguments":[{"baseExpression":{"id":5551,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5479,"src":"3577:10:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5553,"indexExpression":{"id":5552,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5515,"src":"3588:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3577:13:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5554,"name":"newTokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5531,"src":"3592:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":5555,"name":"tokenURIs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5482,"src":"3604:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":5557,"indexExpression":{"id":5556,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5515,"src":"3614:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3604:12:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":5550,"name":"NFTMinted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5318,"src":"3567:9:23","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,uint256,string memory)"}},"id":5558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3567:50:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5559,"nodeType":"EmitStatement","src":"3562:55:23"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5518,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5515,"src":"3320:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5519,"name":"recipients","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5479,"src":"3324:10:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3335:6:23","memberName":"length","nodeType":"MemberAccess","src":"3324:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3320:21:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5561,"initializationExpression":{"assignments":[5515],"declarations":[{"constant":false,"id":5515,"mutability":"mutable","name":"i","nameLocation":"3313:1:23","nodeType":"VariableDeclaration","scope":5561,"src":"3305:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5514,"name":"uint256","nodeType":"ElementaryTypeName","src":"3305:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5517,"initialValue":{"hexValue":"30","id":5516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3317:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3305:13:23"},"loopExpression":{"expression":{"id":5523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3343:3:23","subExpression":{"id":5522,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5515,"src":"3343:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5524,"nodeType":"ExpressionStatement","src":"3343:3:23"},"nodeType":"ForStatement","src":"3300:329:23"}]},"documentation":{"id":5476,"nodeType":"StructuredDocumentation","src":"2852:54:23","text":" @dev Batch mint NFTs (only owner)"},"functionSelector":"64ba144e","id":5563,"implemented":true,"kind":"function","modifiers":[{"id":5485,"kind":"modifierInvocation","modifierName":{"id":5484,"name":"onlyOwner","nameLocations":["3014:9:23"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"3014:9:23"},"nodeType":"ModifierInvocation","src":"3014:9:23"},{"id":5487,"kind":"modifierInvocation","modifierName":{"id":5486,"name":"nonReentrant","nameLocations":["3033:12:23"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"3033:12:23"},"nodeType":"ModifierInvocation","src":"3033:12:23"}],"name":"batchMint","nameLocation":"2921:9:23","nodeType":"FunctionDefinition","parameters":{"id":5483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5479,"mutability":"mutable","name":"recipients","nameLocation":"2948:10:23","nodeType":"VariableDeclaration","scope":5563,"src":"2931:27:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":5477,"name":"address","nodeType":"ElementaryTypeName","src":"2931:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5478,"nodeType":"ArrayTypeName","src":"2931:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":5482,"mutability":"mutable","name":"tokenURIs","nameLocation":"2976:9:23","nodeType":"VariableDeclaration","scope":5563,"src":"2960:25:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":5480,"name":"string","nodeType":"ElementaryTypeName","src":"2960:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":5481,"nodeType":"ArrayTypeName","src":"2960:8:23","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"2930:56:23"},"returnParameters":{"id":5488,"nodeType":"ParameterList","parameters":[],"src":"3051:0:23"},"scope":5822,"src":"2912:724:23","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5579,"nodeType":"Block","src":"3771:92:23","statements":[{"expression":{"id":5573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5571,"name":"baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5292,"src":"3782:12:23","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5572,"name":"_baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5566,"src":"3797:13:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3782:28:23","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5574,"nodeType":"ExpressionStatement","src":"3782:28:23"},{"eventCall":{"arguments":[{"id":5576,"name":"_baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5566,"src":"3841:13:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":5575,"name":"BaseURIUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5322,"src":"3826:14:23","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":5577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3826:29:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5578,"nodeType":"EmitStatement","src":"3821:34:23"}]},"documentation":{"id":5564,"nodeType":"StructuredDocumentation","src":"3644:53:23","text":" @dev Set base URI for all tokens"},"functionSelector":"55f804b3","id":5580,"implemented":true,"kind":"function","modifiers":[{"id":5569,"kind":"modifierInvocation","modifierName":{"id":5568,"name":"onlyOwner","nameLocations":["3761:9:23"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"3761:9:23"},"nodeType":"ModifierInvocation","src":"3761:9:23"}],"name":"setBaseURI","nameLocation":"3712:10:23","nodeType":"FunctionDefinition","parameters":{"id":5567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5566,"mutability":"mutable","name":"_baseTokenURI","nameLocation":"3737:13:23","nodeType":"VariableDeclaration","scope":5580,"src":"3723:27:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5565,"name":"string","nodeType":"ElementaryTypeName","src":"3723:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3722:29:23"},"returnParameters":{"id":5570,"nodeType":"ParameterList","parameters":[],"src":"3771:0:23"},"scope":5822,"src":"3703:160:23","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5596,"nodeType":"Block","src":"3981:85:23","statements":[{"expression":{"id":5590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5588,"name":"mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5296,"src":"3992:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5589,"name":"_mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5583,"src":"4004:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3992:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5591,"nodeType":"ExpressionStatement","src":"3992:22:23"},{"eventCall":{"arguments":[{"id":5593,"name":"_mintPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5583,"src":"4047:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5592,"name":"MintPriceUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5326,"src":"4030:16:23","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":5594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4030:28:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5595,"nodeType":"EmitStatement","src":"4025:33:23"}]},"documentation":{"id":5581,"nodeType":"StructuredDocumentation","src":"3871:43:23","text":" @dev Update mint price"},"functionSelector":"f4a0a528","id":5597,"implemented":true,"kind":"function","modifiers":[{"id":5586,"kind":"modifierInvocation","modifierName":{"id":5585,"name":"onlyOwner","nameLocations":["3971:9:23"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"3971:9:23"},"nodeType":"ModifierInvocation","src":"3971:9:23"}],"name":"setMintPrice","nameLocation":"3929:12:23","nodeType":"FunctionDefinition","parameters":{"id":5584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5583,"mutability":"mutable","name":"_mintPrice","nameLocation":"3950:10:23","nodeType":"VariableDeclaration","scope":5597,"src":"3942:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5582,"name":"uint256","nodeType":"ElementaryTypeName","src":"3942:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3941:20:23"},"returnParameters":{"id":5587,"nodeType":"ParameterList","parameters":[],"src":"3981:0:23"},"scope":5822,"src":"3920:146:23","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5613,"nodeType":"Block","src":"4187:92:23","statements":[{"expression":{"id":5607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5605,"name":"isPublicMintEnabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5302,"src":"4198:19:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5606,"name":"_enabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5600,"src":"4220:8:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4198:30:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5608,"nodeType":"ExpressionStatement","src":"4198:30:23"},{"eventCall":{"arguments":[{"id":5610,"name":"_enabled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5600,"src":"4262:8:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":5609,"name":"PublicMintToggled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5330,"src":"4244:17:23","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bool_$returns$__$","typeString":"function (bool)"}},"id":5611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4244:27:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5612,"nodeType":"EmitStatement","src":"4239:32:23"}]},"documentation":{"id":5598,"nodeType":"StructuredDocumentation","src":"4074:47:23","text":" @dev Toggle public minting"},"functionSelector":"9b7c1c83","id":5614,"implemented":true,"kind":"function","modifiers":[{"id":5603,"kind":"modifierInvocation","modifierName":{"id":5602,"name":"onlyOwner","nameLocations":["4177:9:23"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"4177:9:23"},"nodeType":"ModifierInvocation","src":"4177:9:23"}],"name":"togglePublicMint","nameLocation":"4136:16:23","nodeType":"FunctionDefinition","parameters":{"id":5601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5600,"mutability":"mutable","name":"_enabled","nameLocation":"4158:8:23","nodeType":"VariableDeclaration","scope":5614,"src":"4153:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5599,"name":"bool","nodeType":"ElementaryTypeName","src":"4153:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4152:15:23"},"returnParameters":{"id":5604,"nodeType":"ParameterList","parameters":[],"src":"4187:0:23"},"scope":5822,"src":"4127:152:23","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5644,"nodeType":"Block","src":"4416:122:23","statements":[{"body":{"id":5642,"nodeType":"Block","src":"4474:57:23","statements":[{"expression":{"id":5640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5634,"name":"whitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5306,"src":"4489:9:23","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":5638,"indexExpression":{"baseExpression":{"id":5635,"name":"addresses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5618,"src":"4499:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5637,"indexExpression":{"id":5636,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5624,"src":"4509:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4499:12:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4489:23:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":5639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4515:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"4489:30:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5641,"nodeType":"ExpressionStatement","src":"4489:30:23"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5627,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5624,"src":"4447:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5628,"name":"addresses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5618,"src":"4451:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4461:6:23","memberName":"length","nodeType":"MemberAccess","src":"4451:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4447:20:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5643,"initializationExpression":{"assignments":[5624],"declarations":[{"constant":false,"id":5624,"mutability":"mutable","name":"i","nameLocation":"4440:1:23","nodeType":"VariableDeclaration","scope":5643,"src":"4432:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5623,"name":"uint256","nodeType":"ElementaryTypeName","src":"4432:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5626,"initialValue":{"hexValue":"30","id":5625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4444:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4432:13:23"},"loopExpression":{"expression":{"id":5632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4469:3:23","subExpression":{"id":5631,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5624,"src":"4469:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5633,"nodeType":"ExpressionStatement","src":"4469:3:23"},"nodeType":"ForStatement","src":"4427:104:23"}]},"documentation":{"id":5615,"nodeType":"StructuredDocumentation","src":"4287:52:23","text":" @dev Add addresses to whitelist"},"functionSelector":"7f649783","id":5645,"implemented":true,"kind":"function","modifiers":[{"id":5621,"kind":"modifierInvocation","modifierName":{"id":5620,"name":"onlyOwner","nameLocations":["4406:9:23"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"4406:9:23"},"nodeType":"ModifierInvocation","src":"4406:9:23"}],"name":"addToWhitelist","nameLocation":"4354:14:23","nodeType":"FunctionDefinition","parameters":{"id":5619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5618,"mutability":"mutable","name":"addresses","nameLocation":"4386:9:23","nodeType":"VariableDeclaration","scope":5645,"src":"4369:26:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":5616,"name":"address","nodeType":"ElementaryTypeName","src":"4369:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5617,"nodeType":"ArrayTypeName","src":"4369:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"4368:28:23"},"returnParameters":{"id":5622,"nodeType":"ParameterList","parameters":[],"src":"4416:0:23"},"scope":5822,"src":"4345:193:23","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5675,"nodeType":"Block","src":"4685:123:23","statements":[{"body":{"id":5673,"nodeType":"Block","src":"4743:58:23","statements":[{"expression":{"id":5671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5665,"name":"whitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5306,"src":"4758:9:23","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":5669,"indexExpression":{"baseExpression":{"id":5666,"name":"addresses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5649,"src":"4768:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5668,"indexExpression":{"id":5667,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"4778:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4768:12:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4758:23:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":5670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4784:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"4758:31:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5672,"nodeType":"ExpressionStatement","src":"4758:31:23"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5658,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"4716:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5659,"name":"addresses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5649,"src":"4720:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4730:6:23","memberName":"length","nodeType":"MemberAccess","src":"4720:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4716:20:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5674,"initializationExpression":{"assignments":[5655],"declarations":[{"constant":false,"id":5655,"mutability":"mutable","name":"i","nameLocation":"4709:1:23","nodeType":"VariableDeclaration","scope":5674,"src":"4701:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5654,"name":"uint256","nodeType":"ElementaryTypeName","src":"4701:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5657,"initialValue":{"hexValue":"30","id":5656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4713:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4701:13:23"},"loopExpression":{"expression":{"id":5663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4738:3:23","subExpression":{"id":5662,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5655,"src":"4738:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5664,"nodeType":"ExpressionStatement","src":"4738:3:23"},"nodeType":"ForStatement","src":"4696:105:23"}]},"documentation":{"id":5646,"nodeType":"StructuredDocumentation","src":"4546:57:23","text":" @dev Remove addresses from whitelist"},"functionSelector":"548db174","id":5676,"implemented":true,"kind":"function","modifiers":[{"id":5652,"kind":"modifierInvocation","modifierName":{"id":5651,"name":"onlyOwner","nameLocations":["4675:9:23"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"4675:9:23"},"nodeType":"ModifierInvocation","src":"4675:9:23"}],"name":"removeFromWhitelist","nameLocation":"4618:19:23","nodeType":"FunctionDefinition","parameters":{"id":5650,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5649,"mutability":"mutable","name":"addresses","nameLocation":"4655:9:23","nodeType":"VariableDeclaration","scope":5676,"src":"4638:26:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":5647,"name":"address","nodeType":"ElementaryTypeName","src":"4638:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5648,"nodeType":"ArrayTypeName","src":"4638:9:23","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"4637:28:23"},"returnParameters":{"id":5653,"nodeType":"ParameterList","parameters":[],"src":"4685:0:23"},"scope":5822,"src":"4609:199:23","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5686,"nodeType":"Block","src":"4919:45:23","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5682,"name":"_tokenIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5290,"src":"4937:9:23","typeDescriptions":{"typeIdentifier":"t_struct$_Counter_$3216_storage","typeString":"struct Counters.Counter storage ref"}},"id":5683,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4947:7:23","memberName":"current","nodeType":"MemberAccess","referencedDeclaration":3228,"src":"4937:17:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Counter_$3216_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Counter_$3216_storage_ptr_$","typeString":"function (struct Counters.Counter storage pointer) view returns (uint256)"}},"id":5684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4937:19:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5681,"id":5685,"nodeType":"Return","src":"4930:26:23"}]},"documentation":{"id":5677,"nodeType":"StructuredDocumentation","src":"4816:42:23","text":" @dev Get total supply"},"functionSelector":"18160ddd","id":5687,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"4873:11:23","nodeType":"FunctionDefinition","parameters":{"id":5678,"nodeType":"ParameterList","parameters":[],"src":"4884:2:23"},"returnParameters":{"id":5681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5680,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5687,"src":"4910:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5679,"name":"uint256","nodeType":"ElementaryTypeName","src":"4910:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4909:9:23"},"scope":5822,"src":"4864:100:23","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5734,"nodeType":"Block","src":"5081:281:23","statements":[{"assignments":[5696],"declarations":[{"constant":false,"id":5696,"mutability":"mutable","name":"balance","nameLocation":"5100:7:23","nodeType":"VariableDeclaration","scope":5734,"src":"5092:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5695,"name":"uint256","nodeType":"ElementaryTypeName","src":"5092:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5702,"initialValue":{"expression":{"arguments":[{"id":5699,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5118:4:23","typeDescriptions":{"typeIdentifier":"t_contract$_ERC721NFT_$5822","typeString":"contract ERC721NFT"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC721NFT_$5822","typeString":"contract ERC721NFT"}],"id":5698,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5110:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5697,"name":"address","nodeType":"ElementaryTypeName","src":"5110:7:23","typeDescriptions":{}}},"id":5700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5110:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5124:7:23","memberName":"balance","nodeType":"MemberAccess","src":"5110:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5092:39:23"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5704,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5696,"src":"5150:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5160:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5150:11:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f2062616c616e636520746f207769746864726177","id":5707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5163:24:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5","typeString":"literal_string \"No balance to withdraw\""},"value":"No balance to withdraw"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5","typeString":"literal_string \"No balance to withdraw\""}],"id":5703,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5142:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5142:46:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5709,"nodeType":"ExpressionStatement","src":"5142:46:23"},{"assignments":[5711,null],"declarations":[{"constant":false,"id":5711,"mutability":"mutable","name":"success","nameLocation":"5207:7:23","nodeType":"VariableDeclaration","scope":5734,"src":"5202:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5710,"name":"bool","nodeType":"ElementaryTypeName","src":"5202:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":5722,"initialValue":{"arguments":[{"hexValue":"","id":5720,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5258:2:23","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":[{"arguments":[],"expression":{"argumentTypes":[],"id":5714,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"5228:5:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5228:7:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5220:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":5712,"name":"address","nodeType":"ElementaryTypeName","src":"5220:8:23","stateMutability":"payable","typeDescriptions":{}}},"id":5716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5220:16:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":5717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5237:4:23","memberName":"call","nodeType":"MemberAccess","src":"5220:21:23","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":5719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":5718,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5696,"src":"5249:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5220:37:23","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":5721,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5220:41:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5201:60:23"},{"expression":{"arguments":[{"id":5724,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5711,"src":"5280:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5769746864726177616c206661696c6564","id":5725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5289:19:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88","typeString":"literal_string \"Withdrawal failed\""},"value":"Withdrawal failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88","typeString":"literal_string \"Withdrawal failed\""}],"id":5723,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5272:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5272:37:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5727,"nodeType":"ExpressionStatement","src":"5272:37:23"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":5729,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"5337:5:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5337:7:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5731,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5696,"src":"5346:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5728,"name":"Withdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5336,"src":"5327:9:23","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5732,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5327:27:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5733,"nodeType":"EmitStatement","src":"5322:32:23"}]},"documentation":{"id":5688,"nodeType":"StructuredDocumentation","src":"4972:51:23","text":" @dev Withdraw contract balance"},"functionSelector":"3ccfd60b","id":5735,"implemented":true,"kind":"function","modifiers":[{"id":5691,"kind":"modifierInvocation","modifierName":{"id":5690,"name":"onlyOwner","nameLocations":["5058:9:23"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"5058:9:23"},"nodeType":"ModifierInvocation","src":"5058:9:23"},{"id":5693,"kind":"modifierInvocation","modifierName":{"id":5692,"name":"nonReentrant","nameLocations":["5068:12:23"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"5068:12:23"},"nodeType":"ModifierInvocation","src":"5068:12:23"}],"name":"withdraw","nameLocation":"5038:8:23","nodeType":"FunctionDefinition","parameters":{"id":5689,"nodeType":"ParameterList","parameters":[],"src":"5046:2:23"},"returnParameters":{"id":5694,"nodeType":"ParameterList","parameters":[],"src":"5081:0:23"},"scope":5822,"src":"5029:333:23","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5760,"nodeType":"Block","src":"5569:112:23","statements":[{"expression":{"id":5754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5747,"name":"royaltyAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5745,"src":"5580:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5748,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5740,"src":"5597:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5749,"name":"royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5298,"src":"5609:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5597:29:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5751,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5596:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":5752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5630:5:23","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"5596:39:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5580:55:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5755,"nodeType":"ExpressionStatement","src":"5580:55:23"},{"expression":{"id":5758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5756,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5743,"src":"5646:8:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5757,"name":"royaltyRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5300,"src":"5657:16:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5646:27:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5759,"nodeType":"ExpressionStatement","src":"5646:27:23"}]},"documentation":{"id":5736,"nodeType":"StructuredDocumentation","src":"5370:47:23","text":" @dev EIP-2981 royalty info"},"functionSelector":"2a55205a","id":5761,"implemented":true,"kind":"function","modifiers":[],"name":"royaltyInfo","nameLocation":"5432:11:23","nodeType":"FunctionDefinition","parameters":{"id":5741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5738,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5761,"src":"5444:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5737,"name":"uint256","nodeType":"ElementaryTypeName","src":"5444:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5740,"mutability":"mutable","name":"salePrice","nameLocation":"5462:9:23","nodeType":"VariableDeclaration","scope":5761,"src":"5454:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5739,"name":"uint256","nodeType":"ElementaryTypeName","src":"5454:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5443:29:23"},"returnParameters":{"id":5746,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5743,"mutability":"mutable","name":"receiver","nameLocation":"5531:8:23","nodeType":"VariableDeclaration","scope":5761,"src":"5523:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5742,"name":"address","nodeType":"ElementaryTypeName","src":"5523:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5745,"mutability":"mutable","name":"royaltyAmount","nameLocation":"5549:13:23","nodeType":"VariableDeclaration","scope":5761,"src":"5541:21:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5744,"name":"uint256","nodeType":"ElementaryTypeName","src":"5541:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5522:41:23"},"scope":5822,"src":"5423:258:23","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[1820],"body":{"id":5770,"nodeType":"Block","src":"5813:38:23","statements":[{"expression":{"id":5768,"name":"baseTokenURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5292,"src":"5831:12:23","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5767,"id":5769,"nodeType":"Return","src":"5824:19:23"}]},"documentation":{"id":5762,"nodeType":"StructuredDocumentation","src":"5689:43:23","text":" @dev Override _baseURI"},"id":5771,"implemented":true,"kind":"function","modifiers":[],"name":"_baseURI","nameLocation":"5747:8:23","nodeType":"FunctionDefinition","overrides":{"id":5764,"nodeType":"OverrideSpecifier","overrides":[],"src":"5780:8:23"},"parameters":{"id":5763,"nodeType":"ParameterList","parameters":[],"src":"5755:2:23"},"returnParameters":{"id":5767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5771,"src":"5798:13:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5765,"name":"string","nodeType":"ElementaryTypeName","src":"5798:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5797:15:23"},"scope":5822,"src":"5738:113:23","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[1811,2766],"body":{"id":5787,"nodeType":"Block","src":"6100:49:23","statements":[{"expression":{"arguments":[{"id":5784,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5774,"src":"6133:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5782,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6118:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721NFT_$5822_$","typeString":"type(contract super ERC721NFT)"}},"id":5783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6124:8:23","memberName":"tokenURI","nodeType":"MemberAccess","referencedDeclaration":2766,"src":"6118:14:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) view returns (string memory)"}},"id":5785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6118:23:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":5781,"id":5786,"nodeType":"Return","src":"6111:30:23"}]},"documentation":{"id":5772,"nodeType":"StructuredDocumentation","src":"5859:71:23","text":" @dev Override tokenURI to return custom URI if set"},"functionSelector":"c87b56dd","id":5788,"implemented":true,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"5945:8:23","nodeType":"FunctionDefinition","overrides":{"id":5778,"nodeType":"OverrideSpecifier","overrides":[{"id":5776,"name":"ERC721","nameLocations":["6036:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":2533,"src":"6036:6:23"},{"id":5777,"name":"ERC721URIStorage","nameLocations":["6044:16:23"],"nodeType":"IdentifierPath","referencedDeclaration":2823,"src":"6044:16:23"}],"src":"6027:34:23"},"parameters":{"id":5775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5774,"mutability":"mutable","name":"tokenId","nameLocation":"5962:7:23","nodeType":"VariableDeclaration","scope":5788,"src":"5954:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5773,"name":"uint256","nodeType":"ElementaryTypeName","src":"5954:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5953:17:23"},"returnParameters":{"id":5781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5780,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5788,"src":"6080:13:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5779,"name":"string","nodeType":"ElementaryTypeName","src":"6080:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6079:15:23"},"scope":5822,"src":"5936:213:23","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2274,2822],"body":{"id":5803,"nodeType":"Block","src":"6319:39:23","statements":[{"expression":{"arguments":[{"id":5800,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5791,"src":"6342:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5797,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6330:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721NFT_$5822_$","typeString":"type(contract super ERC721NFT)"}},"id":5799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6336:5:23","memberName":"_burn","nodeType":"MemberAccess","referencedDeclaration":2822,"src":"6330:11:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":5801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6330:20:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5802,"nodeType":"ExpressionStatement","src":"6330:20:23"}]},"documentation":{"id":5789,"nodeType":"StructuredDocumentation","src":"6157:40:23","text":" @dev Override _burn"},"id":5804,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"6212:5:23","nodeType":"FunctionDefinition","overrides":{"id":5795,"nodeType":"OverrideSpecifier","overrides":[{"id":5793,"name":"ERC721","nameLocations":["6288:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":2533,"src":"6288:6:23"},{"id":5794,"name":"ERC721URIStorage","nameLocations":["6296:16:23"],"nodeType":"IdentifierPath","referencedDeclaration":2823,"src":"6296:16:23"}],"src":"6279:34:23"},"parameters":{"id":5792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5791,"mutability":"mutable","name":"tokenId","nameLocation":"6226:7:23","nodeType":"VariableDeclaration","scope":5804,"src":"6218:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5790,"name":"uint256","nodeType":"ElementaryTypeName","src":"6218:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6217:17:23"},"returnParameters":{"id":5796,"nodeType":"ParameterList","parameters":[],"src":"6319:0:23"},"scope":5822,"src":"6203:155:23","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1700,2707],"body":{"id":5820,"nodeType":"Block","src":"6588:62:23","statements":[{"expression":{"arguments":[{"id":5817,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5807,"src":"6630:11:23","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":5815,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6606:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721NFT_$5822_$","typeString":"type(contract super ERC721NFT)"}},"id":5816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6612:17:23","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":2707,"src":"6606:23:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":5818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6606:36:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5814,"id":5819,"nodeType":"Return","src":"6599:43:23"}]},"documentation":{"id":5805,"nodeType":"StructuredDocumentation","src":"6366:49:23","text":" @dev Check interface support"},"functionSelector":"01ffc9a7","id":5821,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"6430:17:23","nodeType":"FunctionDefinition","overrides":{"id":5811,"nodeType":"OverrideSpecifier","overrides":[{"id":5809,"name":"ERC721","nameLocations":["6533:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":2533,"src":"6533:6:23"},{"id":5810,"name":"ERC721URIStorage","nameLocations":["6541:16:23"],"nodeType":"IdentifierPath","referencedDeclaration":2823,"src":"6541:16:23"}],"src":"6524:34:23"},"parameters":{"id":5808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5807,"mutability":"mutable","name":"interfaceId","nameLocation":"6455:11:23","nodeType":"VariableDeclaration","scope":5821,"src":"6448:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5806,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6448:6:23","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"6447:20:23"},"returnParameters":{"id":5814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5813,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5821,"src":"6577:4:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5812,"name":"bool","nodeType":"ElementaryTypeName","src":"6577:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6576:6:23"},"scope":5822,"src":"6421:229:23","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":5823,"src":"498:6155:23","usedErrors":[]}],"src":"33:6622:23"},"id":23},"contracts/NFTMarketplace.sol":{"ast":{"absolutePath":"contracts/NFTMarketplace.sol","exportedSymbols":{"Context":[3210],"IERC1155":[1550],"IERC165":[3549],"IERC721":[2649],"NFTMarketplace":[6602],"Ownable":[112],"ReentrancyGuard":[205]},"id":6603,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5824,"literals":["solidity","^","0.8",".19"],"nodeType":"PragmaDirective","src":"33:24:24"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721.sol","id":5825,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6603,"sourceUnit":2650,"src":"61:58:24","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155.sol","file":"@openzeppelin/contracts/token/ERC1155/IERC1155.sol","id":5826,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6603,"sourceUnit":1551,"src":"121:60:24","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/security/ReentrancyGuard.sol","file":"@openzeppelin/contracts/security/ReentrancyGuard.sol","id":5827,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6603,"sourceUnit":206,"src":"183:62:24","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/Ownable.sol","file":"@openzeppelin/contracts/access/Ownable.sol","id":5828,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6603,"sourceUnit":113,"src":"247:52:24","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5830,"name":"ReentrancyGuard","nameLocations":["440:15:24"],"nodeType":"IdentifierPath","referencedDeclaration":205,"src":"440:15:24"},"id":5831,"nodeType":"InheritanceSpecifier","src":"440:15:24"},{"baseName":{"id":5832,"name":"Ownable","nameLocations":["457:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":112,"src":"457:7:24"},"id":5833,"nodeType":"InheritanceSpecifier","src":"457:7:24"}],"canonicalName":"NFTMarketplace","contractDependencies":[],"contractKind":"contract","documentation":{"id":5829,"nodeType":"StructuredDocumentation","src":"303:108:24","text":" @title NFTMarketplace\n @dev Core NFT Marketplace for ERC721 and ERC1155 with royalty support"},"fullyImplemented":true,"id":6602,"linearizedBaseContracts":[6602,112,3210,205],"name":"NFTMarketplace","nameLocation":"422:14:24","nodeType":"ContractDefinition","nodes":[{"constant":false,"functionSelector":"46904840","id":5835,"mutability":"mutable","name":"feeRecipient","nameLocation":"497:12:24","nodeType":"VariableDeclaration","scope":6602,"src":"474:35:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":5834,"name":"address","nodeType":"ElementaryTypeName","src":"474:15:24","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"public"},{"constant":false,"functionSelector":"a001ecdd","id":5837,"mutability":"mutable","name":"feePercentage","nameLocation":"531:13:24","nodeType":"VariableDeclaration","scope":6602,"src":"516:28:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5836,"name":"uint256","nodeType":"ElementaryTypeName","src":"516:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"canonicalName":"NFTMarketplace.Listing","id":5848,"members":[{"constant":false,"id":5839,"mutability":"mutable","name":"seller","nameLocation":"616:6:24","nodeType":"VariableDeclaration","scope":5848,"src":"608:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5838,"name":"address","nodeType":"ElementaryTypeName","src":"608:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5841,"mutability":"mutable","name":"price","nameLocation":"641:5:24","nodeType":"VariableDeclaration","scope":5848,"src":"633:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5840,"name":"uint256","nodeType":"ElementaryTypeName","src":"633:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5843,"mutability":"mutable","name":"active","nameLocation":"662:6:24","nodeType":"VariableDeclaration","scope":5848,"src":"657:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5842,"name":"bool","nodeType":"ElementaryTypeName","src":"657:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5845,"mutability":"mutable","name":"royaltyPercentage","nameLocation":"687:17:24","nodeType":"VariableDeclaration","scope":5848,"src":"679:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5844,"name":"uint256","nodeType":"ElementaryTypeName","src":"679:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5847,"mutability":"mutable","name":"royaltyRecipient","nameLocation":"723:16:24","nodeType":"VariableDeclaration","scope":5848,"src":"715:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5846,"name":"address","nodeType":"ElementaryTypeName","src":"715:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"Listing","nameLocation":"589:7:24","nodeType":"StructDefinition","scope":6602,"src":"582:165:24","visibility":"public"},{"constant":false,"functionSelector":"0007df30","id":5855,"mutability":"mutable","name":"listings","nameLocation":"852:8:24","nodeType":"VariableDeclaration","scope":6602,"src":"797:63:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing))"},"typeName":{"id":5854,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5849,"name":"address","nodeType":"ElementaryTypeName","src":"805:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"797:47:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5853,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5850,"name":"uint256","nodeType":"ElementaryTypeName","src":"824:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"816:27:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5852,"nodeType":"UserDefinedTypeName","pathNode":{"id":5851,"name":"Listing","nameLocations":["835:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":5848,"src":"835:7:24"},"referencedDeclaration":5848,"src":"835:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing"}}}},"visibility":"public"},{"constant":false,"functionSelector":"cbdb7b8d","id":5859,"mutability":"mutable","name":"supportedTokenStandards","nameLocation":"899:23:24","nodeType":"VariableDeclaration","scope":6602,"src":"867:55:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":5858,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5856,"name":"address","nodeType":"ElementaryTypeName","src":"875:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"867:24:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5857,"name":"bool","nodeType":"ElementaryTypeName","src":"886:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"anonymous":false,"eventSelector":"b29a3c5d9c9eb8230bd277c54293a0a15e98cd5592a3e0d470fe9ce59fed54f1","id":5869,"name":"ItemListed","nameLocation":"937:10:24","nodeType":"EventDefinition","parameters":{"id":5868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5861,"indexed":true,"mutability":"mutable","name":"nftContract","nameLocation":"974:11:24","nodeType":"VariableDeclaration","scope":5869,"src":"958:27:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5860,"name":"address","nodeType":"ElementaryTypeName","src":"958:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5863,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"1012:7:24","nodeType":"VariableDeclaration","scope":5869,"src":"996:23:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5862,"name":"uint256","nodeType":"ElementaryTypeName","src":"996:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5865,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"1046:6:24","nodeType":"VariableDeclaration","scope":5869,"src":"1030:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5864,"name":"address","nodeType":"ElementaryTypeName","src":"1030:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5867,"indexed":false,"mutability":"mutable","name":"price","nameLocation":"1071:5:24","nodeType":"VariableDeclaration","scope":5869,"src":"1063:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5866,"name":"uint256","nodeType":"ElementaryTypeName","src":"1063:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"947:136:24"},"src":"931:153:24"},{"anonymous":false,"eventSelector":"5478ad3f04f76c56cdccdbf76c58bc9a46a20205d5264da270a05e23ca683ac0","id":5885,"name":"ItemSold","nameLocation":"1098:8:24","nodeType":"EventDefinition","parameters":{"id":5884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5871,"indexed":true,"mutability":"mutable","name":"nftContract","nameLocation":"1133:11:24","nodeType":"VariableDeclaration","scope":5885,"src":"1117:27:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5870,"name":"address","nodeType":"ElementaryTypeName","src":"1117:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5873,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"1171:7:24","nodeType":"VariableDeclaration","scope":5885,"src":"1155:23:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5872,"name":"uint256","nodeType":"ElementaryTypeName","src":"1155:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5875,"indexed":true,"mutability":"mutable","name":"buyer","nameLocation":"1205:5:24","nodeType":"VariableDeclaration","scope":5885,"src":"1189:21:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5874,"name":"address","nodeType":"ElementaryTypeName","src":"1189:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5877,"indexed":false,"mutability":"mutable","name":"seller","nameLocation":"1229:6:24","nodeType":"VariableDeclaration","scope":5885,"src":"1221:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5876,"name":"address","nodeType":"ElementaryTypeName","src":"1221:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5879,"indexed":false,"mutability":"mutable","name":"price","nameLocation":"1254:5:24","nodeType":"VariableDeclaration","scope":5885,"src":"1246:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5878,"name":"uint256","nodeType":"ElementaryTypeName","src":"1246:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5881,"indexed":false,"mutability":"mutable","name":"marketplaceFee","nameLocation":"1278:14:24","nodeType":"VariableDeclaration","scope":5885,"src":"1270:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5880,"name":"uint256","nodeType":"ElementaryTypeName","src":"1270:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5883,"indexed":false,"mutability":"mutable","name":"royaltyFee","nameLocation":"1311:10:24","nodeType":"VariableDeclaration","scope":5885,"src":"1303:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5882,"name":"uint256","nodeType":"ElementaryTypeName","src":"1303:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1106:222:24"},"src":"1092:237:24"},{"anonymous":false,"eventSelector":"c448b641f9d136b2082a1543ddddd8b6f8b86576bc444a187505ea3934bac2f8","id":5893,"name":"ItemCanceled","nameLocation":"1343:12:24","nodeType":"EventDefinition","parameters":{"id":5892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5887,"indexed":true,"mutability":"mutable","name":"nftContract","nameLocation":"1382:11:24","nodeType":"VariableDeclaration","scope":5893,"src":"1366:27:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5886,"name":"address","nodeType":"ElementaryTypeName","src":"1366:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5889,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"1420:7:24","nodeType":"VariableDeclaration","scope":5893,"src":"1404:23:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5888,"name":"uint256","nodeType":"ElementaryTypeName","src":"1404:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5891,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"1454:6:24","nodeType":"VariableDeclaration","scope":5893,"src":"1438:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5890,"name":"address","nodeType":"ElementaryTypeName","src":"1438:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1355:112:24"},"src":"1337:131:24"},{"body":{"id":5925,"nodeType":"Block","src":"1543:220:24","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5901,"name":"_feeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5895,"src":"1562:13:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1587: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":5903,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1579:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5902,"name":"address","nodeType":"ElementaryTypeName","src":"1579:7:24","typeDescriptions":{}}},"id":5905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1579:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1562:27:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642066656520726563697069656e74","id":5907,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1591:23:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_e561266971c3ecd1d998191dab88f5e768ba5a3b9f18aaca1641faa64bcf4361","typeString":"literal_string \"Invalid fee recipient\""},"value":"Invalid fee recipient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e561266971c3ecd1d998191dab88f5e768ba5a3b9f18aaca1641faa64bcf4361","typeString":"literal_string \"Invalid fee recipient\""}],"id":5900,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1554:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1554:61:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5909,"nodeType":"ExpressionStatement","src":"1554:61:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5911,"name":"_feePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5897,"src":"1634:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31303030","id":5912,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1652:4:24","typeDescriptions":{"typeIdentifier":"t_rational_1000_by_1","typeString":"int_const 1000"},"value":"1000"},"src":"1634:22:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"46656520746f6f2068696768","id":5914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1658:14:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1","typeString":"literal_string \"Fee too high\""},"value":"Fee too high"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1","typeString":"literal_string \"Fee too high\""}],"id":5910,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1626:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1626:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5916,"nodeType":"ExpressionStatement","src":"1626:47:24"},{"expression":{"id":5919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5917,"name":"feeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"1686:12:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5918,"name":"_feeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5895,"src":"1701:13:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"src":"1686:28:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":5920,"nodeType":"ExpressionStatement","src":"1686:28:24"},{"expression":{"id":5923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5921,"name":"feePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5837,"src":"1725:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5922,"name":"_feePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5897,"src":"1741:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1725:30:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5924,"nodeType":"ExpressionStatement","src":"1725:30:24"}]},"id":5926,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":5898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5895,"mutability":"mutable","name":"_feeRecipient","nameLocation":"1504:13:24","nodeType":"VariableDeclaration","scope":5926,"src":"1488:29:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":5894,"name":"address","nodeType":"ElementaryTypeName","src":"1488:15:24","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":5897,"mutability":"mutable","name":"_feePercentage","nameLocation":"1527:14:24","nodeType":"VariableDeclaration","scope":5926,"src":"1519:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5896,"name":"uint256","nodeType":"ElementaryTypeName","src":"1519:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1487:55:24"},"returnParameters":{"id":5899,"nodeType":"ParameterList","parameters":[],"src":"1543:0:24"},"scope":6602,"src":"1476:287:24","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":6031,"nodeType":"Block","src":"1969:838:24","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5942,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5932,"src":"1988:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5943,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1996:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1988:9:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5072696365206d7573742062652067726561746572207468616e207a65726f","id":5945,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1999:33:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_1e47b80dba3e3bff087af44930a3e1a0b5fb80034194db87f9ae87a93f0935b0","typeString":"literal_string \"Price must be greater than zero\""},"value":"Price must be greater than zero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1e47b80dba3e3bff087af44930a3e1a0b5fb80034194db87f9ae87a93f0935b0","typeString":"literal_string \"Price must be greater than zero\""}],"id":5941,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1980:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1980:53:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5947,"nodeType":"ExpressionStatement","src":"1980:53:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5949,"name":"royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5934,"src":"2052:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"333030","id":5950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2073:3:24","typeDescriptions":{"typeIdentifier":"t_rational_300_by_1","typeString":"int_const 300"},"value":"300"},"src":"2052:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"526f79616c74792070657263656e7420746f6f2068696768","id":5952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2078:26:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_9509050604c3a74715ca112dddf3487cff571d02db3b9229d47e970030e89bc4","typeString":"literal_string \"Royalty percent too high\""},"value":"Royalty percent too high"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9509050604c3a74715ca112dddf3487cff571d02db3b9229d47e970030e89bc4","typeString":"literal_string \"Royalty percent too high\""}],"id":5948,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2044:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2044:61:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5954,"nodeType":"ExpressionStatement","src":"2044:61:24"},{"assignments":[5957],"declarations":[{"constant":false,"id":5957,"mutability":"mutable","name":"nft","nameLocation":"2126:3:24","nodeType":"VariableDeclaration","scope":6031,"src":"2118:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"},"typeName":{"id":5956,"nodeType":"UserDefinedTypeName","pathNode":{"id":5955,"name":"IERC721","nameLocations":["2118:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":2649,"src":"2118:7:24"},"referencedDeclaration":2649,"src":"2118:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"}},"visibility":"internal"}],"id":5961,"initialValue":{"arguments":[{"id":5959,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5928,"src":"2140:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5958,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2649,"src":"2132:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$2649_$","typeString":"type(contract IERC721)"}},"id":5960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2132:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"}},"nodeType":"VariableDeclarationStatement","src":"2118:34:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5965,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5930,"src":"2183:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5963,"name":"nft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5957,"src":"2171:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"}},"id":5964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2175:7:24","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":2582,"src":"2171:11:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view external returns (address)"}},"id":5966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2171:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":5967,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2195:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2199:6:24","memberName":"sender","nodeType":"MemberAccess","src":"2195:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2171:34:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7420746f6b656e206f776e6572","id":5970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2207:17:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_d58db187d6deadaa7dbc96faf8140765b1136bc840a29b45b0b313938ad871a9","typeString":"literal_string \"Not token owner\""},"value":"Not token owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d58db187d6deadaa7dbc96faf8140765b1136bc840a29b45b0b313938ad871a9","typeString":"literal_string \"Not token owner\""}],"id":5962,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2163:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2163:62:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5972,"nodeType":"ExpressionStatement","src":"2163:62:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5976,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5930,"src":"2274:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5974,"name":"nft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5957,"src":"2258:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"}},"id":5975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2262:11:24","memberName":"getApproved","nodeType":"MemberAccess","referencedDeclaration":2638,"src":"2258:15:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view external returns (address)"}},"id":5977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2258:24:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":5980,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2294:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}],"id":5979,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2286:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5978,"name":"address","nodeType":"ElementaryTypeName","src":"2286:7:24","typeDescriptions":{}}},"id":5981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2286:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2258:41:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"expression":{"id":5985,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2337:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2341:6:24","memberName":"sender","nodeType":"MemberAccess","src":"2337:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5989,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2357:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}],"id":5988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2349:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5987,"name":"address","nodeType":"ElementaryTypeName","src":"2349:7:24","typeDescriptions":{}}},"id":5990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2349:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":5983,"name":"nft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5957,"src":"2316:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"}},"id":5984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2320:16:24","memberName":"isApprovedForAll","nodeType":"MemberAccess","referencedDeclaration":2648,"src":"2316:20:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view external returns (bool)"}},"id":5991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2316:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2258:105:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436f6e7472616374206e6f7420617070726f766564","id":5993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2378:23:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_48504bdc46a29744a363aedaf51364aebc3fc115cf42488dedd2700397181af0","typeString":"literal_string \"Contract not approved\""},"value":"Contract not approved"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_48504bdc46a29744a363aedaf51364aebc3fc115cf42488dedd2700397181af0","typeString":"literal_string \"Contract not approved\""}],"id":5973,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2236:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2236:176:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5995,"nodeType":"ExpressionStatement","src":"2236:176:24"},{"expression":{"arguments":[{"expression":{"id":5999,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2442:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2446:6:24","memberName":"sender","nodeType":"MemberAccess","src":"2442:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6003,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2462:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}],"id":6002,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2454:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6001,"name":"address","nodeType":"ElementaryTypeName","src":"2454:7:24","typeDescriptions":{}}},"id":6004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2454:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6005,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5930,"src":"2469:7: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":5996,"name":"nft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5957,"src":"2425:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"}},"id":5998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2429:12:24","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":2614,"src":"2425:16:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256) external"}},"id":6006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2425:52:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6007,"nodeType":"ExpressionStatement","src":"2425:52:24"},{"expression":{"id":6021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":6008,"name":"listings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5855,"src":"2490:8:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing storage ref))"}},"id":6011,"indexExpression":{"id":6009,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5928,"src":"2499:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2490:21:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing storage ref)"}},"id":6012,"indexExpression":{"id":6010,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5930,"src":"2512:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2490:30:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":6014,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2554:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2558:6:24","memberName":"sender","nodeType":"MemberAccess","src":"2554:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6016,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5932,"src":"2586:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":6017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2614:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":6018,"name":"royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5934,"src":"2652:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6019,"name":"royaltyRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5936,"src":"2702:16:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6013,"name":"Listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"2523:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Listing_$5848_storage_ptr_$","typeString":"type(struct NFTMarketplace.Listing storage pointer)"}},"id":6020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["2546:6:24","2579:5:24","2606:6:24","2633:17:24","2684:16:24"],"names":["seller","price","active","royaltyPercentage","royaltyRecipient"],"nodeType":"FunctionCall","src":"2523:207:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"src":"2490:240:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"id":6022,"nodeType":"ExpressionStatement","src":"2490:240:24"},{"eventCall":{"arguments":[{"id":6024,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5928,"src":"2759:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6025,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5930,"src":"2772:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":6026,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2781:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2785:6:24","memberName":"sender","nodeType":"MemberAccess","src":"2781:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6028,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5932,"src":"2793:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6023,"name":"ItemListed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5869,"src":"2748:10:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256,address,uint256)"}},"id":6029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2748:51:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6030,"nodeType":"EmitStatement","src":"2743:56:24"}]},"functionSelector":"f3fee54a","id":6032,"implemented":true,"kind":"function","modifiers":[{"id":5939,"kind":"modifierInvocation","modifierName":{"id":5938,"name":"nonReentrant","nameLocations":["1956:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"1956:12:24"},"nodeType":"ModifierInvocation","src":"1956:12:24"}],"name":"listItem","nameLocation":"1780:8:24","nodeType":"FunctionDefinition","parameters":{"id":5937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5928,"mutability":"mutable","name":"nftContract","nameLocation":"1807:11:24","nodeType":"VariableDeclaration","scope":6032,"src":"1799:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5927,"name":"address","nodeType":"ElementaryTypeName","src":"1799:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5930,"mutability":"mutable","name":"tokenId","nameLocation":"1837:7:24","nodeType":"VariableDeclaration","scope":6032,"src":"1829:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5929,"name":"uint256","nodeType":"ElementaryTypeName","src":"1829:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5932,"mutability":"mutable","name":"price","nameLocation":"1863:5:24","nodeType":"VariableDeclaration","scope":6032,"src":"1855:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5931,"name":"uint256","nodeType":"ElementaryTypeName","src":"1855:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5934,"mutability":"mutable","name":"royaltyPercentage","nameLocation":"1887:17:24","nodeType":"VariableDeclaration","scope":6032,"src":"1879:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5933,"name":"uint256","nodeType":"ElementaryTypeName","src":"1879:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5936,"mutability":"mutable","name":"royaltyRecipient","nameLocation":"1923:16:24","nodeType":"VariableDeclaration","scope":6032,"src":"1915:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5935,"name":"address","nodeType":"ElementaryTypeName","src":"1915:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1788:158:24"},"returnParameters":{"id":5940,"nodeType":"ParameterList","parameters":[],"src":"1969:0:24"},"scope":6602,"src":"1771:1036:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6232,"nodeType":"Block","src":"2932:1638:24","statements":[{"assignments":[6043],"declarations":[{"constant":false,"id":6043,"mutability":"mutable","name":"listing","nameLocation":"2958:7:24","nodeType":"VariableDeclaration","scope":6232,"src":"2943:22:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing"},"typeName":{"id":6042,"nodeType":"UserDefinedTypeName","pathNode":{"id":6041,"name":"Listing","nameLocations":["2943:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":5848,"src":"2943:7:24"},"referencedDeclaration":5848,"src":"2943:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing"}},"visibility":"internal"}],"id":6049,"initialValue":{"baseExpression":{"baseExpression":{"id":6044,"name":"listings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5855,"src":"2968:8:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing storage ref))"}},"id":6046,"indexExpression":{"id":6045,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6034,"src":"2977:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2968:21:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing storage ref)"}},"id":6048,"indexExpression":{"id":6047,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6036,"src":"2990:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2968:30:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2943:55:24"},{"expression":{"arguments":[{"expression":{"id":6051,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3019:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6052,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3027:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":5843,"src":"3019:14:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4974656d206e6f7420666f722073616c65","id":6053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3035:19:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_df16b7349c0253f6fb9f4484e9e154e83d51fd52f2fb4123d23e27c0f5581980","typeString":"literal_string \"Item not for sale\""},"value":"Item not for sale"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df16b7349c0253f6fb9f4484e9e154e83d51fd52f2fb4123d23e27c0f5581980","typeString":"literal_string \"Item not for sale\""}],"id":6050,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3011:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3011:44:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6055,"nodeType":"ExpressionStatement","src":"3011:44:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6057,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3074:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3078:5:24","memberName":"value","nodeType":"MemberAccess","src":"3074:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":6059,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3087:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6060,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3095:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"3087:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3074:26:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e74207061796d656e74","id":6062,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3102:22:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e","typeString":"literal_string \"Insufficient payment\""},"value":"Insufficient payment"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e","typeString":"literal_string \"Insufficient payment\""}],"id":6056,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3066:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3066:59:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6064,"nodeType":"ExpressionStatement","src":"3066:59:24"},{"expression":{"id":6072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"baseExpression":{"id":6065,"name":"listings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5855,"src":"3138:8:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing storage ref))"}},"id":6068,"indexExpression":{"id":6066,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6034,"src":"3147:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3138:21:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing storage ref)"}},"id":6069,"indexExpression":{"id":6067,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6036,"src":"3160:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3138:30:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"id":6070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3169:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":5843,"src":"3138:37:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":6071,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3178:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3138:45:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6073,"nodeType":"ExpressionStatement","src":"3138:45:24"},{"assignments":[6075],"declarations":[{"constant":false,"id":6075,"mutability":"mutable","name":"marketplaceFee","nameLocation":"3204:14:24","nodeType":"VariableDeclaration","scope":6232,"src":"3196:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6074,"name":"uint256","nodeType":"ElementaryTypeName","src":"3196:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6083,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6076,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3222:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6077,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3230:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"3222:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":6078,"name":"feePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5837,"src":"3238:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3222:29:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6080,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3221:31:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":6081,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3255:5:24","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"3221:39:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3196:64:24"},{"assignments":[6085],"declarations":[{"constant":false,"id":6085,"mutability":"mutable","name":"royaltyFee","nameLocation":"3279:10:24","nodeType":"VariableDeclaration","scope":6232,"src":"3271:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6084,"name":"uint256","nodeType":"ElementaryTypeName","src":"3271:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6087,"initialValue":{"hexValue":"30","id":6086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3292:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3271:22:24"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6088,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3310:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6089,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3318:16:24","memberName":"royaltyRecipient","nodeType":"MemberAccess","referencedDeclaration":5847,"src":"3310:24:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":6092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3346: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":6091,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3338:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6090,"name":"address","nodeType":"ElementaryTypeName","src":"3338:7:24","typeDescriptions":{}}},"id":6093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3338:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3310:38:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6095,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3352:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6096,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3360:17:24","memberName":"royaltyPercentage","nodeType":"MemberAccess","referencedDeclaration":5845,"src":"3352:25:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3380:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3352:29:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3310:71:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6112,"nodeType":"IfStatement","src":"3306:168:24","trueBody":{"id":6111,"nodeType":"Block","src":"3383:91:24","statements":[{"expression":{"id":6109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6100,"name":"royaltyFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6085,"src":"3398:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6101,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3412:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6102,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3420:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"3412:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":6103,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3428:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6104,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3436:17:24","memberName":"royaltyPercentage","nodeType":"MemberAccess","referencedDeclaration":5845,"src":"3428:25:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3412:41:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6106,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3411:43:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":6107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3457:5:24","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"3411:51:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3398:64:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6110,"nodeType":"ExpressionStatement","src":"3398:64:24"}]}},{"assignments":[6114],"declarations":[{"constant":false,"id":6114,"mutability":"mutable","name":"sellerProceeds","nameLocation":"3494:14:24","nodeType":"VariableDeclaration","scope":6232,"src":"3486:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6113,"name":"uint256","nodeType":"ElementaryTypeName","src":"3486:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6121,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6115,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3511:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6116,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3519:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"3511:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6117,"name":"marketplaceFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6075,"src":"3527:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3511:30:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6119,"name":"royaltyFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6085,"src":"3544:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3511:43:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3486:68:24"},{"expression":{"arguments":[{"arguments":[{"id":6128,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3609:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}],"id":6127,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3601:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6126,"name":"address","nodeType":"ElementaryTypeName","src":"3601:7:24","typeDescriptions":{}}},"id":6129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3601:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":6130,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3616:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3620:6:24","memberName":"sender","nodeType":"MemberAccess","src":"3616:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6132,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6036,"src":"3628:7: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":{"arguments":[{"id":6123,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6034,"src":"3575:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6122,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2649,"src":"3567:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$2649_$","typeString":"type(contract IERC721)"}},"id":6124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3567:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"}},"id":6125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3588:12:24","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":2614,"src":"3567:33:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256) external"}},"id":6133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3567:69:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6134,"nodeType":"ExpressionStatement","src":"3567:69:24"},{"assignments":[6136,null],"declarations":[{"constant":false,"id":6136,"mutability":"mutable","name":"feeSuccess","nameLocation":"3655:10:24","nodeType":"VariableDeclaration","scope":6232,"src":"3650:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6135,"name":"bool","nodeType":"ElementaryTypeName","src":"3650:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":6143,"initialValue":{"arguments":[{"hexValue":"","id":6141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3712:2:24","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":6137,"name":"feeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"3671:12:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3684:4:24","memberName":"call","nodeType":"MemberAccess","src":"3671:17:24","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":6140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6139,"name":"marketplaceFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6075,"src":"3696:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"3671:40:24","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":6142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3671:44:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3649:66:24"},{"expression":{"arguments":[{"id":6145,"name":"feeSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6136,"src":"3734:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"466565207472616e73666572206661696c6564","id":6146,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3746:21:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_5ce83e457e48ac9624285a3c527b5c2f9ccbef788eaf8b73a2271dc0a760bc56","typeString":"literal_string \"Fee transfer failed\""},"value":"Fee transfer failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5ce83e457e48ac9624285a3c527b5c2f9ccbef788eaf8b73a2271dc0a760bc56","typeString":"literal_string \"Fee transfer failed\""}],"id":6144,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3726:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3726:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6148,"nodeType":"ExpressionStatement","src":"3726:42:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6149,"name":"royaltyFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6085,"src":"3785:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3798:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3785:14:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6171,"nodeType":"IfStatement","src":"3781:199:24","trueBody":{"id":6170,"nodeType":"Block","src":"3801:179:24","statements":[{"assignments":[6153,null],"declarations":[{"constant":false,"id":6153,"mutability":"mutable","name":"royaltySuccess","nameLocation":"3822:14:24","nodeType":"VariableDeclaration","scope":6170,"src":"3817:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6152,"name":"bool","nodeType":"ElementaryTypeName","src":"3817:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":6164,"initialValue":{"arguments":[{"hexValue":"","id":6162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3900:2:24","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":6156,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"3850:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6157,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3858:16:24","memberName":"royaltyRecipient","nodeType":"MemberAccess","referencedDeclaration":5847,"src":"3850:24:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6155,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3842:8:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":6154,"name":"address","nodeType":"ElementaryTypeName","src":"3842:8:24","stateMutability":"payable","typeDescriptions":{}}},"id":6158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3842:33:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3876:4:24","memberName":"call","nodeType":"MemberAccess","src":"3842:38:24","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":6161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6160,"name":"royaltyFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6085,"src":"3888:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"3842:57:24","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":6163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3842:61:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3816:87:24"},{"expression":{"arguments":[{"id":6166,"name":"royaltySuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6153,"src":"3926:14:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"526f79616c7479207472616e73666572206661696c6564","id":6167,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3942:25:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_5e4a507e79cd285244aadd216028336554767faff3586a0451e029f521318f35","typeString":"literal_string \"Royalty transfer failed\""},"value":"Royalty transfer failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5e4a507e79cd285244aadd216028336554767faff3586a0451e029f521318f35","typeString":"literal_string \"Royalty transfer failed\""}],"id":6165,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3918:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3918:50:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6169,"nodeType":"ExpressionStatement","src":"3918:50:24"}]}},{"assignments":[6173,null],"declarations":[{"constant":false,"id":6173,"mutability":"mutable","name":"sellerSuccess","nameLocation":"3998:13:24","nodeType":"VariableDeclaration","scope":6232,"src":"3993:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6172,"name":"bool","nodeType":"ElementaryTypeName","src":"3993:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":6184,"initialValue":{"arguments":[{"hexValue":"","id":6182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4069:2:24","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":6176,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"4025:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6177,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4033:6:24","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":5839,"src":"4025:14:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6175,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4017:8:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":6174,"name":"address","nodeType":"ElementaryTypeName","src":"4017:8:24","stateMutability":"payable","typeDescriptions":{}}},"id":6178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4017:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4041:4:24","memberName":"call","nodeType":"MemberAccess","src":"4017:28:24","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":6181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6180,"name":"sellerProceeds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6114,"src":"4053:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4017:51:24","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":6183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4017:55:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3992:80:24"},{"expression":{"arguments":[{"id":6186,"name":"sellerSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6173,"src":"4091:13:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53656c6c6572207061796d656e74206661696c6564","id":6187,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4106:23:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_9635f3464cad837f2a6ae077d6c01cb08304647c39c592628c0a527a9f0ef88e","typeString":"literal_string \"Seller payment failed\""},"value":"Seller payment failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9635f3464cad837f2a6ae077d6c01cb08304647c39c592628c0a527a9f0ef88e","typeString":"literal_string \"Seller payment failed\""}],"id":6185,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4083:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4083:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6189,"nodeType":"ExpressionStatement","src":"4083:47:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6190,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4147:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4151:5:24","memberName":"value","nodeType":"MemberAccess","src":"4147:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":6192,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"4159:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6193,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4167:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"4159:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4147:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6218,"nodeType":"IfStatement","src":"4143:199:24","trueBody":{"id":6217,"nodeType":"Block","src":"4174:168:24","statements":[{"assignments":[6196,null],"declarations":[{"constant":false,"id":6196,"mutability":"mutable","name":"refundSuccess","nameLocation":"4195:13:24","nodeType":"VariableDeclaration","scope":6217,"src":"4190:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6195,"name":"bool","nodeType":"ElementaryTypeName","src":"4190:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":6211,"initialValue":{"arguments":[{"hexValue":"","id":6209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4273:2:24","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":6199,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4222:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4226:6:24","memberName":"sender","nodeType":"MemberAccess","src":"4222:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6198,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4214:8:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":6197,"name":"address","nodeType":"ElementaryTypeName","src":"4214:8:24","stateMutability":"payable","typeDescriptions":{}}},"id":6201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4234:4:24","memberName":"call","nodeType":"MemberAccess","src":"4214:24:24","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":6208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6203,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4246:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4250:5:24","memberName":"value","nodeType":"MemberAccess","src":"4246:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":6205,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"4258:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6206,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4266:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"4258:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4246:25:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4214:58:24","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":6210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:62:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4189:87:24"},{"expression":{"arguments":[{"id":6213,"name":"refundSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6196,"src":"4299:13:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"526566756e64206661696c6564","id":6214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4314:15:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_940ea0545bf4a4779ef86217d18a28c86bb09c07d43dd7635f3da6878953d25e","typeString":"literal_string \"Refund failed\""},"value":"Refund failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_940ea0545bf4a4779ef86217d18a28c86bb09c07d43dd7635f3da6878953d25e","typeString":"literal_string \"Refund failed\""}],"id":6212,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4291:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4291:39:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6216,"nodeType":"ExpressionStatement","src":"4291:39:24"}]}},{"eventCall":{"arguments":[{"id":6220,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6034,"src":"4382:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6221,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6036,"src":"4408:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":6222,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4430:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4434:6:24","memberName":"sender","nodeType":"MemberAccess","src":"4430:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":6224,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"4455:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6225,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4463:6:24","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":5839,"src":"4455:14:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":6226,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6043,"src":"4484:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6227,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4492:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"4484:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6228,"name":"marketplaceFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6075,"src":"4512:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6229,"name":"royaltyFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6085,"src":"4541:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"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"}],"id":6219,"name":"ItemSold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5885,"src":"4359:8:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,address,address,uint256,uint256,uint256)"}},"id":6230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4359:203:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6231,"nodeType":"EmitStatement","src":"4354:208:24"}]},"functionSelector":"9f37092a","id":6233,"implemented":true,"kind":"function","modifiers":[{"id":6039,"kind":"modifierInvocation","modifierName":{"id":6038,"name":"nonReentrant","nameLocations":["2914:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"2914:12:24"},"nodeType":"ModifierInvocation","src":"2914:12:24"}],"name":"buyItem","nameLocation":"2824:7:24","nodeType":"FunctionDefinition","parameters":{"id":6037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6034,"mutability":"mutable","name":"nftContract","nameLocation":"2840:11:24","nodeType":"VariableDeclaration","scope":6233,"src":"2832:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6033,"name":"address","nodeType":"ElementaryTypeName","src":"2832:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6036,"mutability":"mutable","name":"tokenId","nameLocation":"2861:7:24","nodeType":"VariableDeclaration","scope":6233,"src":"2853:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6035,"name":"uint256","nodeType":"ElementaryTypeName","src":"2853:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2831:38:24"},"returnParameters":{"id":6040,"nodeType":"ParameterList","parameters":[],"src":"2932:0:24"},"scope":6602,"src":"2815:1755:24","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":6295,"nodeType":"Block","src":"4684:407:24","statements":[{"assignments":[6244],"declarations":[{"constant":false,"id":6244,"mutability":"mutable","name":"listing","nameLocation":"4710:7:24","nodeType":"VariableDeclaration","scope":6295,"src":"4695:22:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing"},"typeName":{"id":6243,"nodeType":"UserDefinedTypeName","pathNode":{"id":6242,"name":"Listing","nameLocations":["4695:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":5848,"src":"4695:7:24"},"referencedDeclaration":5848,"src":"4695:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing"}},"visibility":"internal"}],"id":6250,"initialValue":{"baseExpression":{"baseExpression":{"id":6245,"name":"listings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5855,"src":"4720:8:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing storage ref))"}},"id":6247,"indexExpression":{"id":6246,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6235,"src":"4729:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4720:21:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing storage ref)"}},"id":6249,"indexExpression":{"id":6248,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6237,"src":"4742:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4720:30:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"nodeType":"VariableDeclarationStatement","src":"4695:55:24"},{"expression":{"arguments":[{"expression":{"id":6252,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6244,"src":"4771:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6253,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4779:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":5843,"src":"4771:14:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4974656d206e6f74206c6973746564","id":6254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4787:17:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_9ffd2686e0054b69ad2df63f5ff39f9f50fb71300163e64ba79e47cfa51996a9","typeString":"literal_string \"Item not listed\""},"value":"Item not listed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9ffd2686e0054b69ad2df63f5ff39f9f50fb71300163e64ba79e47cfa51996a9","typeString":"literal_string \"Item not listed\""}],"id":6251,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4763:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4763:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6256,"nodeType":"ExpressionStatement","src":"4763:42:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6258,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6244,"src":"4824:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6259,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4832:6:24","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":5839,"src":"4824:14:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":6260,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4842:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4846:6:24","memberName":"sender","nodeType":"MemberAccess","src":"4842:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4824:28:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f6e6c792073656c6c65722063616e2063616e63656c","id":6263,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4854:24:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_7b42647f74e4cb5939c692a4c0c6e7992d661537782c60e0e0a213c2070bd5d2","typeString":"literal_string \"Only seller can cancel\""},"value":"Only seller can cancel"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7b42647f74e4cb5939c692a4c0c6e7992d661537782c60e0e0a213c2070bd5d2","typeString":"literal_string \"Only seller can cancel\""}],"id":6257,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4816:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4816:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6265,"nodeType":"ExpressionStatement","src":"4816:63:24"},{"expression":{"id":6273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"baseExpression":{"id":6266,"name":"listings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5855,"src":"4892:8:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing storage ref))"}},"id":6269,"indexExpression":{"id":6267,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6235,"src":"4901:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4892:21:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing storage ref)"}},"id":6270,"indexExpression":{"id":6268,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6237,"src":"4914:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4892:30:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"id":6271,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4923:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":5843,"src":"4892:37:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":6272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4932:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"4892:45:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6274,"nodeType":"ExpressionStatement","src":"4892:45:24"},{"expression":{"arguments":[{"arguments":[{"id":6281,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4992:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}],"id":6280,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4984:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6279,"name":"address","nodeType":"ElementaryTypeName","src":"4984:7:24","typeDescriptions":{}}},"id":6282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4984:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":6283,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4999:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5003:6:24","memberName":"sender","nodeType":"MemberAccess","src":"4999:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6285,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6237,"src":"5011:7: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":{"arguments":[{"id":6276,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6235,"src":"4958:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6275,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2649,"src":"4950:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$2649_$","typeString":"type(contract IERC721)"}},"id":6277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4950:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$2649","typeString":"contract IERC721"}},"id":6278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4971:12:24","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":2614,"src":"4950:33:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256) external"}},"id":6286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4950:69:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6287,"nodeType":"ExpressionStatement","src":"4950:69:24"},{"eventCall":{"arguments":[{"id":6289,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6235,"src":"5050:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6290,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6237,"src":"5063:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":6291,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5072:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5076:6:24","memberName":"sender","nodeType":"MemberAccess","src":"5072:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6288,"name":"ItemCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5893,"src":"5037:12:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$__$","typeString":"function (address,uint256,address)"}},"id":6293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5037:46:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6294,"nodeType":"EmitStatement","src":"5032:51:24"}]},"functionSelector":"b2ddee06","id":6296,"implemented":true,"kind":"function","modifiers":[{"id":6240,"kind":"modifierInvocation","modifierName":{"id":6239,"name":"nonReentrant","nameLocations":["4666:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":170,"src":"4666:12:24"},"nodeType":"ModifierInvocation","src":"4666:12:24"}],"name":"cancelListing","nameLocation":"4587:13:24","nodeType":"FunctionDefinition","parameters":{"id":6238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6235,"mutability":"mutable","name":"nftContract","nameLocation":"4609:11:24","nodeType":"VariableDeclaration","scope":6296,"src":"4601:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6234,"name":"address","nodeType":"ElementaryTypeName","src":"4601:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6237,"mutability":"mutable","name":"tokenId","nameLocation":"4630:7:24","nodeType":"VariableDeclaration","scope":6296,"src":"4622:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6236,"name":"uint256","nodeType":"ElementaryTypeName","src":"4622:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4600:38:24"},"returnParameters":{"id":6241,"nodeType":"ParameterList","parameters":[],"src":"4684:0:24"},"scope":6602,"src":"4578:513:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6342,"nodeType":"Block","src":"5199:308:24","statements":[{"assignments":[6307],"declarations":[{"constant":false,"id":6307,"mutability":"mutable","name":"listing","nameLocation":"5226:7:24","nodeType":"VariableDeclaration","scope":6342,"src":"5210:23:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing"},"typeName":{"id":6306,"nodeType":"UserDefinedTypeName","pathNode":{"id":6305,"name":"Listing","nameLocations":["5210:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":5848,"src":"5210:7:24"},"referencedDeclaration":5848,"src":"5210:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing"}},"visibility":"internal"}],"id":6313,"initialValue":{"baseExpression":{"baseExpression":{"id":6308,"name":"listings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5855,"src":"5236:8:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing storage ref))"}},"id":6310,"indexExpression":{"id":6309,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6298,"src":"5245:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5236:21:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing storage ref)"}},"id":6312,"indexExpression":{"id":6311,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6300,"src":"5258:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5236:30:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"nodeType":"VariableDeclarationStatement","src":"5210:56:24"},{"expression":{"arguments":[{"expression":{"id":6315,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6307,"src":"5287:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing storage pointer"}},"id":6316,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5295:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":5843,"src":"5287:14:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4974656d206e6f74206c6973746564","id":6317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5303:17:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_9ffd2686e0054b69ad2df63f5ff39f9f50fb71300163e64ba79e47cfa51996a9","typeString":"literal_string \"Item not listed\""},"value":"Item not listed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9ffd2686e0054b69ad2df63f5ff39f9f50fb71300163e64ba79e47cfa51996a9","typeString":"literal_string \"Item not listed\""}],"id":6314,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5279:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5279:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6319,"nodeType":"ExpressionStatement","src":"5279:42:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6321,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6307,"src":"5340:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing storage pointer"}},"id":6322,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5348:6:24","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":5839,"src":"5340:14:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":6323,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5358:3:24","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5362:6:24","memberName":"sender","nodeType":"MemberAccess","src":"5358:10:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5340:28:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f6e6c792073656c6c65722063616e20757064617465","id":6326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5370:24:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_03592254f20c1e571c20974e0a202e4f32ff240f9031cc76366a9779f9801089","typeString":"literal_string \"Only seller can update\""},"value":"Only seller can update"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_03592254f20c1e571c20974e0a202e4f32ff240f9031cc76366a9779f9801089","typeString":"literal_string \"Only seller can update\""}],"id":6320,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5332:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5332:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6328,"nodeType":"ExpressionStatement","src":"5332:63:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6330,"name":"newPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6302,"src":"5414:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5425:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5414:12:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5072696365206d7573742062652067726561746572207468616e207a65726f","id":6333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5428:33:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_1e47b80dba3e3bff087af44930a3e1a0b5fb80034194db87f9ae87a93f0935b0","typeString":"literal_string \"Price must be greater than zero\""},"value":"Price must be greater than zero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1e47b80dba3e3bff087af44930a3e1a0b5fb80034194db87f9ae87a93f0935b0","typeString":"literal_string \"Price must be greater than zero\""}],"id":6329,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5406:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5406:56:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6335,"nodeType":"ExpressionStatement","src":"5406:56:24"},{"expression":{"id":6340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":6336,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6307,"src":"5475:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing storage pointer"}},"id":6338,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5483:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"5475:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6339,"name":"newPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6302,"src":"5491:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5475:24:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6341,"nodeType":"ExpressionStatement","src":"5475:24:24"}]},"functionSelector":"e57d6fb7","id":6343,"implemented":true,"kind":"function","modifiers":[],"name":"updatePrice","nameLocation":"5108:11:24","nodeType":"FunctionDefinition","parameters":{"id":6303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6298,"mutability":"mutable","name":"nftContract","nameLocation":"5128:11:24","nodeType":"VariableDeclaration","scope":6343,"src":"5120:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6297,"name":"address","nodeType":"ElementaryTypeName","src":"5120:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6300,"mutability":"mutable","name":"tokenId","nameLocation":"5149:7:24","nodeType":"VariableDeclaration","scope":6343,"src":"5141:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6299,"name":"uint256","nodeType":"ElementaryTypeName","src":"5141:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6302,"mutability":"mutable","name":"newPrice","nameLocation":"5166:8:24","nodeType":"VariableDeclaration","scope":6343,"src":"5158:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6301,"name":"uint256","nodeType":"ElementaryTypeName","src":"5158:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5119:56:24"},"returnParameters":{"id":6304,"nodeType":"ParameterList","parameters":[],"src":"5199:0:24"},"scope":6602,"src":"5099:408:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6381,"nodeType":"Block","src":"5801:268:24","statements":[{"assignments":[6362],"declarations":[{"constant":false,"id":6362,"mutability":"mutable","name":"listing","nameLocation":"5827:7:24","nodeType":"VariableDeclaration","scope":6381,"src":"5812:22:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing"},"typeName":{"id":6361,"nodeType":"UserDefinedTypeName","pathNode":{"id":6360,"name":"Listing","nameLocations":["5812:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":5848,"src":"5812:7:24"},"referencedDeclaration":5848,"src":"5812:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage_ptr","typeString":"struct NFTMarketplace.Listing"}},"visibility":"internal"}],"id":6368,"initialValue":{"baseExpression":{"baseExpression":{"id":6363,"name":"listings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5855,"src":"5837:8:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing storage ref))"}},"id":6365,"indexExpression":{"id":6364,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6345,"src":"5846:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5837:21:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing storage ref)"}},"id":6367,"indexExpression":{"id":6366,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6347,"src":"5859:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5837:30:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"nodeType":"VariableDeclarationStatement","src":"5812:55:24"},{"expression":{"components":[{"expression":{"id":6369,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6362,"src":"5900:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6370,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5908:6:24","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":5839,"src":"5900:14:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":6371,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6362,"src":"5929:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6372,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5937:5:24","memberName":"price","nodeType":"MemberAccess","referencedDeclaration":5841,"src":"5929:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":6373,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6362,"src":"5957:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6374,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5965:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":5843,"src":"5957:14:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":6375,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6362,"src":"5986:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6376,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5994:17:24","memberName":"royaltyPercentage","nodeType":"MemberAccess","referencedDeclaration":5845,"src":"5986:25:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":6377,"name":"listing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6362,"src":"6026:7:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_memory_ptr","typeString":"struct NFTMarketplace.Listing memory"}},"id":6378,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6034:16:24","memberName":"royaltyRecipient","nodeType":"MemberAccess","referencedDeclaration":5847,"src":"6026:24:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":6379,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5885:176:24","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$_t_bool_$_t_uint256_$_t_address_$","typeString":"tuple(address,uint256,bool,uint256,address)"}},"functionReturnParameters":6359,"id":6380,"nodeType":"Return","src":"5878:183:24"}]},"functionSelector":"88700d1c","id":6382,"implemented":true,"kind":"function","modifiers":[],"name":"getListing","nameLocation":"5524:10:24","nodeType":"FunctionDefinition","parameters":{"id":6348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6345,"mutability":"mutable","name":"nftContract","nameLocation":"5543:11:24","nodeType":"VariableDeclaration","scope":6382,"src":"5535:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6344,"name":"address","nodeType":"ElementaryTypeName","src":"5535:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6347,"mutability":"mutable","name":"tokenId","nameLocation":"5564:7:24","nodeType":"VariableDeclaration","scope":6382,"src":"5556:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6346,"name":"uint256","nodeType":"ElementaryTypeName","src":"5556:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5534:38:24"},"returnParameters":{"id":6359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6350,"mutability":"mutable","name":"seller","nameLocation":"5645:6:24","nodeType":"VariableDeclaration","scope":6382,"src":"5637:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6349,"name":"address","nodeType":"ElementaryTypeName","src":"5637:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6352,"mutability":"mutable","name":"price","nameLocation":"5674:5:24","nodeType":"VariableDeclaration","scope":6382,"src":"5666:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6351,"name":"uint256","nodeType":"ElementaryTypeName","src":"5666:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6354,"mutability":"mutable","name":"active","nameLocation":"5699:6:24","nodeType":"VariableDeclaration","scope":6382,"src":"5694:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6353,"name":"bool","nodeType":"ElementaryTypeName","src":"5694:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6356,"mutability":"mutable","name":"royaltyPercentage","nameLocation":"5728:17:24","nodeType":"VariableDeclaration","scope":6382,"src":"5720:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6355,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6358,"mutability":"mutable","name":"royaltyRecipient","nameLocation":"5768:16:24","nodeType":"VariableDeclaration","scope":6382,"src":"5760:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6357,"name":"address","nodeType":"ElementaryTypeName","src":"5760:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5622:173:24"},"scope":6602,"src":"5515:554:24","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":6400,"nodeType":"Block","src":"6151:111:24","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6390,"name":"newFeePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6384,"src":"6170:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31303030","id":6391,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6190:4:24","typeDescriptions":{"typeIdentifier":"t_rational_1000_by_1","typeString":"int_const 1000"},"value":"1000"},"src":"6170:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"46656520746f6f2068696768","id":6393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6196:14:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1","typeString":"literal_string \"Fee too high\""},"value":"Fee too high"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1","typeString":"literal_string \"Fee too high\""}],"id":6389,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6162:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6162:49:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6395,"nodeType":"ExpressionStatement","src":"6162:49:24"},{"expression":{"id":6398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6396,"name":"feePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5837,"src":"6222:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6397,"name":"newFeePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6384,"src":"6238:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6222:32:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6399,"nodeType":"ExpressionStatement","src":"6222:32:24"}]},"functionSelector":"6cad3fb0","id":6401,"implemented":true,"kind":"function","modifiers":[{"id":6387,"kind":"modifierInvocation","modifierName":{"id":6386,"name":"onlyOwner","nameLocations":["6141:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"6141:9:24"},"nodeType":"ModifierInvocation","src":"6141:9:24"}],"name":"updateFeePercentage","nameLocation":"6086:19:24","nodeType":"FunctionDefinition","parameters":{"id":6385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6384,"mutability":"mutable","name":"newFeePercentage","nameLocation":"6114:16:24","nodeType":"VariableDeclaration","scope":6401,"src":"6106:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6383,"name":"uint256","nodeType":"ElementaryTypeName","src":"6106:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6105:26:24"},"returnParameters":{"id":6388,"nodeType":"ParameterList","parameters":[],"src":"6151:0:24"},"scope":6602,"src":"6077:185:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6422,"nodeType":"Block","src":"6350:119:24","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6409,"name":"newFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6403,"src":"6369:15:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":6412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6396: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":6411,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6388:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6410,"name":"address","nodeType":"ElementaryTypeName","src":"6388:7:24","typeDescriptions":{}}},"id":6413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6388:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6369:29:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420726563697069656e74","id":6415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6400:19:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_a6664b97aef19c137d44ec81dfc0c0cc28a2c3470357b125208345a2c048425d","typeString":"literal_string \"Invalid recipient\""},"value":"Invalid recipient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a6664b97aef19c137d44ec81dfc0c0cc28a2c3470357b125208345a2c048425d","typeString":"literal_string \"Invalid recipient\""}],"id":6408,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6361:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6361:59:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6417,"nodeType":"ExpressionStatement","src":"6361:59:24"},{"expression":{"id":6420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6418,"name":"feeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"6431:12:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6419,"name":"newFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6403,"src":"6446:15:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"src":"6431:30:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6421,"nodeType":"ExpressionStatement","src":"6431:30:24"}]},"functionSelector":"f160d369","id":6423,"implemented":true,"kind":"function","modifiers":[{"id":6406,"kind":"modifierInvocation","modifierName":{"id":6405,"name":"onlyOwner","nameLocations":["6340:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"6340:9:24"},"nodeType":"ModifierInvocation","src":"6340:9:24"}],"name":"updateFeeRecipient","nameLocation":"6279:18:24","nodeType":"FunctionDefinition","parameters":{"id":6404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6403,"mutability":"mutable","name":"newFeeRecipient","nameLocation":"6314:15:24","nodeType":"VariableDeclaration","scope":6423,"src":"6298:31:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":6402,"name":"address","nodeType":"ElementaryTypeName","src":"6298:15:24","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6297:33:24"},"returnParameters":{"id":6407,"nodeType":"ParameterList","parameters":[],"src":"6350:0:24"},"scope":6602,"src":"6270:199:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6438,"nodeType":"Block","src":"6594:67:24","statements":[{"expression":{"id":6436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":6432,"name":"supportedTokenStandards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5859,"src":"6605:23:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":6434,"indexExpression":{"id":6433,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6425,"src":"6629:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6605:36:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6435,"name":"supported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6427,"src":"6644:9:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6605:48:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6437,"nodeType":"ExpressionStatement","src":"6605:48:24"}]},"functionSelector":"58a72ad0","id":6439,"implemented":true,"kind":"function","modifiers":[{"id":6430,"kind":"modifierInvocation","modifierName":{"id":6429,"name":"onlyOwner","nameLocations":["6579:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"6579:9:24"},"nodeType":"ModifierInvocation","src":"6579:9:24"}],"name":"updateSupportedTokenStandard","nameLocation":"6486:28:24","nodeType":"FunctionDefinition","parameters":{"id":6428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6425,"mutability":"mutable","name":"nftContract","nameLocation":"6523:11:24","nodeType":"VariableDeclaration","scope":6439,"src":"6515:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6424,"name":"address","nodeType":"ElementaryTypeName","src":"6515:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6427,"mutability":"mutable","name":"supported","nameLocation":"6541:9:24","nodeType":"VariableDeclaration","scope":6439,"src":"6536:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6426,"name":"bool","nodeType":"ElementaryTypeName","src":"6536:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6514:37:24"},"returnParameters":{"id":6431,"nodeType":"ParameterList","parameters":[],"src":"6594:0:24"},"scope":6602,"src":"6477:184:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6455,"nodeType":"Block","src":"6786:63:24","statements":[{"expression":{"expression":{"baseExpression":{"baseExpression":{"id":6448,"name":"listings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5855,"src":"6804:8:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct NFTMarketplace.Listing storage ref))"}},"id":6450,"indexExpression":{"id":6449,"name":"nftContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6441,"src":"6813:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6804:21:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Listing_$5848_storage_$","typeString":"mapping(uint256 => struct NFTMarketplace.Listing storage ref)"}},"id":6452,"indexExpression":{"id":6451,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6443,"src":"6826:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6804:30:24","typeDescriptions":{"typeIdentifier":"t_struct$_Listing_$5848_storage","typeString":"struct NFTMarketplace.Listing storage ref"}},"id":6453,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6835:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":5843,"src":"6804:37:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":6447,"id":6454,"nodeType":"Return","src":"6797:44:24"}]},"functionSelector":"cdb3cd25","id":6456,"implemented":true,"kind":"function","modifiers":[],"name":"isListed","nameLocation":"6678:8:24","nodeType":"FunctionDefinition","parameters":{"id":6444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6441,"mutability":"mutable","name":"nftContract","nameLocation":"6695:11:24","nodeType":"VariableDeclaration","scope":6456,"src":"6687:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6440,"name":"address","nodeType":"ElementaryTypeName","src":"6687:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6443,"mutability":"mutable","name":"tokenId","nameLocation":"6716:7:24","nodeType":"VariableDeclaration","scope":6456,"src":"6708:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6442,"name":"uint256","nodeType":"ElementaryTypeName","src":"6708:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6686:38:24"},"returnParameters":{"id":6447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6446,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6456,"src":"6775:4:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6445,"name":"bool","nodeType":"ElementaryTypeName","src":"6775:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6774:6:24"},"scope":6602,"src":"6669:180:24","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":6495,"nodeType":"Block","src":"7093:187:24","statements":[{"expression":{"id":6476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6469,"name":"marketplaceFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6463,"src":"7104:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6470,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6458,"src":"7122:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":6471,"name":"feePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5837,"src":"7130:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7122:21:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6473,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7121:23:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":6474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7147:5:24","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"7121:31:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7104:48:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6477,"nodeType":"ExpressionStatement","src":"7104:48:24"},{"expression":{"id":6485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6478,"name":"royaltyFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6465,"src":"7163:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6479,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6458,"src":"7177:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":6480,"name":"royaltyPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6460,"src":"7185:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7177:25:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6482,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7176:27:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":6483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7206:5:24","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"7176:35:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7163:48:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6486,"nodeType":"ExpressionStatement","src":"7163:48:24"},{"expression":{"id":6493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6487,"name":"sellerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6467,"src":"7222:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6488,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6458,"src":"7237:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6489,"name":"marketplaceFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6463,"src":"7245:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7237:22:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6491,"name":"royaltyFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6465,"src":"7262:10:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7237:35:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7222:50:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6494,"nodeType":"ExpressionStatement","src":"7222:50:24"}]},"functionSelector":"7096335b","id":6496,"implemented":true,"kind":"function","modifiers":[],"name":"calculateFees","nameLocation":"6866:13:24","nodeType":"FunctionDefinition","parameters":{"id":6461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6458,"mutability":"mutable","name":"price","nameLocation":"6888:5:24","nodeType":"VariableDeclaration","scope":6496,"src":"6880:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6457,"name":"uint256","nodeType":"ElementaryTypeName","src":"6880:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6460,"mutability":"mutable","name":"royaltyPercentage","nameLocation":"6903:17:24","nodeType":"VariableDeclaration","scope":6496,"src":"6895:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6459,"name":"uint256","nodeType":"ElementaryTypeName","src":"6895:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6879:42:24"},"returnParameters":{"id":6468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6463,"mutability":"mutable","name":"marketplaceFee","nameLocation":"6994:14:24","nodeType":"VariableDeclaration","scope":6496,"src":"6986:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6462,"name":"uint256","nodeType":"ElementaryTypeName","src":"6986:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6465,"mutability":"mutable","name":"royaltyFee","nameLocation":"7031:10:24","nodeType":"VariableDeclaration","scope":6496,"src":"7023:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6464,"name":"uint256","nodeType":"ElementaryTypeName","src":"7023:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6467,"mutability":"mutable","name":"sellerAmount","nameLocation":"7064:12:24","nodeType":"VariableDeclaration","scope":6496,"src":"7056:20:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6466,"name":"uint256","nodeType":"ElementaryTypeName","src":"7056:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6971:116:24"},"scope":6602,"src":"6857:423:24","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":6530,"nodeType":"Block","src":"7334:232:24","statements":[{"assignments":[6502],"declarations":[{"constant":false,"id":6502,"mutability":"mutable","name":"balance","nameLocation":"7353:7:24","nodeType":"VariableDeclaration","scope":6530,"src":"7345:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6501,"name":"uint256","nodeType":"ElementaryTypeName","src":"7345:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6508,"initialValue":{"expression":{"arguments":[{"id":6505,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7371:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}],"id":6504,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7363:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6503,"name":"address","nodeType":"ElementaryTypeName","src":"7363:7:24","typeDescriptions":{}}},"id":6506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7363:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7377:7:24","memberName":"balance","nodeType":"MemberAccess","src":"7363:21:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7345:39:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6510,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6502,"src":"7403:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6511,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7413:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7403:11:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f2062616c616e636520746f207769746864726177","id":6513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7416:24:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5","typeString":"literal_string \"No balance to withdraw\""},"value":"No balance to withdraw"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5","typeString":"literal_string \"No balance to withdraw\""}],"id":6509,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7395:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7395:46:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6515,"nodeType":"ExpressionStatement","src":"7395:46:24"},{"assignments":[6517,null],"declarations":[{"constant":false,"id":6517,"mutability":"mutable","name":"success","nameLocation":"7460:7:24","nodeType":"VariableDeclaration","scope":6530,"src":"7455:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6516,"name":"bool","nodeType":"ElementaryTypeName","src":"7455:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":6524,"initialValue":{"arguments":[{"hexValue":"","id":6522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7507:2:24","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":6518,"name":"feeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5835,"src":"7473:12:24","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7486:4:24","memberName":"call","nodeType":"MemberAccess","src":"7473:17:24","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":6521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6520,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6502,"src":"7498:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"7473:33:24","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":6523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7473:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7454:56:24"},{"expression":{"arguments":[{"id":6526,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6517,"src":"7529:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5769746864726177616c206661696c6564","id":6527,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7538:19:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88","typeString":"literal_string \"Withdrawal failed\""},"value":"Withdrawal failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88","typeString":"literal_string \"Withdrawal failed\""}],"id":6525,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7521:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7521:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6529,"nodeType":"ExpressionStatement","src":"7521:37:24"}]},"functionSelector":"5fd8c710","id":6531,"implemented":true,"kind":"function","modifiers":[{"id":6499,"kind":"modifierInvocation","modifierName":{"id":6498,"name":"onlyOwner","nameLocations":["7324:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"7324:9:24"},"nodeType":"ModifierInvocation","src":"7324:9:24"}],"name":"withdrawBalance","nameLocation":"7297:15:24","nodeType":"FunctionDefinition","parameters":{"id":6497,"nodeType":"ParameterList","parameters":[],"src":"7312:2:24"},"returnParameters":{"id":6500,"nodeType":"ParameterList","parameters":[],"src":"7334:0:24"},"scope":6602,"src":"7288:278:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6562,"nodeType":"Block","src":"7622:187:24","statements":[{"assignments":[6537],"declarations":[{"constant":false,"id":6537,"mutability":"mutable","name":"balance","nameLocation":"7641:7:24","nodeType":"VariableDeclaration","scope":6562,"src":"7633:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6536,"name":"uint256","nodeType":"ElementaryTypeName","src":"7633:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6543,"initialValue":{"expression":{"arguments":[{"id":6540,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7659:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}],"id":6539,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7651:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6538,"name":"address","nodeType":"ElementaryTypeName","src":"7651:7:24","typeDescriptions":{}}},"id":6541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7651:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7665:7:24","memberName":"balance","nodeType":"MemberAccess","src":"7651:21:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7633:39:24"},{"assignments":[6545,null],"declarations":[{"constant":false,"id":6545,"mutability":"mutable","name":"success","nameLocation":"7689:7:24","nodeType":"VariableDeclaration","scope":6562,"src":"7684:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6544,"name":"bool","nodeType":"ElementaryTypeName","src":"7684:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":6556,"initialValue":{"arguments":[{"hexValue":"","id":6554,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7740:2:24","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":[{"arguments":[],"expression":{"argumentTypes":[],"id":6548,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"7710:5:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7710:7:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6547,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7702:8:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":6546,"name":"address","nodeType":"ElementaryTypeName","src":"7702:8:24","stateMutability":"payable","typeDescriptions":{}}},"id":6550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7702:16:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7719:4:24","memberName":"call","nodeType":"MemberAccess","src":"7702:21:24","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":6553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6552,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6537,"src":"7731:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"7702:37:24","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":6555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7702:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7683:60:24"},{"expression":{"arguments":[{"id":6558,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"7762:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d657267656e6379207769746864726177616c206661696c6564","id":6559,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7771:29:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_bebce1acbd721ba064bed4bcb96d237355e9f4d6213d2899b887808ad9a9e358","typeString":"literal_string \"Emergency withdrawal failed\""},"value":"Emergency withdrawal failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bebce1acbd721ba064bed4bcb96d237355e9f4d6213d2899b887808ad9a9e358","typeString":"literal_string \"Emergency withdrawal failed\""}],"id":6557,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7754:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7754:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6561,"nodeType":"ExpressionStatement","src":"7754:47:24"}]},"functionSelector":"db2e21bc","id":6563,"implemented":true,"kind":"function","modifiers":[{"id":6534,"kind":"modifierInvocation","modifierName":{"id":6533,"name":"onlyOwner","nameLocations":["7612:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"7612:9:24"},"nodeType":"ModifierInvocation","src":"7612:9:24"}],"name":"emergencyWithdraw","nameLocation":"7583:17:24","nodeType":"FunctionDefinition","parameters":{"id":6532,"nodeType":"ParameterList","parameters":[],"src":"7600:2:24"},"returnParameters":{"id":6535,"nodeType":"ParameterList","parameters":[],"src":"7622:0:24"},"scope":6602,"src":"7574:235:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6580,"nodeType":"Block","src":"7960:56:24","statements":[{"expression":{"expression":{"expression":{"id":6576,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7978:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_NFTMarketplace_$6602","typeString":"contract NFTMarketplace"}},"id":6577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7983:16:24","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":6581,"src":"7978:21:24","typeDescriptions":{"typeIdentifier":"t_function_external_pure$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,bytes memory) pure external returns (bytes4)"}},"id":6578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8000:8:24","memberName":"selector","nodeType":"MemberAccess","src":"7978:30:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":6575,"id":6579,"nodeType":"Return","src":"7971:37:24"}]},"functionSelector":"150b7a02","id":6581,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"7826:16:24","nodeType":"FunctionDefinition","parameters":{"id":6572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6565,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6581,"src":"7853:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6564,"name":"address","nodeType":"ElementaryTypeName","src":"7853:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6567,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6581,"src":"7871:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6566,"name":"address","nodeType":"ElementaryTypeName","src":"7871:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6569,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6581,"src":"7889:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6568,"name":"uint256","nodeType":"ElementaryTypeName","src":"7889:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6571,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6581,"src":"7907:14:24","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6570,"name":"bytes","nodeType":"ElementaryTypeName","src":"7907:5:24","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7842:86:24"},"returnParameters":{"id":6575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6574,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6581,"src":"7952:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6573,"name":"bytes4","nodeType":"ElementaryTypeName","src":"7952:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"7951:8:24"},"scope":6602,"src":"7817:199:24","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":6596,"nodeType":"Block","src":"8100:131:24","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":6590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6588,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6583,"src":"8118:11:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783031666663396137","id":6589,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8133:10:24","typeDescriptions":{"typeIdentifier":"t_rational_33540519_by_1","typeString":"int_const 33540519"},"value":"0x01ffc9a7"},"src":"8118:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":6593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6591,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6583,"src":"8173:11:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783135306237613032","id":6592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8188:10:24","typeDescriptions":{"typeIdentifier":"t_rational_353073666_by_1","typeString":"int_const 353073666"},"value":"0x150b7a02"},"src":"8173:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8118:80:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":6587,"id":6595,"nodeType":"Return","src":"8111:87:24"}]},"functionSelector":"01ffc9a7","id":6597,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"8033:17:24","nodeType":"FunctionDefinition","parameters":{"id":6584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6583,"mutability":"mutable","name":"interfaceId","nameLocation":"8058:11:24","nodeType":"VariableDeclaration","scope":6597,"src":"8051:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6582,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8051:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8050:20:24"},"returnParameters":{"id":6587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6586,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6597,"src":"8094:4:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6585,"name":"bool","nodeType":"ElementaryTypeName","src":"8094:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8093:6:24"},"scope":6602,"src":"8024:207:24","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":6600,"nodeType":"Block","src":"8266:2:24","statements":[]},"id":6601,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":6598,"nodeType":"ParameterList","parameters":[],"src":"8246:2:24"},"returnParameters":{"id":6599,"nodeType":"ParameterList","parameters":[],"src":"8266:0:24"},"scope":6602,"src":"8239:29:24","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":6603,"src":"413:7858:24","usedErrors":[]}],"src":"33:8240:24"},"id":24}},"contracts":{"@openzeppelin/contracts/access/Ownable.sol":{"Ownable":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"owner()":"8da5cb5b","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC4906.sol":{"IERC4906":{"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":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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.19+commit.7dd6d404\"},\"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\":false,\"internalType\":\"uint256\",\"name\":\"_fromTokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_toTokenId\",\"type\":\"uint256\"}],\"name\":\"BatchMetadataUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"MetadataUpdate\",\"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\":{\"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.\"},\"BatchMetadataUpdate(uint256,uint256)\":{\"details\":\"This event emits when the metadata of a range of tokens is changed. So that the third-party platforms such as NFT market could timely update the images and related attributes of the NFTs.\"},\"MetadataUpdate(uint256)\":{\"details\":\"This event emits when the metadata of a token is changed. So that the third-party platforms such as NFT market could timely update the images and related attributes of the NFT.\"},\"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 ERC721 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 caller. 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[EIP 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 ERC721 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\":\"EIP-721 Metadata Update Extension\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC4906.sol\":\"IERC4906\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xd04b0f06e0666f29cf7cccc82894de541e19bb30a765b107b1e40bb7fe5f7d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7b652499d098e88d8d878374616bb58434301061cae2253298b3f374044e0ddb\",\"dweb:/ipfs/QmbhAzctqo5jrSKU6idHdVyqfmzCcDbNUPvmx4GiXxfA6q\"]},\"@openzeppelin/contracts/interfaces/IERC4906.sol\":{\"keccak256\":\"0x2a9dadb806be80dd451821f1f1190eb9aa6f6edae85b185db29d60767cc0c5f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c25cac8dbe5bd96320053d23c3dacdb875e629d7c53ac00892eb7aa8500bde6\",\"dweb:/ipfs/Qmaf2oqbxxdJA9DphAoH4UCb8aXEAVM8fnu6qMxHJ5ta4A\"]},\"@openzeppelin/contracts/interfaces/IERC721.sol\":{\"keccak256\":\"0xaf297d12d8d4a57fe01a70f0ef38908f208e3faedc577056d0b728fa2f3ccf0c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fbfaf37123958822a2720a4ea29651be00edab787540b770f73d3e025d286ff8\",\"dweb:/ipfs/QmbzgWeTm8hJVUqWrNAwFjshqbYVyeGpQA8D1huzxQdmw6\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5bce51e11f7d194b79ea59fe00c9e8de9fa2c5530124960f29a24d4c740a3266\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e66dfde185df46104c11bc89d08fa0760737aa59a2b8546a656473d810a8ea4\",\"dweb:/ipfs/QmXvyqtXPaPss2PD7eqPoSao5Szm2n6UMoiG8TZZDjmChR\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/security/ReentrancyGuard.sol":{"ReentrancyGuard":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"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 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].\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41319e7f621f2dc3733511332c4fd032f8e32ad2aa7fd6f665c19741d9941a34\",\"dweb:/ipfs/QmcYR3bd862GD1Bc7jwrU9bGxrhUu5na1oP964bDCu2id1\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC1155/ERC1155.sol":{"ERC1155":{"abi":[{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_250":{"entryPoint":null,"id":250,"parameterSlots":1,"returnSlots":0},"@_setURI_761":{"entryPoint":70,"id":761,"parameterSlots":1,"returnSlots":0},"abi_decode_tuple_t_string_memory_ptr_fromMemory":{"entryPoint":110,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":383,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":466,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":323,"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":88,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:3779:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:25"},"nodeType":"YulFunctionCall","src":"66:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:25"},"nodeType":"YulFunctionCall","src":"56:31:25"},"nodeType":"YulExpressionStatement","src":"56:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:25","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:25"},"nodeType":"YulFunctionCall","src":"96:15:25"},"nodeType":"YulExpressionStatement","src":"96:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:25"},"nodeType":"YulFunctionCall","src":"120:15:25"},"nodeType":"YulExpressionStatement","src":"120:15:25"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:25"},{"body":{"nodeType":"YulBlock","src":"237:951:25","statements":[{"nodeType":"YulVariableDeclaration","src":"247:12:25","value":{"kind":"number","nodeType":"YulLiteral","src":"257:2:25","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"251:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"304:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"313:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"316:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"306:6:25"},"nodeType":"YulFunctionCall","src":"306:12:25"},"nodeType":"YulExpressionStatement","src":"306:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"279:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"288:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"275:3:25"},"nodeType":"YulFunctionCall","src":"275:23:25"},{"name":"_1","nodeType":"YulIdentifier","src":"300:2:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"271:3:25"},"nodeType":"YulFunctionCall","src":"271:32:25"},"nodeType":"YulIf","src":"268:52:25"},{"nodeType":"YulVariableDeclaration","src":"329:30:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"349:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"343:5:25"},"nodeType":"YulFunctionCall","src":"343:16:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"333:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"368:28:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"386:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"390:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"382:3:25"},"nodeType":"YulFunctionCall","src":"382:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"394:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"378:3:25"},"nodeType":"YulFunctionCall","src":"378:18:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"372:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"423:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"432:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"435:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"425:6:25"},"nodeType":"YulFunctionCall","src":"425:12:25"},"nodeType":"YulExpressionStatement","src":"425:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"411:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"419:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"408:2:25"},"nodeType":"YulFunctionCall","src":"408:14:25"},"nodeType":"YulIf","src":"405:34:25"},{"nodeType":"YulVariableDeclaration","src":"448:32:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"462:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"473:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"458:3:25"},"nodeType":"YulFunctionCall","src":"458:22:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"452:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"528:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"537:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"540:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"530:6:25"},"nodeType":"YulFunctionCall","src":"530:12:25"},"nodeType":"YulExpressionStatement","src":"530:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"507:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"511:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"503:3:25"},"nodeType":"YulFunctionCall","src":"503:13:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"518:7:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"499:3:25"},"nodeType":"YulFunctionCall","src":"499:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"492:6:25"},"nodeType":"YulFunctionCall","src":"492:35:25"},"nodeType":"YulIf","src":"489:55:25"},{"nodeType":"YulVariableDeclaration","src":"553:19:25","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"569:2:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"563:5:25"},"nodeType":"YulFunctionCall","src":"563:9:25"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"557:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"595:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"597:16:25"},"nodeType":"YulFunctionCall","src":"597:18:25"},"nodeType":"YulExpressionStatement","src":"597:18:25"}]},"condition":{"arguments":[{"name":"_4","nodeType":"YulIdentifier","src":"587:2:25"},{"name":"_2","nodeType":"YulIdentifier","src":"591:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"584:2:25"},"nodeType":"YulFunctionCall","src":"584:10:25"},"nodeType":"YulIf","src":"581:36:25"},{"nodeType":"YulVariableDeclaration","src":"626:17:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"640:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"636:3:25"},"nodeType":"YulFunctionCall","src":"636:7:25"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"630:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"652:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"672:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"666:5:25"},"nodeType":"YulFunctionCall","src":"666:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"656:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"684:71:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"706:6:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_4","nodeType":"YulIdentifier","src":"730:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"734:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"726:3:25"},"nodeType":"YulFunctionCall","src":"726:13:25"},{"name":"_5","nodeType":"YulIdentifier","src":"741:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"722:3:25"},"nodeType":"YulFunctionCall","src":"722:22:25"},{"kind":"number","nodeType":"YulLiteral","src":"746:2:25","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"718:3:25"},"nodeType":"YulFunctionCall","src":"718:31:25"},{"name":"_5","nodeType":"YulIdentifier","src":"751:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"714:3:25"},"nodeType":"YulFunctionCall","src":"714:40:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"702:3:25"},"nodeType":"YulFunctionCall","src":"702:53:25"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"688:10:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"814:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"816:16:25"},"nodeType":"YulFunctionCall","src":"816:18:25"},"nodeType":"YulExpressionStatement","src":"816:18:25"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"773:10:25"},{"name":"_2","nodeType":"YulIdentifier","src":"785:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"770:2:25"},"nodeType":"YulFunctionCall","src":"770:18:25"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"793:10:25"},{"name":"memPtr","nodeType":"YulIdentifier","src":"805:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"790:2:25"},"nodeType":"YulFunctionCall","src":"790:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"767:2:25"},"nodeType":"YulFunctionCall","src":"767:46:25"},"nodeType":"YulIf","src":"764:72:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"852:2:25","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"856:10:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"845:6:25"},"nodeType":"YulFunctionCall","src":"845:22:25"},"nodeType":"YulExpressionStatement","src":"845:22:25"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"883:6:25"},{"name":"_4","nodeType":"YulIdentifier","src":"891:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"876:6:25"},"nodeType":"YulFunctionCall","src":"876:18:25"},"nodeType":"YulExpressionStatement","src":"876:18:25"},{"body":{"nodeType":"YulBlock","src":"940:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"949:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"952:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"942:6:25"},"nodeType":"YulFunctionCall","src":"942:12:25"},"nodeType":"YulExpressionStatement","src":"942:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"917:2:25"},{"name":"_4","nodeType":"YulIdentifier","src":"921:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"913:3:25"},"nodeType":"YulFunctionCall","src":"913:11:25"},{"name":"_1","nodeType":"YulIdentifier","src":"926:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"909:3:25"},"nodeType":"YulFunctionCall","src":"909:20:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"931:7:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"906:2:25"},"nodeType":"YulFunctionCall","src":"906:33:25"},"nodeType":"YulIf","src":"903:53:25"},{"nodeType":"YulVariableDeclaration","src":"965:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"974:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"969:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1030:83:25","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1059:6:25"},{"name":"i","nodeType":"YulIdentifier","src":"1067:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1055:3:25"},"nodeType":"YulFunctionCall","src":"1055:14:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1071:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1051:3:25"},"nodeType":"YulFunctionCall","src":"1051:23:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1090:2:25"},{"name":"i","nodeType":"YulIdentifier","src":"1094:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1086:3:25"},"nodeType":"YulFunctionCall","src":"1086:10:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1098:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1082:3:25"},"nodeType":"YulFunctionCall","src":"1082:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1076:5:25"},"nodeType":"YulFunctionCall","src":"1076:26:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1044:6:25"},"nodeType":"YulFunctionCall","src":"1044:59:25"},"nodeType":"YulExpressionStatement","src":"1044:59:25"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"995:1:25"},{"name":"_4","nodeType":"YulIdentifier","src":"998:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"992:2:25"},"nodeType":"YulFunctionCall","src":"992:9:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"1002:19:25","statements":[{"nodeType":"YulAssignment","src":"1004:15:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1013:1:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1016:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1009:3:25"},"nodeType":"YulFunctionCall","src":"1009:10:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"1004:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"988:3:25","statements":[]},"src":"984:129:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1137:6:25"},{"name":"_4","nodeType":"YulIdentifier","src":"1145:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1133:3:25"},"nodeType":"YulFunctionCall","src":"1133:15:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1150:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1129:3:25"},"nodeType":"YulFunctionCall","src":"1129:24:25"},{"kind":"number","nodeType":"YulLiteral","src":"1155:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1122:6:25"},"nodeType":"YulFunctionCall","src":"1122:35:25"},"nodeType":"YulExpressionStatement","src":"1122:35:25"},{"nodeType":"YulAssignment","src":"1166:16:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"1176:6:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1166:6:25"}]}]},"name":"abi_decode_tuple_t_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"203:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"214:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"226:6:25","type":""}],"src":"146:1042:25"},{"body":{"nodeType":"YulBlock","src":"1248:325:25","statements":[{"nodeType":"YulAssignment","src":"1258:22:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1272:1:25","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"1275:4:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"1268:3:25"},"nodeType":"YulFunctionCall","src":"1268:12:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1258:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"1289:38:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"1319:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"1325:1:25","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1315:3:25"},"nodeType":"YulFunctionCall","src":"1315:12:25"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"1293:18:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1366:31:25","statements":[{"nodeType":"YulAssignment","src":"1368:27:25","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1382:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"1390:4:25","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1378:3:25"},"nodeType":"YulFunctionCall","src":"1378:17:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1368:6:25"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1346:18:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1339:6:25"},"nodeType":"YulFunctionCall","src":"1339:26:25"},"nodeType":"YulIf","src":"1336:61:25"},{"body":{"nodeType":"YulBlock","src":"1456:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1477:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1484:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1489:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1480:3:25"},"nodeType":"YulFunctionCall","src":"1480:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1470:6:25"},"nodeType":"YulFunctionCall","src":"1470:31:25"},"nodeType":"YulExpressionStatement","src":"1470:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1521:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1524:4:25","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1514:6:25"},"nodeType":"YulFunctionCall","src":"1514:15:25"},"nodeType":"YulExpressionStatement","src":"1514:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1549:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1552:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1542:6:25"},"nodeType":"YulFunctionCall","src":"1542:15:25"},"nodeType":"YulExpressionStatement","src":"1542:15:25"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1412:18:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1435:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"1443:2:25","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1432:2:25"},"nodeType":"YulFunctionCall","src":"1432:14:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1409:2:25"},"nodeType":"YulFunctionCall","src":"1409:38:25"},"nodeType":"YulIf","src":"1406:161:25"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"1228:4:25","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"1237:6:25","type":""}],"src":"1193:380:25"},{"body":{"nodeType":"YulBlock","src":"1634:65:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1651:1:25","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"1654:3:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1644:6:25"},"nodeType":"YulFunctionCall","src":"1644:14:25"},"nodeType":"YulExpressionStatement","src":"1644:14:25"},{"nodeType":"YulAssignment","src":"1667:26:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1685:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1688:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"1675:9:25"},"nodeType":"YulFunctionCall","src":"1675:18:25"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"1667:4:25"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"1617:3:25","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"1625:4:25","type":""}],"src":"1578:121:25"},{"body":{"nodeType":"YulBlock","src":"1785:464:25","statements":[{"body":{"nodeType":"YulBlock","src":"1818:425:25","statements":[{"nodeType":"YulVariableDeclaration","src":"1832:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"1842:1:25","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1836:2:25","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"1863:2:25"},{"name":"array","nodeType":"YulIdentifier","src":"1867:5:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1856:6:25"},"nodeType":"YulFunctionCall","src":"1856:17:25"},"nodeType":"YulExpressionStatement","src":"1856:17:25"},{"nodeType":"YulVariableDeclaration","src":"1886:31:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"1908:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"1912:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"1898:9:25"},"nodeType":"YulFunctionCall","src":"1898:19:25"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"1890:4:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1930:57:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"1953:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1963:1:25","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"1970:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"1982:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1966:3:25"},"nodeType":"YulFunctionCall","src":"1966:19:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"1959:3:25"},"nodeType":"YulFunctionCall","src":"1959:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1949:3:25"},"nodeType":"YulFunctionCall","src":"1949:38:25"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"1934:11:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2024:23:25","statements":[{"nodeType":"YulAssignment","src":"2026:19:25","value":{"name":"data","nodeType":"YulIdentifier","src":"2041:4:25"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"2026:11:25"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2006:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"2018:4:25","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2003:2:25"},"nodeType":"YulFunctionCall","src":"2003:20:25"},"nodeType":"YulIf","src":"2000:47:25"},{"nodeType":"YulVariableDeclaration","src":"2060:41:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2074:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2084:1:25","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2091:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"2096:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2087:3:25"},"nodeType":"YulFunctionCall","src":"2087:12:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2080:3:25"},"nodeType":"YulFunctionCall","src":"2080:20:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2070:3:25"},"nodeType":"YulFunctionCall","src":"2070:31:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"2064:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2114:24:25","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"2127:11:25"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"2118:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2212:21:25","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2221:5:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2228:2:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2214:6:25"},"nodeType":"YulFunctionCall","src":"2214:17:25"},"nodeType":"YulExpressionStatement","src":"2214:17:25"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2162:5:25"},{"name":"_2","nodeType":"YulIdentifier","src":"2169:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2159:2:25"},"nodeType":"YulFunctionCall","src":"2159:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2173:26:25","statements":[{"nodeType":"YulAssignment","src":"2175:22:25","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2188:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"2195:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2184:3:25"},"nodeType":"YulFunctionCall","src":"2184:13:25"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"2175:5:25"}]}]},"pre":{"nodeType":"YulBlock","src":"2155:3:25","statements":[]},"src":"2151:82:25"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"1801:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"1806:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1798:2:25"},"nodeType":"YulFunctionCall","src":"1798:11:25"},"nodeType":"YulIf","src":"1795:448:25"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"1757:5:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"1764:3:25","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"1769:10:25","type":""}],"src":"1704:545:25"},{"body":{"nodeType":"YulBlock","src":"2339:81:25","statements":[{"nodeType":"YulAssignment","src":"2349:65:25","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2364:4:25"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2382:1:25","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"2385:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2378:3:25"},"nodeType":"YulFunctionCall","src":"2378:11:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2395:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2391:3:25"},"nodeType":"YulFunctionCall","src":"2391:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2374:3:25"},"nodeType":"YulFunctionCall","src":"2374:24:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2370:3:25"},"nodeType":"YulFunctionCall","src":"2370:29:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2360:3:25"},"nodeType":"YulFunctionCall","src":"2360:40:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2406:1:25","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"2409:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2402:3:25"},"nodeType":"YulFunctionCall","src":"2402:11:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2357:2:25"},"nodeType":"YulFunctionCall","src":"2357:57:25"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"2349:4:25"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2316:4:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"2322:3:25","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"2330:4:25","type":""}],"src":"2254:166:25"},{"body":{"nodeType":"YulBlock","src":"2521:1256:25","statements":[{"nodeType":"YulVariableDeclaration","src":"2531:24:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2551:3:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2545:5:25"},"nodeType":"YulFunctionCall","src":"2545:10:25"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"2535:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2598:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2600:16:25"},"nodeType":"YulFunctionCall","src":"2600:18:25"},"nodeType":"YulExpressionStatement","src":"2600:18:25"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"2570:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2586:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"2590:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2582:3:25"},"nodeType":"YulFunctionCall","src":"2582:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"2594:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2578:3:25"},"nodeType":"YulFunctionCall","src":"2578:18:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2567:2:25"},"nodeType":"YulFunctionCall","src":"2567:30:25"},"nodeType":"YulIf","src":"2564:56:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2673:4:25"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2711:4:25"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"2705:5:25"},"nodeType":"YulFunctionCall","src":"2705:11:25"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"2679:25:25"},"nodeType":"YulFunctionCall","src":"2679:38:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"2719:6:25"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"2629:43:25"},"nodeType":"YulFunctionCall","src":"2629:97:25"},"nodeType":"YulExpressionStatement","src":"2629:97:25"},{"nodeType":"YulVariableDeclaration","src":"2735:18:25","value":{"kind":"number","nodeType":"YulLiteral","src":"2752:1:25","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"2739:9:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2762:23:25","value":{"kind":"number","nodeType":"YulLiteral","src":"2781:4:25","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"2766:11:25","type":""}]},{"nodeType":"YulAssignment","src":"2794:24:25","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"2807:11:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"2794:9:25"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"2864:656:25","statements":[{"nodeType":"YulVariableDeclaration","src":"2878:35:25","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"2897:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2909:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2905:3:25"},"nodeType":"YulFunctionCall","src":"2905:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2893:3:25"},"nodeType":"YulFunctionCall","src":"2893:20:25"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"2882:7:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2926:49:25","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2970:4:25"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"2940:29:25"},"nodeType":"YulFunctionCall","src":"2940:35:25"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"2930:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2988:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"2997:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"2992:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3075:172:25","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3100:6:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3118:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3123:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3114:3:25"},"nodeType":"YulFunctionCall","src":"3114:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3108:5:25"},"nodeType":"YulFunctionCall","src":"3108:26:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3093:6:25"},"nodeType":"YulFunctionCall","src":"3093:42:25"},"nodeType":"YulExpressionStatement","src":"3093:42:25"},{"nodeType":"YulAssignment","src":"3152:24:25","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3166:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3174:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3162:3:25"},"nodeType":"YulFunctionCall","src":"3162:14:25"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3152:6:25"}]},{"nodeType":"YulAssignment","src":"3193:40:25","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3210:9:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3221:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3206:3:25"},"nodeType":"YulFunctionCall","src":"3206:27:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3193:9:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3022:1:25"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"3025:7:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3019:2:25"},"nodeType":"YulFunctionCall","src":"3019:14:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3034:28:25","statements":[{"nodeType":"YulAssignment","src":"3036:24:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3045:1:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3048:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3041:3:25"},"nodeType":"YulFunctionCall","src":"3041:19:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3036:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"3015:3:25","statements":[]},"src":"3011:236:25"},{"body":{"nodeType":"YulBlock","src":"3295:166:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3313:43:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3340:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3345:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3336:3:25"},"nodeType":"YulFunctionCall","src":"3336:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3330:5:25"},"nodeType":"YulFunctionCall","src":"3330:26:25"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"3317:9:25","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3380:6:25"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"3392:9:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3419:1:25","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"3422:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3415:3:25"},"nodeType":"YulFunctionCall","src":"3415:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"3431:3:25","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3411:3:25"},"nodeType":"YulFunctionCall","src":"3411:24:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3441:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3437:3:25"},"nodeType":"YulFunctionCall","src":"3437:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3407:3:25"},"nodeType":"YulFunctionCall","src":"3407:37:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3403:3:25"},"nodeType":"YulFunctionCall","src":"3403:42:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3388:3:25"},"nodeType":"YulFunctionCall","src":"3388:58:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3373:6:25"},"nodeType":"YulFunctionCall","src":"3373:74:25"},"nodeType":"YulExpressionStatement","src":"3373:74:25"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"3266:7:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"3275:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3263:2:25"},"nodeType":"YulFunctionCall","src":"3263:19:25"},"nodeType":"YulIf","src":"3260:201:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3481:4:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3495:1:25","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"3498:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3491:3:25"},"nodeType":"YulFunctionCall","src":"3491:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"3507:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3487:3:25"},"nodeType":"YulFunctionCall","src":"3487:22:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3474:6:25"},"nodeType":"YulFunctionCall","src":"3474:36:25"},"nodeType":"YulExpressionStatement","src":"3474:36:25"}]},"nodeType":"YulCase","src":"2857:663:25","value":{"kind":"number","nodeType":"YulLiteral","src":"2862:1:25","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"3537:234:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3551:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3564:1:25","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3555:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3600:67:25","statements":[{"nodeType":"YulAssignment","src":"3618:35:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3637:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3642:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3633:3:25"},"nodeType":"YulFunctionCall","src":"3633:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3627:5:25"},"nodeType":"YulFunctionCall","src":"3627:26:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"3618:5:25"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"3581:6:25"},"nodeType":"YulIf","src":"3578:89:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3687:4:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3746:5:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"3753:6:25"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"3693:52:25"},"nodeType":"YulFunctionCall","src":"3693:67:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3680:6:25"},"nodeType":"YulFunctionCall","src":"3680:81:25"},"nodeType":"YulExpressionStatement","src":"3680:81:25"}]},"nodeType":"YulCase","src":"3529:242:25","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"2837:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2845:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2834:2:25"},"nodeType":"YulFunctionCall","src":"2834:14:25"},"nodeType":"YulSwitch","src":"2827:944:25"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"2506:4:25","type":""},{"name":"src","nodeType":"YulTypedName","src":"2512:3:25","type":""}],"src":"2425:1352:25"}]},"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_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := mload(_3)\n        if gt(_4, _2) { panic_error_0x41() }\n        let _5 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_4, 0x1f), _5), 63), _5))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _4)\n        if gt(add(add(_3, _4), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _4) { i := add(i, _1) }\n        {\n            mstore(add(add(memPtr, i), _1), mload(add(add(_3, i), _1)))\n        }\n        mstore(add(add(memPtr, _4), _1), 0)\n        value0 := memPtr\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            let _1 := 0\n            mstore(_1, array)\n            let data := keccak256(_1, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _2 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _2) { start := add(start, 1) }\n            { sstore(start, _1) }\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        let srcOffset_1 := 0x20\n        srcOffset := srcOffset_1\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, srcOffset_1) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, srcOffset_1)\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}","id":25,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b506040516200162b3803806200162b83398101604081905262000034916200006e565b6200003f8162000046565b506200029e565b6002620000548282620001d2565b5050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200008257600080fd5b82516001600160401b03808211156200009a57600080fd5b818501915085601f830112620000af57600080fd5b815181811115620000c457620000c462000058565b604051601f8201601f19908116603f01168101908382118183101715620000ef57620000ef62000058565b8160405282815288868487010111156200010857600080fd5b600093505b828410156200012c57848401860151818501870152928501926200010d565b600086848301015280965050505050505092915050565b600181811c908216806200015857607f821691505b6020821081036200017957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cd57600081815260208120601f850160051c81016020861015620001a85750805b601f850160051c820191505b81811015620001c957828155600101620001b4565b5050505b505050565b81516001600160401b03811115620001ee57620001ee62000058565b6200020681620001ff845462000143565b846200017f565b602080601f8311600181146200023e5760008415620002255750858301515b600019600386901b1c1916600185901b178555620001c9565b600085815260208120601f198616915b828110156200026f578886015182559484019460019091019084016200024e565b50858210156200028e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61137d80620002ae6000396000f3fe608060405234801561001057600080fd5b50600436106100875760003560e01c80634e1273f41161005b5780634e1273f41461010a578063a22cb4651461012a578063e985e9c51461013d578063f242432a1461017957600080fd5b8062fdd58e1461008c57806301ffc9a7146100b25780630e89341c146100d55780632eb2c2d6146100f5575b600080fd5b61009f61009a366004610b40565b61018c565b6040519081526020015b60405180910390f35b6100c56100c0366004610b83565b610225565b60405190151581526020016100a9565b6100e86100e3366004610ba7565b610275565b6040516100a99190610c06565b610108610103366004610d65565b610309565b005b61011d610118366004610e0f565b610355565b6040516100a99190610f15565b610108610138366004610f28565b61047f565b6100c561014b366004610f64565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610108610187366004610f97565b61048e565b60006001600160a01b0383166101fc5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061025657506001600160e01b031982166303a24d0760e21b145b8061021f57506301ffc9a760e01b6001600160e01b031983161461021f565b60606002805461028490610ffc565b80601f01602080910402602001604051908101604052809291908181526020018280546102b090610ffc565b80156102fd5780601f106102d2576101008083540402835291602001916102fd565b820191906000526020600020905b8154815290600101906020018083116102e057829003601f168201915b50505050509050919050565b6001600160a01b0385163314806103255750610325853361014b565b6103415760405162461bcd60e51b81526004016101f390611036565b61034e85858585856104d3565b5050505050565b606081518351146103ba5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016101f3565b6000835167ffffffffffffffff8111156103d6576103d6610c19565b6040519080825280602002602001820160405280156103ff578160200160208202803683370190505b50905060005b84518110156104775761044a85828151811061042357610423611084565b602002602001015185838151811061043d5761043d611084565b602002602001015161018c565b82828151811061045c5761045c611084565b6020908102919091010152610470816110b0565b9050610405565b509392505050565b61048a3383836106b0565b5050565b6001600160a01b0385163314806104aa57506104aa853361014b565b6104c65760405162461bcd60e51b81526004016101f390611036565b61034e8585858585610790565b81518351146105355760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016101f3565b6001600160a01b03841661055b5760405162461bcd60e51b81526004016101f3906110c9565b3360005b845181101561064257600085828151811061057c5761057c611084565b60200260200101519050600085838151811061059a5761059a611084565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156105ea5760405162461bcd60e51b81526004016101f39061110e565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610627908490611158565b925050819055505050508061063b906110b0565b905061055f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161069292919061116b565b60405180910390a46106a88187878787876108ba565b505050505050565b816001600160a01b0316836001600160a01b0316036107235760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016101f3565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166107b65760405162461bcd60e51b81526004016101f3906110c9565b3360006107c285610a1e565b905060006107cf85610a1e565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156108125760405162461bcd60e51b81526004016101f39061110e565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061084f908490611158565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46108af848a8a8a8a8a610a69565b505050505050505050565b6001600160a01b0384163b156106a85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906108fe9089908990889088908890600401611199565b6020604051808303816000875af1925050508015610939575060408051601f3d908101601f19168201909252610936918101906111f7565b60015b6109e557610945611214565b806308c379a00361097e5750610959611230565b806109645750610980565b8060405162461bcd60e51b81526004016101f39190610c06565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016101f3565b6001600160e01b0319811663bc197c8160e01b14610a155760405162461bcd60e51b81526004016101f3906112ba565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610a5857610a58611084565b602090810291909101015292915050565b6001600160a01b0384163b156106a85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190610aad9089908990889088908890600401611302565b6020604051808303816000875af1925050508015610ae8575060408051601f3d908101601f19168201909252610ae5918101906111f7565b60015b610af457610945611214565b6001600160e01b0319811663f23a6e6160e01b14610a155760405162461bcd60e51b81526004016101f3906112ba565b80356001600160a01b0381168114610b3b57600080fd5b919050565b60008060408385031215610b5357600080fd5b610b5c83610b24565b946020939093013593505050565b6001600160e01b031981168114610b8057600080fd5b50565b600060208284031215610b9557600080fd5b8135610ba081610b6a565b9392505050565b600060208284031215610bb957600080fd5b5035919050565b6000815180845260005b81811015610be657602081850181015186830182015201610bca565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610ba06020830184610bc0565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715610c5557610c55610c19565b6040525050565b600067ffffffffffffffff821115610c7657610c76610c19565b5060051b60200190565b600082601f830112610c9157600080fd5b81356020610c9e82610c5c565b604051610cab8282610c2f565b83815260059390931b8501820192828101915086841115610ccb57600080fd5b8286015b84811015610ce65780358352918301918301610ccf565b509695505050505050565b600082601f830112610d0257600080fd5b813567ffffffffffffffff811115610d1c57610d1c610c19565b604051610d33601f8301601f191660200182610c2f565b818152846020838601011115610d4857600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215610d7d57600080fd5b610d8686610b24565b9450610d9460208701610b24565b9350604086013567ffffffffffffffff80821115610db157600080fd5b610dbd89838a01610c80565b94506060880135915080821115610dd357600080fd5b610ddf89838a01610c80565b93506080880135915080821115610df557600080fd5b50610e0288828901610cf1565b9150509295509295909350565b60008060408385031215610e2257600080fd5b823567ffffffffffffffff80821115610e3a57600080fd5b818501915085601f830112610e4e57600080fd5b81356020610e5b82610c5c565b604051610e688282610c2f565b83815260059390931b8501820192828101915089841115610e8857600080fd5b948201945b83861015610ead57610e9e86610b24565b82529482019490820190610e8d565b96505086013592505080821115610ec357600080fd5b50610ed085828601610c80565b9150509250929050565b600081518084526020808501945080840160005b83811015610f0a57815187529582019590820190600101610eee565b509495945050505050565b602081526000610ba06020830184610eda565b60008060408385031215610f3b57600080fd5b610f4483610b24565b915060208301358015158114610f5957600080fd5b809150509250929050565b60008060408385031215610f7757600080fd5b610f8083610b24565b9150610f8e60208401610b24565b90509250929050565b600080600080600060a08688031215610faf57600080fd5b610fb886610b24565b9450610fc660208701610b24565b93506040860135925060608601359150608086013567ffffffffffffffff811115610ff057600080fd5b610e0288828901610cf1565b600181811c9082168061101057607f821691505b60208210810361103057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016110c2576110c261109a565b5060010190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b8082018082111561021f5761021f61109a565b60408152600061117e6040830185610eda565b82810360208401526111908185610eda565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906111c590830186610eda565b82810360608401526111d78186610eda565b905082810360808401526111eb8185610bc0565b98975050505050505050565b60006020828403121561120957600080fd5b8151610ba081610b6a565b600060033d111561122d5760046000803e5060005160e01c5b90565b600060443d101561123e5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561126e57505050505090565b82850191508151818111156112865750505050505090565b843d87010160208285010111156112a05750505050505090565b6112af60208286010187610c2f565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061133c90830184610bc0565b97965050505050505056fea264697066735822122064508df9ab61fade27c54d26720ee89cfeeb5760c0a4093376dd35bfa91976c664736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x162B CODESIZE SUB DUP1 PUSH3 0x162B DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x6E JUMP JUMPDEST PUSH3 0x3F DUP2 PUSH3 0x46 JUMP JUMPDEST POP PUSH3 0x29E JUMP JUMPDEST PUSH1 0x2 PUSH3 0x54 DUP3 DUP3 PUSH3 0x1D2 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH3 0xAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH3 0xC4 JUMPI PUSH3 0xC4 PUSH3 0x58 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0xEF JUMPI PUSH3 0xEF PUSH3 0x58 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP9 DUP7 DUP5 DUP8 ADD ADD GT ISZERO PUSH3 0x108 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP4 POP JUMPDEST DUP3 DUP5 LT ISZERO PUSH3 0x12C JUMPI DUP5 DUP5 ADD DUP7 ADD MLOAD DUP2 DUP6 ADD DUP8 ADD MSTORE SWAP3 DUP6 ADD SWAP3 PUSH3 0x10D JUMP JUMPDEST PUSH1 0x0 DUP7 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP7 POP POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x158 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x179 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x1CD JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x1A8 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x1C9 JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1B4 JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x1EE JUMPI PUSH3 0x1EE PUSH3 0x58 JUMP JUMPDEST PUSH3 0x206 DUP2 PUSH3 0x1FF DUP5 SLOAD PUSH3 0x143 JUMP JUMPDEST DUP5 PUSH3 0x17F JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x23E JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x225 JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x1C9 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x26F JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x24E JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x28E JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x137D DUP1 PUSH3 0x2AE PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x87 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4E1273F4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x4E1273F4 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x12A JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0xF242432A EQ PUSH2 0x179 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0xFDD58E EQ PUSH2 0x8C JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xE89341C EQ PUSH2 0xD5 JUMPI DUP1 PUSH4 0x2EB2C2D6 EQ PUSH2 0xF5 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x9F PUSH2 0x9A CALLDATASIZE PUSH1 0x4 PUSH2 0xB40 JUMP JUMPDEST PUSH2 0x18C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH2 0xC0 CALLDATASIZE PUSH1 0x4 PUSH2 0xB83 JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xA9 JUMP JUMPDEST PUSH2 0xE8 PUSH2 0xE3 CALLDATASIZE PUSH1 0x4 PUSH2 0xBA7 JUMP JUMPDEST PUSH2 0x275 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x108 PUSH2 0x103 CALLDATASIZE PUSH1 0x4 PUSH2 0xD65 JUMP JUMPDEST PUSH2 0x309 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11D PUSH2 0x118 CALLDATASIZE PUSH1 0x4 PUSH2 0xE0F JUMP JUMPDEST PUSH2 0x355 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0xF15 JUMP JUMPDEST PUSH2 0x108 PUSH2 0x138 CALLDATASIZE PUSH1 0x4 PUSH2 0xF28 JUMP JUMPDEST PUSH2 0x47F JUMP JUMPDEST PUSH2 0xC5 PUSH2 0x14B CALLDATASIZE PUSH1 0x4 PUSH2 0xF64 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 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 PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x108 PUSH2 0x187 CALLDATASIZE PUSH1 0x4 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x48E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2061646472657373207A65726F206973206E6F7420612076 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x30B634B21037BBB732B9 PUSH1 0xB1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP2 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 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x6CDB3D13 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x256 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3A24D07 PUSH1 0xE2 SHL EQ JUMPDEST DUP1 PUSH2 0x21F JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x21F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x284 SWAP1 PUSH2 0xFFC 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 0x2B0 SWAP1 PUSH2 0xFFC JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER EQ DUP1 PUSH2 0x325 JUMPI POP PUSH2 0x325 DUP6 CALLER PUSH2 0x14B JUMP JUMPDEST PUSH2 0x341 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x34E DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x4D3 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x3BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A206163636F756E747320616E6420696473206C656E677468 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x40DAD2E6DAC2E8C6D PUSH1 0xBB SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3D6 JUMPI PUSH2 0x3D6 PUSH2 0xC19 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3FF JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x477 JUMPI PUSH2 0x44A DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x423 JUMPI PUSH2 0x423 PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x43D JUMPI PUSH2 0x43D PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x18C JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x45C JUMPI PUSH2 0x45C PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x470 DUP2 PUSH2 0x10B0 JUMP JUMPDEST SWAP1 POP PUSH2 0x405 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x48A CALLER DUP4 DUP4 PUSH2 0x6B0 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER EQ DUP1 PUSH2 0x4AA JUMPI POP PUSH2 0x4AA DUP6 CALLER PUSH2 0x14B JUMP JUMPDEST PUSH2 0x4C6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x34E DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x790 JUMP JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x535 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2069647320616E6420616D6F756E7473206C656E67746820 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0xDAD2E6DAC2E8C6D PUSH1 0xC3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x55B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x10C9 JUMP JUMPDEST CALLER PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x642 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x57C JUMPI PUSH2 0x57C PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x59A JUMPI PUSH2 0x59A PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x0 DUP5 DUP2 MSTORE DUP1 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND DUP4 MSTORE SWAP1 SWAP4 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP2 DUP2 LT ISZERO PUSH2 0x5EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 DUP2 AND DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP1 DUP12 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x627 SWAP1 DUP5 SWAP1 PUSH2 0x1158 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0x63B SWAP1 PUSH2 0x10B0 JUMP JUMPDEST SWAP1 POP PUSH2 0x55F JUMP JUMPDEST POP DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0x692 SWAP3 SWAP2 SWAP1 PUSH2 0x116B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x6A8 DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x8BA JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x723 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2073657474696E6720617070726F76616C20737461747573 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x103337B91039B2B633 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 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 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x7B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x10C9 JUMP JUMPDEST CALLER PUSH1 0x0 PUSH2 0x7C2 DUP6 PUSH2 0xA1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x7CF DUP6 PUSH2 0xA1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP6 DUP2 LT ISZERO PUSH2 0x812 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 DUP2 AND DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP10 DUP6 SUB SWAP1 SSTORE SWAP1 DUP11 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP9 SWAP3 SWAP1 PUSH2 0x84F SWAP1 DUP5 SWAP1 PUSH2 0x1158 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP9 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP12 AND SWAP3 DUP13 DUP3 AND SWAP3 SWAP2 DUP9 AND SWAP2 PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x8AF DUP5 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0xA69 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x6A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBC197C81 SWAP1 PUSH2 0x8FE SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1199 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x939 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x936 SWAP2 DUP2 ADD SWAP1 PUSH2 0x11F7 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x9E5 JUMPI PUSH2 0x945 PUSH2 0x1214 JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0x97E JUMPI POP PUSH2 0x959 PUSH2 0x1230 JUMP JUMPDEST DUP1 PUSH2 0x964 JUMPI POP PUSH2 0x980 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0xC06 JUMP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x34 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2D45524331313535 PUSH1 0x44 DUP3 ADD MSTORE PUSH20 0x2932B1B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x61 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xBC197C81 PUSH1 0xE0 SHL EQ PUSH2 0xA15 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x12BA JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x60 SWAP2 PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0xA58 JUMPI PUSH2 0xA58 PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x6A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xF23A6E61 SWAP1 PUSH2 0xAAD SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1302 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xAE8 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xAE5 SWAP2 DUP2 ADD SWAP1 PUSH2 0x11F7 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xAF4 JUMPI PUSH2 0x945 PUSH2 0x1214 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xF23A6E61 PUSH1 0xE0 SHL EQ PUSH2 0xA15 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x12BA JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB53 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB5C DUP4 PUSH2 0xB24 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xB80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB95 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xBA0 DUP2 PUSH2 0xB6A JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBE6 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0xBCA JUMP JUMPDEST POP PUSH1 0x0 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 PUSH1 0x0 PUSH2 0xBA0 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xBC0 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xC55 JUMPI PUSH2 0xC55 PUSH2 0xC19 JUMP JUMPDEST PUSH1 0x40 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xC76 JUMPI PUSH2 0xC76 PUSH2 0xC19 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xC91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0xC9E DUP3 PUSH2 0xC5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCAB DUP3 DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x5 SWAP4 SWAP1 SWAP4 SHL DUP6 ADD DUP3 ADD SWAP3 DUP3 DUP2 ADD SWAP2 POP DUP7 DUP5 GT ISZERO PUSH2 0xCCB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0xCE6 JUMPI DUP1 CALLDATALOAD DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0xCCF JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD1C JUMPI PUSH2 0xD1C PUSH2 0xC19 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD33 PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0xD48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xD7D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD86 DUP7 PUSH2 0xB24 JUMP JUMPDEST SWAP5 POP PUSH2 0xD94 PUSH1 0x20 DUP8 ADD PUSH2 0xB24 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xDB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDBD DUP10 DUP4 DUP11 ADD PUSH2 0xC80 JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xDD3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDDF DUP10 DUP4 DUP11 ADD PUSH2 0xC80 JUMP JUMPDEST SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xDF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE02 DUP9 DUP3 DUP10 ADD PUSH2 0xCF1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE22 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE4E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0xE5B DUP3 PUSH2 0xC5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE68 DUP3 DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x5 SWAP4 SWAP1 SWAP4 SHL DUP6 ADD DUP3 ADD SWAP3 DUP3 DUP2 ADD SWAP2 POP DUP10 DUP5 GT ISZERO PUSH2 0xE88 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP5 DUP3 ADD SWAP5 JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0xEAD JUMPI PUSH2 0xE9E DUP7 PUSH2 0xB24 JUMP JUMPDEST DUP3 MSTORE SWAP5 DUP3 ADD SWAP5 SWAP1 DUP3 ADD SWAP1 PUSH2 0xE8D JUMP JUMPDEST SWAP7 POP POP DUP7 ADD CALLDATALOAD SWAP3 POP POP DUP1 DUP3 GT ISZERO PUSH2 0xEC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xED0 DUP6 DUP3 DUP7 ADD PUSH2 0xC80 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF0A JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xEEE JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xBA0 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xEDA JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF44 DUP4 PUSH2 0xB24 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xF59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF77 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF80 DUP4 PUSH2 0xB24 JUMP JUMPDEST SWAP2 POP PUSH2 0xF8E PUSH1 0x20 DUP5 ADD PUSH2 0xB24 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xFAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFB8 DUP7 PUSH2 0xB24 JUMP JUMPDEST SWAP5 POP PUSH2 0xFC6 PUSH1 0x20 DUP8 ADD PUSH2 0xB24 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE02 DUP9 DUP3 DUP10 ADD PUSH2 0xCF1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1010 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1030 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2E SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A2063616C6C6572206973206E6F7420746F6B656E206F776E PUSH1 0x40 DUP3 ADD MSTORE PUSH14 0x195C881BDC88185C1C1C9BDD9959 PUSH1 0x92 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x10C2 JUMPI PUSH2 0x10C2 PUSH2 0x109A JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A207472616E7366657220746F20746865207A65726F206164 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2A SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A20696E73756666696369656E742062616C616E636520666F PUSH1 0x40 DUP3 ADD MSTORE PUSH10 0x39103A3930B739B332B9 PUSH1 0xB1 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x21F JUMPI PUSH2 0x21F PUSH2 0x109A JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x117E PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0xEDA JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1190 DUP2 DUP6 PUSH2 0xEDA JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x11C5 SWAP1 DUP4 ADD DUP7 PUSH2 0xEDA JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x60 DUP5 ADD MSTORE PUSH2 0x11D7 DUP2 DUP7 PUSH2 0xEDA JUMP JUMPDEST SWAP1 POP DUP3 DUP2 SUB PUSH1 0x80 DUP5 ADD MSTORE PUSH2 0x11EB DUP2 DUP6 PUSH2 0xBC0 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1209 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xBA0 DUP2 PUSH2 0xB6A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x122D JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY POP PUSH1 0x0 MLOAD PUSH1 0xE0 SHR JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x123E JUMPI SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3 NOT RETURNDATASIZE DUP2 ADD PUSH1 0x4 DUP4 RETURNDATACOPY DUP2 MLOAD RETURNDATASIZE PUSH8 0xFFFFFFFFFFFFFFFF DUP2 PUSH1 0x24 DUP5 ADD GT DUP2 DUP5 GT OR ISZERO PUSH2 0x126E JUMPI POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 DUP6 ADD SWAP2 POP DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x1286 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP5 RETURNDATASIZE DUP8 ADD ADD PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x12A0 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x12AF PUSH1 0x20 DUP3 DUP7 ADD ADD DUP8 PUSH2 0xC2F JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x28 SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x40 DUP3 ADD MSTORE PUSH8 0x6420746F6B656E73 PUSH1 0xC0 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0xA0 PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x133C SWAP1 DUP4 ADD DUP5 PUSH2 0xBC0 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0x508DF9AB61 STATICCALL 0xDE 0x27 0xC5 0x4D 0x26 PUSH19 0xEE89CFEEB5760C0A4093376DD35BFA91976C6 PUSH5 0x736F6C6343 STOP ADDMOD SGT STOP CALLER ","sourceMap":"570:16539:5:-:0;;;1107:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1149:13;1157:4;1149:7;:13::i;:::-;1107:62;570:16539;;8149:86;8215:4;:13;8222:6;8215:4;:13;:::i;:::-;;8149:86;:::o;14:127:25:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:1042;226:6;257:2;300;288:9;279:7;275:23;271:32;268:52;;;316:1;313;306:12;268:52;343:16;;-1:-1:-1;;;;;408:14:25;;;405:34;;;435:1;432;425:12;405:34;473:6;462:9;458:22;448:32;;518:7;511:4;507:2;503:13;499:27;489:55;;540:1;537;530:12;489:55;569:2;563:9;591:2;587;584:10;581:36;;;597:18;;:::i;:::-;672:2;666:9;640:2;726:13;;-1:-1:-1;;722:22:25;;;746:2;718:31;714:40;702:53;;;770:18;;;790:22;;;767:46;764:72;;;816:18;;:::i;:::-;856:10;852:2;845:22;891:2;883:6;876:18;931:7;926:2;921;917;913:11;909:20;906:33;903:53;;;952:1;949;942:12;903:53;974:1;965:10;;984:129;998:2;995:1;992:9;984:129;;;1086:10;;;1082:19;;1076:26;1055:14;;;1051:23;;1044:59;1009:10;;;;984:129;;;1155:1;1150:2;1145;1137:6;1133:15;1129:24;1122:35;1176:6;1166:16;;;;;;;;146:1042;;;;:::o;1193:380::-;1272:1;1268:12;;;;1315;;;1336:61;;1390:4;1382:6;1378:17;1368:27;;1336:61;1443:2;1435:6;1432:14;1412:18;1409:38;1406:161;;1489:10;1484:3;1480:20;1477:1;1470:31;1524:4;1521:1;1514:15;1552:4;1549:1;1542:15;1406:161;;1193:380;;;:::o;1704:545::-;1806:2;1801:3;1798:11;1795:448;;;1842:1;1867:5;1863:2;1856:17;1912:4;1908:2;1898:19;1982:2;1970:10;1966:19;1963:1;1959:27;1953:4;1949:38;2018:4;2006:10;2003:20;2000:47;;;-1:-1:-1;2041:4:25;2000:47;2096:2;2091:3;2087:12;2084:1;2080:20;2074:4;2070:31;2060:41;;2151:82;2169:2;2162:5;2159:13;2151:82;;;2214:17;;;2195:1;2184:13;2151:82;;;2155:3;;;1795:448;1704:545;;;:::o;2425:1352::-;2545:10;;-1:-1:-1;;;;;2567:30:25;;2564:56;;;2600:18;;:::i;:::-;2629:97;2719:6;2679:38;2711:4;2705:11;2679:38;:::i;:::-;2673:4;2629:97;:::i;:::-;2781:4;;2845:2;2834:14;;2862:1;2857:663;;;;3564:1;3581:6;3578:89;;;-1:-1:-1;3633:19:25;;;3627:26;3578:89;-1:-1:-1;;2382:1:25;2378:11;;;2374:24;2370:29;2360:40;2406:1;2402:11;;;2357:57;3680:81;;2827:944;;2857:663;1651:1;1644:14;;;1688:4;1675:18;;-1:-1:-1;;2893:20:25;;;3011:236;3025:7;3022:1;3019:14;3011:236;;;3114:19;;;3108:26;3093:42;;3206:27;;;;3174:1;3162:14;;;;3041:19;;3011:236;;;3015:3;3275:6;3266:7;3263:19;3260:201;;;3336:19;;;3330:26;-1:-1:-1;;3419:1:25;3415:14;;;3431:3;3411:24;3407:37;3403:42;3388:58;3373:74;;3260:201;-1:-1:-1;;;;;3507:1:25;3491:14;;;3487:22;3474:36;;-1:-1:-1;2425:1352:25:o;:::-;570:16539:5;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_1271":{"entryPoint":null,"id":1271,"parameterSlots":6,"returnSlots":0},"@_asSingletonArray_1427":{"entryPoint":2590,"id":1427,"parameterSlots":1,"returnSlots":1},"@_beforeTokenTransfer_1252":{"entryPoint":null,"id":1252,"parameterSlots":6,"returnSlots":0},"@_doSafeBatchTransferAcceptanceCheck_1399":{"entryPoint":2234,"id":1399,"parameterSlots":6,"returnSlots":0},"@_doSafeTransferAcceptanceCheck_1334":{"entryPoint":2665,"id":1334,"parameterSlots":6,"returnSlots":0},"@_msgSender_3192":{"entryPoint":null,"id":3192,"parameterSlots":0,"returnSlots":1},"@_safeBatchTransferFrom_750":{"entryPoint":1235,"id":750,"parameterSlots":5,"returnSlots":0},"@_safeTransferFrom_615":{"entryPoint":1936,"id":615,"parameterSlots":5,"returnSlots":0},"@_setApprovalForAll_1233":{"entryPoint":1712,"id":1233,"parameterSlots":3,"returnSlots":0},"@balanceOfBatch_385":{"entryPoint":853,"id":385,"parameterSlots":2,"returnSlots":1},"@balanceOf_321":{"entryPoint":396,"id":321,"parameterSlots":2,"returnSlots":1},"@isApprovedForAll_420":{"entryPoint":null,"id":420,"parameterSlots":2,"returnSlots":1},"@isContract_2868":{"entryPoint":null,"id":2868,"parameterSlots":1,"returnSlots":1},"@safeBatchTransferFrom_498":{"entryPoint":777,"id":498,"parameterSlots":5,"returnSlots":0},"@safeTransferFrom_458":{"entryPoint":1166,"id":458,"parameterSlots":5,"returnSlots":0},"@setApprovalForAll_402":{"entryPoint":1151,"id":402,"parameterSlots":2,"returnSlots":0},"@supportsInterface_281":{"entryPoint":549,"id":281,"parameterSlots":1,"returnSlots":1},"@supportsInterface_3536":{"entryPoint":null,"id":3536,"parameterSlots":1,"returnSlots":1},"@uri_293":{"entryPoint":629,"id":293,"parameterSlots":1,"returnSlots":1},"abi_decode_address":{"entryPoint":2852,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_uint256_dyn":{"entryPoint":3200,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes":{"entryPoint":3313,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":3940,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr":{"entryPoint":3429,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr":{"entryPoint":3991,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_bool":{"entryPoint":3880,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":2880,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr":{"entryPoint":3599,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":2947,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":4599,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":2983,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_uint256_dyn":{"entryPoint":3802,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":3008,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":4505,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":4866,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":3861,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":4459,"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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3078,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4794,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4150,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4297,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4366,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d__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},"array_allocation_size_array_uint256_dyn":{"entryPoint":3164,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":4440,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":4092,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":3119,"id":null,"parameterSlots":2,"returnSlots":0},"increment_t_uint256":{"entryPoint":4272,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":4250,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":4228,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":3097,"id":null,"parameterSlots":0,"returnSlots":0},"return_data_selector":{"entryPoint":4628,"id":null,"parameterSlots":0,"returnSlots":1},"try_decode_error_message":{"entryPoint":4656,"id":null,"parameterSlots":0,"returnSlots":1},"validator_revert_bytes4":{"entryPoint":2922,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:15860:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:25","statements":[{"nodeType":"YulAssignment","src":"73:29:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:25"},"nodeType":"YulFunctionCall","src":"82:20:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:25"}]},{"body":{"nodeType":"YulBlock","src":"165:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:25"},"nodeType":"YulFunctionCall","src":"167:12:25"},"nodeType":"YulExpressionStatement","src":"167:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:25"},"nodeType":"YulFunctionCall","src":"146:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:25"},"nodeType":"YulFunctionCall","src":"142:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:25"},"nodeType":"YulFunctionCall","src":"131:31:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:25"},"nodeType":"YulFunctionCall","src":"121:42:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:25"},"nodeType":"YulFunctionCall","src":"114:50:25"},"nodeType":"YulIf","src":"111:70:25"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:25","type":""}],"src":"14:173:25"},{"body":{"nodeType":"YulBlock","src":"279:167:25","statements":[{"body":{"nodeType":"YulBlock","src":"325:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"337:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"327:6:25"},"nodeType":"YulFunctionCall","src":"327:12:25"},"nodeType":"YulExpressionStatement","src":"327:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"300:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"309:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"296:3:25"},"nodeType":"YulFunctionCall","src":"296:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"321:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"292:3:25"},"nodeType":"YulFunctionCall","src":"292:32:25"},"nodeType":"YulIf","src":"289:52:25"},{"nodeType":"YulAssignment","src":"350:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"379:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"360:18:25"},"nodeType":"YulFunctionCall","src":"360:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"350:6:25"}]},{"nodeType":"YulAssignment","src":"398:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"425:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"436:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"421:3:25"},"nodeType":"YulFunctionCall","src":"421:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"408:12:25"},"nodeType":"YulFunctionCall","src":"408:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"398:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"237:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"248:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"260:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"268:6:25","type":""}],"src":"192:254:25"},{"body":{"nodeType":"YulBlock","src":"552:76:25","statements":[{"nodeType":"YulAssignment","src":"562:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"574:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"585:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"570:3:25"},"nodeType":"YulFunctionCall","src":"570:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"562:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"604:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"615:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"597:6:25"},"nodeType":"YulFunctionCall","src":"597:25:25"},"nodeType":"YulExpressionStatement","src":"597:25:25"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"521:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"532:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"543:4:25","type":""}],"src":"451:177:25"},{"body":{"nodeType":"YulBlock","src":"677:87:25","statements":[{"body":{"nodeType":"YulBlock","src":"742:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"751:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"754:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"744:6:25"},"nodeType":"YulFunctionCall","src":"744:12:25"},"nodeType":"YulExpressionStatement","src":"744:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"700:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"711:5:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"722:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"727:10:25","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"718:3:25"},"nodeType":"YulFunctionCall","src":"718:20:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"707:3:25"},"nodeType":"YulFunctionCall","src":"707:32:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"697:2:25"},"nodeType":"YulFunctionCall","src":"697:43:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"690:6:25"},"nodeType":"YulFunctionCall","src":"690:51:25"},"nodeType":"YulIf","src":"687:71:25"}]},"name":"validator_revert_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"666:5:25","type":""}],"src":"633:131:25"},{"body":{"nodeType":"YulBlock","src":"838:176:25","statements":[{"body":{"nodeType":"YulBlock","src":"884:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"893:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"896:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"886:6:25"},"nodeType":"YulFunctionCall","src":"886:12:25"},"nodeType":"YulExpressionStatement","src":"886:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"859:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"868:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"855:3:25"},"nodeType":"YulFunctionCall","src":"855:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"880:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"851:3:25"},"nodeType":"YulFunctionCall","src":"851:32:25"},"nodeType":"YulIf","src":"848:52:25"},{"nodeType":"YulVariableDeclaration","src":"909:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"935:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"922:12:25"},"nodeType":"YulFunctionCall","src":"922:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"913:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"978:5:25"}],"functionName":{"name":"validator_revert_bytes4","nodeType":"YulIdentifier","src":"954:23:25"},"nodeType":"YulFunctionCall","src":"954:30:25"},"nodeType":"YulExpressionStatement","src":"954:30:25"},{"nodeType":"YulAssignment","src":"993:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"1003:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"993:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"804:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"815:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"827:6:25","type":""}],"src":"769:245:25"},{"body":{"nodeType":"YulBlock","src":"1114:92:25","statements":[{"nodeType":"YulAssignment","src":"1124:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1136:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1147:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1132:3:25"},"nodeType":"YulFunctionCall","src":"1132:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1124:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1166:9:25"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1191:6:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1184:6:25"},"nodeType":"YulFunctionCall","src":"1184:14:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1177:6:25"},"nodeType":"YulFunctionCall","src":"1177:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1159:6:25"},"nodeType":"YulFunctionCall","src":"1159:41:25"},"nodeType":"YulExpressionStatement","src":"1159:41:25"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1083:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1094:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1105:4:25","type":""}],"src":"1019:187:25"},{"body":{"nodeType":"YulBlock","src":"1281:110:25","statements":[{"body":{"nodeType":"YulBlock","src":"1327:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1336:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1339:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1329:6:25"},"nodeType":"YulFunctionCall","src":"1329:12:25"},"nodeType":"YulExpressionStatement","src":"1329:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1302:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1311:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1298:3:25"},"nodeType":"YulFunctionCall","src":"1298:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1323:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1294:3:25"},"nodeType":"YulFunctionCall","src":"1294:32:25"},"nodeType":"YulIf","src":"1291:52:25"},{"nodeType":"YulAssignment","src":"1352:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1375:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1362:12:25"},"nodeType":"YulFunctionCall","src":"1362:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1352:6:25"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1247:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1258:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1270:6:25","type":""}],"src":"1211:180:25"},{"body":{"nodeType":"YulBlock","src":"1446:373:25","statements":[{"nodeType":"YulVariableDeclaration","src":"1456:26:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1476:5:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1470:5:25"},"nodeType":"YulFunctionCall","src":"1470:12:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"1460:6:25","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1498:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"1503:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1491:6:25"},"nodeType":"YulFunctionCall","src":"1491:19:25"},"nodeType":"YulExpressionStatement","src":"1491:19:25"},{"nodeType":"YulVariableDeclaration","src":"1519:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"1528:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"1523:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1590:110:25","statements":[{"nodeType":"YulVariableDeclaration","src":"1604:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"1614:4:25","type":"","value":"0x20"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1608:2:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1646:3:25"},{"name":"i","nodeType":"YulIdentifier","src":"1651:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1642:3:25"},"nodeType":"YulFunctionCall","src":"1642:11:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1655:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1638:3:25"},"nodeType":"YulFunctionCall","src":"1638:20:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1674:5:25"},{"name":"i","nodeType":"YulIdentifier","src":"1681:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1670:3:25"},"nodeType":"YulFunctionCall","src":"1670:13:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1685:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1666:3:25"},"nodeType":"YulFunctionCall","src":"1666:22:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1660:5:25"},"nodeType":"YulFunctionCall","src":"1660:29:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1631:6:25"},"nodeType":"YulFunctionCall","src":"1631:59:25"},"nodeType":"YulExpressionStatement","src":"1631:59:25"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1549:1:25"},{"name":"length","nodeType":"YulIdentifier","src":"1552:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1546:2:25"},"nodeType":"YulFunctionCall","src":"1546:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"1560:21:25","statements":[{"nodeType":"YulAssignment","src":"1562:17:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1571:1:25"},{"kind":"number","nodeType":"YulLiteral","src":"1574:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1567:3:25"},"nodeType":"YulFunctionCall","src":"1567:12:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"1562:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"1542:3:25","statements":[]},"src":"1538:162:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1724:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"1729:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1720:3:25"},"nodeType":"YulFunctionCall","src":"1720:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"1738:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1716:3:25"},"nodeType":"YulFunctionCall","src":"1716:27:25"},{"kind":"number","nodeType":"YulLiteral","src":"1745:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1709:6:25"},"nodeType":"YulFunctionCall","src":"1709:38:25"},"nodeType":"YulExpressionStatement","src":"1709:38:25"},{"nodeType":"YulAssignment","src":"1756:57:25","value":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1771:3:25"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1784:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"1792:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1780:3:25"},"nodeType":"YulFunctionCall","src":"1780:15:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1801:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1797:3:25"},"nodeType":"YulFunctionCall","src":"1797:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1776:3:25"},"nodeType":"YulFunctionCall","src":"1776:29:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1767:3:25"},"nodeType":"YulFunctionCall","src":"1767:39:25"},{"kind":"number","nodeType":"YulLiteral","src":"1808:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1763:3:25"},"nodeType":"YulFunctionCall","src":"1763:50:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"1756:3:25"}]}]},"name":"abi_encode_string","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1423:5:25","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1430:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"1438:3:25","type":""}],"src":"1396:423:25"},{"body":{"nodeType":"YulBlock","src":"1945:99:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1962:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1973:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1955:6:25"},"nodeType":"YulFunctionCall","src":"1955:21:25"},"nodeType":"YulExpressionStatement","src":"1955:21:25"},{"nodeType":"YulAssignment","src":"1985:53:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2011:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2023:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2034:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2019:3:25"},"nodeType":"YulFunctionCall","src":"2019:18:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"1993:17:25"},"nodeType":"YulFunctionCall","src":"1993:45:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1985:4:25"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1914:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1925:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1936:4:25","type":""}],"src":"1824:220:25"},{"body":{"nodeType":"YulBlock","src":"2081:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2098:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2105:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2110:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2101:3:25"},"nodeType":"YulFunctionCall","src":"2101:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2091:6:25"},"nodeType":"YulFunctionCall","src":"2091:31:25"},"nodeType":"YulExpressionStatement","src":"2091:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2138:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2141:4:25","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2131:6:25"},"nodeType":"YulFunctionCall","src":"2131:15:25"},"nodeType":"YulExpressionStatement","src":"2131:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2162:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2165:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2155:6:25"},"nodeType":"YulFunctionCall","src":"2155:15:25"},"nodeType":"YulExpressionStatement","src":"2155:15:25"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"2049:127:25"},{"body":{"nodeType":"YulBlock","src":"2228:202:25","statements":[{"nodeType":"YulVariableDeclaration","src":"2238:58:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2260:6:25"},{"arguments":[{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"2276:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"2282:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2272:3:25"},"nodeType":"YulFunctionCall","src":"2272:13:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2291:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2287:3:25"},"nodeType":"YulFunctionCall","src":"2287:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2268:3:25"},"nodeType":"YulFunctionCall","src":"2268:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2256:3:25"},"nodeType":"YulFunctionCall","src":"2256:40:25"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"2242:10:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2371:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2373:16:25"},"nodeType":"YulFunctionCall","src":"2373:18:25"},"nodeType":"YulExpressionStatement","src":"2373:18:25"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2314:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"2326:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2311:2:25"},"nodeType":"YulFunctionCall","src":"2311:34:25"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2350:10:25"},{"name":"memPtr","nodeType":"YulIdentifier","src":"2362:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2347:2:25"},"nodeType":"YulFunctionCall","src":"2347:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2308:2:25"},"nodeType":"YulFunctionCall","src":"2308:62:25"},"nodeType":"YulIf","src":"2305:88:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2409:2:25","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2413:10:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2402:6:25"},"nodeType":"YulFunctionCall","src":"2402:22:25"},"nodeType":"YulExpressionStatement","src":"2402:22:25"}]},"name":"finalize_allocation","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"2210:6:25","type":""},{"name":"size","nodeType":"YulTypedName","src":"2218:4:25","type":""}],"src":"2181:249:25"},{"body":{"nodeType":"YulBlock","src":"2504:114:25","statements":[{"body":{"nodeType":"YulBlock","src":"2548:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2550:16:25"},"nodeType":"YulFunctionCall","src":"2550:18:25"},"nodeType":"YulExpressionStatement","src":"2550:18:25"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2520:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2528:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2517:2:25"},"nodeType":"YulFunctionCall","src":"2517:30:25"},"nodeType":"YulIf","src":"2514:56:25"},{"nodeType":"YulAssignment","src":"2579:33:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2595:1:25","type":"","value":"5"},{"name":"length","nodeType":"YulIdentifier","src":"2598:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2591:3:25"},"nodeType":"YulFunctionCall","src":"2591:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"2607:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2587:3:25"},"nodeType":"YulFunctionCall","src":"2587:25:25"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"2579:4:25"}]}]},"name":"array_allocation_size_array_uint256_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nodeType":"YulTypedName","src":"2484:6:25","type":""}],"returnVariables":[{"name":"size","nodeType":"YulTypedName","src":"2495:4:25","type":""}],"src":"2435:183:25"},{"body":{"nodeType":"YulBlock","src":"2687:660:25","statements":[{"body":{"nodeType":"YulBlock","src":"2736:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2745:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2748:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2738:6:25"},"nodeType":"YulFunctionCall","src":"2738:12:25"},"nodeType":"YulExpressionStatement","src":"2738:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2715:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2723:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2711:3:25"},"nodeType":"YulFunctionCall","src":"2711:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"2730:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2707:3:25"},"nodeType":"YulFunctionCall","src":"2707:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2700:6:25"},"nodeType":"YulFunctionCall","src":"2700:35:25"},"nodeType":"YulIf","src":"2697:55:25"},{"nodeType":"YulVariableDeclaration","src":"2761:30:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2784:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2771:12:25"},"nodeType":"YulFunctionCall","src":"2771:20:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2765:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2800:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"2810:4:25","type":"","value":"0x20"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"2804:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2823:53:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2873:2:25"}],"functionName":{"name":"array_allocation_size_array_uint256_dyn","nodeType":"YulIdentifier","src":"2833:39:25"},"nodeType":"YulFunctionCall","src":"2833:43:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"2827:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2885:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2905:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2899:5:25"},"nodeType":"YulFunctionCall","src":"2899:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"2889:6:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2937:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"2945:2:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"2917:19:25"},"nodeType":"YulFunctionCall","src":"2917:31:25"},"nodeType":"YulExpressionStatement","src":"2917:31:25"},{"nodeType":"YulVariableDeclaration","src":"2957:17:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"2968:6:25"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"2961:3:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2990:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2998:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2983:6:25"},"nodeType":"YulFunctionCall","src":"2983:18:25"},"nodeType":"YulExpressionStatement","src":"2983:18:25"},{"nodeType":"YulAssignment","src":"3010:22:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"3021:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"3029:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3017:3:25"},"nodeType":"YulFunctionCall","src":"3017:15:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"3010:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"3041:46:25","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3063:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3075:1:25","type":"","value":"5"},{"name":"_1","nodeType":"YulIdentifier","src":"3078:2:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3071:3:25"},"nodeType":"YulFunctionCall","src":"3071:10:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3059:3:25"},"nodeType":"YulFunctionCall","src":"3059:23:25"},{"name":"_2","nodeType":"YulIdentifier","src":"3084:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3055:3:25"},"nodeType":"YulFunctionCall","src":"3055:32:25"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"3045:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3115:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3124:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3127:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3117:6:25"},"nodeType":"YulFunctionCall","src":"3117:12:25"},"nodeType":"YulExpressionStatement","src":"3117:12:25"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"3102:6:25"},{"name":"end","nodeType":"YulIdentifier","src":"3110:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3099:2:25"},"nodeType":"YulFunctionCall","src":"3099:15:25"},"nodeType":"YulIf","src":"3096:35:25"},{"nodeType":"YulVariableDeclaration","src":"3140:26:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3155:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"3163:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3151:3:25"},"nodeType":"YulFunctionCall","src":"3151:15:25"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"3144:3:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3231:86:25","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3252:3:25"},{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3270:3:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3257:12:25"},"nodeType":"YulFunctionCall","src":"3257:17:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3245:6:25"},"nodeType":"YulFunctionCall","src":"3245:30:25"},"nodeType":"YulExpressionStatement","src":"3245:30:25"},{"nodeType":"YulAssignment","src":"3288:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3299:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"3304:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3295:3:25"},"nodeType":"YulFunctionCall","src":"3295:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"3288:3:25"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3186:3:25"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"3191:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3183:2:25"},"nodeType":"YulFunctionCall","src":"3183:15:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3199:23:25","statements":[{"nodeType":"YulAssignment","src":"3201:19:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3212:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"3217:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3208:3:25"},"nodeType":"YulFunctionCall","src":"3208:12:25"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"3201:3:25"}]}]},"pre":{"nodeType":"YulBlock","src":"3179:3:25","statements":[]},"src":"3175:142:25"},{"nodeType":"YulAssignment","src":"3326:15:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"3335:6:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"3326:5:25"}]}]},"name":"abi_decode_array_uint256_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2661:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"2669:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"2677:5:25","type":""}],"src":"2623:724:25"},{"body":{"nodeType":"YulBlock","src":"3404:503:25","statements":[{"body":{"nodeType":"YulBlock","src":"3453:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3462:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3465:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3455:6:25"},"nodeType":"YulFunctionCall","src":"3455:12:25"},"nodeType":"YulExpressionStatement","src":"3455:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3432:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3440:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3428:3:25"},"nodeType":"YulFunctionCall","src":"3428:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"3447:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3424:3:25"},"nodeType":"YulFunctionCall","src":"3424:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3417:6:25"},"nodeType":"YulFunctionCall","src":"3417:35:25"},"nodeType":"YulIf","src":"3414:55:25"},{"nodeType":"YulVariableDeclaration","src":"3478:30:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3501:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3488:12:25"},"nodeType":"YulFunctionCall","src":"3488:20:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3482:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3547:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"3549:16:25"},"nodeType":"YulFunctionCall","src":"3549:18:25"},"nodeType":"YulExpressionStatement","src":"3549:18:25"}]},"condition":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"3523:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"3527:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3520:2:25"},"nodeType":"YulFunctionCall","src":"3520:26:25"},"nodeType":"YulIf","src":"3517:52:25"},{"nodeType":"YulVariableDeclaration","src":"3578:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3598:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3592:5:25"},"nodeType":"YulFunctionCall","src":"3592:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"3582:6:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"3630:6:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"3650:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"3654:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3646:3:25"},"nodeType":"YulFunctionCall","src":"3646:13:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3665:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3661:3:25"},"nodeType":"YulFunctionCall","src":"3661:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3642:3:25"},"nodeType":"YulFunctionCall","src":"3642:27:25"},{"kind":"number","nodeType":"YulLiteral","src":"3671:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3638:3:25"},"nodeType":"YulFunctionCall","src":"3638:38:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"3610:19:25"},"nodeType":"YulFunctionCall","src":"3610:67:25"},"nodeType":"YulExpressionStatement","src":"3610:67:25"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"3693:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3701:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3686:6:25"},"nodeType":"YulFunctionCall","src":"3686:18:25"},"nodeType":"YulExpressionStatement","src":"3686:18:25"},{"body":{"nodeType":"YulBlock","src":"3752:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3761:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3764:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3754:6:25"},"nodeType":"YulFunctionCall","src":"3754:12:25"},"nodeType":"YulExpressionStatement","src":"3754:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3727:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3735:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3723:3:25"},"nodeType":"YulFunctionCall","src":"3723:15:25"},{"kind":"number","nodeType":"YulLiteral","src":"3740:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3719:3:25"},"nodeType":"YulFunctionCall","src":"3719:26:25"},{"name":"end","nodeType":"YulIdentifier","src":"3747:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3716:2:25"},"nodeType":"YulFunctionCall","src":"3716:35:25"},"nodeType":"YulIf","src":"3713:55:25"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"3794:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3802:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3790:3:25"},"nodeType":"YulFunctionCall","src":"3790:17:25"},{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3813:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3821:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3809:3:25"},"nodeType":"YulFunctionCall","src":"3809:17:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3828:2:25"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"3777:12:25"},"nodeType":"YulFunctionCall","src":"3777:54:25"},"nodeType":"YulExpressionStatement","src":"3777:54:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"3855:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3863:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3851:3:25"},"nodeType":"YulFunctionCall","src":"3851:15:25"},{"kind":"number","nodeType":"YulLiteral","src":"3868:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3847:3:25"},"nodeType":"YulFunctionCall","src":"3847:26:25"},{"kind":"number","nodeType":"YulLiteral","src":"3875:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3840:6:25"},"nodeType":"YulFunctionCall","src":"3840:37:25"},"nodeType":"YulExpressionStatement","src":"3840:37:25"},{"nodeType":"YulAssignment","src":"3886:15:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"3895:6:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"3886:5:25"}]}]},"name":"abi_decode_bytes","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"3378:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"3386:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"3394:5:25","type":""}],"src":"3352:555:25"},{"body":{"nodeType":"YulBlock","src":"4109:746:25","statements":[{"body":{"nodeType":"YulBlock","src":"4156:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4165:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4168:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4158:6:25"},"nodeType":"YulFunctionCall","src":"4158:12:25"},"nodeType":"YulExpressionStatement","src":"4158:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4130:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"4139:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4126:3:25"},"nodeType":"YulFunctionCall","src":"4126:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"4151:3:25","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4122:3:25"},"nodeType":"YulFunctionCall","src":"4122:33:25"},"nodeType":"YulIf","src":"4119:53:25"},{"nodeType":"YulAssignment","src":"4181:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4210:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"4191:18:25"},"nodeType":"YulFunctionCall","src":"4191:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4181:6:25"}]},{"nodeType":"YulAssignment","src":"4229:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4262:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4273:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4258:3:25"},"nodeType":"YulFunctionCall","src":"4258:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"4239:18:25"},"nodeType":"YulFunctionCall","src":"4239:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4229:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"4286:46:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4317:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4328:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4313:3:25"},"nodeType":"YulFunctionCall","src":"4313:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4300:12:25"},"nodeType":"YulFunctionCall","src":"4300:32:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4290:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4341:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4351:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"4345:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4396:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4405:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4408:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4398:6:25"},"nodeType":"YulFunctionCall","src":"4398:12:25"},"nodeType":"YulExpressionStatement","src":"4398:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4384:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"4392:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4381:2:25"},"nodeType":"YulFunctionCall","src":"4381:14:25"},"nodeType":"YulIf","src":"4378:34:25"},{"nodeType":"YulAssignment","src":"4421:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4464:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"4475:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4460:3:25"},"nodeType":"YulFunctionCall","src":"4460:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4484:7:25"}],"functionName":{"name":"abi_decode_array_uint256_dyn","nodeType":"YulIdentifier","src":"4431:28:25"},"nodeType":"YulFunctionCall","src":"4431:61:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"4421:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"4501:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4534:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4545:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4530:3:25"},"nodeType":"YulFunctionCall","src":"4530:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4517:12:25"},"nodeType":"YulFunctionCall","src":"4517:32:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"4505:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4578:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4587:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4590:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4580:6:25"},"nodeType":"YulFunctionCall","src":"4580:12:25"},"nodeType":"YulExpressionStatement","src":"4580:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"4564:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"4574:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4561:2:25"},"nodeType":"YulFunctionCall","src":"4561:16:25"},"nodeType":"YulIf","src":"4558:36:25"},{"nodeType":"YulAssignment","src":"4603:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4646:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"4657:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4642:3:25"},"nodeType":"YulFunctionCall","src":"4642:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4668:7:25"}],"functionName":{"name":"abi_decode_array_uint256_dyn","nodeType":"YulIdentifier","src":"4613:28:25"},"nodeType":"YulFunctionCall","src":"4613:63:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"4603:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"4685:49:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4718:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4729:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4714:3:25"},"nodeType":"YulFunctionCall","src":"4714:19:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4701:12:25"},"nodeType":"YulFunctionCall","src":"4701:33:25"},"variables":[{"name":"offset_2","nodeType":"YulTypedName","src":"4689:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4763:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4772:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4775:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4765:6:25"},"nodeType":"YulFunctionCall","src":"4765:12:25"},"nodeType":"YulExpressionStatement","src":"4765:12:25"}]},"condition":{"arguments":[{"name":"offset_2","nodeType":"YulIdentifier","src":"4749:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"4759:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4746:2:25"},"nodeType":"YulFunctionCall","src":"4746:16:25"},"nodeType":"YulIf","src":"4743:36:25"},{"nodeType":"YulAssignment","src":"4788:61:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4819:9:25"},{"name":"offset_2","nodeType":"YulIdentifier","src":"4830:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4815:3:25"},"nodeType":"YulFunctionCall","src":"4815:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4841:7:25"}],"functionName":{"name":"abi_decode_bytes","nodeType":"YulIdentifier","src":"4798:16:25"},"nodeType":"YulFunctionCall","src":"4798:51:25"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"4788:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4043:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4054:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4066:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4074:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"4082:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"4090:6:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"4098:6:25","type":""}],"src":"3912:943:25"},{"body":{"nodeType":"YulBlock","src":"4997:1071:25","statements":[{"body":{"nodeType":"YulBlock","src":"5043:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5052:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5055:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5045:6:25"},"nodeType":"YulFunctionCall","src":"5045:12:25"},"nodeType":"YulExpressionStatement","src":"5045:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5018:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"5027:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5014:3:25"},"nodeType":"YulFunctionCall","src":"5014:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"5039:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5010:3:25"},"nodeType":"YulFunctionCall","src":"5010:32:25"},"nodeType":"YulIf","src":"5007:52:25"},{"nodeType":"YulVariableDeclaration","src":"5068:37:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5095:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5082:12:25"},"nodeType":"YulFunctionCall","src":"5082:23:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5072:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"5114:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"5124:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"5118:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5169:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5178:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5181:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5171:6:25"},"nodeType":"YulFunctionCall","src":"5171:12:25"},"nodeType":"YulExpressionStatement","src":"5171:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5157:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"5165:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5154:2:25"},"nodeType":"YulFunctionCall","src":"5154:14:25"},"nodeType":"YulIf","src":"5151:34:25"},{"nodeType":"YulVariableDeclaration","src":"5194:32:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5208:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"5219:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5204:3:25"},"nodeType":"YulFunctionCall","src":"5204:22:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"5198:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5274:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5283:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5286:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5276:6:25"},"nodeType":"YulFunctionCall","src":"5276:12:25"},"nodeType":"YulExpressionStatement","src":"5276:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"5253:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"5257:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5249:3:25"},"nodeType":"YulFunctionCall","src":"5249:13:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5264:7:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5245:3:25"},"nodeType":"YulFunctionCall","src":"5245:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"5238:6:25"},"nodeType":"YulFunctionCall","src":"5238:35:25"},"nodeType":"YulIf","src":"5235:55:25"},{"nodeType":"YulVariableDeclaration","src":"5299:26:25","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"5322:2:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5309:12:25"},"nodeType":"YulFunctionCall","src":"5309:16:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"5303:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"5334:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"5344:4:25","type":"","value":"0x20"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"5338:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"5357:53:25","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"5407:2:25"}],"functionName":{"name":"array_allocation_size_array_uint256_dyn","nodeType":"YulIdentifier","src":"5367:39:25"},"nodeType":"YulFunctionCall","src":"5367:43:25"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"5361:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"5419:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5439:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5433:5:25"},"nodeType":"YulFunctionCall","src":"5433:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"5423:6:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"5471:6:25"},{"name":"_5","nodeType":"YulIdentifier","src":"5479:2:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"5451:19:25"},"nodeType":"YulFunctionCall","src":"5451:31:25"},"nodeType":"YulExpressionStatement","src":"5451:31:25"},{"nodeType":"YulVariableDeclaration","src":"5491:17:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"5502:6:25"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"5495:3:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"5524:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"5532:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5517:6:25"},"nodeType":"YulFunctionCall","src":"5517:18:25"},"nodeType":"YulExpressionStatement","src":"5517:18:25"},{"nodeType":"YulAssignment","src":"5544:22:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"5555:6:25"},{"name":"_4","nodeType":"YulIdentifier","src":"5563:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5551:3:25"},"nodeType":"YulFunctionCall","src":"5551:15:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"5544:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"5575:42:25","value":{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"5597:2:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5605:1:25","type":"","value":"5"},{"name":"_3","nodeType":"YulIdentifier","src":"5608:2:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"5601:3:25"},"nodeType":"YulFunctionCall","src":"5601:10:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5593:3:25"},"nodeType":"YulFunctionCall","src":"5593:19:25"},{"name":"_4","nodeType":"YulIdentifier","src":"5614:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5589:3:25"},"nodeType":"YulFunctionCall","src":"5589:28:25"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"5579:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5649:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5658:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5661:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5651:6:25"},"nodeType":"YulFunctionCall","src":"5651:12:25"},"nodeType":"YulExpressionStatement","src":"5651:12:25"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"5632:6:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5640:7:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5629:2:25"},"nodeType":"YulFunctionCall","src":"5629:19:25"},"nodeType":"YulIf","src":"5626:39:25"},{"nodeType":"YulVariableDeclaration","src":"5674:22:25","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"5689:2:25"},{"name":"_4","nodeType":"YulIdentifier","src":"5693:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5685:3:25"},"nodeType":"YulFunctionCall","src":"5685:11:25"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"5678:3:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5761:92:25","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"5782:3:25"},{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"5806:3:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"5787:18:25"},"nodeType":"YulFunctionCall","src":"5787:23:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5775:6:25"},"nodeType":"YulFunctionCall","src":"5775:36:25"},"nodeType":"YulExpressionStatement","src":"5775:36:25"},{"nodeType":"YulAssignment","src":"5824:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"5835:3:25"},{"name":"_4","nodeType":"YulIdentifier","src":"5840:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5831:3:25"},"nodeType":"YulFunctionCall","src":"5831:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"5824:3:25"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"5716:3:25"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"5721:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"5713:2:25"},"nodeType":"YulFunctionCall","src":"5713:15:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"5729:23:25","statements":[{"nodeType":"YulAssignment","src":"5731:19:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"5742:3:25"},{"name":"_4","nodeType":"YulIdentifier","src":"5747:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5738:3:25"},"nodeType":"YulFunctionCall","src":"5738:12:25"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"5731:3:25"}]}]},"pre":{"nodeType":"YulBlock","src":"5709:3:25","statements":[]},"src":"5705:148:25"},{"nodeType":"YulAssignment","src":"5862:16:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"5872:6:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5862:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"5887:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5920:9:25"},{"name":"_4","nodeType":"YulIdentifier","src":"5931:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5916:3:25"},"nodeType":"YulFunctionCall","src":"5916:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5903:12:25"},"nodeType":"YulFunctionCall","src":"5903:32:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"5891:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5964:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5973:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5976:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5966:6:25"},"nodeType":"YulFunctionCall","src":"5966:12:25"},"nodeType":"YulExpressionStatement","src":"5966:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"5950:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"5960:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5947:2:25"},"nodeType":"YulFunctionCall","src":"5947:16:25"},"nodeType":"YulIf","src":"5944:36:25"},{"nodeType":"YulAssignment","src":"5989:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6032:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"6043:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6028:3:25"},"nodeType":"YulFunctionCall","src":"6028:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"6054:7:25"}],"functionName":{"name":"abi_decode_array_uint256_dyn","nodeType":"YulIdentifier","src":"5999:28:25"},"nodeType":"YulFunctionCall","src":"5999:63:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5989:6:25"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4955:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4966:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4978:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4986:6:25","type":""}],"src":"4860:1208:25"},{"body":{"nodeType":"YulBlock","src":"6134:374:25","statements":[{"nodeType":"YulVariableDeclaration","src":"6144:26:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6164:5:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6158:5:25"},"nodeType":"YulFunctionCall","src":"6158:12:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"6148:6:25","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6186:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"6191:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6179:6:25"},"nodeType":"YulFunctionCall","src":"6179:19:25"},"nodeType":"YulExpressionStatement","src":"6179:19:25"},{"nodeType":"YulVariableDeclaration","src":"6207:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"6217:4:25","type":"","value":"0x20"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"6211:2:25","type":""}]},{"nodeType":"YulAssignment","src":"6230:19:25","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6241:3:25"},{"name":"_1","nodeType":"YulIdentifier","src":"6246:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6237:3:25"},"nodeType":"YulFunctionCall","src":"6237:12:25"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6230:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"6258:28:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6276:5:25"},{"name":"_1","nodeType":"YulIdentifier","src":"6283:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6272:3:25"},"nodeType":"YulFunctionCall","src":"6272:14:25"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"6262:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6295:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"6304:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"6299:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6363:120:25","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6384:3:25"},{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6395:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6389:5:25"},"nodeType":"YulFunctionCall","src":"6389:13:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6377:6:25"},"nodeType":"YulFunctionCall","src":"6377:26:25"},"nodeType":"YulExpressionStatement","src":"6377:26:25"},{"nodeType":"YulAssignment","src":"6416:19:25","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6427:3:25"},{"name":"_1","nodeType":"YulIdentifier","src":"6432:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6423:3:25"},"nodeType":"YulFunctionCall","src":"6423:12:25"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6416:3:25"}]},{"nodeType":"YulAssignment","src":"6448:25:25","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6462:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"6470:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6458:3:25"},"nodeType":"YulFunctionCall","src":"6458:15:25"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6448:6:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"6325:1:25"},{"name":"length","nodeType":"YulIdentifier","src":"6328:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6322:2:25"},"nodeType":"YulFunctionCall","src":"6322:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"6336:18:25","statements":[{"nodeType":"YulAssignment","src":"6338:14:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"6347:1:25"},{"kind":"number","nodeType":"YulLiteral","src":"6350:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6343:3:25"},"nodeType":"YulFunctionCall","src":"6343:9:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"6338:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"6318:3:25","statements":[]},"src":"6314:169:25"},{"nodeType":"YulAssignment","src":"6492:10:25","value":{"name":"pos","nodeType":"YulIdentifier","src":"6499:3:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"6492:3:25"}]}]},"name":"abi_encode_array_uint256_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6111:5:25","type":""},{"name":"pos","nodeType":"YulTypedName","src":"6118:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"6126:3:25","type":""}],"src":"6073:435:25"},{"body":{"nodeType":"YulBlock","src":"6664:110:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6681:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6692:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6674:6:25"},"nodeType":"YulFunctionCall","src":"6674:21:25"},"nodeType":"YulExpressionStatement","src":"6674:21:25"},{"nodeType":"YulAssignment","src":"6704:64:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6741:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6753:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6764:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6749:3:25"},"nodeType":"YulFunctionCall","src":"6749:18:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"6712:28:25"},"nodeType":"YulFunctionCall","src":"6712:56:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6704:4:25"}]}]},"name":"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6633:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6644:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6655:4:25","type":""}],"src":"6513:261:25"},{"body":{"nodeType":"YulBlock","src":"6863:263:25","statements":[{"body":{"nodeType":"YulBlock","src":"6909:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6918:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6921:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6911:6:25"},"nodeType":"YulFunctionCall","src":"6911:12:25"},"nodeType":"YulExpressionStatement","src":"6911:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6884:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"6893:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6880:3:25"},"nodeType":"YulFunctionCall","src":"6880:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"6905:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6876:3:25"},"nodeType":"YulFunctionCall","src":"6876:32:25"},"nodeType":"YulIf","src":"6873:52:25"},{"nodeType":"YulAssignment","src":"6934:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6963:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"6944:18:25"},"nodeType":"YulFunctionCall","src":"6944:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6934:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"6982:45:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7012:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7023:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7008:3:25"},"nodeType":"YulFunctionCall","src":"7008:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6995:12:25"},"nodeType":"YulFunctionCall","src":"6995:32:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"6986:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"7080:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7089:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7092:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7082:6:25"},"nodeType":"YulFunctionCall","src":"7082:12:25"},"nodeType":"YulExpressionStatement","src":"7082:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7049:5:25"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7070:5:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7063:6:25"},"nodeType":"YulFunctionCall","src":"7063:13:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7056:6:25"},"nodeType":"YulFunctionCall","src":"7056:21:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"7046:2:25"},"nodeType":"YulFunctionCall","src":"7046:32:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7039:6:25"},"nodeType":"YulFunctionCall","src":"7039:40:25"},"nodeType":"YulIf","src":"7036:60:25"},{"nodeType":"YulAssignment","src":"7105:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"7115:5:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7105:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6821:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"6832:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6844:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6852:6:25","type":""}],"src":"6779:347:25"},{"body":{"nodeType":"YulBlock","src":"7218:173:25","statements":[{"body":{"nodeType":"YulBlock","src":"7264:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7273:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7276:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7266:6:25"},"nodeType":"YulFunctionCall","src":"7266:12:25"},"nodeType":"YulExpressionStatement","src":"7266:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7239:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"7248:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7235:3:25"},"nodeType":"YulFunctionCall","src":"7235:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"7260:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7231:3:25"},"nodeType":"YulFunctionCall","src":"7231:32:25"},"nodeType":"YulIf","src":"7228:52:25"},{"nodeType":"YulAssignment","src":"7289:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7318:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7299:18:25"},"nodeType":"YulFunctionCall","src":"7299:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7289:6:25"}]},{"nodeType":"YulAssignment","src":"7337:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7370:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7381:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7366:3:25"},"nodeType":"YulFunctionCall","src":"7366:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7347:18:25"},"nodeType":"YulFunctionCall","src":"7347:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7337:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7176:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7187:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7199:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7207:6:25","type":""}],"src":"7131:260:25"},{"body":{"nodeType":"YulBlock","src":"7543:459:25","statements":[{"body":{"nodeType":"YulBlock","src":"7590:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7599:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7602:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7592:6:25"},"nodeType":"YulFunctionCall","src":"7592:12:25"},"nodeType":"YulExpressionStatement","src":"7592:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7564:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"7573:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7560:3:25"},"nodeType":"YulFunctionCall","src":"7560:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"7585:3:25","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7556:3:25"},"nodeType":"YulFunctionCall","src":"7556:33:25"},"nodeType":"YulIf","src":"7553:53:25"},{"nodeType":"YulAssignment","src":"7615:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7644:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7625:18:25"},"nodeType":"YulFunctionCall","src":"7625:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7615:6:25"}]},{"nodeType":"YulAssignment","src":"7663:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7696:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7707:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7692:3:25"},"nodeType":"YulFunctionCall","src":"7692:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7673:18:25"},"nodeType":"YulFunctionCall","src":"7673:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7663:6:25"}]},{"nodeType":"YulAssignment","src":"7720:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7747:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7758:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7743:3:25"},"nodeType":"YulFunctionCall","src":"7743:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7730:12:25"},"nodeType":"YulFunctionCall","src":"7730:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"7720:6:25"}]},{"nodeType":"YulAssignment","src":"7771:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7798:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7809:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7794:3:25"},"nodeType":"YulFunctionCall","src":"7794:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7781:12:25"},"nodeType":"YulFunctionCall","src":"7781:32:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"7771:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"7822:47:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7853:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7864:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7849:3:25"},"nodeType":"YulFunctionCall","src":"7849:19:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7836:12:25"},"nodeType":"YulFunctionCall","src":"7836:33:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"7826:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"7912:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7921:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7924:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7914:6:25"},"nodeType":"YulFunctionCall","src":"7914:12:25"},"nodeType":"YulExpressionStatement","src":"7914:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7884:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"7892:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7881:2:25"},"nodeType":"YulFunctionCall","src":"7881:30:25"},"nodeType":"YulIf","src":"7878:50:25"},{"nodeType":"YulAssignment","src":"7937:59:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7968:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"7979:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7964:3:25"},"nodeType":"YulFunctionCall","src":"7964:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7988:7:25"}],"functionName":{"name":"abi_decode_bytes","nodeType":"YulIdentifier","src":"7947:16:25"},"nodeType":"YulFunctionCall","src":"7947:49:25"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"7937:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7477:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7488:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7500:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7508:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"7516:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"7524:6:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"7532:6:25","type":""}],"src":"7396:606:25"},{"body":{"nodeType":"YulBlock","src":"8181:232:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8198:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8209:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8191:6:25"},"nodeType":"YulFunctionCall","src":"8191:21:25"},"nodeType":"YulExpressionStatement","src":"8191:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8232:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8243:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8228:3:25"},"nodeType":"YulFunctionCall","src":"8228:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"8248:2:25","type":"","value":"42"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8221:6:25"},"nodeType":"YulFunctionCall","src":"8221:30:25"},"nodeType":"YulExpressionStatement","src":"8221:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8271:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8282:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8267:3:25"},"nodeType":"YulFunctionCall","src":"8267:18:25"},{"hexValue":"455243313135353a2061646472657373207a65726f206973206e6f7420612076","kind":"string","nodeType":"YulLiteral","src":"8287:34:25","type":"","value":"ERC1155: address zero is not a v"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8260:6:25"},"nodeType":"YulFunctionCall","src":"8260:62:25"},"nodeType":"YulExpressionStatement","src":"8260:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8342:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8353:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8338:3:25"},"nodeType":"YulFunctionCall","src":"8338:18:25"},{"hexValue":"616c6964206f776e6572","kind":"string","nodeType":"YulLiteral","src":"8358:12:25","type":"","value":"alid owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8331:6:25"},"nodeType":"YulFunctionCall","src":"8331:40:25"},"nodeType":"YulExpressionStatement","src":"8331:40:25"},{"nodeType":"YulAssignment","src":"8380:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8392:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8403:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8388:3:25"},"nodeType":"YulFunctionCall","src":"8388:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8380:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8158:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8172:4:25","type":""}],"src":"8007:406:25"},{"body":{"nodeType":"YulBlock","src":"8473:325:25","statements":[{"nodeType":"YulAssignment","src":"8483:22:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8497:1:25","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"8500:4:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"8493:3:25"},"nodeType":"YulFunctionCall","src":"8493:12:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"8483:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"8514:38:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"8544:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"8550:1:25","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8540:3:25"},"nodeType":"YulFunctionCall","src":"8540:12:25"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"8518:18:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"8591:31:25","statements":[{"nodeType":"YulAssignment","src":"8593:27:25","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"8607:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"8615:4:25","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8603:3:25"},"nodeType":"YulFunctionCall","src":"8603:17:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"8593:6:25"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"8571:18:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"8564:6:25"},"nodeType":"YulFunctionCall","src":"8564:26:25"},"nodeType":"YulIf","src":"8561:61:25"},{"body":{"nodeType":"YulBlock","src":"8681:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8702:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8709:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"8714:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"8705:3:25"},"nodeType":"YulFunctionCall","src":"8705:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8695:6:25"},"nodeType":"YulFunctionCall","src":"8695:31:25"},"nodeType":"YulExpressionStatement","src":"8695:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8746:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"8749:4:25","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8739:6:25"},"nodeType":"YulFunctionCall","src":"8739:15:25"},"nodeType":"YulExpressionStatement","src":"8739:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8774:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8777:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8767:6:25"},"nodeType":"YulFunctionCall","src":"8767:15:25"},"nodeType":"YulExpressionStatement","src":"8767:15:25"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"8637:18:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"8660:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"8668:2:25","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"8657:2:25"},"nodeType":"YulFunctionCall","src":"8657:14:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"8634:2:25"},"nodeType":"YulFunctionCall","src":"8634:38:25"},"nodeType":"YulIf","src":"8631:161:25"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"8453:4:25","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"8462:6:25","type":""}],"src":"8418:380:25"},{"body":{"nodeType":"YulBlock","src":"8977:236:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8994:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9005:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8987:6:25"},"nodeType":"YulFunctionCall","src":"8987:21:25"},"nodeType":"YulExpressionStatement","src":"8987:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9028:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9039:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9024:3:25"},"nodeType":"YulFunctionCall","src":"9024:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9044:2:25","type":"","value":"46"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9017:6:25"},"nodeType":"YulFunctionCall","src":"9017:30:25"},"nodeType":"YulExpressionStatement","src":"9017:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9067:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9078:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9063:3:25"},"nodeType":"YulFunctionCall","src":"9063:18:25"},{"hexValue":"455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e","kind":"string","nodeType":"YulLiteral","src":"9083:34:25","type":"","value":"ERC1155: caller is not token own"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9056:6:25"},"nodeType":"YulFunctionCall","src":"9056:62:25"},"nodeType":"YulExpressionStatement","src":"9056:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9138:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9149:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9134:3:25"},"nodeType":"YulFunctionCall","src":"9134:18:25"},{"hexValue":"6572206f7220617070726f766564","kind":"string","nodeType":"YulLiteral","src":"9154:16:25","type":"","value":"er or approved"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9127:6:25"},"nodeType":"YulFunctionCall","src":"9127:44:25"},"nodeType":"YulExpressionStatement","src":"9127:44:25"},{"nodeType":"YulAssignment","src":"9180:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9192:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9203:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9188:3:25"},"nodeType":"YulFunctionCall","src":"9188:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9180:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8954:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8968:4:25","type":""}],"src":"8803:410:25"},{"body":{"nodeType":"YulBlock","src":"9392:231:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9409:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9420:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9402:6:25"},"nodeType":"YulFunctionCall","src":"9402:21:25"},"nodeType":"YulExpressionStatement","src":"9402:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9443:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9454:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9439:3:25"},"nodeType":"YulFunctionCall","src":"9439:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9459:2:25","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9432:6:25"},"nodeType":"YulFunctionCall","src":"9432:30:25"},"nodeType":"YulExpressionStatement","src":"9432:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9482:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9493:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9478:3:25"},"nodeType":"YulFunctionCall","src":"9478:18:25"},{"hexValue":"455243313135353a206163636f756e747320616e6420696473206c656e677468","kind":"string","nodeType":"YulLiteral","src":"9498:34:25","type":"","value":"ERC1155: accounts and ids length"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9471:6:25"},"nodeType":"YulFunctionCall","src":"9471:62:25"},"nodeType":"YulExpressionStatement","src":"9471:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9553:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9564:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9549:3:25"},"nodeType":"YulFunctionCall","src":"9549:18:25"},{"hexValue":"206d69736d61746368","kind":"string","nodeType":"YulLiteral","src":"9569:11:25","type":"","value":" mismatch"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9542:6:25"},"nodeType":"YulFunctionCall","src":"9542:39:25"},"nodeType":"YulExpressionStatement","src":"9542:39:25"},{"nodeType":"YulAssignment","src":"9590:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9602:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9613:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9598:3:25"},"nodeType":"YulFunctionCall","src":"9598:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9590:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9369:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9383:4:25","type":""}],"src":"9218:405:25"},{"body":{"nodeType":"YulBlock","src":"9660:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9677:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9684:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"9689:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9680:3:25"},"nodeType":"YulFunctionCall","src":"9680:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9670:6:25"},"nodeType":"YulFunctionCall","src":"9670:31:25"},"nodeType":"YulExpressionStatement","src":"9670:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9717:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"9720:4:25","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9710:6:25"},"nodeType":"YulFunctionCall","src":"9710:15:25"},"nodeType":"YulExpressionStatement","src":"9710:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9741:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9744:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9734:6:25"},"nodeType":"YulFunctionCall","src":"9734:15:25"},"nodeType":"YulExpressionStatement","src":"9734:15:25"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"9628:127:25"},{"body":{"nodeType":"YulBlock","src":"9792:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9809:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9816:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"9821:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9812:3:25"},"nodeType":"YulFunctionCall","src":"9812:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9802:6:25"},"nodeType":"YulFunctionCall","src":"9802:31:25"},"nodeType":"YulExpressionStatement","src":"9802:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9849:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"9852:4:25","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9842:6:25"},"nodeType":"YulFunctionCall","src":"9842:15:25"},"nodeType":"YulExpressionStatement","src":"9842:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9873:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9876:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9866:6:25"},"nodeType":"YulFunctionCall","src":"9866:15:25"},"nodeType":"YulExpressionStatement","src":"9866:15:25"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"9760:127:25"},{"body":{"nodeType":"YulBlock","src":"9939:88:25","statements":[{"body":{"nodeType":"YulBlock","src":"9970:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"9972:16:25"},"nodeType":"YulFunctionCall","src":"9972:18:25"},"nodeType":"YulExpressionStatement","src":"9972:18:25"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9955:5:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9966:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"9962:3:25"},"nodeType":"YulFunctionCall","src":"9962:6:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"9952:2:25"},"nodeType":"YulFunctionCall","src":"9952:17:25"},"nodeType":"YulIf","src":"9949:43:25"},{"nodeType":"YulAssignment","src":"10001:20:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10012:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"10019:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10008:3:25"},"nodeType":"YulFunctionCall","src":"10008:13:25"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"10001:3:25"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9921:5:25","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"9931:3:25","type":""}],"src":"9892:135:25"},{"body":{"nodeType":"YulBlock","src":"10206:230:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10223:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10234:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10216:6:25"},"nodeType":"YulFunctionCall","src":"10216:21:25"},"nodeType":"YulExpressionStatement","src":"10216:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10257:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10268:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10253:3:25"},"nodeType":"YulFunctionCall","src":"10253:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"10273:2:25","type":"","value":"40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10246:6:25"},"nodeType":"YulFunctionCall","src":"10246:30:25"},"nodeType":"YulExpressionStatement","src":"10246:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10296:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10307:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10292:3:25"},"nodeType":"YulFunctionCall","src":"10292:18:25"},{"hexValue":"455243313135353a2069647320616e6420616d6f756e7473206c656e67746820","kind":"string","nodeType":"YulLiteral","src":"10312:34:25","type":"","value":"ERC1155: ids and amounts length "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10285:6:25"},"nodeType":"YulFunctionCall","src":"10285:62:25"},"nodeType":"YulExpressionStatement","src":"10285:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10367:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10378:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10363:3:25"},"nodeType":"YulFunctionCall","src":"10363:18:25"},{"hexValue":"6d69736d61746368","kind":"string","nodeType":"YulLiteral","src":"10383:10:25","type":"","value":"mismatch"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10356:6:25"},"nodeType":"YulFunctionCall","src":"10356:38:25"},"nodeType":"YulExpressionStatement","src":"10356:38:25"},{"nodeType":"YulAssignment","src":"10403:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10415:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10426:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10411:3:25"},"nodeType":"YulFunctionCall","src":"10411:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10403:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10183:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10197:4:25","type":""}],"src":"10032:404:25"},{"body":{"nodeType":"YulBlock","src":"10615:227:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10632:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10643:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10625:6:25"},"nodeType":"YulFunctionCall","src":"10625:21:25"},"nodeType":"YulExpressionStatement","src":"10625:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10666:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10677:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10662:3:25"},"nodeType":"YulFunctionCall","src":"10662:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"10682:2:25","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10655:6:25"},"nodeType":"YulFunctionCall","src":"10655:30:25"},"nodeType":"YulExpressionStatement","src":"10655:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10705:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10716:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10701:3:25"},"nodeType":"YulFunctionCall","src":"10701:18:25"},{"hexValue":"455243313135353a207472616e7366657220746f20746865207a65726f206164","kind":"string","nodeType":"YulLiteral","src":"10721:34:25","type":"","value":"ERC1155: transfer to the zero ad"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10694:6:25"},"nodeType":"YulFunctionCall","src":"10694:62:25"},"nodeType":"YulExpressionStatement","src":"10694:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10776:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10787:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10772:3:25"},"nodeType":"YulFunctionCall","src":"10772:18:25"},{"hexValue":"6472657373","kind":"string","nodeType":"YulLiteral","src":"10792:7:25","type":"","value":"dress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10765:6:25"},"nodeType":"YulFunctionCall","src":"10765:35:25"},"nodeType":"YulExpressionStatement","src":"10765:35:25"},{"nodeType":"YulAssignment","src":"10809:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10821:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10832:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10817:3:25"},"nodeType":"YulFunctionCall","src":"10817:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10809:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10592:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10606:4:25","type":""}],"src":"10441:401:25"},{"body":{"nodeType":"YulBlock","src":"11021:232:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11038:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11049:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11031:6:25"},"nodeType":"YulFunctionCall","src":"11031:21:25"},"nodeType":"YulExpressionStatement","src":"11031:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11072:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11083:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11068:3:25"},"nodeType":"YulFunctionCall","src":"11068:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"11088:2:25","type":"","value":"42"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11061:6:25"},"nodeType":"YulFunctionCall","src":"11061:30:25"},"nodeType":"YulExpressionStatement","src":"11061:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11111:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11122:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11107:3:25"},"nodeType":"YulFunctionCall","src":"11107:18:25"},{"hexValue":"455243313135353a20696e73756666696369656e742062616c616e636520666f","kind":"string","nodeType":"YulLiteral","src":"11127:34:25","type":"","value":"ERC1155: insufficient balance fo"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11100:6:25"},"nodeType":"YulFunctionCall","src":"11100:62:25"},"nodeType":"YulExpressionStatement","src":"11100:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11182:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11193:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11178:3:25"},"nodeType":"YulFunctionCall","src":"11178:18:25"},{"hexValue":"72207472616e73666572","kind":"string","nodeType":"YulLiteral","src":"11198:12:25","type":"","value":"r transfer"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11171:6:25"},"nodeType":"YulFunctionCall","src":"11171:40:25"},"nodeType":"YulExpressionStatement","src":"11171:40:25"},{"nodeType":"YulAssignment","src":"11220:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11232:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11243:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11228:3:25"},"nodeType":"YulFunctionCall","src":"11228:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11220:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10998:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11012:4:25","type":""}],"src":"10847:406:25"},{"body":{"nodeType":"YulBlock","src":"11306:77:25","statements":[{"nodeType":"YulAssignment","src":"11316:16:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"11327:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"11330:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11323:3:25"},"nodeType":"YulFunctionCall","src":"11323:9:25"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"11316:3:25"}]},{"body":{"nodeType":"YulBlock","src":"11355:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"11357:16:25"},"nodeType":"YulFunctionCall","src":"11357:18:25"},"nodeType":"YulExpressionStatement","src":"11357:18:25"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"11347:1:25"},{"name":"sum","nodeType":"YulIdentifier","src":"11350:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"11344:2:25"},"nodeType":"YulFunctionCall","src":"11344:10:25"},"nodeType":"YulIf","src":"11341:36:25"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"11289:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"11292:1:25","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"11298:3:25","type":""}],"src":"11258:125:25"},{"body":{"nodeType":"YulBlock","src":"11617:236:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11634:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11645:2:25","type":"","value":"64"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11627:6:25"},"nodeType":"YulFunctionCall","src":"11627:21:25"},"nodeType":"YulExpressionStatement","src":"11627:21:25"},{"nodeType":"YulVariableDeclaration","src":"11657:70:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11700:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11712:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11723:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11708:3:25"},"nodeType":"YulFunctionCall","src":"11708:18:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"11671:28:25"},"nodeType":"YulFunctionCall","src":"11671:56:25"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"11661:6:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11747:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11758:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11743:3:25"},"nodeType":"YulFunctionCall","src":"11743:18:25"},{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"11767:6:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"11775:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11763:3:25"},"nodeType":"YulFunctionCall","src":"11763:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11736:6:25"},"nodeType":"YulFunctionCall","src":"11736:50:25"},"nodeType":"YulExpressionStatement","src":"11736:50:25"},{"nodeType":"YulAssignment","src":"11795:52:25","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"11832:6:25"},{"name":"tail_1","nodeType":"YulIdentifier","src":"11840:6:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"11803:28:25"},"nodeType":"YulFunctionCall","src":"11803:44:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11795:4:25"}]}]},"name":"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11578:9:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"11589:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11597:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11608:4:25","type":""}],"src":"11388:465:25"},{"body":{"nodeType":"YulBlock","src":"12032:231:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12049:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12060:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12042:6:25"},"nodeType":"YulFunctionCall","src":"12042:21:25"},"nodeType":"YulExpressionStatement","src":"12042:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12083:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12094:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12079:3:25"},"nodeType":"YulFunctionCall","src":"12079:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"12099:2:25","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12072:6:25"},"nodeType":"YulFunctionCall","src":"12072:30:25"},"nodeType":"YulExpressionStatement","src":"12072:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12122:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12133:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12118:3:25"},"nodeType":"YulFunctionCall","src":"12118:18:25"},{"hexValue":"455243313135353a2073657474696e6720617070726f76616c20737461747573","kind":"string","nodeType":"YulLiteral","src":"12138:34:25","type":"","value":"ERC1155: setting approval status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12111:6:25"},"nodeType":"YulFunctionCall","src":"12111:62:25"},"nodeType":"YulExpressionStatement","src":"12111:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12193:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12204:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12189:3:25"},"nodeType":"YulFunctionCall","src":"12189:18:25"},{"hexValue":"20666f722073656c66","kind":"string","nodeType":"YulLiteral","src":"12209:11:25","type":"","value":" for self"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12182:6:25"},"nodeType":"YulFunctionCall","src":"12182:39:25"},"nodeType":"YulExpressionStatement","src":"12182:39:25"},{"nodeType":"YulAssignment","src":"12230:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12242:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12253:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12238:3:25"},"nodeType":"YulFunctionCall","src":"12238:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12230:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12009:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12023:4:25","type":""}],"src":"11858:405:25"},{"body":{"nodeType":"YulBlock","src":"12397:119:25","statements":[{"nodeType":"YulAssignment","src":"12407:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12419:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12430:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12415:3:25"},"nodeType":"YulFunctionCall","src":"12415:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12407:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12449:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"12460:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12442:6:25"},"nodeType":"YulFunctionCall","src":"12442:25:25"},"nodeType":"YulExpressionStatement","src":"12442:25:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12487:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12498:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12483:3:25"},"nodeType":"YulFunctionCall","src":"12483:18:25"},{"name":"value1","nodeType":"YulIdentifier","src":"12503:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12476:6:25"},"nodeType":"YulFunctionCall","src":"12476:34:25"},"nodeType":"YulExpressionStatement","src":"12476:34:25"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12358:9:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12369:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12377:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12388:4:25","type":""}],"src":"12268:248:25"},{"body":{"nodeType":"YulBlock","src":"12852:496:25","statements":[{"nodeType":"YulVariableDeclaration","src":"12862:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12880:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"12885:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"12876:3:25"},"nodeType":"YulFunctionCall","src":"12876:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"12889:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12872:3:25"},"nodeType":"YulFunctionCall","src":"12872:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"12866:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12907:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12922:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"12930:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12918:3:25"},"nodeType":"YulFunctionCall","src":"12918:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12900:6:25"},"nodeType":"YulFunctionCall","src":"12900:34:25"},"nodeType":"YulExpressionStatement","src":"12900:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12954:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12965:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12950:3:25"},"nodeType":"YulFunctionCall","src":"12950:18:25"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"12974:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"12982:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12970:3:25"},"nodeType":"YulFunctionCall","src":"12970:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12943:6:25"},"nodeType":"YulFunctionCall","src":"12943:43:25"},"nodeType":"YulExpressionStatement","src":"12943:43:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13006:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13017:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13002:3:25"},"nodeType":"YulFunctionCall","src":"13002:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"13022:3:25","type":"","value":"160"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12995:6:25"},"nodeType":"YulFunctionCall","src":"12995:31:25"},"nodeType":"YulExpressionStatement","src":"12995:31:25"},{"nodeType":"YulVariableDeclaration","src":"13035:71:25","value":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"13078:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13090:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13101:3:25","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13086:3:25"},"nodeType":"YulFunctionCall","src":"13086:19:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"13049:28:25"},"nodeType":"YulFunctionCall","src":"13049:57:25"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"13039:6:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13126:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13137:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13122:3:25"},"nodeType":"YulFunctionCall","src":"13122:18:25"},{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"13146:6:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"13154:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13142:3:25"},"nodeType":"YulFunctionCall","src":"13142:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13115:6:25"},"nodeType":"YulFunctionCall","src":"13115:50:25"},"nodeType":"YulExpressionStatement","src":"13115:50:25"},{"nodeType":"YulVariableDeclaration","src":"13174:58:25","value":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"13217:6:25"},{"name":"tail_1","nodeType":"YulIdentifier","src":"13225:6:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"13188:28:25"},"nodeType":"YulFunctionCall","src":"13188:44:25"},"variables":[{"name":"tail_2","nodeType":"YulTypedName","src":"13178:6:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13252:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13263:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13248:3:25"},"nodeType":"YulFunctionCall","src":"13248:19:25"},{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"13273:6:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"13281:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13269:3:25"},"nodeType":"YulFunctionCall","src":"13269:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13241:6:25"},"nodeType":"YulFunctionCall","src":"13241:51:25"},"nodeType":"YulExpressionStatement","src":"13241:51:25"},{"nodeType":"YulAssignment","src":"13301:41:25","value":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"13327:6:25"},{"name":"tail_2","nodeType":"YulIdentifier","src":"13335:6:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"13309:17:25"},"nodeType":"YulFunctionCall","src":"13309:33:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13301:4:25"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12789:9:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"12800:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"12808:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"12816:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12824:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12832:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12843:4:25","type":""}],"src":"12521:827:25"},{"body":{"nodeType":"YulBlock","src":"13433:169:25","statements":[{"body":{"nodeType":"YulBlock","src":"13479:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13488:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13491:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"13481:6:25"},"nodeType":"YulFunctionCall","src":"13481:12:25"},"nodeType":"YulExpressionStatement","src":"13481:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"13454:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"13463:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13450:3:25"},"nodeType":"YulFunctionCall","src":"13450:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"13475:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"13446:3:25"},"nodeType":"YulFunctionCall","src":"13446:32:25"},"nodeType":"YulIf","src":"13443:52:25"},{"nodeType":"YulVariableDeclaration","src":"13504:29:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13523:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13517:5:25"},"nodeType":"YulFunctionCall","src":"13517:16:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"13508:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13566:5:25"}],"functionName":{"name":"validator_revert_bytes4","nodeType":"YulIdentifier","src":"13542:23:25"},"nodeType":"YulFunctionCall","src":"13542:30:25"},"nodeType":"YulExpressionStatement","src":"13542:30:25"},{"nodeType":"YulAssignment","src":"13581:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"13591:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"13581:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13399:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"13410:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"13422:6:25","type":""}],"src":"13353:249:25"},{"body":{"nodeType":"YulBlock","src":"13650:136:25","statements":[{"body":{"nodeType":"YulBlock","src":"13695:85:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13724:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13727:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13730:1:25","type":"","value":"4"}],"functionName":{"name":"returndatacopy","nodeType":"YulIdentifier","src":"13709:14:25"},"nodeType":"YulFunctionCall","src":"13709:23:25"},"nodeType":"YulExpressionStatement","src":"13709:23:25"},{"nodeType":"YulAssignment","src":"13745:25:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13756:3:25","type":"","value":"224"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13767:1:25","type":"","value":"0"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13761:5:25"},"nodeType":"YulFunctionCall","src":"13761:8:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"13752:3:25"},"nodeType":"YulFunctionCall","src":"13752:18:25"},"variableNames":[{"name":"sig","nodeType":"YulIdentifier","src":"13745:3:25"}]}]},"condition":{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"13666:14:25"},"nodeType":"YulFunctionCall","src":"13666:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"13684:1:25","type":"","value":"3"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"13663:2:25"},"nodeType":"YulFunctionCall","src":"13663:23:25"},"nodeType":"YulIf","src":"13660:120:25"}]},"name":"return_data_selector","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"sig","nodeType":"YulTypedName","src":"13642:3:25","type":""}],"src":"13607:179:25"},{"body":{"nodeType":"YulBlock","src":"13838:624:25","statements":[{"body":{"nodeType":"YulBlock","src":"13878:9:25","statements":[{"nodeType":"YulLeave","src":"13880:5:25"}]},"condition":{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"13854:14:25"},"nodeType":"YulFunctionCall","src":"13854:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"13872:4:25","type":"","value":"0x44"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"13851:2:25"},"nodeType":"YulFunctionCall","src":"13851:26:25"},"nodeType":"YulIf","src":"13848:39:25"},{"nodeType":"YulVariableDeclaration","src":"13896:21:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13914:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13908:5:25"},"nodeType":"YulFunctionCall","src":"13908:9:25"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"13900:4:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13926:16:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13940:1:25","type":"","value":"3"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"13936:3:25"},"nodeType":"YulFunctionCall","src":"13936:6:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"13930:2:25","type":""}]},{"expression":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"13966:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"13972:1:25","type":"","value":"4"},{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"13979:14:25"},"nodeType":"YulFunctionCall","src":"13979:16:25"},{"name":"_1","nodeType":"YulIdentifier","src":"13997:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13975:3:25"},"nodeType":"YulFunctionCall","src":"13975:25:25"}],"functionName":{"name":"returndatacopy","nodeType":"YulIdentifier","src":"13951:14:25"},"nodeType":"YulFunctionCall","src":"13951:50:25"},"nodeType":"YulExpressionStatement","src":"13951:50:25"},{"nodeType":"YulVariableDeclaration","src":"14010:25:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"14030:4:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14024:5:25"},"nodeType":"YulFunctionCall","src":"14024:11:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14014:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"14044:26:25","value":{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"14054:14:25"},"nodeType":"YulFunctionCall","src":"14054:16:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"14048:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"14079:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"14089:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"14083:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"14165:9:25","statements":[{"nodeType":"YulLeave","src":"14167:5:25"}]},"condition":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"14125:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"14133:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"14122:2:25"},"nodeType":"YulFunctionCall","src":"14122:14:25"},{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"14145:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"14153:4:25","type":"","value":"0x24"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14141:3:25"},"nodeType":"YulFunctionCall","src":"14141:17:25"},{"name":"_2","nodeType":"YulIdentifier","src":"14160:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"14138:2:25"},"nodeType":"YulFunctionCall","src":"14138:25:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"14119:2:25"},"nodeType":"YulFunctionCall","src":"14119:45:25"},"nodeType":"YulIf","src":"14116:58:25"},{"nodeType":"YulVariableDeclaration","src":"14183:28:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"14198:4:25"},{"name":"offset","nodeType":"YulIdentifier","src":"14204:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14194:3:25"},"nodeType":"YulFunctionCall","src":"14194:17:25"},"variables":[{"name":"msg","nodeType":"YulTypedName","src":"14187:3:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"14220:24:25","value":{"arguments":[{"name":"msg","nodeType":"YulIdentifier","src":"14240:3:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14234:5:25"},"nodeType":"YulFunctionCall","src":"14234:10:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"14224:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"14271:9:25","statements":[{"nodeType":"YulLeave","src":"14273:5:25"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"14259:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"14267:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"14256:2:25"},"nodeType":"YulFunctionCall","src":"14256:14:25"},"nodeType":"YulIf","src":"14253:27:25"},{"body":{"nodeType":"YulBlock","src":"14362:9:25","statements":[{"nodeType":"YulLeave","src":"14364:5:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"msg","nodeType":"YulIdentifier","src":"14303:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"14308:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14299:3:25"},"nodeType":"YulFunctionCall","src":"14299:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"14317:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14295:3:25"},"nodeType":"YulFunctionCall","src":"14295:27:25"},{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"14332:4:25"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"14338:14:25"},"nodeType":"YulFunctionCall","src":"14338:16:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14328:3:25"},"nodeType":"YulFunctionCall","src":"14328:27:25"},{"name":"_1","nodeType":"YulIdentifier","src":"14357:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14324:3:25"},"nodeType":"YulFunctionCall","src":"14324:36:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"14292:2:25"},"nodeType":"YulFunctionCall","src":"14292:69:25"},"nodeType":"YulIf","src":"14289:82:25"},{"expression":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"14400:4:25"},{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"14414:6:25"},{"name":"length","nodeType":"YulIdentifier","src":"14422:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14410:3:25"},"nodeType":"YulFunctionCall","src":"14410:19:25"},{"kind":"number","nodeType":"YulLiteral","src":"14431:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14406:3:25"},"nodeType":"YulFunctionCall","src":"14406:30:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"14380:19:25"},"nodeType":"YulFunctionCall","src":"14380:57:25"},"nodeType":"YulExpressionStatement","src":"14380:57:25"},{"nodeType":"YulAssignment","src":"14446:10:25","value":{"name":"msg","nodeType":"YulIdentifier","src":"14453:3:25"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"14446:3:25"}]}]},"name":"try_decode_error_message","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"13830:3:25","type":""}],"src":"13791:671:25"},{"body":{"nodeType":"YulBlock","src":"14641:242:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14658:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14669:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14651:6:25"},"nodeType":"YulFunctionCall","src":"14651:21:25"},"nodeType":"YulExpressionStatement","src":"14651:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14692:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14703:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14688:3:25"},"nodeType":"YulFunctionCall","src":"14688:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"14708:2:25","type":"","value":"52"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14681:6:25"},"nodeType":"YulFunctionCall","src":"14681:30:25"},"nodeType":"YulExpressionStatement","src":"14681:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14731:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14742:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14727:3:25"},"nodeType":"YulFunctionCall","src":"14727:18:25"},{"hexValue":"455243313135353a207472616e7366657220746f206e6f6e2d45524331313535","kind":"string","nodeType":"YulLiteral","src":"14747:34:25","type":"","value":"ERC1155: transfer to non-ERC1155"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14720:6:25"},"nodeType":"YulFunctionCall","src":"14720:62:25"},"nodeType":"YulExpressionStatement","src":"14720:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14802:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14813:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14798:3:25"},"nodeType":"YulFunctionCall","src":"14798:18:25"},{"hexValue":"526563656976657220696d706c656d656e746572","kind":"string","nodeType":"YulLiteral","src":"14818:22:25","type":"","value":"Receiver implementer"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14791:6:25"},"nodeType":"YulFunctionCall","src":"14791:50:25"},"nodeType":"YulExpressionStatement","src":"14791:50:25"},{"nodeType":"YulAssignment","src":"14850:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14862:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14873:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14858:3:25"},"nodeType":"YulFunctionCall","src":"14858:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14850:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14618:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14632:4:25","type":""}],"src":"14467:416:25"},{"body":{"nodeType":"YulBlock","src":"15062:230:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15079:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15090:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15072:6:25"},"nodeType":"YulFunctionCall","src":"15072:21:25"},"nodeType":"YulExpressionStatement","src":"15072:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15113:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15124:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15109:3:25"},"nodeType":"YulFunctionCall","src":"15109:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"15129:2:25","type":"","value":"40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15102:6:25"},"nodeType":"YulFunctionCall","src":"15102:30:25"},"nodeType":"YulExpressionStatement","src":"15102:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15152:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15163:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15148:3:25"},"nodeType":"YulFunctionCall","src":"15148:18:25"},{"hexValue":"455243313135353a204552433131353552656365697665722072656a65637465","kind":"string","nodeType":"YulLiteral","src":"15168:34:25","type":"","value":"ERC1155: ERC1155Receiver rejecte"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15141:6:25"},"nodeType":"YulFunctionCall","src":"15141:62:25"},"nodeType":"YulExpressionStatement","src":"15141:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15223:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15234:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15219:3:25"},"nodeType":"YulFunctionCall","src":"15219:18:25"},{"hexValue":"6420746f6b656e73","kind":"string","nodeType":"YulLiteral","src":"15239:10:25","type":"","value":"d tokens"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15212:6:25"},"nodeType":"YulFunctionCall","src":"15212:38:25"},"nodeType":"YulExpressionStatement","src":"15212:38:25"},{"nodeType":"YulAssignment","src":"15259:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15271:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15282:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15267:3:25"},"nodeType":"YulFunctionCall","src":"15267:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15259:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15039:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15053:4:25","type":""}],"src":"14888:404:25"},{"body":{"nodeType":"YulBlock","src":"15528:330:25","statements":[{"nodeType":"YulVariableDeclaration","src":"15538:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"15556:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"15561:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"15552:3:25"},"nodeType":"YulFunctionCall","src":"15552:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"15565:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15548:3:25"},"nodeType":"YulFunctionCall","src":"15548:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"15542:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15583:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"15598:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"15606:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"15594:3:25"},"nodeType":"YulFunctionCall","src":"15594:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15576:6:25"},"nodeType":"YulFunctionCall","src":"15576:34:25"},"nodeType":"YulExpressionStatement","src":"15576:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15630:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15641:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15626:3:25"},"nodeType":"YulFunctionCall","src":"15626:18:25"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"15650:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"15658:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"15646:3:25"},"nodeType":"YulFunctionCall","src":"15646:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15619:6:25"},"nodeType":"YulFunctionCall","src":"15619:43:25"},"nodeType":"YulExpressionStatement","src":"15619:43:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15682:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15693:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15678:3:25"},"nodeType":"YulFunctionCall","src":"15678:18:25"},{"name":"value2","nodeType":"YulIdentifier","src":"15698:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15671:6:25"},"nodeType":"YulFunctionCall","src":"15671:34:25"},"nodeType":"YulExpressionStatement","src":"15671:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15725:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15736:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15721:3:25"},"nodeType":"YulFunctionCall","src":"15721:18:25"},{"name":"value3","nodeType":"YulIdentifier","src":"15741:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15714:6:25"},"nodeType":"YulFunctionCall","src":"15714:34:25"},"nodeType":"YulExpressionStatement","src":"15714:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15768:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15779:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15764:3:25"},"nodeType":"YulFunctionCall","src":"15764:19:25"},{"kind":"number","nodeType":"YulLiteral","src":"15785:3:25","type":"","value":"160"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15757:6:25"},"nodeType":"YulFunctionCall","src":"15757:32:25"},"nodeType":"YulExpressionStatement","src":"15757:32:25"},{"nodeType":"YulAssignment","src":"15798:54:25","value":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"15824:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15836:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15847:3:25","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15832:3:25"},"nodeType":"YulFunctionCall","src":"15832:19:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"15806:17:25"},"nodeType":"YulFunctionCall","src":"15806:46:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15798:4:25"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15465:9:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"15476:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"15484:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"15492:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15500:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15508:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15519:4:25","type":""}],"src":"15297:561:25"}]},"contents":"{\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        value1 := calldataload(add(headStart, 32))\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 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_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 0x20) }\n        {\n            let _1 := 0x20\n            mstore(add(add(pos, i), _1), mload(add(add(value, i), _1)))\n        }\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 finalize_allocation(memPtr, size)\n    {\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_array_uint256_dyn(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(shl(5, length), 0x20)\n    }\n    function abi_decode_array_uint256_dyn(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := calldataload(offset)\n        let _2 := 0x20\n        let _3 := array_allocation_size_array_uint256_dyn(_1)\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, _3)\n        let dst := memPtr\n        mstore(memPtr, _1)\n        dst := add(memPtr, _2)\n        let srcEnd := add(add(offset, shl(5, _1)), _2)\n        if gt(srcEnd, end) { revert(0, 0) }\n        let src := add(offset, _2)\n        for { } lt(src, srcEnd) { src := add(src, _2) }\n        {\n            mstore(dst, calldataload(src))\n            dst := add(dst, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_bytes(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := calldataload(offset)\n        if gt(_1, 0xffffffffffffffff) { panic_error_0x41() }\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, add(and(add(_1, 0x1f), not(31)), 0x20))\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), add(offset, 0x20), _1)\n        mstore(add(add(memPtr, _1), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let offset := calldataload(add(headStart, 64))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        value2 := abi_decode_array_uint256_dyn(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 96))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value3 := abi_decode_array_uint256_dyn(add(headStart, offset_1), dataEnd)\n        let offset_2 := calldataload(add(headStart, 128))\n        if gt(offset_2, _1) { revert(0, 0) }\n        value4 := abi_decode_bytes(add(headStart, offset_2), dataEnd)\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := calldataload(_2)\n        let _4 := 0x20\n        let _5 := array_allocation_size_array_uint256_dyn(_3)\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, _5)\n        let dst := memPtr\n        mstore(memPtr, _3)\n        dst := add(memPtr, _4)\n        let srcEnd := add(add(_2, shl(5, _3)), _4)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_2, _4)\n        for { } lt(src, srcEnd) { src := add(src, _4) }\n        {\n            mstore(dst, abi_decode_address(src))\n            dst := add(dst, _4)\n        }\n        value0 := memPtr\n        let offset_1 := calldataload(add(headStart, _4))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_array_uint256_dyn(add(headStart, offset_1), dataEnd)\n    }\n    function abi_encode_array_uint256_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_array_uint256_dyn(value0, add(headStart, 32))\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        value0 := abi_decode_address(headStart)\n        let value := calldataload(add(headStart, 32))\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value1 := value\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_addresst_addresst_uint256t_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        let offset := calldataload(add(headStart, 128))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value4 := abi_decode_bytes(add(headStart, offset), dataEnd)\n    }\n    function abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"ERC1155: address zero is not a v\")\n        mstore(add(headStart, 96), \"alid owner\")\n        tail := add(headStart, 128)\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_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"ERC1155: caller is not token own\")\n        mstore(add(headStart, 96), \"er or approved\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC1155: accounts and ids length\")\n        mstore(add(headStart, 96), \" mismatch\")\n        tail := add(headStart, 128)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\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_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC1155: ids and amounts length \")\n        mstore(add(headStart, 96), \"mismatch\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC1155: transfer to the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"ERC1155: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r transfer\")\n        tail := add(headStart, 128)\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_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint256_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC1155: setting approval status\")\n        mstore(add(headStart, 96), \" for self\")\n        tail := add(headStart, 128)\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_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), 160)\n        let tail_1 := abi_encode_array_uint256_dyn(value2, add(headStart, 160))\n        mstore(add(headStart, 96), sub(tail_1, headStart))\n        let tail_2 := abi_encode_array_uint256_dyn(value3, tail_1)\n        mstore(add(headStart, 128), sub(tail_2, headStart))\n        tail := abi_encode_string(value4, tail_2)\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 return_data_selector() -> sig\n    {\n        if gt(returndatasize(), 3)\n        {\n            returndatacopy(0, 0, 4)\n            sig := shr(224, mload(0))\n        }\n    }\n    function try_decode_error_message() -> ret\n    {\n        if lt(returndatasize(), 0x44) { leave }\n        let data := mload(64)\n        let _1 := not(3)\n        returndatacopy(data, 4, add(returndatasize(), _1))\n        let offset := mload(data)\n        let _2 := returndatasize()\n        let _3 := 0xffffffffffffffff\n        if or(gt(offset, _3), gt(add(offset, 0x24), _2)) { leave }\n        let msg := add(data, offset)\n        let length := mload(msg)\n        if gt(length, _3) { leave }\n        if gt(add(add(msg, length), 0x20), add(add(data, returndatasize()), _1)) { leave }\n        finalize_allocation(data, add(add(offset, length), 0x20))\n        ret := msg\n    }\n    function abi_encode_tuple_t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 52)\n        mstore(add(headStart, 64), \"ERC1155: transfer to non-ERC1155\")\n        mstore(add(headStart, 96), \"Receiver implementer\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC1155: ERC1155Receiver rejecte\")\n        mstore(add(headStart, 96), \"d tokens\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), 160)\n        tail := abi_encode_string(value4, add(headStart, 160))\n    }\n}","id":25,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106100875760003560e01c80634e1273f41161005b5780634e1273f41461010a578063a22cb4651461012a578063e985e9c51461013d578063f242432a1461017957600080fd5b8062fdd58e1461008c57806301ffc9a7146100b25780630e89341c146100d55780632eb2c2d6146100f5575b600080fd5b61009f61009a366004610b40565b61018c565b6040519081526020015b60405180910390f35b6100c56100c0366004610b83565b610225565b60405190151581526020016100a9565b6100e86100e3366004610ba7565b610275565b6040516100a99190610c06565b610108610103366004610d65565b610309565b005b61011d610118366004610e0f565b610355565b6040516100a99190610f15565b610108610138366004610f28565b61047f565b6100c561014b366004610f64565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610108610187366004610f97565b61048e565b60006001600160a01b0383166101fc5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061025657506001600160e01b031982166303a24d0760e21b145b8061021f57506301ffc9a760e01b6001600160e01b031983161461021f565b60606002805461028490610ffc565b80601f01602080910402602001604051908101604052809291908181526020018280546102b090610ffc565b80156102fd5780601f106102d2576101008083540402835291602001916102fd565b820191906000526020600020905b8154815290600101906020018083116102e057829003601f168201915b50505050509050919050565b6001600160a01b0385163314806103255750610325853361014b565b6103415760405162461bcd60e51b81526004016101f390611036565b61034e85858585856104d3565b5050505050565b606081518351146103ba5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016101f3565b6000835167ffffffffffffffff8111156103d6576103d6610c19565b6040519080825280602002602001820160405280156103ff578160200160208202803683370190505b50905060005b84518110156104775761044a85828151811061042357610423611084565b602002602001015185838151811061043d5761043d611084565b602002602001015161018c565b82828151811061045c5761045c611084565b6020908102919091010152610470816110b0565b9050610405565b509392505050565b61048a3383836106b0565b5050565b6001600160a01b0385163314806104aa57506104aa853361014b565b6104c65760405162461bcd60e51b81526004016101f390611036565b61034e8585858585610790565b81518351146105355760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016101f3565b6001600160a01b03841661055b5760405162461bcd60e51b81526004016101f3906110c9565b3360005b845181101561064257600085828151811061057c5761057c611084565b60200260200101519050600085838151811061059a5761059a611084565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156105ea5760405162461bcd60e51b81526004016101f39061110e565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610627908490611158565b925050819055505050508061063b906110b0565b905061055f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161069292919061116b565b60405180910390a46106a88187878787876108ba565b505050505050565b816001600160a01b0316836001600160a01b0316036107235760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016101f3565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166107b65760405162461bcd60e51b81526004016101f3906110c9565b3360006107c285610a1e565b905060006107cf85610a1e565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156108125760405162461bcd60e51b81526004016101f39061110e565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061084f908490611158565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46108af848a8a8a8a8a610a69565b505050505050505050565b6001600160a01b0384163b156106a85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906108fe9089908990889088908890600401611199565b6020604051808303816000875af1925050508015610939575060408051601f3d908101601f19168201909252610936918101906111f7565b60015b6109e557610945611214565b806308c379a00361097e5750610959611230565b806109645750610980565b8060405162461bcd60e51b81526004016101f39190610c06565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016101f3565b6001600160e01b0319811663bc197c8160e01b14610a155760405162461bcd60e51b81526004016101f3906112ba565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610a5857610a58611084565b602090810291909101015292915050565b6001600160a01b0384163b156106a85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190610aad9089908990889088908890600401611302565b6020604051808303816000875af1925050508015610ae8575060408051601f3d908101601f19168201909252610ae5918101906111f7565b60015b610af457610945611214565b6001600160e01b0319811663f23a6e6160e01b14610a155760405162461bcd60e51b81526004016101f3906112ba565b80356001600160a01b0381168114610b3b57600080fd5b919050565b60008060408385031215610b5357600080fd5b610b5c83610b24565b946020939093013593505050565b6001600160e01b031981168114610b8057600080fd5b50565b600060208284031215610b9557600080fd5b8135610ba081610b6a565b9392505050565b600060208284031215610bb957600080fd5b5035919050565b6000815180845260005b81811015610be657602081850181015186830182015201610bca565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610ba06020830184610bc0565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715610c5557610c55610c19565b6040525050565b600067ffffffffffffffff821115610c7657610c76610c19565b5060051b60200190565b600082601f830112610c9157600080fd5b81356020610c9e82610c5c565b604051610cab8282610c2f565b83815260059390931b8501820192828101915086841115610ccb57600080fd5b8286015b84811015610ce65780358352918301918301610ccf565b509695505050505050565b600082601f830112610d0257600080fd5b813567ffffffffffffffff811115610d1c57610d1c610c19565b604051610d33601f8301601f191660200182610c2f565b818152846020838601011115610d4857600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215610d7d57600080fd5b610d8686610b24565b9450610d9460208701610b24565b9350604086013567ffffffffffffffff80821115610db157600080fd5b610dbd89838a01610c80565b94506060880135915080821115610dd357600080fd5b610ddf89838a01610c80565b93506080880135915080821115610df557600080fd5b50610e0288828901610cf1565b9150509295509295909350565b60008060408385031215610e2257600080fd5b823567ffffffffffffffff80821115610e3a57600080fd5b818501915085601f830112610e4e57600080fd5b81356020610e5b82610c5c565b604051610e688282610c2f565b83815260059390931b8501820192828101915089841115610e8857600080fd5b948201945b83861015610ead57610e9e86610b24565b82529482019490820190610e8d565b96505086013592505080821115610ec357600080fd5b50610ed085828601610c80565b9150509250929050565b600081518084526020808501945080840160005b83811015610f0a57815187529582019590820190600101610eee565b509495945050505050565b602081526000610ba06020830184610eda565b60008060408385031215610f3b57600080fd5b610f4483610b24565b915060208301358015158114610f5957600080fd5b809150509250929050565b60008060408385031215610f7757600080fd5b610f8083610b24565b9150610f8e60208401610b24565b90509250929050565b600080600080600060a08688031215610faf57600080fd5b610fb886610b24565b9450610fc660208701610b24565b93506040860135925060608601359150608086013567ffffffffffffffff811115610ff057600080fd5b610e0288828901610cf1565b600181811c9082168061101057607f821691505b60208210810361103057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016110c2576110c261109a565b5060010190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b8082018082111561021f5761021f61109a565b60408152600061117e6040830185610eda565b82810360208401526111908185610eda565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906111c590830186610eda565b82810360608401526111d78186610eda565b905082810360808401526111eb8185610bc0565b98975050505050505050565b60006020828403121561120957600080fd5b8151610ba081610b6a565b600060033d111561122d5760046000803e5060005160e01c5b90565b600060443d101561123e5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561126e57505050505090565b82850191508151818111156112865750505050505090565b843d87010160208285010111156112a05750505050505090565b6112af60208286010187610c2f565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061133c90830184610bc0565b97965050505050505056fea264697066735822122064508df9ab61fade27c54d26720ee89cfeeb5760c0a4093376dd35bfa91976c664736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x87 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4E1273F4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x4E1273F4 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x12A JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0xF242432A EQ PUSH2 0x179 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0xFDD58E EQ PUSH2 0x8C JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xE89341C EQ PUSH2 0xD5 JUMPI DUP1 PUSH4 0x2EB2C2D6 EQ PUSH2 0xF5 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x9F PUSH2 0x9A CALLDATASIZE PUSH1 0x4 PUSH2 0xB40 JUMP JUMPDEST PUSH2 0x18C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH2 0xC0 CALLDATASIZE PUSH1 0x4 PUSH2 0xB83 JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xA9 JUMP JUMPDEST PUSH2 0xE8 PUSH2 0xE3 CALLDATASIZE PUSH1 0x4 PUSH2 0xBA7 JUMP JUMPDEST PUSH2 0x275 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x108 PUSH2 0x103 CALLDATASIZE PUSH1 0x4 PUSH2 0xD65 JUMP JUMPDEST PUSH2 0x309 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11D PUSH2 0x118 CALLDATASIZE PUSH1 0x4 PUSH2 0xE0F JUMP JUMPDEST PUSH2 0x355 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0xF15 JUMP JUMPDEST PUSH2 0x108 PUSH2 0x138 CALLDATASIZE PUSH1 0x4 PUSH2 0xF28 JUMP JUMPDEST PUSH2 0x47F JUMP JUMPDEST PUSH2 0xC5 PUSH2 0x14B CALLDATASIZE PUSH1 0x4 PUSH2 0xF64 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 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 PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x108 PUSH2 0x187 CALLDATASIZE PUSH1 0x4 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x48E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2061646472657373207A65726F206973206E6F7420612076 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x30B634B21037BBB732B9 PUSH1 0xB1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP2 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 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x6CDB3D13 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x256 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3A24D07 PUSH1 0xE2 SHL EQ JUMPDEST DUP1 PUSH2 0x21F JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x21F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x284 SWAP1 PUSH2 0xFFC 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 0x2B0 SWAP1 PUSH2 0xFFC JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER EQ DUP1 PUSH2 0x325 JUMPI POP PUSH2 0x325 DUP6 CALLER PUSH2 0x14B JUMP JUMPDEST PUSH2 0x341 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x34E DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x4D3 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x3BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A206163636F756E747320616E6420696473206C656E677468 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x40DAD2E6DAC2E8C6D PUSH1 0xBB SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3D6 JUMPI PUSH2 0x3D6 PUSH2 0xC19 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3FF JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x477 JUMPI PUSH2 0x44A DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x423 JUMPI PUSH2 0x423 PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x43D JUMPI PUSH2 0x43D PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x18C JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x45C JUMPI PUSH2 0x45C PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x470 DUP2 PUSH2 0x10B0 JUMP JUMPDEST SWAP1 POP PUSH2 0x405 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x48A CALLER DUP4 DUP4 PUSH2 0x6B0 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER EQ DUP1 PUSH2 0x4AA JUMPI POP PUSH2 0x4AA DUP6 CALLER PUSH2 0x14B JUMP JUMPDEST PUSH2 0x4C6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x34E DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x790 JUMP JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x535 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2069647320616E6420616D6F756E7473206C656E67746820 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0xDAD2E6DAC2E8C6D PUSH1 0xC3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x55B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x10C9 JUMP JUMPDEST CALLER PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x642 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x57C JUMPI PUSH2 0x57C PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x59A JUMPI PUSH2 0x59A PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x0 DUP5 DUP2 MSTORE DUP1 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND DUP4 MSTORE SWAP1 SWAP4 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP2 DUP2 LT ISZERO PUSH2 0x5EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 DUP2 AND DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP1 DUP12 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x627 SWAP1 DUP5 SWAP1 PUSH2 0x1158 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0x63B SWAP1 PUSH2 0x10B0 JUMP JUMPDEST SWAP1 POP PUSH2 0x55F JUMP JUMPDEST POP DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0x692 SWAP3 SWAP2 SWAP1 PUSH2 0x116B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x6A8 DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x8BA JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x723 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2073657474696E6720617070726F76616C20737461747573 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x103337B91039B2B633 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 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 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x7B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x10C9 JUMP JUMPDEST CALLER PUSH1 0x0 PUSH2 0x7C2 DUP6 PUSH2 0xA1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x7CF DUP6 PUSH2 0xA1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP6 DUP2 LT ISZERO PUSH2 0x812 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 DUP2 AND DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP10 DUP6 SUB SWAP1 SSTORE SWAP1 DUP11 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP9 SWAP3 SWAP1 PUSH2 0x84F SWAP1 DUP5 SWAP1 PUSH2 0x1158 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP9 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP12 AND SWAP3 DUP13 DUP3 AND SWAP3 SWAP2 DUP9 AND SWAP2 PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x8AF DUP5 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0xA69 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x6A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBC197C81 SWAP1 PUSH2 0x8FE SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1199 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x939 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x936 SWAP2 DUP2 ADD SWAP1 PUSH2 0x11F7 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x9E5 JUMPI PUSH2 0x945 PUSH2 0x1214 JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0x97E JUMPI POP PUSH2 0x959 PUSH2 0x1230 JUMP JUMPDEST DUP1 PUSH2 0x964 JUMPI POP PUSH2 0x980 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0xC06 JUMP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x34 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2D45524331313535 PUSH1 0x44 DUP3 ADD MSTORE PUSH20 0x2932B1B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x61 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xBC197C81 PUSH1 0xE0 SHL EQ PUSH2 0xA15 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x12BA JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x60 SWAP2 PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0xA58 JUMPI PUSH2 0xA58 PUSH2 0x1084 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x6A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xF23A6E61 SWAP1 PUSH2 0xAAD SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1302 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xAE8 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xAE5 SWAP2 DUP2 ADD SWAP1 PUSH2 0x11F7 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xAF4 JUMPI PUSH2 0x945 PUSH2 0x1214 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xF23A6E61 PUSH1 0xE0 SHL EQ PUSH2 0xA15 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F3 SWAP1 PUSH2 0x12BA JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xB3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB53 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB5C DUP4 PUSH2 0xB24 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xB80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB95 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xBA0 DUP2 PUSH2 0xB6A JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBE6 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0xBCA JUMP JUMPDEST POP PUSH1 0x0 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 PUSH1 0x0 PUSH2 0xBA0 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xBC0 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xC55 JUMPI PUSH2 0xC55 PUSH2 0xC19 JUMP JUMPDEST PUSH1 0x40 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xC76 JUMPI PUSH2 0xC76 PUSH2 0xC19 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xC91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0xC9E DUP3 PUSH2 0xC5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCAB DUP3 DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x5 SWAP4 SWAP1 SWAP4 SHL DUP6 ADD DUP3 ADD SWAP3 DUP3 DUP2 ADD SWAP2 POP DUP7 DUP5 GT ISZERO PUSH2 0xCCB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0xCE6 JUMPI DUP1 CALLDATALOAD DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0xCCF JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD1C JUMPI PUSH2 0xD1C PUSH2 0xC19 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD33 PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0xD48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xD7D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD86 DUP7 PUSH2 0xB24 JUMP JUMPDEST SWAP5 POP PUSH2 0xD94 PUSH1 0x20 DUP8 ADD PUSH2 0xB24 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xDB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDBD DUP10 DUP4 DUP11 ADD PUSH2 0xC80 JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xDD3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDDF DUP10 DUP4 DUP11 ADD PUSH2 0xC80 JUMP JUMPDEST SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xDF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE02 DUP9 DUP3 DUP10 ADD PUSH2 0xCF1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE22 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE4E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0xE5B DUP3 PUSH2 0xC5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE68 DUP3 DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x5 SWAP4 SWAP1 SWAP4 SHL DUP6 ADD DUP3 ADD SWAP3 DUP3 DUP2 ADD SWAP2 POP DUP10 DUP5 GT ISZERO PUSH2 0xE88 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP5 DUP3 ADD SWAP5 JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0xEAD JUMPI PUSH2 0xE9E DUP7 PUSH2 0xB24 JUMP JUMPDEST DUP3 MSTORE SWAP5 DUP3 ADD SWAP5 SWAP1 DUP3 ADD SWAP1 PUSH2 0xE8D JUMP JUMPDEST SWAP7 POP POP DUP7 ADD CALLDATALOAD SWAP3 POP POP DUP1 DUP3 GT ISZERO PUSH2 0xEC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xED0 DUP6 DUP3 DUP7 ADD PUSH2 0xC80 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF0A JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xEEE JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xBA0 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xEDA JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF44 DUP4 PUSH2 0xB24 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xF59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF77 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF80 DUP4 PUSH2 0xB24 JUMP JUMPDEST SWAP2 POP PUSH2 0xF8E PUSH1 0x20 DUP5 ADD PUSH2 0xB24 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xFAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFB8 DUP7 PUSH2 0xB24 JUMP JUMPDEST SWAP5 POP PUSH2 0xFC6 PUSH1 0x20 DUP8 ADD PUSH2 0xB24 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xFF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE02 DUP9 DUP3 DUP10 ADD PUSH2 0xCF1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1010 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1030 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2E SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A2063616C6C6572206973206E6F7420746F6B656E206F776E PUSH1 0x40 DUP3 ADD MSTORE PUSH14 0x195C881BDC88185C1C1C9BDD9959 PUSH1 0x92 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x10C2 JUMPI PUSH2 0x10C2 PUSH2 0x109A JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A207472616E7366657220746F20746865207A65726F206164 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2A SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A20696E73756666696369656E742062616C616E636520666F PUSH1 0x40 DUP3 ADD MSTORE PUSH10 0x39103A3930B739B332B9 PUSH1 0xB1 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x21F JUMPI PUSH2 0x21F PUSH2 0x109A JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x117E PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0xEDA JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1190 DUP2 DUP6 PUSH2 0xEDA JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x11C5 SWAP1 DUP4 ADD DUP7 PUSH2 0xEDA JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x60 DUP5 ADD MSTORE PUSH2 0x11D7 DUP2 DUP7 PUSH2 0xEDA JUMP JUMPDEST SWAP1 POP DUP3 DUP2 SUB PUSH1 0x80 DUP5 ADD MSTORE PUSH2 0x11EB DUP2 DUP6 PUSH2 0xBC0 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1209 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xBA0 DUP2 PUSH2 0xB6A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x122D JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY POP PUSH1 0x0 MLOAD PUSH1 0xE0 SHR JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x123E JUMPI SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3 NOT RETURNDATASIZE DUP2 ADD PUSH1 0x4 DUP4 RETURNDATACOPY DUP2 MLOAD RETURNDATASIZE PUSH8 0xFFFFFFFFFFFFFFFF DUP2 PUSH1 0x24 DUP5 ADD GT DUP2 DUP5 GT OR ISZERO PUSH2 0x126E JUMPI POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 DUP6 ADD SWAP2 POP DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x1286 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP5 RETURNDATASIZE DUP8 ADD ADD PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x12A0 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x12AF PUSH1 0x20 DUP3 DUP7 ADD ADD DUP8 PUSH2 0xC2F JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x28 SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x40 DUP3 ADD MSTORE PUSH8 0x6420746F6B656E73 PUSH1 0xC0 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0xA0 PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x133C SWAP1 DUP4 ADD DUP5 PUSH2 0xBC0 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0x508DF9AB61 STATICCALL 0xDE 0x27 0xC5 0x4D 0x26 PUSH19 0xEE89CFEEB5760C0A4093376DD35BFA91976C6 PUSH5 0x736F6C6343 STOP ADDMOD SGT STOP CALLER ","sourceMap":"570:16539:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2185:227;;;;;;:::i;:::-;;:::i;:::-;;;597:25:25;;;585:2;570:18;2185:227:5;;;;;;;;1236:305;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:25;;1177:22;1159:41;;1147:2;1132:18;1236:305:5;1019:187:25;1940:103:5;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4042:426::-;;;;;;:::i;:::-;;:::i;:::-;;2569:486;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3123:153::-;;;;;;:::i;:::-;;:::i;3343:166::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3465:27:5;;;3442:4;3465:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3343:166;3576:394;;;;;;:::i;:::-;;:::i;2185:227::-;2271:7;-1:-1:-1;;;;;2298:21:5;;2290:76;;;;-1:-1:-1;;;2290:76:5;;8209:2:25;2290:76:5;;;8191:21:25;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:25;;;8331:40;8388:19;;2290:76:5;;;;;;;;;-1:-1:-1;2383:9:5;:13;;;;;;;;;;;-1:-1:-1;;;;;2383:22:5;;;;;;;;;;2185:227;;;;;:::o;1236:305::-;1338:4;-1:-1:-1;;;;;;1373:41:5;;-1:-1:-1;;;1373:41:5;;:109;;-1:-1:-1;;;;;;;1430:52:5;;-1:-1:-1;;;1430:52:5;1373:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:18;;;1498:36:5;829:155:18;1940:103:5;2000:13;2032:4;2025:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940:103;;;:::o;4042:426::-;-1:-1:-1;;;;;4267:20:5;;734:10:15;4267:20:5;;:60;;-1:-1:-1;4291:36:5;4308:4;734:10:15;3343:166:5;:::i;4291:36::-;4246:153;;;;-1:-1:-1;;;4246:153:5;;;;;;;:::i;:::-;4409:52;4432:4;4438:2;4442:3;4447:7;4456:4;4409:22;:52::i;:::-;4042:426;;;;;:::o;2569:486::-;2702:16;2757:3;:10;2738:8;:15;:29;2730:83;;;;-1:-1:-1;;;2730:83:5;;9420:2:25;2730:83:5;;;9402:21:25;9459:2;9439:18;;;9432:30;9498:34;9478:18;;;9471:62;-1:-1:-1;;;9549:18:25;;;9542:39;9598:19;;2730:83:5;9218:405:25;2730:83:5;2824:30;2871:8;:15;2857:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2857:30:5;;2824:63;;2903:9;2898:120;2922:8;:15;2918:1;:19;2898:120;;;2977:30;2987:8;2996:1;2987:11;;;;;;;;:::i;:::-;;;;;;;3000:3;3004:1;3000:6;;;;;;;;:::i;:::-;;;;;;;2977:9;:30::i;:::-;2958:13;2972:1;2958:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2939:3;;;:::i;:::-;;;2898:120;;;-1:-1:-1;3035:13:5;2569:486;-1:-1:-1;;;2569:486:5:o;3123:153::-;3217:52;734:10:15;3250:8:5;3260;3217:18;:52::i;:::-;3123:153;;:::o;3576:394::-;-1:-1:-1;;;;;3776:20:5;;734:10:15;3776:20:5;;:60;;-1:-1:-1;3800:36:5;3817:4;734:10:15;3343:166:5;:::i;3800:36::-;3755:153;;;;-1:-1:-1;;;3755:153:5;;;;;;;:::i;:::-;3918:45;3936:4;3942:2;3946;3950:6;3958:4;3918:17;:45::i;6211:1115::-;6431:7;:14;6417:3;:10;:28;6409:81;;;;-1:-1:-1;;;6409:81:5;;10234:2:25;6409:81:5;;;10216:21:25;10273:2;10253:18;;;10246:30;10312:34;10292:18;;;10285:62;-1:-1:-1;;;10363:18:25;;;10356:38;10411:19;;6409:81:5;10032:404:25;6409:81:5;-1:-1:-1;;;;;6508:16:5;;6500:66;;;;-1:-1:-1;;;6500:66:5;;;;;;;:::i;:::-;734:10:15;6577:16:5;6690:411;6714:3;:10;6710:1;:14;6690:411;;;6745:10;6758:3;6762:1;6758:6;;;;;;;;:::i;:::-;;;;;;;6745:19;;6778:14;6795:7;6803:1;6795:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6820:19;6842:13;;;;;;;;;;-1:-1:-1;;;;;6842:19:5;;;;;;;;;;;;6795:10;;-1:-1:-1;6883:21:5;;;;6875:76;;;;-1:-1:-1;;;6875:76:5;;;;;;;:::i;:::-;6993:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6993:19:5;;;;;;;;;;7015:20;;;6993:42;;7063:17;;;;;;;:27;;7015:20;;6993:9;7063:27;;7015:20;;7063:27;:::i;:::-;;;;;;;;6731:370;;;6726:3;;;;:::i;:::-;;;6690:411;;;;7146:2;-1:-1:-1;;;;;7116:47:5;7140:4;-1:-1:-1;;;;;7116:47:5;7130:8;-1:-1:-1;;;;;7116:47:5;;7150:3;7155:7;7116:47;;;;;;;:::i;:::-;;;;;;;;7244:75;7280:8;7290:4;7296:2;7300:3;7305:7;7314:4;7244:35;:75::i;:::-;6399:927;6211:1115;;;;;:::o;12790:293::-;12910:8;-1:-1:-1;;;;;12901:17:5;:5;-1:-1:-1;;;;;12901:17:5;;12893:71;;;;-1:-1:-1;;;12893:71:5;;12060:2:25;12893:71:5;;;12042:21:25;12099:2;12079:18;;;12072:30;12138:34;12118:18;;;12111:62;-1:-1:-1;;;12189:18:25;;;12182:39;12238:19;;12893:71:5;11858:405:25;12893:71:5;-1:-1:-1;;;;;12974:25:5;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12974:46:5;;;;;;;;;;13035:41;;1159::25;;;13035::5;;1132:18:25;13035:41:5;;;;;;;12790:293;;;:::o;4918:947::-;-1:-1:-1;;;;;5099:16:5;;5091:66;;;;-1:-1:-1;;;5091:66:5;;;;;;;:::i;:::-;734:10:15;5168:16:5;5232:21;5250:2;5232:17;:21::i;:::-;5209:44;;5263:24;5290:25;5308:6;5290:17;:25::i;:::-;5263:52;;5397:19;5419:13;;;;;;;;;;;-1:-1:-1;;;;;5419:19:5;;;;;;;;;;5456:21;;;;5448:76;;;;-1:-1:-1;;;5448:76:5;;;;;;;:::i;:::-;5558:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5558:19:5;;;;;;;;;;5580:20;;;5558:42;;5620:17;;;;;;;:27;;5580:20;;5558:9;5620:27;;5580:20;;5620:27;:::i;:::-;;;;-1:-1:-1;;5663:46:5;;;12442:25:25;;;12498:2;12483:18;;12476:34;;;-1:-1:-1;;;;;5663:46:5;;;;;;;;;;;;;;12415:18:25;5663:46:5;;;;;;;5790:68;5821:8;5831:4;5837:2;5841;5845:6;5853:4;5790:30;:68::i;:::-;5081:784;;;;4918:947;;;;;:::o;16116:792::-;-1:-1:-1;;;;;16348:13:5;;1702:19:14;:23;16344:558:5;;16383:79;;-1:-1:-1;;;16383:79:5;;-1:-1:-1;;;;;16383:43:5;;;;;:79;;16427:8;;16437:4;;16443:3;;16448:7;;16457:4;;16383:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16383:79:5;;;;;;;;-1:-1:-1;;16383:79:5;;;;;;;;;;;;:::i;:::-;;;16379:513;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;16768:6;16761:14;;-1:-1:-1;;;16761:14:5;;;;;;;;:::i;16379:513::-;;;16815:62;;-1:-1:-1;;;16815:62:5;;14669:2:25;16815:62:5;;;14651:21:25;14708:2;14688:18;;;14681:30;14747:34;14727:18;;;14720:62;-1:-1:-1;;;14798:18:25;;;14791:50;14858:19;;16815:62:5;14467:416:25;16379:513:5;-1:-1:-1;;;;;;16541:60:5;;-1:-1:-1;;;16541:60:5;16537:157;;16625:50;;-1:-1:-1;;;16625:50:5;;;;;;;:::i;16537:157::-;16463:245;16116:792;;;;;;:::o;16914:193::-;17033:16;;;17047:1;17033:16;;;;;;;;;16980;;17008:22;;17033:16;;;;;;;;;;;;-1:-1:-1;17033:16:5;17008:41;;17070:7;17059:5;17065:1;17059:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;17095:5;16914:193;-1:-1:-1;;16914:193:5:o;15385:725::-;-1:-1:-1;;;;;15592:13:5;;1702:19:14;:23;15588:516:5;;15627:72;;-1:-1:-1;;;15627:72:5;;-1:-1:-1;;;;;15627:38:5;;;;;:72;;15666:8;;15676:4;;15682:2;;15686:6;;15694:4;;15627:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15627:72:5;;;;;;;;-1:-1:-1;;15627:72:5;;;;;;;;;;;;:::i;:::-;;;15623:471;;;;:::i;:::-;-1:-1:-1;;;;;;15748:55:5;;-1:-1:-1;;;15748:55:5;15744:152;;15827:50;;-1:-1:-1;;;15827:50:5;;;;;;;:::i;14:173:25:-;82:20;;-1:-1:-1;;;;;131:31:25;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:25:o;633:131::-;-1:-1:-1;;;;;;707:32:25;;697:43;;687:71;;754:1;751;744:12;687:71;633:131;:::o;769:245::-;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:25:o;1211:180::-;1270:6;1323:2;1311:9;1302:7;1298:23;1294:32;1291:52;;;1339:1;1336;1329:12;1291:52;-1:-1:-1;1362:23:25;;1211:180;-1:-1:-1;1211:180:25:o;1396:423::-;1438:3;1476:5;1470:12;1503:6;1498:3;1491:19;1528:1;1538:162;1552:6;1549:1;1546:13;1538:162;;;1614:4;1670:13;;;1666:22;;1660:29;1642:11;;;1638:20;;1631:59;1567:12;1538:162;;;1542:3;1745:1;1738:4;1729:6;1724:3;1720:16;1716:27;1709:38;1808:4;1801:2;1797:7;1792:2;1784:6;1780:15;1776:29;1771:3;1767:39;1763:50;1756:57;;;1396:423;;;;:::o;1824:220::-;1973:2;1962:9;1955:21;1936:4;1993:45;2034:2;2023:9;2019:18;2011:6;1993:45;:::i;2049:127::-;2110:10;2105:3;2101:20;2098:1;2091:31;2141:4;2138:1;2131:15;2165:4;2162:1;2155:15;2181:249;2291:2;2272:13;;-1:-1:-1;;2268:27:25;2256:40;;2326:18;2311:34;;2347:22;;;2308:62;2305:88;;;2373:18;;:::i;:::-;2409:2;2402:22;-1:-1:-1;;2181:249:25:o;2435:183::-;2495:4;2528:18;2520:6;2517:30;2514:56;;;2550:18;;:::i;:::-;-1:-1:-1;2595:1:25;2591:14;2607:4;2587:25;;2435:183::o;2623:724::-;2677:5;2730:3;2723:4;2715:6;2711:17;2707:27;2697:55;;2748:1;2745;2738:12;2697:55;2784:6;2771:20;2810:4;2833:43;2873:2;2833:43;:::i;:::-;2905:2;2899:9;2917:31;2945:2;2937:6;2917:31;:::i;:::-;2983:18;;;3075:1;3071:10;;;;3059:23;;3055:32;;;3017:15;;;;-1:-1:-1;3099:15:25;;;3096:35;;;3127:1;3124;3117:12;3096:35;3163:2;3155:6;3151:15;3175:142;3191:6;3186:3;3183:15;3175:142;;;3257:17;;3245:30;;3295:12;;;;3208;;3175:142;;;-1:-1:-1;3335:6:25;2623:724;-1:-1:-1;;;;;;2623:724:25:o;3352:555::-;3394:5;3447:3;3440:4;3432:6;3428:17;3424:27;3414:55;;3465:1;3462;3455:12;3414:55;3501:6;3488:20;3527:18;3523:2;3520:26;3517:52;;;3549:18;;:::i;:::-;3598:2;3592:9;3610:67;3665:2;3646:13;;-1:-1:-1;;3642:27:25;3671:4;3638:38;3592:9;3610:67;:::i;:::-;3701:2;3693:6;3686:18;3747:3;3740:4;3735:2;3727:6;3723:15;3719:26;3716:35;3713:55;;;3764:1;3761;3754:12;3713:55;3828:2;3821:4;3813:6;3809:17;3802:4;3794:6;3790:17;3777:54;3875:1;3851:15;;;3868:4;3847:26;3840:37;;;;3855:6;3352:555;-1:-1:-1;;;3352:555:25:o;3912:943::-;4066:6;4074;4082;4090;4098;4151:3;4139:9;4130:7;4126:23;4122:33;4119:53;;;4168:1;4165;4158:12;4119:53;4191:29;4210:9;4191:29;:::i;:::-;4181:39;;4239:38;4273:2;4262:9;4258:18;4239:38;:::i;:::-;4229:48;;4328:2;4317:9;4313:18;4300:32;4351:18;4392:2;4384:6;4381:14;4378:34;;;4408:1;4405;4398:12;4378:34;4431:61;4484:7;4475:6;4464:9;4460:22;4431:61;:::i;:::-;4421:71;;4545:2;4534:9;4530:18;4517:32;4501:48;;4574:2;4564:8;4561:16;4558:36;;;4590:1;4587;4580:12;4558:36;4613:63;4668:7;4657:8;4646:9;4642:24;4613:63;:::i;:::-;4603:73;;4729:3;4718:9;4714:19;4701:33;4685:49;;4759:2;4749:8;4746:16;4743:36;;;4775:1;4772;4765:12;4743:36;;4798:51;4841:7;4830:8;4819:9;4815:24;4798:51;:::i;:::-;4788:61;;;3912:943;;;;;;;;:::o;4860:1208::-;4978:6;4986;5039:2;5027:9;5018:7;5014:23;5010:32;5007:52;;;5055:1;5052;5045:12;5007:52;5095:9;5082:23;5124:18;5165:2;5157:6;5154:14;5151:34;;;5181:1;5178;5171:12;5151:34;5219:6;5208:9;5204:22;5194:32;;5264:7;5257:4;5253:2;5249:13;5245:27;5235:55;;5286:1;5283;5276:12;5235:55;5322:2;5309:16;5344:4;5367:43;5407:2;5367:43;:::i;:::-;5439:2;5433:9;5451:31;5479:2;5471:6;5451:31;:::i;:::-;5517:18;;;5605:1;5601:10;;;;5593:19;;5589:28;;;5551:15;;;;-1:-1:-1;5629:19:25;;;5626:39;;;5661:1;5658;5651:12;5626:39;5685:11;;;;5705:148;5721:6;5716:3;5713:15;5705:148;;;5787:23;5806:3;5787:23;:::i;:::-;5775:36;;5738:12;;;;5831;;;;5705:148;;;5872:6;-1:-1:-1;;5916:18:25;;5903:32;;-1:-1:-1;;5947:16:25;;;5944:36;;;5976:1;5973;5966:12;5944:36;;5999:63;6054:7;6043:8;6032:9;6028:24;5999:63;:::i;:::-;5989:73;;;4860:1208;;;;;:::o;6073:435::-;6126:3;6164:5;6158:12;6191:6;6186:3;6179:19;6217:4;6246:2;6241:3;6237:12;6230:19;;6283:2;6276:5;6272:14;6304:1;6314:169;6328:6;6325:1;6322:13;6314:169;;;6389:13;;6377:26;;6423:12;;;;6458:15;;;;6350:1;6343:9;6314:169;;;-1:-1:-1;6499:3:25;;6073:435;-1:-1:-1;;;;;6073:435:25:o;6513:261::-;6692:2;6681:9;6674:21;6655:4;6712:56;6764:2;6753:9;6749:18;6741:6;6712:56;:::i;6779:347::-;6844:6;6852;6905:2;6893:9;6884:7;6880:23;6876:32;6873:52;;;6921:1;6918;6911:12;6873:52;6944:29;6963:9;6944:29;:::i;:::-;6934:39;;7023:2;7012:9;7008:18;6995:32;7070:5;7063:13;7056:21;7049:5;7046:32;7036:60;;7092:1;7089;7082:12;7036:60;7115:5;7105:15;;;6779:347;;;;;:::o;7131:260::-;7199:6;7207;7260:2;7248:9;7239:7;7235:23;7231:32;7228:52;;;7276:1;7273;7266:12;7228:52;7299:29;7318:9;7299:29;:::i;:::-;7289:39;;7347:38;7381:2;7370:9;7366:18;7347:38;:::i;:::-;7337:48;;7131:260;;;;;:::o;7396:606::-;7500:6;7508;7516;7524;7532;7585:3;7573:9;7564:7;7560:23;7556:33;7553:53;;;7602:1;7599;7592:12;7553:53;7625:29;7644:9;7625:29;:::i;:::-;7615:39;;7673:38;7707:2;7696:9;7692:18;7673:38;:::i;:::-;7663:48;;7758:2;7747:9;7743:18;7730:32;7720:42;;7809:2;7798:9;7794:18;7781:32;7771:42;;7864:3;7853:9;7849:19;7836:33;7892:18;7884:6;7881:30;7878:50;;;7924:1;7921;7914:12;7878:50;7947:49;7988:7;7979:6;7968:9;7964:22;7947:49;:::i;8418:380::-;8497:1;8493:12;;;;8540;;;8561:61;;8615:4;8607:6;8603:17;8593:27;;8561:61;8668:2;8660:6;8657:14;8637:18;8634:38;8631:161;;8714:10;8709:3;8705:20;8702:1;8695:31;8749:4;8746:1;8739:15;8777:4;8774:1;8767:15;8631:161;;8418:380;;;:::o;8803:410::-;9005:2;8987:21;;;9044:2;9024:18;;;9017:30;9083:34;9078:2;9063:18;;9056:62;-1:-1:-1;;;9149:2:25;9134:18;;9127:44;9203:3;9188:19;;8803:410::o;9628:127::-;9689:10;9684:3;9680:20;9677:1;9670:31;9720:4;9717:1;9710:15;9744:4;9741:1;9734:15;9760:127;9821:10;9816:3;9812:20;9809:1;9802:31;9852:4;9849:1;9842:15;9876:4;9873:1;9866:15;9892:135;9931:3;9952:17;;;9949:43;;9972:18;;:::i;:::-;-1:-1:-1;10019:1:25;10008:13;;9892:135::o;10441:401::-;10643:2;10625:21;;;10682:2;10662:18;;;10655:30;10721:34;10716:2;10701:18;;10694:62;-1:-1:-1;;;10787:2:25;10772:18;;10765:35;10832:3;10817:19;;10441:401::o;10847:406::-;11049:2;11031:21;;;11088:2;11068:18;;;11061:30;11127:34;11122:2;11107:18;;11100:62;-1:-1:-1;;;11193:2:25;11178:18;;11171:40;11243:3;11228:19;;10847:406::o;11258:125::-;11323:9;;;11344:10;;;11341:36;;;11357:18;;:::i;11388:465::-;11645:2;11634:9;11627:21;11608:4;11671:56;11723:2;11712:9;11708:18;11700:6;11671:56;:::i;:::-;11775:9;11767:6;11763:22;11758:2;11747:9;11743:18;11736:50;11803:44;11840:6;11832;11803:44;:::i;:::-;11795:52;11388:465;-1:-1:-1;;;;;11388:465:25:o;12521:827::-;-1:-1:-1;;;;;12918:15:25;;;12900:34;;12970:15;;12965:2;12950:18;;12943:43;12880:3;13017:2;13002:18;;12995:31;;;12843:4;;13049:57;;13086:19;;13078:6;13049:57;:::i;:::-;13154:9;13146:6;13142:22;13137:2;13126:9;13122:18;13115:50;13188:44;13225:6;13217;13188:44;:::i;:::-;13174:58;;13281:9;13273:6;13269:22;13263:3;13252:9;13248:19;13241:51;13309:33;13335:6;13327;13309:33;:::i;:::-;13301:41;12521:827;-1:-1:-1;;;;;;;;12521:827:25:o;13353:249::-;13422:6;13475:2;13463:9;13454:7;13450:23;13446:32;13443:52;;;13491:1;13488;13481:12;13443:52;13523:9;13517:16;13542:30;13566:5;13542:30;:::i;13607:179::-;13642:3;13684:1;13666:16;13663:23;13660:120;;;13730:1;13727;13724;13709:23;-1:-1:-1;13767:1:25;13761:8;13756:3;13752:18;13660:120;13607:179;:::o;13791:671::-;13830:3;13872:4;13854:16;13851:26;13848:39;;;13791:671;:::o;13848:39::-;13914:2;13908:9;-1:-1:-1;;13979:16:25;13975:25;;13972:1;13908:9;13951:50;14030:4;14024:11;14054:16;14089:18;14160:2;14153:4;14145:6;14141:17;14138:25;14133:2;14125:6;14122:14;14119:45;14116:58;;;14167:5;;;;;13791:671;:::o;14116:58::-;14204:6;14198:4;14194:17;14183:28;;14240:3;14234:10;14267:2;14259:6;14256:14;14253:27;;;14273:5;;;;;;13791:671;:::o;14253:27::-;14357:2;14338:16;14332:4;14328:27;14324:36;14317:4;14308:6;14303:3;14299:16;14295:27;14292:69;14289:82;;;14364:5;;;;;;13791:671;:::o;14289:82::-;14380:57;14431:4;14422:6;14414;14410:19;14406:30;14400:4;14380:57;:::i;:::-;-1:-1:-1;14453:3:25;;13791:671;-1:-1:-1;;;;;13791:671:25:o;14888:404::-;15090:2;15072:21;;;15129:2;15109:18;;;15102:30;15168:34;15163:2;15148:18;;15141:62;-1:-1:-1;;;15234:2:25;15219:18;;15212:38;15282:3;15267:19;;14888:404::o;15297:561::-;-1:-1:-1;;;;;15594:15:25;;;15576:34;;15646:15;;15641:2;15626:18;;15619:43;15693:2;15678:18;;15671:34;;;15736:2;15721:18;;15714:34;;;15556:3;15779;15764:19;;15757:32;;;15519:4;;15806:46;;15832:19;;15824:6;15806:46;:::i;:::-;15798:54;15297:561;-1:-1:-1;;;;;;;15297:561:25:o"},"methodIdentifiers":{"balanceOf(address,uint256)":"00fdd58e","balanceOfBatch(address[],uint256[])":"4e1273f4","isApprovedForAll(address,address)":"e985e9c5","safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)":"2eb2c2d6","safeTransferFrom(address,address,uint256,uint256,bytes)":"f242432a","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","uri(uint256)":"0e89341c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"uri_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"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\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"}],\"name\":\"TransferBatch\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"TransferSingle\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"value\",\"type\":\"string\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"URI\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"accounts\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"}],\"name\":\"balanceOfBatch\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"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\":\"ids\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeBatchTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"uri\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the basic standard multi-token. See https://eips.ethereum.org/EIPS/eip-1155 Originally based on code by Enjin: https://github.com/enjin/erc-1155 _Available since v3.1._\",\"events\":{\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to `approved`.\"},\"TransferBatch(address,address,address,uint256[],uint256[])\":{\"details\":\"Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all transfers.\"},\"TransferSingle(address,address,address,uint256,uint256)\":{\"details\":\"Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.\"},\"URI(string,uint256)\":{\"details\":\"Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. If an {URI} event was emitted for `id`, the standard https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value returned by {IERC1155MetadataURI-uri}.\"}},\"kind\":\"dev\",\"methods\":{\"balanceOf(address,uint256)\":{\"details\":\"See {IERC1155-balanceOf}. Requirements: - `account` cannot be the zero address.\"},\"balanceOfBatch(address[],uint256[])\":{\"details\":\"See {IERC1155-balanceOfBatch}. Requirements: - `accounts` and `ids` must have the same length.\"},\"constructor\":{\"details\":\"See {_setURI}.\"},\"isApprovedForAll(address,address)\":{\"details\":\"See {IERC1155-isApprovedForAll}.\"},\"safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155-safeBatchTransferFrom}.\"},\"safeTransferFrom(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155-safeTransferFrom}.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"See {IERC1155-setApprovalForAll}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"uri(uint256)\":{\"details\":\"See {IERC1155MetadataURI-uri}. This implementation returns the same URI for *all* token types. It relies on the token type ID substitution mechanism https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. Clients calling this function must replace the `\\\\{id\\\\}` substring with the actual token type ID.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC1155/ERC1155.sol\":\"ERC1155\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC1155/ERC1155.sol\":{\"keccak256\":\"0x81149353c99ccf8ff18af7701bc3f38665c7a97e344cdc0d27f927f03d22af0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b488da93995672b613897afa8ed85bb10442351ed54124001832bf2944108601\",\"dweb:/ipfs/QmP2fX6BzbgZyskxXqckeMzC1C3g7wKEbdtZfMegHoGW3j\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155.sol\":{\"keccak256\":\"0xcab667ddad478ff0d39c2053ca77fac778af8483c18ab07d810277b4216fd582\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://919c7ea27c77275c3c341da0c4a26a66a20ed27605fbe8becf11f58ec3bc65bf\",\"dweb:/ipfs/QmRLKyVE2n7e2Jo4bLNn8eLgqqhNGYnVQyjJPWdr8poskf\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0xeb373f1fdc7b755c6a750123a9b9e3a8a02c1470042fd6505d875000a80bde0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0e28648f994abf1d6bc345644a361cc0b7efa544f8bc0c8ec26011fed85a91ec\",\"dweb:/ipfs/QmVVE7AiRjKaQYYji7TkjmTeVzGpNmms5eoxqTCfvvpj6D\"]},\"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol\":{\"keccak256\":\"0xa66d18b9a85458d28fc3304717964502ae36f7f8a2ff35bc83f6f85d74b03574\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e46c80ea068989111d6103e5521223f9ef337e93de76deed8b03f75c6f7b2797\",\"dweb:/ipfs/QmNoSE6knNfFncdDDLTb3fGR6oSQty1srG96Vsx3E9wQdw\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC1155/IERC1155.sol":{"IERC1155":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"balanceOf(address,uint256)":"00fdd58e","balanceOfBatch(address[],uint256[])":"4e1273f4","isApprovedForAll(address,address)":"e985e9c5","safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)":"2eb2c2d6","safeTransferFrom(address,address,uint256,uint256,bytes)":"f242432a","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"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\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"}],\"name\":\"TransferBatch\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"TransferSingle\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"value\",\"type\":\"string\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"URI\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"accounts\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"}],\"name\":\"balanceOfBatch\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"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\":\"ids\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeBatchTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\"}],\"devdoc\":{\"details\":\"Required interface of an ERC1155 compliant contract, as defined in the https://eips.ethereum.org/EIPS/eip-1155[EIP]. _Available since v3.1._\",\"events\":{\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to `approved`.\"},\"TransferBatch(address,address,address,uint256[],uint256[])\":{\"details\":\"Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all transfers.\"},\"TransferSingle(address,address,address,uint256,uint256)\":{\"details\":\"Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.\"},\"URI(string,uint256)\":{\"details\":\"Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. If an {URI} event was emitted for `id`, the standard https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value returned by {IERC1155MetadataURI-uri}.\"}},\"kind\":\"dev\",\"methods\":{\"balanceOf(address,uint256)\":{\"details\":\"Returns the amount of tokens of token type `id` owned by `account`. Requirements: - `account` cannot be the zero address.\"},\"balanceOfBatch(address[],uint256[])\":{\"details\":\"xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. Requirements: - `accounts` and `ids` must have the same length.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns true if `operator` is approved to transfer ``account``'s tokens. See {setApprovalForAll}.\"},\"safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)\":{\"details\":\"xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. Emits a {TransferBatch} event. Requirements: - `ids` and `amounts` must have the same length. - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the acceptance magic value.\"},\"safeTransferFrom(address,address,uint256,uint256,bytes)\":{\"details\":\"Transfers `amount` tokens of token type `id` from `from` to `to`. Emits a {TransferSingle} event. Requirements: - `to` cannot be the zero address. - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. - `from` must have a balance of tokens of type `id` of at least `amount`. - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the acceptance magic value.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, Emits an {ApprovalForAll} event. Requirements: - `operator` cannot be the caller.\"},\"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[EIP 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/token/ERC1155/IERC1155.sol\":\"IERC1155\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155.sol\":{\"keccak256\":\"0xcab667ddad478ff0d39c2053ca77fac778af8483c18ab07d810277b4216fd582\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://919c7ea27c77275c3c341da0c4a26a66a20ed27605fbe8becf11f58ec3bc65bf\",\"dweb:/ipfs/QmRLKyVE2n7e2Jo4bLNn8eLgqqhNGYnVQyjJPWdr8poskf\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"IERC1155Receiver":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155BatchReceived","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":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"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":{"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"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\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"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\":\"_Available since v3.1._\",\"kind\":\"dev\",\"methods\":{\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. NOTE: To accept the transfer(s), this must return `bytes4(keccak256(\\\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\\\"))` (i.e. 0xbc197c81, or its own function selector).\",\"params\":{\"data\":\"Additional data with no specified format\",\"from\":\"The address which previously owned the token\",\"ids\":\"An array containing ids of each token being transferred (order and length must match values array)\",\"operator\":\"The address which initiated the batch transfer (i.e. msg.sender)\",\"values\":\"An array containing amounts of each token being transferred (order and length must match ids array)\"},\"returns\":{\"_0\":\"`bytes4(keccak256(\\\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\\\"))` if transfer is allowed\"}},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. NOTE: To accept the transfer, this must return `bytes4(keccak256(\\\"onERC1155Received(address,address,uint256,uint256,bytes)\\\"))` (i.e. 0xf23a6e61, or its own function selector).\",\"params\":{\"data\":\"Additional data with no specified format\",\"from\":\"The address which previously owned the token\",\"id\":\"The ID of the token being transferred\",\"operator\":\"The address which initiated the transfer (i.e. msg.sender)\",\"value\":\"The amount of tokens being transferred\"},\"returns\":{\"_0\":\"`bytes4(keccak256(\\\"onERC1155Received(address,address,uint256,uint256,bytes)\\\"))` if transfer is allowed\"}},\"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[EIP 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/token/ERC1155/IERC1155Receiver.sol\":\"IERC1155Receiver\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0xeb373f1fdc7b755c6a750123a9b9e3a8a02c1470042fd6505d875000a80bde0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0e28648f994abf1d6bc345644a361cc0b7efa544f8bc0c8ec26011fed85a91ec\",\"dweb:/ipfs/QmVVE7AiRjKaQYYji7TkjmTeVzGpNmms5eoxqTCfvvpj6D\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol":{"IERC1155MetadataURI":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"balanceOf(address,uint256)":"00fdd58e","balanceOfBatch(address[],uint256[])":"4e1273f4","isApprovedForAll(address,address)":"e985e9c5","safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)":"2eb2c2d6","safeTransferFrom(address,address,uint256,uint256,bytes)":"f242432a","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","uri(uint256)":"0e89341c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"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\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"}],\"name\":\"TransferBatch\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"TransferSingle\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"value\",\"type\":\"string\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"URI\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"accounts\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"}],\"name\":\"balanceOfBatch\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"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\":\"ids\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeBatchTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"uri\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the optional ERC1155MetadataExtension interface, as defined in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. _Available since v3.1._\",\"events\":{\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to `approved`.\"},\"TransferBatch(address,address,address,uint256[],uint256[])\":{\"details\":\"Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all transfers.\"},\"TransferSingle(address,address,address,uint256,uint256)\":{\"details\":\"Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.\"},\"URI(string,uint256)\":{\"details\":\"Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. If an {URI} event was emitted for `id`, the standard https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value returned by {IERC1155MetadataURI-uri}.\"}},\"kind\":\"dev\",\"methods\":{\"balanceOf(address,uint256)\":{\"details\":\"Returns the amount of tokens of token type `id` owned by `account`. Requirements: - `account` cannot be the zero address.\"},\"balanceOfBatch(address[],uint256[])\":{\"details\":\"xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. Requirements: - `accounts` and `ids` must have the same length.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns true if `operator` is approved to transfer ``account``'s tokens. See {setApprovalForAll}.\"},\"safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)\":{\"details\":\"xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. Emits a {TransferBatch} event. Requirements: - `ids` and `amounts` must have the same length. - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the acceptance magic value.\"},\"safeTransferFrom(address,address,uint256,uint256,bytes)\":{\"details\":\"Transfers `amount` tokens of token type `id` from `from` to `to`. Emits a {TransferSingle} event. Requirements: - `to` cannot be the zero address. - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. - `from` must have a balance of tokens of type `id` of at least `amount`. - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the acceptance magic value.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, Emits an {ApprovalForAll} event. Requirements: - `operator` cannot be the caller.\"},\"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[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"uri(uint256)\":{\"details\":\"Returns the URI for token type `id`. If the `\\\\{id\\\\}` substring is present in the URI, it must be replaced by clients with the actual token type ID.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol\":\"IERC1155MetadataURI\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155.sol\":{\"keccak256\":\"0xcab667ddad478ff0d39c2053ca77fac778af8483c18ab07d810277b4216fd582\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://919c7ea27c77275c3c341da0c4a26a66a20ed27605fbe8becf11f58ec3bc65bf\",\"dweb:/ipfs/QmRLKyVE2n7e2Jo4bLNn8eLgqqhNGYnVQyjJPWdr8poskf\"]},\"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol\":{\"keccak256\":\"0xa66d18b9a85458d28fc3304717964502ae36f7f8a2ff35bc83f6f85d74b03574\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e46c80ea068989111d6103e5521223f9ef337e93de76deed8b03f75c6f7b2797\",\"dweb:/ipfs/QmNoSE6knNfFncdDDLTb3fGR6oSQty1srG96Vsx3E9wQdw\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/ERC721.sol":{"ERC721":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"","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":{"@_1669":{"entryPoint":null,"id":1669,"parameterSlots":2,"returnSlots":0},"abi_decode_string_fromMemory":{"entryPoint":112,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory":{"entryPoint":287,"id":null,"parameterSlots":2,"returnSlots":2},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":453,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":536,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":393,"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":90,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:4144:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:25"},"nodeType":"YulFunctionCall","src":"66:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:25"},"nodeType":"YulFunctionCall","src":"56:31:25"},"nodeType":"YulExpressionStatement","src":"56:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:25","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:25"},"nodeType":"YulFunctionCall","src":"96:15:25"},"nodeType":"YulExpressionStatement","src":"96:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:25"},"nodeType":"YulFunctionCall","src":"120:15:25"},"nodeType":"YulExpressionStatement","src":"120:15:25"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:25"},{"body":{"nodeType":"YulBlock","src":"210:776:25","statements":[{"body":{"nodeType":"YulBlock","src":"259:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"268:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"271:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"261:6:25"},"nodeType":"YulFunctionCall","src":"261:12:25"},"nodeType":"YulExpressionStatement","src":"261:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"238:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"246:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"234:3:25"},"nodeType":"YulFunctionCall","src":"234:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"253:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"230:3:25"},"nodeType":"YulFunctionCall","src":"230:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"223:6:25"},"nodeType":"YulFunctionCall","src":"223:35:25"},"nodeType":"YulIf","src":"220:55:25"},{"nodeType":"YulVariableDeclaration","src":"284:23:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"300:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"294:5:25"},"nodeType":"YulFunctionCall","src":"294:13:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"288:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"316:28:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"338:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"330:3:25"},"nodeType":"YulFunctionCall","src":"330:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"342:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"326:3:25"},"nodeType":"YulFunctionCall","src":"326:18:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"320:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"367:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"369:16:25"},"nodeType":"YulFunctionCall","src":"369:18:25"},"nodeType":"YulExpressionStatement","src":"369:18:25"}]},"condition":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"359:2:25"},{"name":"_2","nodeType":"YulIdentifier","src":"363:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"356:2:25"},"nodeType":"YulFunctionCall","src":"356:10:25"},"nodeType":"YulIf","src":"353:36:25"},{"nodeType":"YulVariableDeclaration","src":"398:17:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"412:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"408:3:25"},"nodeType":"YulFunctionCall","src":"408:7:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"402:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"424:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"444:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"438:5:25"},"nodeType":"YulFunctionCall","src":"438:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"428:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"456:71:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"478:6:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"502:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"506:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"498:3:25"},"nodeType":"YulFunctionCall","src":"498:13:25"},{"name":"_3","nodeType":"YulIdentifier","src":"513:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"494:3:25"},"nodeType":"YulFunctionCall","src":"494:22:25"},{"kind":"number","nodeType":"YulLiteral","src":"518:2:25","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"490:3:25"},"nodeType":"YulFunctionCall","src":"490:31:25"},{"name":"_3","nodeType":"YulIdentifier","src":"523:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"486:3:25"},"nodeType":"YulFunctionCall","src":"486:40:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"474:3:25"},"nodeType":"YulFunctionCall","src":"474:53:25"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"460:10:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"586:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"588:16:25"},"nodeType":"YulFunctionCall","src":"588:18:25"},"nodeType":"YulExpressionStatement","src":"588:18:25"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"545:10:25"},{"name":"_2","nodeType":"YulIdentifier","src":"557:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"542:2:25"},"nodeType":"YulFunctionCall","src":"542:18:25"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"565:10:25"},{"name":"memPtr","nodeType":"YulIdentifier","src":"577:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"562:2:25"},"nodeType":"YulFunctionCall","src":"562:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"539:2:25"},"nodeType":"YulFunctionCall","src":"539:46:25"},"nodeType":"YulIf","src":"536:72:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"624:2:25","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"628:10:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"617:6:25"},"nodeType":"YulFunctionCall","src":"617:22:25"},"nodeType":"YulExpressionStatement","src":"617:22:25"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"655:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"663:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"648:6:25"},"nodeType":"YulFunctionCall","src":"648:18:25"},"nodeType":"YulExpressionStatement","src":"648:18:25"},{"nodeType":"YulVariableDeclaration","src":"675:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"685:4:25","type":"","value":"0x20"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"679:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"735:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"744:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"747:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"737:6:25"},"nodeType":"YulFunctionCall","src":"737:12:25"},"nodeType":"YulExpressionStatement","src":"737:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"712:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"720:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"708:3:25"},"nodeType":"YulFunctionCall","src":"708:15:25"},{"name":"_4","nodeType":"YulIdentifier","src":"725:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"704:3:25"},"nodeType":"YulFunctionCall","src":"704:24:25"},{"name":"end","nodeType":"YulIdentifier","src":"730:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"701:2:25"},"nodeType":"YulFunctionCall","src":"701:33:25"},"nodeType":"YulIf","src":"698:53:25"},{"nodeType":"YulVariableDeclaration","src":"760:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"769:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"764:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"825:87:25","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"854:6:25"},{"name":"i","nodeType":"YulIdentifier","src":"862:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"850:3:25"},"nodeType":"YulFunctionCall","src":"850:14:25"},{"name":"_4","nodeType":"YulIdentifier","src":"866:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"846:3:25"},"nodeType":"YulFunctionCall","src":"846:23:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"885:6:25"},{"name":"i","nodeType":"YulIdentifier","src":"893:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"881:3:25"},"nodeType":"YulFunctionCall","src":"881:14:25"},{"name":"_4","nodeType":"YulIdentifier","src":"897:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"877:3:25"},"nodeType":"YulFunctionCall","src":"877:23:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"871:5:25"},"nodeType":"YulFunctionCall","src":"871:30:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"839:6:25"},"nodeType":"YulFunctionCall","src":"839:63:25"},"nodeType":"YulExpressionStatement","src":"839:63:25"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"790:1:25"},{"name":"_1","nodeType":"YulIdentifier","src":"793:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"787:2:25"},"nodeType":"YulFunctionCall","src":"787:9:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"797:19:25","statements":[{"nodeType":"YulAssignment","src":"799:15:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"808:1:25"},{"name":"_4","nodeType":"YulIdentifier","src":"811:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"804:3:25"},"nodeType":"YulFunctionCall","src":"804:10:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"799:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"783:3:25","statements":[]},"src":"779:133:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"936:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"944:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"932:3:25"},"nodeType":"YulFunctionCall","src":"932:15:25"},{"name":"_4","nodeType":"YulIdentifier","src":"949:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"928:3:25"},"nodeType":"YulFunctionCall","src":"928:24:25"},{"kind":"number","nodeType":"YulLiteral","src":"954:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"921:6:25"},"nodeType":"YulFunctionCall","src":"921:35:25"},"nodeType":"YulExpressionStatement","src":"921:35:25"},{"nodeType":"YulAssignment","src":"965:15:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"974:6:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"965:5:25"}]}]},"name":"abi_decode_string_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"184:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"192:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"200:5:25","type":""}],"src":"146:840:25"},{"body":{"nodeType":"YulBlock","src":"1109:444:25","statements":[{"body":{"nodeType":"YulBlock","src":"1155:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1164:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1167:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1157:6:25"},"nodeType":"YulFunctionCall","src":"1157:12:25"},"nodeType":"YulExpressionStatement","src":"1157:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1130:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1139:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1126:3:25"},"nodeType":"YulFunctionCall","src":"1126:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1151:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1122:3:25"},"nodeType":"YulFunctionCall","src":"1122:32:25"},"nodeType":"YulIf","src":"1119:52:25"},{"nodeType":"YulVariableDeclaration","src":"1180:30:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1200:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1194:5:25"},"nodeType":"YulFunctionCall","src":"1194:16:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1184:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1219:28:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1237:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"1241:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1233:3:25"},"nodeType":"YulFunctionCall","src":"1233:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"1245:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1229:3:25"},"nodeType":"YulFunctionCall","src":"1229:18:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1223:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1274:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1283:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1286:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1276:6:25"},"nodeType":"YulFunctionCall","src":"1276:12:25"},"nodeType":"YulExpressionStatement","src":"1276:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1262:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1270:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1259:2:25"},"nodeType":"YulFunctionCall","src":"1259:14:25"},"nodeType":"YulIf","src":"1256:34:25"},{"nodeType":"YulAssignment","src":"1299:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1342:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"1353:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1338:3:25"},"nodeType":"YulFunctionCall","src":"1338:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1362:7:25"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1309:28:25"},"nodeType":"YulFunctionCall","src":"1309:61:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1299:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"1379:41:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1405:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1416:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1401:3:25"},"nodeType":"YulFunctionCall","src":"1401:18:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1395:5:25"},"nodeType":"YulFunctionCall","src":"1395:25:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"1383:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1449:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1458:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1461:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1451:6:25"},"nodeType":"YulFunctionCall","src":"1451:12:25"},"nodeType":"YulExpressionStatement","src":"1451:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"1435:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1445:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1432:2:25"},"nodeType":"YulFunctionCall","src":"1432:16:25"},"nodeType":"YulIf","src":"1429:36:25"},{"nodeType":"YulAssignment","src":"1474:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1517:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"1528:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1513:3:25"},"nodeType":"YulFunctionCall","src":"1513:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1539:7:25"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1484:28:25"},"nodeType":"YulFunctionCall","src":"1484:63:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1474:6:25"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1067:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1078:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1090:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1098:6:25","type":""}],"src":"991:562:25"},{"body":{"nodeType":"YulBlock","src":"1613:325:25","statements":[{"nodeType":"YulAssignment","src":"1623:22:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1637:1:25","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"1640:4:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"1633:3:25"},"nodeType":"YulFunctionCall","src":"1633:12:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1623:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"1654:38:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"1684:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"1690:1:25","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1680:3:25"},"nodeType":"YulFunctionCall","src":"1680:12:25"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"1658:18:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1731:31:25","statements":[{"nodeType":"YulAssignment","src":"1733:27:25","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1747:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"1755:4:25","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1743:3:25"},"nodeType":"YulFunctionCall","src":"1743:17:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1733:6:25"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1711:18:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1704:6:25"},"nodeType":"YulFunctionCall","src":"1704:26:25"},"nodeType":"YulIf","src":"1701:61:25"},{"body":{"nodeType":"YulBlock","src":"1821:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1842:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1849:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1854:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1845:3:25"},"nodeType":"YulFunctionCall","src":"1845:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1835:6:25"},"nodeType":"YulFunctionCall","src":"1835:31:25"},"nodeType":"YulExpressionStatement","src":"1835:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1886:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1889:4:25","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1879:6:25"},"nodeType":"YulFunctionCall","src":"1879:15:25"},"nodeType":"YulExpressionStatement","src":"1879:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1914:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1917:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1907:6:25"},"nodeType":"YulFunctionCall","src":"1907:15:25"},"nodeType":"YulExpressionStatement","src":"1907:15:25"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1777:18:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1800:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"1808:2:25","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1797:2:25"},"nodeType":"YulFunctionCall","src":"1797:14:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1774:2:25"},"nodeType":"YulFunctionCall","src":"1774:38:25"},"nodeType":"YulIf","src":"1771:161:25"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"1593:4:25","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"1602:6:25","type":""}],"src":"1558:380:25"},{"body":{"nodeType":"YulBlock","src":"1999:65:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2016:1:25","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"2019:3:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2009:6:25"},"nodeType":"YulFunctionCall","src":"2009:14:25"},"nodeType":"YulExpressionStatement","src":"2009:14:25"},{"nodeType":"YulAssignment","src":"2032:26:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2050:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2053:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"2040:9:25"},"nodeType":"YulFunctionCall","src":"2040:18:25"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"2032:4:25"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"1982:3:25","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"1990:4:25","type":""}],"src":"1943:121:25"},{"body":{"nodeType":"YulBlock","src":"2150:464:25","statements":[{"body":{"nodeType":"YulBlock","src":"2183:425:25","statements":[{"nodeType":"YulVariableDeclaration","src":"2197:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"2207:1:25","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2201:2:25","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2228:2:25"},{"name":"array","nodeType":"YulIdentifier","src":"2232:5:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2221:6:25"},"nodeType":"YulFunctionCall","src":"2221:17:25"},"nodeType":"YulExpressionStatement","src":"2221:17:25"},{"nodeType":"YulVariableDeclaration","src":"2251:31:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2273:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"2277:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"2263:9:25"},"nodeType":"YulFunctionCall","src":"2263:19:25"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"2255:4:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2295:57:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2318:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2328:1:25","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2335:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"2347:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2331:3:25"},"nodeType":"YulFunctionCall","src":"2331:19:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2324:3:25"},"nodeType":"YulFunctionCall","src":"2324:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2314:3:25"},"nodeType":"YulFunctionCall","src":"2314:38:25"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"2299:11:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2389:23:25","statements":[{"nodeType":"YulAssignment","src":"2391:19:25","value":{"name":"data","nodeType":"YulIdentifier","src":"2406:4:25"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"2391:11:25"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2371:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"2383:4:25","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2368:2:25"},"nodeType":"YulFunctionCall","src":"2368:20:25"},"nodeType":"YulIf","src":"2365:47:25"},{"nodeType":"YulVariableDeclaration","src":"2425:41:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2439:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2449:1:25","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2456:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"2461:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2452:3:25"},"nodeType":"YulFunctionCall","src":"2452:12:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2445:3:25"},"nodeType":"YulFunctionCall","src":"2445:20:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2435:3:25"},"nodeType":"YulFunctionCall","src":"2435:31:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"2429:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2479:24:25","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"2492:11:25"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"2483:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2577:21:25","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2586:5:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2593:2:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2579:6:25"},"nodeType":"YulFunctionCall","src":"2579:17:25"},"nodeType":"YulExpressionStatement","src":"2579:17:25"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2527:5:25"},{"name":"_2","nodeType":"YulIdentifier","src":"2534:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2524:2:25"},"nodeType":"YulFunctionCall","src":"2524:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2538:26:25","statements":[{"nodeType":"YulAssignment","src":"2540:22:25","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2553:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"2560:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2549:3:25"},"nodeType":"YulFunctionCall","src":"2549:13:25"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"2540:5:25"}]}]},"pre":{"nodeType":"YulBlock","src":"2520:3:25","statements":[]},"src":"2516:82:25"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2166:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"2171:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2163:2:25"},"nodeType":"YulFunctionCall","src":"2163:11:25"},"nodeType":"YulIf","src":"2160:448:25"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"2122:5:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"2129:3:25","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"2134:10:25","type":""}],"src":"2069:545:25"},{"body":{"nodeType":"YulBlock","src":"2704:81:25","statements":[{"nodeType":"YulAssignment","src":"2714:65:25","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2729:4:25"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2747:1:25","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"2750:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2743:3:25"},"nodeType":"YulFunctionCall","src":"2743:11:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2760:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2756:3:25"},"nodeType":"YulFunctionCall","src":"2756:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2739:3:25"},"nodeType":"YulFunctionCall","src":"2739:24:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2735:3:25"},"nodeType":"YulFunctionCall","src":"2735:29:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2725:3:25"},"nodeType":"YulFunctionCall","src":"2725:40:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2771:1:25","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"2774:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2767:3:25"},"nodeType":"YulFunctionCall","src":"2767:11:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2722:2:25"},"nodeType":"YulFunctionCall","src":"2722:57:25"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"2714:4:25"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2681:4:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"2687:3:25","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"2695:4:25","type":""}],"src":"2619:166:25"},{"body":{"nodeType":"YulBlock","src":"2886:1256:25","statements":[{"nodeType":"YulVariableDeclaration","src":"2896:24:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2916:3:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2910:5:25"},"nodeType":"YulFunctionCall","src":"2910:10:25"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"2900:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2963:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2965:16:25"},"nodeType":"YulFunctionCall","src":"2965:18:25"},"nodeType":"YulExpressionStatement","src":"2965:18:25"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"2935:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2951:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"2955:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2947:3:25"},"nodeType":"YulFunctionCall","src":"2947:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"2959:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2943:3:25"},"nodeType":"YulFunctionCall","src":"2943:18:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2932:2:25"},"nodeType":"YulFunctionCall","src":"2932:30:25"},"nodeType":"YulIf","src":"2929:56:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3038:4:25"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3076:4:25"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"3070:5:25"},"nodeType":"YulFunctionCall","src":"3070:11:25"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"3044:25:25"},"nodeType":"YulFunctionCall","src":"3044:38:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"3084:6:25"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"2994:43:25"},"nodeType":"YulFunctionCall","src":"2994:97:25"},"nodeType":"YulExpressionStatement","src":"2994:97:25"},{"nodeType":"YulVariableDeclaration","src":"3100:18:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3117:1:25","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"3104:9:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3127:23:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3146:4:25","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"3131:11:25","type":""}]},{"nodeType":"YulAssignment","src":"3159:24:25","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3172:11:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3159:9:25"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"3229:656:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3243:35:25","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3262:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3274:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3270:3:25"},"nodeType":"YulFunctionCall","src":"3270:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3258:3:25"},"nodeType":"YulFunctionCall","src":"3258:20:25"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"3247:7:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3291:49:25","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3335:4:25"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"3305:29:25"},"nodeType":"YulFunctionCall","src":"3305:35:25"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"3295:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3353:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3362:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"3357:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3440:172:25","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3465:6:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3483:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3488:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3479:3:25"},"nodeType":"YulFunctionCall","src":"3479:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3473:5:25"},"nodeType":"YulFunctionCall","src":"3473:26:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3458:6:25"},"nodeType":"YulFunctionCall","src":"3458:42:25"},"nodeType":"YulExpressionStatement","src":"3458:42:25"},{"nodeType":"YulAssignment","src":"3517:24:25","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3531:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3539:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3527:3:25"},"nodeType":"YulFunctionCall","src":"3527:14:25"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3517:6:25"}]},{"nodeType":"YulAssignment","src":"3558:40:25","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3575:9:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3586:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3571:3:25"},"nodeType":"YulFunctionCall","src":"3571:27:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3558:9:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3387:1:25"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"3390:7:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3384:2:25"},"nodeType":"YulFunctionCall","src":"3384:14:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3399:28:25","statements":[{"nodeType":"YulAssignment","src":"3401:24:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3410:1:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3413:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3406:3:25"},"nodeType":"YulFunctionCall","src":"3406:19:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3401:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"3380:3:25","statements":[]},"src":"3376:236:25"},{"body":{"nodeType":"YulBlock","src":"3660:166:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3678:43:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3705:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3710:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3701:3:25"},"nodeType":"YulFunctionCall","src":"3701:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3695:5:25"},"nodeType":"YulFunctionCall","src":"3695:26:25"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"3682:9:25","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3745:6:25"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"3757:9:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3784:1:25","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"3787:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3780:3:25"},"nodeType":"YulFunctionCall","src":"3780:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"3796:3:25","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3776:3:25"},"nodeType":"YulFunctionCall","src":"3776:24:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3806:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3802:3:25"},"nodeType":"YulFunctionCall","src":"3802:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3772:3:25"},"nodeType":"YulFunctionCall","src":"3772:37:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3768:3:25"},"nodeType":"YulFunctionCall","src":"3768:42:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3753:3:25"},"nodeType":"YulFunctionCall","src":"3753:58:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3738:6:25"},"nodeType":"YulFunctionCall","src":"3738:74:25"},"nodeType":"YulExpressionStatement","src":"3738:74:25"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"3631:7:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"3640:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3628:2:25"},"nodeType":"YulFunctionCall","src":"3628:19:25"},"nodeType":"YulIf","src":"3625:201:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3846:4:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3860:1:25","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"3863:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3856:3:25"},"nodeType":"YulFunctionCall","src":"3856:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"3872:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3852:3:25"},"nodeType":"YulFunctionCall","src":"3852:22:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3839:6:25"},"nodeType":"YulFunctionCall","src":"3839:36:25"},"nodeType":"YulExpressionStatement","src":"3839:36:25"}]},"nodeType":"YulCase","src":"3222:663:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3227:1:25","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"3902:234:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3916:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3929:1:25","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3920:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3965:67:25","statements":[{"nodeType":"YulAssignment","src":"3983:35:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4002:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4007:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3998:3:25"},"nodeType":"YulFunctionCall","src":"3998:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3992:5:25"},"nodeType":"YulFunctionCall","src":"3992:26:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"3983:5:25"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"3946:6:25"},"nodeType":"YulIf","src":"3943:89:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4052:4:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4111:5:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"4118:6:25"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"4058:52:25"},"nodeType":"YulFunctionCall","src":"4058:67:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4045:6:25"},"nodeType":"YulFunctionCall","src":"4045:81:25"},"nodeType":"YulExpressionStatement","src":"4045:81:25"}]},"nodeType":"YulCase","src":"3894:242:25","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3202:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3210:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3199:2:25"},"nodeType":"YulFunctionCall","src":"3199:14:25"},"nodeType":"YulSwitch","src":"3192:944:25"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"2871:4:25","type":""},{"name":"src","nodeType":"YulTypedName","src":"2877:3:25","type":""}],"src":"2790:1352:25"}]},"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 _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        mstore(add(add(memPtr, _1), _4), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _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, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), 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 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            let _1 := 0\n            mstore(_1, array)\n            let data := keccak256(_1, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _2 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _2) { start := add(start, 1) }\n            { sstore(start, _1) }\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        let srcOffset_1 := 0x20\n        srcOffset := srcOffset_1\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, srcOffset_1) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, srcOffset_1)\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}","id":25,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b50604051620013e7380380620013e783398101604081905262000034916200011f565b600062000042838262000218565b50600162000051828262000218565b505050620002e4565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200008257600080fd5b81516001600160401b03808211156200009f576200009f6200005a565b604051601f8301601f19908116603f01168101908282118183101715620000ca57620000ca6200005a565b81604052838152602092508683858801011115620000e757600080fd5b600091505b838210156200010b5785820183015181830184015290820190620000ec565b600093810190920192909252949350505050565b600080604083850312156200013357600080fd5b82516001600160401b03808211156200014b57600080fd5b620001598683870162000070565b935060208501519150808211156200017057600080fd5b506200017f8582860162000070565b9150509250929050565b600181811c908216806200019e57607f821691505b602082108103620001bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021357600081815260208120601f850160051c81016020861015620001ee5750805b601f850160051c820191505b818110156200020f57828155600101620001fa565b5050505b505050565b81516001600160401b038111156200023457620002346200005a565b6200024c8162000245845462000189565b84620001c5565b602080601f8311600181146200028457600084156200026b5750858301515b600019600386901b1c1916600185901b1785556200020f565b600085815260208120601f198616915b82811015620002b55788860151825594840194600190910190840162000294565b5085821015620002d45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6110f380620002f46000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101b3578063b88d4fde146101c6578063c87b56dd146101d9578063e985e9c5146101ec57600080fd5b80636352211e1461017757806370a082311461018a57806395d89b41146101ab57600080fd5b806301ffc9a7146100d457806306fdde03146100fc578063081812fc14610111578063095ea7b31461013c57806323b872dd1461015157806342842e0e14610164575b600080fd5b6100e76100e2366004610c7f565b610228565b60405190151581526020015b60405180910390f35b61010461027a565b6040516100f39190610cec565b61012461011f366004610cff565b61030c565b6040516001600160a01b0390911681526020016100f3565b61014f61014a366004610d34565b610333565b005b61014f61015f366004610d5e565b61044d565b61014f610172366004610d5e565b61047e565b610124610185366004610cff565b610499565b61019d610198366004610d9a565b6104f9565b6040519081526020016100f3565b61010461057f565b61014f6101c1366004610db5565b61058e565b61014f6101d4366004610e07565b61059d565b6101046101e7366004610cff565b6105d5565b6100e76101fa366004610ee3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061025957506001600160e01b03198216635b5e139f60e01b145b8061027457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461028990610f16565b80601f01602080910402602001604051908101604052809291908181526020018280546102b590610f16565b80156103025780601f106102d757610100808354040283529160200191610302565b820191906000526020600020905b8154815290600101906020018083116102e557829003601f168201915b5050505050905090565b600061031782610649565b506000908152600460205260409020546001600160a01b031690565b600061033e82610499565b9050806001600160a01b0316836001600160a01b0316036103b05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806103cc57506103cc81336101fa565b61043e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016103a7565b61044883836106ab565b505050565b6104573382610719565b6104735760405162461bcd60e51b81526004016103a790610f50565b610448838383610798565b6104488383836040518060200160405280600081525061059d565b6000818152600260205260408120546001600160a01b0316806102745760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016103a7565b60006001600160a01b0382166105635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016103a7565b506001600160a01b031660009081526003602052604090205490565b60606001805461028990610f16565b6105993383836108fc565b5050565b6105a73383610719565b6105c35760405162461bcd60e51b81526004016103a790610f50565b6105cf848484846109ca565b50505050565b60606105e082610649565b60006105f760408051602081019091526000815290565b905060008151116106175760405180602001604052806000815250610642565b80610621846109fd565b604051602001610632929190610f9d565b6040516020818303038152906040525b9392505050565b6000818152600260205260409020546001600160a01b03166106a85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016103a7565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906106e082610499565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061072583610499565b9050806001600160a01b0316846001600160a01b0316148061076c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806107905750836001600160a01b03166107858461030c565b6001600160a01b0316145b949350505050565b826001600160a01b03166107ab82610499565b6001600160a01b0316146107d15760405162461bcd60e51b81526004016103a790610fcc565b6001600160a01b0382166108335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b826001600160a01b031661084682610499565b6001600160a01b03161461086c5760405162461bcd60e51b81526004016103a790610fcc565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361095d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103a7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6109d5848484610798565b6109e184848484610a90565b6105cf5760405162461bcd60e51b81526004016103a790611011565b60606000610a0a83610b91565b600101905060008167ffffffffffffffff811115610a2a57610a2a610df1565b6040519080825280601f01601f191660200182016040528015610a54576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610a5e57509392505050565b60006001600160a01b0384163b15610b8657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610ad4903390899088908890600401611063565b6020604051808303816000875af1925050508015610b0f575060408051601f3d908101601f19168201909252610b0c918101906110a0565b60015b610b6c573d808015610b3d576040519150601f19603f3d011682016040523d82523d6000602084013e610b42565b606091505b508051600003610b645760405162461bcd60e51b81526004016103a790611011565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610790565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610bd05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310610bfc576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310610c1a57662386f26fc10000830492506010015b6305f5e1008310610c32576305f5e100830492506008015b6127108310610c4657612710830492506004015b60648310610c58576064830492506002015b600a83106102745760010192915050565b6001600160e01b0319811681146106a857600080fd5b600060208284031215610c9157600080fd5b813561064281610c69565b60005b83811015610cb7578181015183820152602001610c9f565b50506000910152565b60008151808452610cd8816020860160208601610c9c565b601f01601f19169290920160200192915050565b6020815260006106426020830184610cc0565b600060208284031215610d1157600080fd5b5035919050565b80356001600160a01b0381168114610d2f57600080fd5b919050565b60008060408385031215610d4757600080fd5b610d5083610d18565b946020939093013593505050565b600080600060608486031215610d7357600080fd5b610d7c84610d18565b9250610d8a60208501610d18565b9150604084013590509250925092565b600060208284031215610dac57600080fd5b61064282610d18565b60008060408385031215610dc857600080fd5b610dd183610d18565b915060208301358015158114610de657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610e1d57600080fd5b610e2685610d18565b9350610e3460208601610d18565b925060408501359150606085013567ffffffffffffffff80821115610e5857600080fd5b818701915087601f830112610e6c57600080fd5b813581811115610e7e57610e7e610df1565b604051601f8201601f19908116603f01168101908382118183101715610ea657610ea6610df1565b816040528281528a6020848701011115610ebf57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610ef657600080fd5b610eff83610d18565b9150610f0d60208401610d18565b90509250929050565b600181811c90821680610f2a57607f821691505b602082108103610f4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008351610faf818460208801610c9c565b835190830190610fc3818360208801610c9c565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061109690830184610cc0565b9695505050505050565b6000602082840312156110b257600080fd5b815161064281610c6956fea264697066735822122046232d695729941dc3c66a3841f05c2a778545995d243b77b3f4721d3f05ed1564736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x13E7 CODESIZE SUB DUP1 PUSH3 0x13E7 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x11F JUMP JUMPDEST PUSH1 0x0 PUSH3 0x42 DUP4 DUP3 PUSH3 0x218 JUMP JUMPDEST POP PUSH1 0x1 PUSH3 0x51 DUP3 DUP3 PUSH3 0x218 JUMP JUMPDEST POP POP POP PUSH3 0x2E4 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x9F JUMPI PUSH3 0x9F PUSH3 0x5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0xCA JUMPI PUSH3 0xCA PUSH3 0x5A JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0xE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x10B JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0xEC JUMP JUMPDEST PUSH1 0x0 SWAP4 DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x159 DUP7 DUP4 DUP8 ADD PUSH3 0x70 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x170 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x17F DUP6 DUP3 DUP7 ADD PUSH3 0x70 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x19E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x1BF JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x213 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x1EE JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x20F JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1FA JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x234 JUMPI PUSH3 0x234 PUSH3 0x5A JUMP JUMPDEST PUSH3 0x24C DUP2 PUSH3 0x245 DUP5 SLOAD PUSH3 0x189 JUMP JUMPDEST DUP5 PUSH3 0x1C5 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x284 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x26B JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x20F JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x2B5 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x294 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x2D4 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x10F3 DUP1 PUSH3 0x2F4 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x164 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xC7F JUMP JUMPDEST PUSH2 0x228 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x27A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xCEC JUMP JUMPDEST PUSH2 0x124 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0xCFF JUMP JUMPDEST PUSH2 0x30C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x333 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14F PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xD5E JUMP JUMPDEST PUSH2 0x44D JUMP JUMPDEST PUSH2 0x14F PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xD5E JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH2 0x124 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xCFF JUMP JUMPDEST PUSH2 0x499 JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0xD9A JUMP JUMPDEST PUSH2 0x4F9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x57F JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xDB5 JUMP JUMPDEST PUSH2 0x58E JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1D4 CALLDATASIZE PUSH1 0x4 PUSH2 0xE07 JUMP JUMPDEST PUSH2 0x59D JUMP JUMPDEST PUSH2 0x104 PUSH2 0x1E7 CALLDATASIZE PUSH1 0x4 PUSH2 0xCFF JUMP JUMPDEST PUSH2 0x5D5 JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0xEE3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 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 PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x259 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x274 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 PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x289 SWAP1 PUSH2 0xF16 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 0x2B5 SWAP1 PUSH2 0xF16 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x302 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x302 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x317 DUP3 PUSH2 0x649 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33E DUP3 PUSH2 0x499 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x3B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x3CC JUMPI POP PUSH2 0x3CC DUP2 CALLER PUSH2 0x1FA JUMP JUMPDEST PUSH2 0x43E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A7 JUMP JUMPDEST PUSH2 0x448 DUP4 DUP4 PUSH2 0x6AB JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x457 CALLER DUP3 PUSH2 0x719 JUMP JUMPDEST PUSH2 0x473 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0xF50 JUMP JUMPDEST PUSH2 0x448 DUP4 DUP4 DUP4 PUSH2 0x798 JUMP JUMPDEST PUSH2 0x448 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x59D JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x274 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 PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x563 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3634B21037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A7 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x289 SWAP1 PUSH2 0xF16 JUMP JUMPDEST PUSH2 0x599 CALLER DUP4 DUP4 PUSH2 0x8FC JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x5A7 CALLER DUP4 PUSH2 0x719 JUMP JUMPDEST PUSH2 0x5C3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0xF50 JUMP JUMPDEST PUSH2 0x5CF DUP5 DUP5 DUP5 DUP5 PUSH2 0x9CA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x5E0 DUP3 PUSH2 0x649 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5F7 PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x617 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x642 JUMP JUMPDEST DUP1 PUSH2 0x621 DUP5 PUSH2 0x9FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x632 SWAP3 SWAP2 SWAP1 PUSH2 0xF9D 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 PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x6A8 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 PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A7 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x6E0 DUP3 PUSH2 0x499 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x725 DUP4 PUSH2 0x499 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x76C JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST DUP1 PUSH2 0x790 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x785 DUP5 PUSH2 0x30C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x7AB DUP3 PUSH2 0x499 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7D1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0xFCC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x833 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A7 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x846 DUP3 PUSH2 0x499 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x86C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0xFCC JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND DUP1 DUP7 MSTORE PUSH1 0x3 DUP6 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x0 NOT ADD SWAP1 SSTORE SWAP1 DUP8 AND DUP1 DUP7 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP7 DUP7 MSTORE PUSH1 0x2 SWAP1 SWAP5 MSTORE DUP3 DUP6 KECCAK256 DUP1 SLOAD SWAP1 SWAP3 AND DUP5 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP5 SWAP4 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x95D 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 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 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 JUMP JUMPDEST PUSH2 0x9D5 DUP5 DUP5 DUP5 PUSH2 0x798 JUMP JUMPDEST PUSH2 0x9E1 DUP5 DUP5 DUP5 DUP5 PUSH2 0xA90 JUMP JUMPDEST PUSH2 0x5CF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0x1011 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xA0A DUP4 PUSH2 0xB91 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA2A JUMPI PUSH2 0xA2A PUSH2 0xDF1 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 0xA54 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH1 0x0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0xA5E JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0xB86 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xAD4 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1063 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xB0F JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB0C SWAP2 DUP2 ADD SWAP1 PUSH2 0x10A0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xB6C JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xB3D JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xB42 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0xB64 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0x1011 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x790 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0xBD0 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0xBFC JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0xC1A JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0xC32 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0xC46 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0xC58 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x274 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x6A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x642 DUP2 PUSH2 0xC69 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xCB7 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xC9F JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xCD8 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xC9C JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x642 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xCC0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD2F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD47 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD50 DUP4 PUSH2 0xD18 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xD73 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD7C DUP5 PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH2 0xD8A PUSH1 0x20 DUP6 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDAC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x642 DUP3 PUSH2 0xD18 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDC8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDD1 DUP4 PUSH2 0xD18 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xDE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xE1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE26 DUP6 PUSH2 0xD18 JUMP JUMPDEST SWAP4 POP PUSH2 0xE34 PUSH1 0x20 DUP7 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE6C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE7E JUMPI PUSH2 0xE7E PUSH2 0xDF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0xEA6 JUMPI PUSH2 0xEA6 PUSH2 0xDF1 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0xEBF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEFF DUP4 PUSH2 0xD18 JUMP JUMPDEST SWAP2 POP PUSH2 0xF0D PUSH1 0x20 DUP5 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xF2A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xF4A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2D SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH13 0x1C881BDC88185C1C1C9BDD9959 PUSH1 0x9A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0xFAF DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0xC9C JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0xFC3 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0xC9C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x37BBB732B9 PUSH1 0xD9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 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 PUSH1 0x0 SWAP1 PUSH2 0x1096 SWAP1 DUP4 ADD DUP5 PUSH2 0xCC0 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x642 DUP2 PUSH2 0xC69 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CHAINID 0x23 0x2D PUSH10 0x5729941DC3C66A3841F0 0x5C 0x2A PUSH24 0x8545995D243B77B3F4721D3F05ED1564736F6C6343000813 STOP CALLER ","sourceMap":"628:16377:9:-:0;;;1390:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1456:5;:13;1464:5;1456;:13;:::i;:::-;-1:-1:-1;1479:7:9;:17;1489:7;1479;:17;:::i;:::-;;1390:113;;628:16377;;14:127:25;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:840;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;294:13;;-1:-1:-1;;;;;356:10:25;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:25;;;518:2;490:31;486:40;474:53;;;542:18;;;562:22;;;539:46;536:72;;;588:18;;:::i;:::-;628:10;624:2;617:22;663:2;655:6;648:18;685:4;675:14;;730:3;725:2;720;712:6;708:15;704:24;701:33;698:53;;;747:1;744;737:12;698:53;769:1;760:10;;779:133;793:2;790:1;787:9;779:133;;;881:14;;;877:23;;871:30;850:14;;;846:23;;839:63;804:10;;;;779:133;;;954:1;932:15;;;928:24;;;921:35;;;;936:6;146:840;-1:-1:-1;;;;146:840:25:o;991:562::-;1090:6;1098;1151:2;1139:9;1130:7;1126:23;1122:32;1119:52;;;1167:1;1164;1157:12;1119:52;1194:16;;-1:-1:-1;;;;;1259:14:25;;;1256:34;;;1286:1;1283;1276:12;1256:34;1309:61;1362:7;1353:6;1342:9;1338:22;1309:61;:::i;:::-;1299:71;;1416:2;1405:9;1401:18;1395:25;1379:41;;1445:2;1435:8;1432:16;1429:36;;;1461:1;1458;1451:12;1429:36;;1484:63;1539:7;1528:8;1517:9;1513:24;1484:63;:::i;:::-;1474:73;;;991:562;;;;;:::o;1558:380::-;1637:1;1633:12;;;;1680;;;1701:61;;1755:4;1747:6;1743:17;1733:27;;1701:61;1808:2;1800:6;1797:14;1777:18;1774:38;1771:161;;1854:10;1849:3;1845:20;1842:1;1835:31;1889:4;1886:1;1879:15;1917:4;1914:1;1907:15;1771:161;;1558:380;;;:::o;2069:545::-;2171:2;2166:3;2163:11;2160:448;;;2207:1;2232:5;2228:2;2221:17;2277:4;2273:2;2263:19;2347:2;2335:10;2331:19;2328:1;2324:27;2318:4;2314:38;2383:4;2371:10;2368:20;2365:47;;;-1:-1:-1;2406:4:25;2365:47;2461:2;2456:3;2452:12;2449:1;2445:20;2439:4;2435:31;2425:41;;2516:82;2534:2;2527:5;2524:13;2516:82;;;2579:17;;;2560:1;2549:13;2516:82;;;2520:3;;;2160:448;2069:545;;;:::o;2790:1352::-;2910:10;;-1:-1:-1;;;;;2932:30:25;;2929:56;;;2965:18;;:::i;:::-;2994:97;3084:6;3044:38;3076:4;3070:11;3044:38;:::i;:::-;3038:4;2994:97;:::i;:::-;3146:4;;3210:2;3199:14;;3227:1;3222:663;;;;3929:1;3946:6;3943:89;;;-1:-1:-1;3998:19:25;;;3992:26;3943:89;-1:-1:-1;;2747:1:25;2743:11;;;2739:24;2735:29;2725:40;2771:1;2767:11;;;2722:57;4045:81;;3192:944;;3222:663;2016:1;2009:14;;;2053:4;2040:18;;-1:-1:-1;;3258:20:25;;;3376:236;3390:7;3387:1;3384:14;3376:236;;;3479:19;;;3473:26;3458:42;;3571:27;;;;3539:1;3527:14;;;;3406:19;;3376:236;;;3380:3;3640:6;3631:7;3628:19;3625:201;;;3701:19;;;3695:26;-1:-1:-1;;3784:1:25;3780:14;;;3796:3;3776:24;3772:37;3768:42;3753:58;3738:74;;3625:201;-1:-1:-1;;;;;3872:1:25;3856:14;;;3852:22;3839:36;;-1:-1:-1;2790:1352:25:o;:::-;628:16377:9;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_2517":{"entryPoint":null,"id":2517,"parameterSlots":4,"returnSlots":0},"@_approve_2383":{"entryPoint":1707,"id":2383,"parameterSlots":2,"returnSlots":0},"@_baseURI_1820":{"entryPoint":null,"id":1820,"parameterSlots":0,"returnSlots":1},"@_beforeTokenTransfer_2504":{"entryPoint":null,"id":2504,"parameterSlots":4,"returnSlots":0},"@_checkOnERC721Received_2491":{"entryPoint":2704,"id":2491,"parameterSlots":4,"returnSlots":1},"@_exists_2052":{"entryPoint":null,"id":2052,"parameterSlots":1,"returnSlots":1},"@_isApprovedOrOwner_2086":{"entryPoint":1817,"id":2086,"parameterSlots":2,"returnSlots":1},"@_msgSender_3192":{"entryPoint":null,"id":3192,"parameterSlots":0,"returnSlots":1},"@_ownerOf_2034":{"entryPoint":null,"id":2034,"parameterSlots":1,"returnSlots":1},"@_requireMinted_2429":{"entryPoint":1609,"id":2429,"parameterSlots":1,"returnSlots":0},"@_safeTransfer_2021":{"entryPoint":2506,"id":2021,"parameterSlots":4,"returnSlots":0},"@_setApprovalForAll_2415":{"entryPoint":2300,"id":2415,"parameterSlots":3,"returnSlots":0},"@_transfer_2359":{"entryPoint":1944,"id":2359,"parameterSlots":3,"returnSlots":0},"@approve_1863":{"entryPoint":819,"id":1863,"parameterSlots":2,"returnSlots":0},"@balanceOf_1724":{"entryPoint":1273,"id":1724,"parameterSlots":1,"returnSlots":1},"@getApproved_1881":{"entryPoint":780,"id":1881,"parameterSlots":1,"returnSlots":1},"@isApprovedForAll_1916":{"entryPoint":null,"id":1916,"parameterSlots":2,"returnSlots":1},"@isContract_2868":{"entryPoint":null,"id":2868,"parameterSlots":1,"returnSlots":1},"@log10_4252":{"entryPoint":2961,"id":4252,"parameterSlots":1,"returnSlots":1},"@name_1762":{"entryPoint":634,"id":1762,"parameterSlots":0,"returnSlots":1},"@ownerOf_1752":{"entryPoint":1177,"id":1752,"parameterSlots":1,"returnSlots":1},"@safeTransferFrom_1962":{"entryPoint":1150,"id":1962,"parameterSlots":3,"returnSlots":0},"@safeTransferFrom_1992":{"entryPoint":1437,"id":1992,"parameterSlots":4,"returnSlots":0},"@setApprovalForAll_1898":{"entryPoint":1422,"id":1898,"parameterSlots":2,"returnSlots":0},"@supportsInterface_1700":{"entryPoint":552,"id":1700,"parameterSlots":1,"returnSlots":1},"@supportsInterface_3536":{"entryPoint":null,"id":3536,"parameterSlots":1,"returnSlots":1},"@symbol_1772":{"entryPoint":1407,"id":1772,"parameterSlots":0,"returnSlots":1},"@toString_3343":{"entryPoint":2557,"id":3343,"parameterSlots":1,"returnSlots":1},"@tokenURI_1811":{"entryPoint":1493,"id":1811,"parameterSlots":1,"returnSlots":1},"@transferFrom_1943":{"entryPoint":1101,"id":1943,"parameterSlots":3,"returnSlots":0},"abi_decode_address":{"entryPoint":3352,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3482,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":3811,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":3422,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr":{"entryPoint":3591,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":3509,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":3380,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":3199,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":4256,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":3327,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":3264,"id":null,"parameterSlots":2,"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":3997,"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_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":4195,"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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3308,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3920,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4113,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4044,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__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},"copy_memory_to_memory_with_cleanup":{"entryPoint":3228,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":3862,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x12":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":3569,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":3177,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:10132:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"58:87:25","statements":[{"body":{"nodeType":"YulBlock","src":"123:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"132:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"135:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"125:6:25"},"nodeType":"YulFunctionCall","src":"125:12:25"},"nodeType":"YulExpressionStatement","src":"125:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"81:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"92:5:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"108:10:25","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"99:3:25"},"nodeType":"YulFunctionCall","src":"99:20:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"88:3:25"},"nodeType":"YulFunctionCall","src":"88:32:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"78:2:25"},"nodeType":"YulFunctionCall","src":"78:43:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"71:6:25"},"nodeType":"YulFunctionCall","src":"71:51:25"},"nodeType":"YulIf","src":"68:71:25"}]},"name":"validator_revert_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"47:5:25","type":""}],"src":"14:131:25"},{"body":{"nodeType":"YulBlock","src":"219:176:25","statements":[{"body":{"nodeType":"YulBlock","src":"265:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"274:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"277:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"267:6:25"},"nodeType":"YulFunctionCall","src":"267:12:25"},"nodeType":"YulExpressionStatement","src":"267:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"240:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"249:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"236:3:25"},"nodeType":"YulFunctionCall","src":"236:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"261:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"232:3:25"},"nodeType":"YulFunctionCall","src":"232:32:25"},"nodeType":"YulIf","src":"229:52:25"},{"nodeType":"YulVariableDeclaration","src":"290:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"316:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"303:12:25"},"nodeType":"YulFunctionCall","src":"303:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"294:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"359:5:25"}],"functionName":{"name":"validator_revert_bytes4","nodeType":"YulIdentifier","src":"335:23:25"},"nodeType":"YulFunctionCall","src":"335:30:25"},"nodeType":"YulExpressionStatement","src":"335:30:25"},{"nodeType":"YulAssignment","src":"374:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"384:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"374:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"185:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"196:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"208:6:25","type":""}],"src":"150:245:25"},{"body":{"nodeType":"YulBlock","src":"495:92:25","statements":[{"nodeType":"YulAssignment","src":"505:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"517:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"528:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"513:3:25"},"nodeType":"YulFunctionCall","src":"513:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"505:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"547:9:25"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"572:6:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"565:6:25"},"nodeType":"YulFunctionCall","src":"565:14:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"558:6:25"},"nodeType":"YulFunctionCall","src":"558:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"540:6:25"},"nodeType":"YulFunctionCall","src":"540:41:25"},"nodeType":"YulExpressionStatement","src":"540:41:25"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"464:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"475:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"486:4:25","type":""}],"src":"400:187:25"},{"body":{"nodeType":"YulBlock","src":"658:184:25","statements":[{"nodeType":"YulVariableDeclaration","src":"668:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"677:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"672:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"737:63:25","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"762:3:25"},{"name":"i","nodeType":"YulIdentifier","src":"767:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"758:3:25"},"nodeType":"YulFunctionCall","src":"758:11:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"781:3:25"},{"name":"i","nodeType":"YulIdentifier","src":"786:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"777:3:25"},"nodeType":"YulFunctionCall","src":"777:11:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"771:5:25"},"nodeType":"YulFunctionCall","src":"771:18:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"751:6:25"},"nodeType":"YulFunctionCall","src":"751:39:25"},"nodeType":"YulExpressionStatement","src":"751:39:25"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"698:1:25"},{"name":"length","nodeType":"YulIdentifier","src":"701:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"695:2:25"},"nodeType":"YulFunctionCall","src":"695:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"709:19:25","statements":[{"nodeType":"YulAssignment","src":"711:15:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"720:1:25"},{"kind":"number","nodeType":"YulLiteral","src":"723:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"716:3:25"},"nodeType":"YulFunctionCall","src":"716:10:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"711:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"691:3:25","statements":[]},"src":"687:113:25"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"820:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"825:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"816:3:25"},"nodeType":"YulFunctionCall","src":"816:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"834:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"809:6:25"},"nodeType":"YulFunctionCall","src":"809:27:25"},"nodeType":"YulExpressionStatement","src":"809:27:25"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"636:3:25","type":""},{"name":"dst","nodeType":"YulTypedName","src":"641:3:25","type":""},{"name":"length","nodeType":"YulTypedName","src":"646:6:25","type":""}],"src":"592:250:25"},{"body":{"nodeType":"YulBlock","src":"897:221:25","statements":[{"nodeType":"YulVariableDeclaration","src":"907:26:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"927:5:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"921:5:25"},"nodeType":"YulFunctionCall","src":"921:12:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"911:6:25","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"949:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"954:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"942:6:25"},"nodeType":"YulFunctionCall","src":"942:19:25"},"nodeType":"YulExpressionStatement","src":"942:19:25"},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1009:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"1016:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1005:3:25"},"nodeType":"YulFunctionCall","src":"1005:16:25"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1027:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"1032:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1023:3:25"},"nodeType":"YulFunctionCall","src":"1023:14:25"},{"name":"length","nodeType":"YulIdentifier","src":"1039:6:25"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"970:34:25"},"nodeType":"YulFunctionCall","src":"970:76:25"},"nodeType":"YulExpressionStatement","src":"970:76:25"},{"nodeType":"YulAssignment","src":"1055:57:25","value":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1070:3:25"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1083:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"1091:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1079:3:25"},"nodeType":"YulFunctionCall","src":"1079:15:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1100:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1096:3:25"},"nodeType":"YulFunctionCall","src":"1096:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1075:3:25"},"nodeType":"YulFunctionCall","src":"1075:29:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1066:3:25"},"nodeType":"YulFunctionCall","src":"1066:39:25"},{"kind":"number","nodeType":"YulLiteral","src":"1107:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1062:3:25"},"nodeType":"YulFunctionCall","src":"1062:50:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"1055:3:25"}]}]},"name":"abi_encode_string","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"874:5:25","type":""},{"name":"pos","nodeType":"YulTypedName","src":"881:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"889:3:25","type":""}],"src":"847:271:25"},{"body":{"nodeType":"YulBlock","src":"1244:99:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1261:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1272:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1254:6:25"},"nodeType":"YulFunctionCall","src":"1254:21:25"},"nodeType":"YulExpressionStatement","src":"1254:21:25"},{"nodeType":"YulAssignment","src":"1284:53:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1310:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1322:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1333:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1318:3:25"},"nodeType":"YulFunctionCall","src":"1318:18:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"1292:17:25"},"nodeType":"YulFunctionCall","src":"1292:45:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1284:4:25"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1213:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1224:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1235:4:25","type":""}],"src":"1123:220:25"},{"body":{"nodeType":"YulBlock","src":"1418:110:25","statements":[{"body":{"nodeType":"YulBlock","src":"1464:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1473:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1476:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1466:6:25"},"nodeType":"YulFunctionCall","src":"1466:12:25"},"nodeType":"YulExpressionStatement","src":"1466:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1439:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1448:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1435:3:25"},"nodeType":"YulFunctionCall","src":"1435:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1460:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1431:3:25"},"nodeType":"YulFunctionCall","src":"1431:32:25"},"nodeType":"YulIf","src":"1428:52:25"},{"nodeType":"YulAssignment","src":"1489:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1512:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1499:12:25"},"nodeType":"YulFunctionCall","src":"1499:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1489:6:25"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1384:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1395:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1407:6:25","type":""}],"src":"1348:180:25"},{"body":{"nodeType":"YulBlock","src":"1634:102:25","statements":[{"nodeType":"YulAssignment","src":"1644:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1656:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1667:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1652:3:25"},"nodeType":"YulFunctionCall","src":"1652:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1644:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1686:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1701:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1717:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1722:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1713:3:25"},"nodeType":"YulFunctionCall","src":"1713:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"1726:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1709:3:25"},"nodeType":"YulFunctionCall","src":"1709:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1697:3:25"},"nodeType":"YulFunctionCall","src":"1697:32:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1679:6:25"},"nodeType":"YulFunctionCall","src":"1679:51:25"},"nodeType":"YulExpressionStatement","src":"1679:51:25"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1603:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1614:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1625:4:25","type":""}],"src":"1533:203:25"},{"body":{"nodeType":"YulBlock","src":"1790:124:25","statements":[{"nodeType":"YulAssignment","src":"1800:29:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1822:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1809:12:25"},"nodeType":"YulFunctionCall","src":"1809:20:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1800:5:25"}]},{"body":{"nodeType":"YulBlock","src":"1892:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1901:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1904:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1894:6:25"},"nodeType":"YulFunctionCall","src":"1894:12:25"},"nodeType":"YulExpressionStatement","src":"1894:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1851:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1862:5:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1877:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1882:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1873:3:25"},"nodeType":"YulFunctionCall","src":"1873:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"1886:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1869:3:25"},"nodeType":"YulFunctionCall","src":"1869:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1858:3:25"},"nodeType":"YulFunctionCall","src":"1858:31:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1848:2:25"},"nodeType":"YulFunctionCall","src":"1848:42:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1841:6:25"},"nodeType":"YulFunctionCall","src":"1841:50:25"},"nodeType":"YulIf","src":"1838:70:25"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1769:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1780:5:25","type":""}],"src":"1741:173:25"},{"body":{"nodeType":"YulBlock","src":"2006:167:25","statements":[{"body":{"nodeType":"YulBlock","src":"2052:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2061:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2064:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2054:6:25"},"nodeType":"YulFunctionCall","src":"2054:12:25"},"nodeType":"YulExpressionStatement","src":"2054:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2027:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"2036:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2023:3:25"},"nodeType":"YulFunctionCall","src":"2023:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"2048:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2019:3:25"},"nodeType":"YulFunctionCall","src":"2019:32:25"},"nodeType":"YulIf","src":"2016:52:25"},{"nodeType":"YulAssignment","src":"2077:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2106:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2087:18:25"},"nodeType":"YulFunctionCall","src":"2087:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2077:6:25"}]},{"nodeType":"YulAssignment","src":"2125:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2152:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2163:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2148:3:25"},"nodeType":"YulFunctionCall","src":"2148:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2135:12:25"},"nodeType":"YulFunctionCall","src":"2135:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2125:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1964:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1975:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1987:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1995:6:25","type":""}],"src":"1919:254:25"},{"body":{"nodeType":"YulBlock","src":"2282:224:25","statements":[{"body":{"nodeType":"YulBlock","src":"2328:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2337:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2340:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2330:6:25"},"nodeType":"YulFunctionCall","src":"2330:12:25"},"nodeType":"YulExpressionStatement","src":"2330:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2303:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"2312:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2299:3:25"},"nodeType":"YulFunctionCall","src":"2299:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"2324:2:25","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2295:3:25"},"nodeType":"YulFunctionCall","src":"2295:32:25"},"nodeType":"YulIf","src":"2292:52:25"},{"nodeType":"YulAssignment","src":"2353:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2382:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2363:18:25"},"nodeType":"YulFunctionCall","src":"2363:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2353:6:25"}]},{"nodeType":"YulAssignment","src":"2401:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2434:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2445:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2430:3:25"},"nodeType":"YulFunctionCall","src":"2430:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2411:18:25"},"nodeType":"YulFunctionCall","src":"2411:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2401:6:25"}]},{"nodeType":"YulAssignment","src":"2458:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2485:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2496:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2481:3:25"},"nodeType":"YulFunctionCall","src":"2481:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2468:12:25"},"nodeType":"YulFunctionCall","src":"2468:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2458:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2232:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2243:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2255:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2263:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"2271:6:25","type":""}],"src":"2178:328:25"},{"body":{"nodeType":"YulBlock","src":"2581:116:25","statements":[{"body":{"nodeType":"YulBlock","src":"2627:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2636:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2639:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2629:6:25"},"nodeType":"YulFunctionCall","src":"2629:12:25"},"nodeType":"YulExpressionStatement","src":"2629:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2602:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"2611:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2598:3:25"},"nodeType":"YulFunctionCall","src":"2598:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"2623:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2594:3:25"},"nodeType":"YulFunctionCall","src":"2594:32:25"},"nodeType":"YulIf","src":"2591:52:25"},{"nodeType":"YulAssignment","src":"2652:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2681:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2662:18:25"},"nodeType":"YulFunctionCall","src":"2662:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2652:6:25"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2547:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2558:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2570:6:25","type":""}],"src":"2511:186:25"},{"body":{"nodeType":"YulBlock","src":"2803:76:25","statements":[{"nodeType":"YulAssignment","src":"2813:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2825:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2836:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2821:3:25"},"nodeType":"YulFunctionCall","src":"2821:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2813:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2855:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"2866:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2848:6:25"},"nodeType":"YulFunctionCall","src":"2848:25:25"},"nodeType":"YulExpressionStatement","src":"2848:25:25"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2772:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2783:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2794:4:25","type":""}],"src":"2702:177:25"},{"body":{"nodeType":"YulBlock","src":"2968:263:25","statements":[{"body":{"nodeType":"YulBlock","src":"3014:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3023:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3026:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3016:6:25"},"nodeType":"YulFunctionCall","src":"3016:12:25"},"nodeType":"YulExpressionStatement","src":"3016:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2989:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"2998:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2985:3:25"},"nodeType":"YulFunctionCall","src":"2985:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"3010:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2981:3:25"},"nodeType":"YulFunctionCall","src":"2981:32:25"},"nodeType":"YulIf","src":"2978:52:25"},{"nodeType":"YulAssignment","src":"3039:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3068:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"3049:18:25"},"nodeType":"YulFunctionCall","src":"3049:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3039:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"3087:45:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3117:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3128:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3113:3:25"},"nodeType":"YulFunctionCall","src":"3113:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3100:12:25"},"nodeType":"YulFunctionCall","src":"3100:32:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3091:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3185:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3194:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3197:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3187:6:25"},"nodeType":"YulFunctionCall","src":"3187:12:25"},"nodeType":"YulExpressionStatement","src":"3187:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3154:5:25"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3175:5:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3168:6:25"},"nodeType":"YulFunctionCall","src":"3168:13:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3161:6:25"},"nodeType":"YulFunctionCall","src":"3161:21:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"3151:2:25"},"nodeType":"YulFunctionCall","src":"3151:32:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3144:6:25"},"nodeType":"YulFunctionCall","src":"3144:40:25"},"nodeType":"YulIf","src":"3141:60:25"},{"nodeType":"YulAssignment","src":"3210:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"3220:5:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"3210:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2926:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2937:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2949:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2957:6:25","type":""}],"src":"2884:347:25"},{"body":{"nodeType":"YulBlock","src":"3268:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3285:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3292:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"3297:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3288:3:25"},"nodeType":"YulFunctionCall","src":"3288:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3278:6:25"},"nodeType":"YulFunctionCall","src":"3278:31:25"},"nodeType":"YulExpressionStatement","src":"3278:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3325:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3328:4:25","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3318:6:25"},"nodeType":"YulFunctionCall","src":"3318:15:25"},"nodeType":"YulExpressionStatement","src":"3318:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3349:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3352:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3342:6:25"},"nodeType":"YulFunctionCall","src":"3342:15:25"},"nodeType":"YulExpressionStatement","src":"3342:15:25"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"3236:127:25"},{"body":{"nodeType":"YulBlock","src":"3498:1008:25","statements":[{"body":{"nodeType":"YulBlock","src":"3545:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3554:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3557:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3547:6:25"},"nodeType":"YulFunctionCall","src":"3547:12:25"},"nodeType":"YulExpressionStatement","src":"3547:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3519:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"3528:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3515:3:25"},"nodeType":"YulFunctionCall","src":"3515:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"3540:3:25","type":"","value":"128"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3511:3:25"},"nodeType":"YulFunctionCall","src":"3511:33:25"},"nodeType":"YulIf","src":"3508:53:25"},{"nodeType":"YulAssignment","src":"3570:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3599:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"3580:18:25"},"nodeType":"YulFunctionCall","src":"3580:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3570:6:25"}]},{"nodeType":"YulAssignment","src":"3618:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3651:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3662:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3647:3:25"},"nodeType":"YulFunctionCall","src":"3647:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"3628:18:25"},"nodeType":"YulFunctionCall","src":"3628:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"3618:6:25"}]},{"nodeType":"YulAssignment","src":"3675:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3702:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3713:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3698:3:25"},"nodeType":"YulFunctionCall","src":"3698:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3685:12:25"},"nodeType":"YulFunctionCall","src":"3685:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"3675:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"3726:46:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3757:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3768:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3753:3:25"},"nodeType":"YulFunctionCall","src":"3753:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3740:12:25"},"nodeType":"YulFunctionCall","src":"3740:32:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3730:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3781:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3791:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3785:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3836:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3845:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3848:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3838:6:25"},"nodeType":"YulFunctionCall","src":"3838:12:25"},"nodeType":"YulExpressionStatement","src":"3838:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3824:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3832:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3821:2:25"},"nodeType":"YulFunctionCall","src":"3821:14:25"},"nodeType":"YulIf","src":"3818:34:25"},{"nodeType":"YulVariableDeclaration","src":"3861:32:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3875:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"3886:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3871:3:25"},"nodeType":"YulFunctionCall","src":"3871:22:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"3865:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3941:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3950:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3953:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3943:6:25"},"nodeType":"YulFunctionCall","src":"3943:12:25"},"nodeType":"YulExpressionStatement","src":"3943:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"3920:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"3924:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3916:3:25"},"nodeType":"YulFunctionCall","src":"3916:13:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3931:7:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3912:3:25"},"nodeType":"YulFunctionCall","src":"3912:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3905:6:25"},"nodeType":"YulFunctionCall","src":"3905:35:25"},"nodeType":"YulIf","src":"3902:55:25"},{"nodeType":"YulVariableDeclaration","src":"3966:26:25","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"3989:2:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3976:12:25"},"nodeType":"YulFunctionCall","src":"3976:16:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"3970:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4015:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"4017:16:25"},"nodeType":"YulFunctionCall","src":"4017:18:25"},"nodeType":"YulExpressionStatement","src":"4017:18:25"}]},"condition":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"4007:2:25"},{"name":"_1","nodeType":"YulIdentifier","src":"4011:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4004:2:25"},"nodeType":"YulFunctionCall","src":"4004:10:25"},"nodeType":"YulIf","src":"4001:36:25"},{"nodeType":"YulVariableDeclaration","src":"4046:17:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4060:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4056:3:25"},"nodeType":"YulFunctionCall","src":"4056:7:25"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"4050:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4072:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4092:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4086:5:25"},"nodeType":"YulFunctionCall","src":"4086:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"4076:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4104:71:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"4126:6:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"4150:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"4154:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4146:3:25"},"nodeType":"YulFunctionCall","src":"4146:13:25"},{"name":"_4","nodeType":"YulIdentifier","src":"4161:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4142:3:25"},"nodeType":"YulFunctionCall","src":"4142:22:25"},{"kind":"number","nodeType":"YulLiteral","src":"4166:2:25","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4138:3:25"},"nodeType":"YulFunctionCall","src":"4138:31:25"},{"name":"_4","nodeType":"YulIdentifier","src":"4171:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4134:3:25"},"nodeType":"YulFunctionCall","src":"4134:40:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4122:3:25"},"nodeType":"YulFunctionCall","src":"4122:53:25"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"4108:10:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4234:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"4236:16:25"},"nodeType":"YulFunctionCall","src":"4236:18:25"},"nodeType":"YulExpressionStatement","src":"4236:18:25"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"4193:10:25"},{"name":"_1","nodeType":"YulIdentifier","src":"4205:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4190:2:25"},"nodeType":"YulFunctionCall","src":"4190:18:25"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"4213:10:25"},{"name":"memPtr","nodeType":"YulIdentifier","src":"4225:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4210:2:25"},"nodeType":"YulFunctionCall","src":"4210:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"4187:2:25"},"nodeType":"YulFunctionCall","src":"4187:46:25"},"nodeType":"YulIf","src":"4184:72:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4272:2:25","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"4276:10:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4265:6:25"},"nodeType":"YulFunctionCall","src":"4265:22:25"},"nodeType":"YulExpressionStatement","src":"4265:22:25"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"4303:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"4311:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4296:6:25"},"nodeType":"YulFunctionCall","src":"4296:18:25"},"nodeType":"YulExpressionStatement","src":"4296:18:25"},{"body":{"nodeType":"YulBlock","src":"4360:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4369:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4372:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4362:6:25"},"nodeType":"YulFunctionCall","src":"4362:12:25"},"nodeType":"YulExpressionStatement","src":"4362:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"4337:2:25"},{"name":"_3","nodeType":"YulIdentifier","src":"4341:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4333:3:25"},"nodeType":"YulFunctionCall","src":"4333:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"4346:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4329:3:25"},"nodeType":"YulFunctionCall","src":"4329:20:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4351:7:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4326:2:25"},"nodeType":"YulFunctionCall","src":"4326:33:25"},"nodeType":"YulIf","src":"4323:53:25"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"4402:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4410:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4398:3:25"},"nodeType":"YulFunctionCall","src":"4398:15:25"},{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"4419:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"4423:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4415:3:25"},"nodeType":"YulFunctionCall","src":"4415:11:25"},{"name":"_3","nodeType":"YulIdentifier","src":"4428:2:25"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"4385:12:25"},"nodeType":"YulFunctionCall","src":"4385:46:25"},"nodeType":"YulExpressionStatement","src":"4385:46:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"4455:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"4463:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4451:3:25"},"nodeType":"YulFunctionCall","src":"4451:15:25"},{"kind":"number","nodeType":"YulLiteral","src":"4468:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4447:3:25"},"nodeType":"YulFunctionCall","src":"4447:24:25"},{"kind":"number","nodeType":"YulLiteral","src":"4473:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4440:6:25"},"nodeType":"YulFunctionCall","src":"4440:35:25"},"nodeType":"YulExpressionStatement","src":"4440:35:25"},{"nodeType":"YulAssignment","src":"4484:16:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"4494:6:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"4484:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3440:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3451:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3463:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3471:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3479:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"3487:6:25","type":""}],"src":"3368:1138:25"},{"body":{"nodeType":"YulBlock","src":"4598:173:25","statements":[{"body":{"nodeType":"YulBlock","src":"4644:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4653:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4656:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4646:6:25"},"nodeType":"YulFunctionCall","src":"4646:12:25"},"nodeType":"YulExpressionStatement","src":"4646:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4619:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"4628:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4615:3:25"},"nodeType":"YulFunctionCall","src":"4615:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"4640:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4611:3:25"},"nodeType":"YulFunctionCall","src":"4611:32:25"},"nodeType":"YulIf","src":"4608:52:25"},{"nodeType":"YulAssignment","src":"4669:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4698:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"4679:18:25"},"nodeType":"YulFunctionCall","src":"4679:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4669:6:25"}]},{"nodeType":"YulAssignment","src":"4717:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4750:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4761:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4746:3:25"},"nodeType":"YulFunctionCall","src":"4746:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"4727:18:25"},"nodeType":"YulFunctionCall","src":"4727:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4717:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4556:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4567:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4579:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4587:6:25","type":""}],"src":"4511:260:25"},{"body":{"nodeType":"YulBlock","src":"4831:325:25","statements":[{"nodeType":"YulAssignment","src":"4841:22:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4855:1:25","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"4858:4:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"4851:3:25"},"nodeType":"YulFunctionCall","src":"4851:12:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"4841:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"4872:38:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"4902:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"4908:1:25","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4898:3:25"},"nodeType":"YulFunctionCall","src":"4898:12:25"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"4876:18:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4949:31:25","statements":[{"nodeType":"YulAssignment","src":"4951:27:25","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4965:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4973:4:25","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4961:3:25"},"nodeType":"YulFunctionCall","src":"4961:17:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"4951:6:25"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"4929:18:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"4922:6:25"},"nodeType":"YulFunctionCall","src":"4922:26:25"},"nodeType":"YulIf","src":"4919:61:25"},{"body":{"nodeType":"YulBlock","src":"5039:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5060:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5067:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"5072:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"5063:3:25"},"nodeType":"YulFunctionCall","src":"5063:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5053:6:25"},"nodeType":"YulFunctionCall","src":"5053:31:25"},"nodeType":"YulExpressionStatement","src":"5053:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5104:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"5107:4:25","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5097:6:25"},"nodeType":"YulFunctionCall","src":"5097:15:25"},"nodeType":"YulExpressionStatement","src":"5097:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5132:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5135:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5125:6:25"},"nodeType":"YulFunctionCall","src":"5125:15:25"},"nodeType":"YulExpressionStatement","src":"5125:15:25"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"4995:18:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"5018:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"5026:2:25","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"5015:2:25"},"nodeType":"YulFunctionCall","src":"5015:14:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"4992:2:25"},"nodeType":"YulFunctionCall","src":"4992:38:25"},"nodeType":"YulIf","src":"4989:161:25"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"4811:4:25","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"4820:6:25","type":""}],"src":"4776:380:25"},{"body":{"nodeType":"YulBlock","src":"5335:223:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5352:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5363:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5345:6:25"},"nodeType":"YulFunctionCall","src":"5345:21:25"},"nodeType":"YulExpressionStatement","src":"5345:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5386:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5397:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5382:3:25"},"nodeType":"YulFunctionCall","src":"5382:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"5402:2:25","type":"","value":"33"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5375:6:25"},"nodeType":"YulFunctionCall","src":"5375:30:25"},"nodeType":"YulExpressionStatement","src":"5375:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5425:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5436:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5421:3:25"},"nodeType":"YulFunctionCall","src":"5421:18:25"},{"hexValue":"4552433732313a20617070726f76616c20746f2063757272656e74206f776e65","kind":"string","nodeType":"YulLiteral","src":"5441:34:25","type":"","value":"ERC721: approval to current owne"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5414:6:25"},"nodeType":"YulFunctionCall","src":"5414:62:25"},"nodeType":"YulExpressionStatement","src":"5414:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5496:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5507:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5492:3:25"},"nodeType":"YulFunctionCall","src":"5492:18:25"},{"hexValue":"72","kind":"string","nodeType":"YulLiteral","src":"5512:3:25","type":"","value":"r"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5485:6:25"},"nodeType":"YulFunctionCall","src":"5485:31:25"},"nodeType":"YulExpressionStatement","src":"5485:31:25"},{"nodeType":"YulAssignment","src":"5525:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5537:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5548:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5533:3:25"},"nodeType":"YulFunctionCall","src":"5533:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5525:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5312:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5326:4:25","type":""}],"src":"5161:397:25"},{"body":{"nodeType":"YulBlock","src":"5737:251:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5754:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5765:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5747:6:25"},"nodeType":"YulFunctionCall","src":"5747:21:25"},"nodeType":"YulExpressionStatement","src":"5747:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5788:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5799:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5784:3:25"},"nodeType":"YulFunctionCall","src":"5784:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"5804:2:25","type":"","value":"61"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5777:6:25"},"nodeType":"YulFunctionCall","src":"5777:30:25"},"nodeType":"YulExpressionStatement","src":"5777:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5827:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5838:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5823:3:25"},"nodeType":"YulFunctionCall","src":"5823:18:25"},{"hexValue":"4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f","kind":"string","nodeType":"YulLiteral","src":"5843:34:25","type":"","value":"ERC721: approve caller is not to"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5816:6:25"},"nodeType":"YulFunctionCall","src":"5816:62:25"},"nodeType":"YulExpressionStatement","src":"5816:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5898:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5909:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5894:3:25"},"nodeType":"YulFunctionCall","src":"5894:18:25"},{"hexValue":"6b656e206f776e6572206f7220617070726f76656420666f7220616c6c","kind":"string","nodeType":"YulLiteral","src":"5914:31:25","type":"","value":"ken owner or approved for all"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5887:6:25"},"nodeType":"YulFunctionCall","src":"5887:59:25"},"nodeType":"YulExpressionStatement","src":"5887:59:25"},{"nodeType":"YulAssignment","src":"5955:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5967:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5978:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5963:3:25"},"nodeType":"YulFunctionCall","src":"5963:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5955:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5714:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5728:4:25","type":""}],"src":"5563:425:25"},{"body":{"nodeType":"YulBlock","src":"6167:235:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6184:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6195:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6177:6:25"},"nodeType":"YulFunctionCall","src":"6177:21:25"},"nodeType":"YulExpressionStatement","src":"6177:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6218:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6229:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6214:3:25"},"nodeType":"YulFunctionCall","src":"6214:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"6234:2:25","type":"","value":"45"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6207:6:25"},"nodeType":"YulFunctionCall","src":"6207:30:25"},"nodeType":"YulExpressionStatement","src":"6207:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6257:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6268:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6253:3:25"},"nodeType":"YulFunctionCall","src":"6253:18:25"},{"hexValue":"4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65","kind":"string","nodeType":"YulLiteral","src":"6273:34:25","type":"","value":"ERC721: caller is not token owne"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6246:6:25"},"nodeType":"YulFunctionCall","src":"6246:62:25"},"nodeType":"YulExpressionStatement","src":"6246:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6328:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6339:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6324:3:25"},"nodeType":"YulFunctionCall","src":"6324:18:25"},{"hexValue":"72206f7220617070726f766564","kind":"string","nodeType":"YulLiteral","src":"6344:15:25","type":"","value":"r or approved"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6317:6:25"},"nodeType":"YulFunctionCall","src":"6317:43:25"},"nodeType":"YulExpressionStatement","src":"6317:43:25"},{"nodeType":"YulAssignment","src":"6369:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6381:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6392:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6377:3:25"},"nodeType":"YulFunctionCall","src":"6377:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6369:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6144:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6158:4:25","type":""}],"src":"5993:409:25"},{"body":{"nodeType":"YulBlock","src":"6581:174:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6598:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6609:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6591:6:25"},"nodeType":"YulFunctionCall","src":"6591:21:25"},"nodeType":"YulExpressionStatement","src":"6591:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6632:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6643:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6628:3:25"},"nodeType":"YulFunctionCall","src":"6628:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"6648:2:25","type":"","value":"24"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6621:6:25"},"nodeType":"YulFunctionCall","src":"6621:30:25"},"nodeType":"YulExpressionStatement","src":"6621:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6671:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6682:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6667:3:25"},"nodeType":"YulFunctionCall","src":"6667:18:25"},{"hexValue":"4552433732313a20696e76616c696420746f6b656e204944","kind":"string","nodeType":"YulLiteral","src":"6687:26:25","type":"","value":"ERC721: invalid token ID"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6660:6:25"},"nodeType":"YulFunctionCall","src":"6660:54:25"},"nodeType":"YulExpressionStatement","src":"6660:54:25"},{"nodeType":"YulAssignment","src":"6723:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6735:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6746:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6731:3:25"},"nodeType":"YulFunctionCall","src":"6731:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6723:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6558:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6572:4:25","type":""}],"src":"6407:348:25"},{"body":{"nodeType":"YulBlock","src":"6934:231:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6951:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6962:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6944:6:25"},"nodeType":"YulFunctionCall","src":"6944:21:25"},"nodeType":"YulExpressionStatement","src":"6944:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6985:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6996:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6981:3:25"},"nodeType":"YulFunctionCall","src":"6981:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"7001:2:25","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6974:6:25"},"nodeType":"YulFunctionCall","src":"6974:30:25"},"nodeType":"YulExpressionStatement","src":"6974:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7024:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7035:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7020:3:25"},"nodeType":"YulFunctionCall","src":"7020:18:25"},{"hexValue":"4552433732313a2061646472657373207a65726f206973206e6f742061207661","kind":"string","nodeType":"YulLiteral","src":"7040:34:25","type":"","value":"ERC721: address zero is not a va"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7013:6:25"},"nodeType":"YulFunctionCall","src":"7013:62:25"},"nodeType":"YulExpressionStatement","src":"7013:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7095:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7106:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7091:3:25"},"nodeType":"YulFunctionCall","src":"7091:18:25"},{"hexValue":"6c6964206f776e6572","kind":"string","nodeType":"YulLiteral","src":"7111:11:25","type":"","value":"lid owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7084:6:25"},"nodeType":"YulFunctionCall","src":"7084:39:25"},"nodeType":"YulExpressionStatement","src":"7084:39:25"},{"nodeType":"YulAssignment","src":"7132:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7144:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7155:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7140:3:25"},"nodeType":"YulFunctionCall","src":"7140:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7132:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6911:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6925:4:25","type":""}],"src":"6760:405:25"},{"body":{"nodeType":"YulBlock","src":"7357:309:25","statements":[{"nodeType":"YulVariableDeclaration","src":"7367:27:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"7387:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7381:5:25"},"nodeType":"YulFunctionCall","src":"7381:13:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"7371:6:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"7442:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"7450:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7438:3:25"},"nodeType":"YulFunctionCall","src":"7438:17:25"},{"name":"pos","nodeType":"YulIdentifier","src":"7457:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"7462:6:25"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"7403:34:25"},"nodeType":"YulFunctionCall","src":"7403:66:25"},"nodeType":"YulExpressionStatement","src":"7403:66:25"},{"nodeType":"YulVariableDeclaration","src":"7478:29:25","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7495:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"7500:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7491:3:25"},"nodeType":"YulFunctionCall","src":"7491:16:25"},"variables":[{"name":"end_1","nodeType":"YulTypedName","src":"7482:5:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7516:29:25","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"7538:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7532:5:25"},"nodeType":"YulFunctionCall","src":"7532:13:25"},"variables":[{"name":"length_1","nodeType":"YulTypedName","src":"7520:8:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"7593:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"7601:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7589:3:25"},"nodeType":"YulFunctionCall","src":"7589:17:25"},{"name":"end_1","nodeType":"YulIdentifier","src":"7608:5:25"},{"name":"length_1","nodeType":"YulIdentifier","src":"7615:8:25"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"7554:34:25"},"nodeType":"YulFunctionCall","src":"7554:70:25"},"nodeType":"YulExpressionStatement","src":"7554:70:25"},{"nodeType":"YulAssignment","src":"7633:27:25","value":{"arguments":[{"name":"end_1","nodeType":"YulIdentifier","src":"7644:5:25"},{"name":"length_1","nodeType":"YulIdentifier","src":"7651:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7640:3:25"},"nodeType":"YulFunctionCall","src":"7640:20:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"7633:3:25"}]}]},"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","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"7325:3:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7330:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"7338:6:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"7349:3:25","type":""}],"src":"7170:496:25"},{"body":{"nodeType":"YulBlock","src":"7845:227:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7862:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7873:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7855:6:25"},"nodeType":"YulFunctionCall","src":"7855:21:25"},"nodeType":"YulExpressionStatement","src":"7855:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7896:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7907:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7892:3:25"},"nodeType":"YulFunctionCall","src":"7892:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"7912:2:25","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7885:6:25"},"nodeType":"YulFunctionCall","src":"7885:30:25"},"nodeType":"YulExpressionStatement","src":"7885:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7935:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7946:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7931:3:25"},"nodeType":"YulFunctionCall","src":"7931:18:25"},{"hexValue":"4552433732313a207472616e736665722066726f6d20696e636f727265637420","kind":"string","nodeType":"YulLiteral","src":"7951:34:25","type":"","value":"ERC721: transfer from incorrect "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7924:6:25"},"nodeType":"YulFunctionCall","src":"7924:62:25"},"nodeType":"YulExpressionStatement","src":"7924:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8006:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8017:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8002:3:25"},"nodeType":"YulFunctionCall","src":"8002:18:25"},{"hexValue":"6f776e6572","kind":"string","nodeType":"YulLiteral","src":"8022:7:25","type":"","value":"owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7995:6:25"},"nodeType":"YulFunctionCall","src":"7995:35:25"},"nodeType":"YulExpressionStatement","src":"7995:35:25"},{"nodeType":"YulAssignment","src":"8039:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8051:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8062:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8047:3:25"},"nodeType":"YulFunctionCall","src":"8047:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8039:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7822:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7836:4:25","type":""}],"src":"7671:401:25"},{"body":{"nodeType":"YulBlock","src":"8251:226:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8268:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8279:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8261:6:25"},"nodeType":"YulFunctionCall","src":"8261:21:25"},"nodeType":"YulExpressionStatement","src":"8261:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8302:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8313:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8298:3:25"},"nodeType":"YulFunctionCall","src":"8298:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"8318:2:25","type":"","value":"36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8291:6:25"},"nodeType":"YulFunctionCall","src":"8291:30:25"},"nodeType":"YulExpressionStatement","src":"8291:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8341:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8352:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8337:3:25"},"nodeType":"YulFunctionCall","src":"8337:18:25"},{"hexValue":"4552433732313a207472616e7366657220746f20746865207a65726f20616464","kind":"string","nodeType":"YulLiteral","src":"8357:34:25","type":"","value":"ERC721: transfer to the zero add"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8330:6:25"},"nodeType":"YulFunctionCall","src":"8330:62:25"},"nodeType":"YulExpressionStatement","src":"8330:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8412:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8423:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8408:3:25"},"nodeType":"YulFunctionCall","src":"8408:18:25"},{"hexValue":"72657373","kind":"string","nodeType":"YulLiteral","src":"8428:6:25","type":"","value":"ress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8401:6:25"},"nodeType":"YulFunctionCall","src":"8401:34:25"},"nodeType":"YulExpressionStatement","src":"8401:34:25"},{"nodeType":"YulAssignment","src":"8444:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8456:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8467:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8452:3:25"},"nodeType":"YulFunctionCall","src":"8452:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8444:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8228:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8242:4:25","type":""}],"src":"8077:400:25"},{"body":{"nodeType":"YulBlock","src":"8656:175:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8673:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8684:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8666:6:25"},"nodeType":"YulFunctionCall","src":"8666:21:25"},"nodeType":"YulExpressionStatement","src":"8666:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8707:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8718:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8703:3:25"},"nodeType":"YulFunctionCall","src":"8703:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"8723:2:25","type":"","value":"25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8696:6:25"},"nodeType":"YulFunctionCall","src":"8696:30:25"},"nodeType":"YulExpressionStatement","src":"8696:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8746:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8757:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8742:3:25"},"nodeType":"YulFunctionCall","src":"8742:18:25"},{"hexValue":"4552433732313a20617070726f766520746f2063616c6c6572","kind":"string","nodeType":"YulLiteral","src":"8762:27:25","type":"","value":"ERC721: approve to caller"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8735:6:25"},"nodeType":"YulFunctionCall","src":"8735:55:25"},"nodeType":"YulExpressionStatement","src":"8735:55:25"},{"nodeType":"YulAssignment","src":"8799:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8811:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8822:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8807:3:25"},"nodeType":"YulFunctionCall","src":"8807:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8799:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8633:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8647:4:25","type":""}],"src":"8482:349:25"},{"body":{"nodeType":"YulBlock","src":"9010:240:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9027:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9038:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9020:6:25"},"nodeType":"YulFunctionCall","src":"9020:21:25"},"nodeType":"YulExpressionStatement","src":"9020:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9061:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9072:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9057:3:25"},"nodeType":"YulFunctionCall","src":"9057:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9077:2:25","type":"","value":"50"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9050:6:25"},"nodeType":"YulFunctionCall","src":"9050:30:25"},"nodeType":"YulExpressionStatement","src":"9050:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9100:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9111:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9096:3:25"},"nodeType":"YulFunctionCall","src":"9096:18:25"},{"hexValue":"4552433732313a207472616e7366657220746f206e6f6e204552433732315265","kind":"string","nodeType":"YulLiteral","src":"9116:34:25","type":"","value":"ERC721: transfer to non ERC721Re"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9089:6:25"},"nodeType":"YulFunctionCall","src":"9089:62:25"},"nodeType":"YulExpressionStatement","src":"9089:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9171:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9182:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9167:3:25"},"nodeType":"YulFunctionCall","src":"9167:18:25"},{"hexValue":"63656976657220696d706c656d656e746572","kind":"string","nodeType":"YulLiteral","src":"9187:20:25","type":"","value":"ceiver implementer"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9160:6:25"},"nodeType":"YulFunctionCall","src":"9160:48:25"},"nodeType":"YulExpressionStatement","src":"9160:48:25"},{"nodeType":"YulAssignment","src":"9217:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9229:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9240:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9225:3:25"},"nodeType":"YulFunctionCall","src":"9225:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9217:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8987:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9001:4:25","type":""}],"src":"8836:414:25"},{"body":{"nodeType":"YulBlock","src":"9287:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9304:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9311:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"9316:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9307:3:25"},"nodeType":"YulFunctionCall","src":"9307:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9297:6:25"},"nodeType":"YulFunctionCall","src":"9297:31:25"},"nodeType":"YulExpressionStatement","src":"9297:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9344:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"9347:4:25","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9337:6:25"},"nodeType":"YulFunctionCall","src":"9337:15:25"},"nodeType":"YulExpressionStatement","src":"9337:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9368:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9371:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9361:6:25"},"nodeType":"YulFunctionCall","src":"9361:15:25"},"nodeType":"YulExpressionStatement","src":"9361:15:25"}]},"name":"panic_error_0x12","nodeType":"YulFunctionDefinition","src":"9255:127:25"},{"body":{"nodeType":"YulBlock","src":"9590:286:25","statements":[{"nodeType":"YulVariableDeclaration","src":"9600:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9618:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"9623:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9614:3:25"},"nodeType":"YulFunctionCall","src":"9614:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"9627:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9610:3:25"},"nodeType":"YulFunctionCall","src":"9610:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"9604:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9645:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"9660:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"9668:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9656:3:25"},"nodeType":"YulFunctionCall","src":"9656:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9638:6:25"},"nodeType":"YulFunctionCall","src":"9638:34:25"},"nodeType":"YulExpressionStatement","src":"9638:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9692:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9703:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9688:3:25"},"nodeType":"YulFunctionCall","src":"9688:18:25"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"9712:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"9720:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9708:3:25"},"nodeType":"YulFunctionCall","src":"9708:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9681:6:25"},"nodeType":"YulFunctionCall","src":"9681:43:25"},"nodeType":"YulExpressionStatement","src":"9681:43:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9744:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9755:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9740:3:25"},"nodeType":"YulFunctionCall","src":"9740:18:25"},{"name":"value2","nodeType":"YulIdentifier","src":"9760:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9733:6:25"},"nodeType":"YulFunctionCall","src":"9733:34:25"},"nodeType":"YulExpressionStatement","src":"9733:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9787:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9798:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9783:3:25"},"nodeType":"YulFunctionCall","src":"9783:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9803:3:25","type":"","value":"128"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9776:6:25"},"nodeType":"YulFunctionCall","src":"9776:31:25"},"nodeType":"YulExpressionStatement","src":"9776:31:25"},{"nodeType":"YulAssignment","src":"9816:54:25","value":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"9842:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9854:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9865:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9850:3:25"},"nodeType":"YulFunctionCall","src":"9850:19:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"9824:17:25"},"nodeType":"YulFunctionCall","src":"9824:46:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9816:4:25"}]}]},"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","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9535:9:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"9546:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"9554:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9562:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9570:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9581:4:25","type":""}],"src":"9387:489:25"},{"body":{"nodeType":"YulBlock","src":"9961:169:25","statements":[{"body":{"nodeType":"YulBlock","src":"10007:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10016:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10019:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10009:6:25"},"nodeType":"YulFunctionCall","src":"10009:12:25"},"nodeType":"YulExpressionStatement","src":"10009:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9982:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"9991:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9978:3:25"},"nodeType":"YulFunctionCall","src":"9978:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"10003:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9974:3:25"},"nodeType":"YulFunctionCall","src":"9974:32:25"},"nodeType":"YulIf","src":"9971:52:25"},{"nodeType":"YulVariableDeclaration","src":"10032:29:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10051:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10045:5:25"},"nodeType":"YulFunctionCall","src":"10045:16:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"10036:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10094:5:25"}],"functionName":{"name":"validator_revert_bytes4","nodeType":"YulIdentifier","src":"10070:23:25"},"nodeType":"YulFunctionCall","src":"10070:30:25"},"nodeType":"YulExpressionStatement","src":"10070:30:25"},{"nodeType":"YulAssignment","src":"10109:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"10119:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"10109:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9927:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9938:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9950:6:25","type":""}],"src":"9881:249:25"}]},"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 copy_memory_to_memory_with_cleanup(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        mstore(add(dst, length), 0)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory_with_cleanup(add(value, 0x20), add(pos, 0x20), length)\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 abi_decode_tuple_t_uint256(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_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_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        value1 := calldataload(add(headStart, 32))\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        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_encode_tuple_t_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_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := calldataload(add(headStart, 32))\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value1 := 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_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := calldataload(_2)\n        if gt(_3, _1) { panic_error_0x41() }\n        let _4 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n        if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _3)\n        if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(memPtr, 32), add(_2, 32), _3)\n        mstore(add(add(memPtr, _3), 32), 0)\n        value3 := memPtr\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_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC721: approval to current owne\")\n        mstore(add(headStart, 96), \"r\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 61)\n        mstore(add(headStart, 64), \"ERC721: approve caller is not to\")\n        mstore(add(headStart, 96), \"ken owner or approved for all\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 45)\n        mstore(add(headStart, 64), \"ERC721: caller is not token owne\")\n        mstore(add(headStart, 96), \"r or approved\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__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), \"ERC721: invalid token ID\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC721: address zero is not a va\")\n        mstore(add(headStart, 96), \"lid owner\")\n        tail := add(headStart, 128)\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        let length := mload(value0)\n        copy_memory_to_memory_with_cleanup(add(value0, 0x20), pos, length)\n        let end_1 := add(pos, length)\n        let length_1 := mload(value1)\n        copy_memory_to_memory_with_cleanup(add(value1, 0x20), end_1, length_1)\n        end := add(end_1, length_1)\n    }\n    function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC721: transfer from incorrect \")\n        mstore(add(headStart, 96), \"owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC721: transfer to the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__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), \"ERC721: approve to caller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 50)\n        mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n        mstore(add(headStart, 96), \"ceiver implementer\")\n        tail := add(headStart, 128)\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_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        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _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_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}","id":25,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101b3578063b88d4fde146101c6578063c87b56dd146101d9578063e985e9c5146101ec57600080fd5b80636352211e1461017757806370a082311461018a57806395d89b41146101ab57600080fd5b806301ffc9a7146100d457806306fdde03146100fc578063081812fc14610111578063095ea7b31461013c57806323b872dd1461015157806342842e0e14610164575b600080fd5b6100e76100e2366004610c7f565b610228565b60405190151581526020015b60405180910390f35b61010461027a565b6040516100f39190610cec565b61012461011f366004610cff565b61030c565b6040516001600160a01b0390911681526020016100f3565b61014f61014a366004610d34565b610333565b005b61014f61015f366004610d5e565b61044d565b61014f610172366004610d5e565b61047e565b610124610185366004610cff565b610499565b61019d610198366004610d9a565b6104f9565b6040519081526020016100f3565b61010461057f565b61014f6101c1366004610db5565b61058e565b61014f6101d4366004610e07565b61059d565b6101046101e7366004610cff565b6105d5565b6100e76101fa366004610ee3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061025957506001600160e01b03198216635b5e139f60e01b145b8061027457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461028990610f16565b80601f01602080910402602001604051908101604052809291908181526020018280546102b590610f16565b80156103025780601f106102d757610100808354040283529160200191610302565b820191906000526020600020905b8154815290600101906020018083116102e557829003601f168201915b5050505050905090565b600061031782610649565b506000908152600460205260409020546001600160a01b031690565b600061033e82610499565b9050806001600160a01b0316836001600160a01b0316036103b05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806103cc57506103cc81336101fa565b61043e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016103a7565b61044883836106ab565b505050565b6104573382610719565b6104735760405162461bcd60e51b81526004016103a790610f50565b610448838383610798565b6104488383836040518060200160405280600081525061059d565b6000818152600260205260408120546001600160a01b0316806102745760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016103a7565b60006001600160a01b0382166105635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016103a7565b506001600160a01b031660009081526003602052604090205490565b60606001805461028990610f16565b6105993383836108fc565b5050565b6105a73383610719565b6105c35760405162461bcd60e51b81526004016103a790610f50565b6105cf848484846109ca565b50505050565b60606105e082610649565b60006105f760408051602081019091526000815290565b905060008151116106175760405180602001604052806000815250610642565b80610621846109fd565b604051602001610632929190610f9d565b6040516020818303038152906040525b9392505050565b6000818152600260205260409020546001600160a01b03166106a85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016103a7565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906106e082610499565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061072583610499565b9050806001600160a01b0316846001600160a01b0316148061076c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806107905750836001600160a01b03166107858461030c565b6001600160a01b0316145b949350505050565b826001600160a01b03166107ab82610499565b6001600160a01b0316146107d15760405162461bcd60e51b81526004016103a790610fcc565b6001600160a01b0382166108335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b826001600160a01b031661084682610499565b6001600160a01b03161461086c5760405162461bcd60e51b81526004016103a790610fcc565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361095d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103a7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6109d5848484610798565b6109e184848484610a90565b6105cf5760405162461bcd60e51b81526004016103a790611011565b60606000610a0a83610b91565b600101905060008167ffffffffffffffff811115610a2a57610a2a610df1565b6040519080825280601f01601f191660200182016040528015610a54576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610a5e57509392505050565b60006001600160a01b0384163b15610b8657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610ad4903390899088908890600401611063565b6020604051808303816000875af1925050508015610b0f575060408051601f3d908101601f19168201909252610b0c918101906110a0565b60015b610b6c573d808015610b3d576040519150601f19603f3d011682016040523d82523d6000602084013e610b42565b606091505b508051600003610b645760405162461bcd60e51b81526004016103a790611011565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610790565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610bd05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310610bfc576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310610c1a57662386f26fc10000830492506010015b6305f5e1008310610c32576305f5e100830492506008015b6127108310610c4657612710830492506004015b60648310610c58576064830492506002015b600a83106102745760010192915050565b6001600160e01b0319811681146106a857600080fd5b600060208284031215610c9157600080fd5b813561064281610c69565b60005b83811015610cb7578181015183820152602001610c9f565b50506000910152565b60008151808452610cd8816020860160208601610c9c565b601f01601f19169290920160200192915050565b6020815260006106426020830184610cc0565b600060208284031215610d1157600080fd5b5035919050565b80356001600160a01b0381168114610d2f57600080fd5b919050565b60008060408385031215610d4757600080fd5b610d5083610d18565b946020939093013593505050565b600080600060608486031215610d7357600080fd5b610d7c84610d18565b9250610d8a60208501610d18565b9150604084013590509250925092565b600060208284031215610dac57600080fd5b61064282610d18565b60008060408385031215610dc857600080fd5b610dd183610d18565b915060208301358015158114610de657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610e1d57600080fd5b610e2685610d18565b9350610e3460208601610d18565b925060408501359150606085013567ffffffffffffffff80821115610e5857600080fd5b818701915087601f830112610e6c57600080fd5b813581811115610e7e57610e7e610df1565b604051601f8201601f19908116603f01168101908382118183101715610ea657610ea6610df1565b816040528281528a6020848701011115610ebf57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610ef657600080fd5b610eff83610d18565b9150610f0d60208401610d18565b90509250929050565b600181811c90821680610f2a57607f821691505b602082108103610f4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008351610faf818460208801610c9c565b835190830190610fc3818360208801610c9c565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061109690830184610cc0565b9695505050505050565b6000602082840312156110b257600080fd5b815161064281610c6956fea264697066735822122046232d695729941dc3c66a3841f05c2a778545995d243b77b3f4721d3f05ed1564736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x164 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xC7F JUMP JUMPDEST PUSH2 0x228 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x27A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xCEC JUMP JUMPDEST PUSH2 0x124 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0xCFF JUMP JUMPDEST PUSH2 0x30C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xD34 JUMP JUMPDEST PUSH2 0x333 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14F PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xD5E JUMP JUMPDEST PUSH2 0x44D JUMP JUMPDEST PUSH2 0x14F PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xD5E JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH2 0x124 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xCFF JUMP JUMPDEST PUSH2 0x499 JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0xD9A JUMP JUMPDEST PUSH2 0x4F9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x57F JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xDB5 JUMP JUMPDEST PUSH2 0x58E JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1D4 CALLDATASIZE PUSH1 0x4 PUSH2 0xE07 JUMP JUMPDEST PUSH2 0x59D JUMP JUMPDEST PUSH2 0x104 PUSH2 0x1E7 CALLDATASIZE PUSH1 0x4 PUSH2 0xCFF JUMP JUMPDEST PUSH2 0x5D5 JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0xEE3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 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 PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x259 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x274 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 PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x289 SWAP1 PUSH2 0xF16 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 0x2B5 SWAP1 PUSH2 0xF16 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x302 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x302 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x317 DUP3 PUSH2 0x649 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33E DUP3 PUSH2 0x499 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x3B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x3CC JUMPI POP PUSH2 0x3CC DUP2 CALLER PUSH2 0x1FA JUMP JUMPDEST PUSH2 0x43E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A7 JUMP JUMPDEST PUSH2 0x448 DUP4 DUP4 PUSH2 0x6AB JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x457 CALLER DUP3 PUSH2 0x719 JUMP JUMPDEST PUSH2 0x473 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0xF50 JUMP JUMPDEST PUSH2 0x448 DUP4 DUP4 DUP4 PUSH2 0x798 JUMP JUMPDEST PUSH2 0x448 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x59D JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x274 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 PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x563 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3634B21037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A7 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x289 SWAP1 PUSH2 0xF16 JUMP JUMPDEST PUSH2 0x599 CALLER DUP4 DUP4 PUSH2 0x8FC JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x5A7 CALLER DUP4 PUSH2 0x719 JUMP JUMPDEST PUSH2 0x5C3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0xF50 JUMP JUMPDEST PUSH2 0x5CF DUP5 DUP5 DUP5 DUP5 PUSH2 0x9CA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x5E0 DUP3 PUSH2 0x649 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5F7 PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x617 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x642 JUMP JUMPDEST DUP1 PUSH2 0x621 DUP5 PUSH2 0x9FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x632 SWAP3 SWAP2 SWAP1 PUSH2 0xF9D 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 PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x6A8 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 PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A7 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x6E0 DUP3 PUSH2 0x499 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x725 DUP4 PUSH2 0x499 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x76C JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST DUP1 PUSH2 0x790 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x785 DUP5 PUSH2 0x30C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x7AB DUP3 PUSH2 0x499 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7D1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0xFCC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x833 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A7 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x846 DUP3 PUSH2 0x499 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x86C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0xFCC JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND DUP1 DUP7 MSTORE PUSH1 0x3 DUP6 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x0 NOT ADD SWAP1 SSTORE SWAP1 DUP8 AND DUP1 DUP7 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP7 DUP7 MSTORE PUSH1 0x2 SWAP1 SWAP5 MSTORE DUP3 DUP6 KECCAK256 DUP1 SLOAD SWAP1 SWAP3 AND DUP5 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP5 SWAP4 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x95D 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 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 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 JUMP JUMPDEST PUSH2 0x9D5 DUP5 DUP5 DUP5 PUSH2 0x798 JUMP JUMPDEST PUSH2 0x9E1 DUP5 DUP5 DUP5 DUP5 PUSH2 0xA90 JUMP JUMPDEST PUSH2 0x5CF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0x1011 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xA0A DUP4 PUSH2 0xB91 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA2A JUMPI PUSH2 0xA2A PUSH2 0xDF1 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 0xA54 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH1 0x0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0xA5E JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0xB86 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xAD4 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1063 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xB0F JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB0C SWAP2 DUP2 ADD SWAP1 PUSH2 0x10A0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xB6C JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xB3D JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xB42 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0xB64 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A7 SWAP1 PUSH2 0x1011 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x790 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0xBD0 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0xBFC JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0xC1A JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0xC32 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0xC46 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0xC58 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x274 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x6A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x642 DUP2 PUSH2 0xC69 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xCB7 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xC9F JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xCD8 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xC9C JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x642 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xCC0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD2F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD47 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD50 DUP4 PUSH2 0xD18 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xD73 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD7C DUP5 PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH2 0xD8A PUSH1 0x20 DUP6 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDAC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x642 DUP3 PUSH2 0xD18 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDC8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDD1 DUP4 PUSH2 0xD18 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xDE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xE1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE26 DUP6 PUSH2 0xD18 JUMP JUMPDEST SWAP4 POP PUSH2 0xE34 PUSH1 0x20 DUP7 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE6C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE7E JUMPI PUSH2 0xE7E PUSH2 0xDF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0xEA6 JUMPI PUSH2 0xEA6 PUSH2 0xDF1 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0xEBF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEFF DUP4 PUSH2 0xD18 JUMP JUMPDEST SWAP2 POP PUSH2 0xF0D PUSH1 0x20 DUP5 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xF2A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xF4A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2D SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH13 0x1C881BDC88185C1C1C9BDD9959 PUSH1 0x9A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0xFAF DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0xC9C JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0xFC3 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0xC9C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x37BBB732B9 PUSH1 0xD9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 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 PUSH1 0x0 SWAP1 PUSH2 0x1096 SWAP1 DUP4 ADD DUP5 PUSH2 0xCC0 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x642 DUP2 PUSH2 0xC69 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CHAINID 0x23 0x2D PUSH10 0x5729941DC3C66A3841F0 0x5C 0x2A PUSH24 0x8545995D243B77B3F4721D3F05ED1564736F6C6343000813 STOP CALLER ","sourceMap":"628:16377:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300;;;;;;:::i;:::-;;:::i;:::-;;;565:14:25;;558:22;540:41;;528:2;513:18;1570:300:9;;;;;;;;2471:98;;;:::i;:::-;;;;;;;:::i;3935:167::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:25;;;1679:51;;1667:2;1652:18;3935:167:9;1533:203:25;3468:406:9;;;;;;:::i;:::-;;:::i;:::-;;4612:296;;;;;;:::i;:::-;;:::i;4974:149::-;;;;;;:::i;:::-;;:::i;2190:219::-;;;;;;:::i;:::-;;:::i;1929:204::-;;;;;;:::i;:::-;;:::i;:::-;;;2848:25:25;;;2836:2;2821:18;1929:204:9;2702:177:25;2633:102:9;;;:::i;4169:153::-;;;;;;:::i;:::-;;:::i;5189:276::-;;;;;;:::i;:::-;;:::i;2801:::-;;;;;;:::i;:::-;;:::i;4388:162::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4508:25:9;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162;1570:300;1672:4;-1:-1:-1;;;;;;1707:40:9;;-1:-1:-1;;;1707:40:9;;:104;;-1:-1:-1;;;;;;;1763:48:9;;-1:-1:-1;;;1763:48:9;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:18;;;1827:36:9;1688:175;1570:300;-1:-1:-1;;1570:300:9:o;2471:98::-;2525:13;2557:5;2550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:9;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:9;;3935:167::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;-1:-1:-1;;;;;3605:11:9;:2;-1:-1:-1;;;;;3605:11:9;;3597:57;;;;-1:-1:-1;;;3597:57:9;;5363:2:25;3597:57:9;;;5345:21:25;5402:2;5382:18;;;5375:30;5441:34;5421:18;;;5414:62;-1:-1:-1;;;5492:18:25;;;5485:31;5533:19;;3597:57:9;;;;;;;;;734:10:15;-1:-1:-1;;;;;3686:21:9;;;;:62;;-1:-1:-1;3711:37:9;3728:5;734:10:15;4388:162:9;:::i;3711:37::-;3665:170;;;;-1:-1:-1;;;3665:170:9;;5765:2:25;3665:170:9;;;5747:21:25;5804:2;5784:18;;;5777:30;5843:34;5823:18;;;5816:62;5914:31;5894:18;;;5887:59;5963:19;;3665:170:9;5563:425:25;3665:170:9;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;4612:296::-;4771:41;734:10:15;4804:7:9;4771:18;:41::i;:::-;4763:99;;;;-1:-1:-1;;;4763:99:9;;;;;;;:::i;:::-;4873:28;4883:4;4889:2;4893:7;4873:9;:28::i;4974:149::-;5077:39;5094:4;5100:2;5104:7;5077:39;;;;;;;;;;;;:16;:39::i;2190:219::-;2262:7;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:9;;2324:56;;;;-1:-1:-1;;;2324:56:9;;6609:2:25;2324:56:9;;;6591:21:25;6648:2;6628:18;;;6621:30;-1:-1:-1;;;6667:18:25;;;6660:54;6731:18;;2324:56:9;6407:348:25;1929:204:9;2001:7;-1:-1:-1;;;;;2028:19:9;;2020:73;;;;-1:-1:-1;;;2020:73:9;;6962:2:25;2020:73:9;;;6944:21:25;7001:2;6981:18;;;6974:30;7040:34;7020:18;;;7013:62;-1:-1:-1;;;7091:18:25;;;7084:39;7140:19;;2020:73:9;6760:405:25;2020:73:9;-1:-1:-1;;;;;;2110:16:9;;;;;:9;:16;;;;;;;1929:204::o;2633:102::-;2689:13;2721:7;2714:14;;;;;:::i;4169:153::-;4263:52;734:10:15;4296:8:9;4306;4263:18;:52::i;:::-;4169:153;;:::o;5189:276::-;5319:41;734:10:15;5352:7:9;5319:18;:41::i;:::-;5311:99;;;;-1:-1:-1;;;5311:99:9;;;;;;;:::i;:::-;5420:38;5434:4;5440:2;5444:7;5453:4;5420:13;:38::i;:::-;5189:276;;;;:::o;2801:::-;2874:13;2899:23;2914:7;2899:14;:23::i;:::-;2933:21;2957:10;3395:9;;;;;;;;;-1:-1:-1;3395:9:9;;;3319:92;2957:10;2933:34;;3008:1;2990:7;2984:21;:25;:86;;;;;;;;;;;;;;;;;3036:7;3045:18;:7;:16;:18::i;:::-;3019:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2984:86;2977:93;2801:276;-1:-1:-1;;;2801:276:9:o;13240:133::-;7185:4;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:9;13313:53;;;;-1:-1:-1;;;13313:53:9;;6609:2:25;13313:53:9;;;6591:21:25;6648:2;6628:18;;;6621:30;-1:-1:-1;;;6667:18:25;;;6660:54;6731:18;;13313:53:9;6407:348:25;13313:53:9;13240:133;:::o;12572:171::-;12646:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12646:29:9;-1:-1:-1;;;;;12646:29:9;;;;;;;;:24;;12699:23;12646:24;12699:14;:23::i;:::-;-1:-1:-1;;;;;12690:46:9;;;;;;;;;;;12572:171;;:::o;7404:261::-;7497:4;7513:13;7529:23;7544:7;7529:14;:23::i;:::-;7513:39;;7581:5;-1:-1:-1;;;;;7570:16:9;:7;-1:-1:-1;;;;;7570:16:9;;:52;;;-1:-1:-1;;;;;;4508:25:9;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7590:32;7570:87;;;;7650:7;-1:-1:-1;;;;;7626:31:9;:20;7638:7;7626:11;:20::i;:::-;-1:-1:-1;;;;;7626:31:9;;7570:87;7562:96;7404:261;-1:-1:-1;;;;7404:261:9:o;11257:1203::-;11381:4;-1:-1:-1;;;;;11354:31:9;:23;11369:7;11354:14;:23::i;:::-;-1:-1:-1;;;;;11354:31:9;;11346:81;;;;-1:-1:-1;;;11346:81:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;11445:16:9;;11437:65;;;;-1:-1:-1;;;11437:65:9;;8279:2:25;11437:65:9;;;8261:21:25;8318:2;8298:18;;;8291:30;8357:34;8337:18;;;8330:62;-1:-1:-1;;;8408:18:25;;;8401:34;8452:19;;11437:65:9;8077:400:25;11437:65:9;11682:4;-1:-1:-1;;;;;11655:31:9;:23;11670:7;11655:14;:23::i;:::-;-1:-1:-1;;;;;11655:31:9;;11647:81;;;;-1:-1:-1;;;11647:81:9;;;;;;;:::i;:::-;11797:24;;;;:15;:24;;;;;;;;11790:31;;-1:-1:-1;;;;;;11790:31:9;;;;;;-1:-1:-1;;;;;12265:15:9;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;12265:20:9;;;12299:13;;;;;;;;;:18;;11790:31;12299:18;;;12337:16;;;:7;:16;;;;;;:21;;;;;;;;;;12374:27;;11813:7;;12374:27;;;3538:336;3468:406;;:::o;12879:277::-;12999:8;-1:-1:-1;;;;;12990:17:9;:5;-1:-1:-1;;;;;12990:17:9;;12982:55;;;;-1:-1:-1;;;12982:55:9;;8684:2:25;12982:55:9;;;8666:21:25;8723:2;8703:18;;;8696:30;8762:27;8742:18;;;8735:55;8807:18;;12982:55:9;8482:349:25;12982:55:9;-1:-1:-1;;;;;13047:25:9;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13047:46:9;;;;;;;;;;13108:41;;540::25;;;13108::9;;513:18:25;13108:41:9;;;;;;;12879:277;;;:::o;6326:267::-;6438:28;6448:4;6454:2;6458:7;6438:9;:28::i;:::-;6484:47;6507:4;6513:2;6517:7;6526:4;6484:22;:47::i;:::-;6476:110;;;;-1:-1:-1;;;6476:110:9;;;;;;;:::i;447:696:17:-;503:13;552:14;569:17;580:5;569:10;:17::i;:::-;589:1;569:21;552:38;;604:20;638:6;627:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;627:18:17;-1:-1:-1;604:41:17;-1:-1:-1;765:28:17;;;781:2;765:28;820:280;-1:-1:-1;;851:5:17;-1:-1:-1;;;985:2:17;974:14;;969:30;851:5;956:44;1044:2;1035:11;;;-1:-1:-1;1064:21:17;820:280;1064:21;-1:-1:-1;1120:6:17;447:696;-1:-1:-1;;;447:696:17:o;13925:831:9:-;14074:4;-1:-1:-1;;;;;14094:13:9;;1702:19:14;:23;14090:660:9;;14129:71;;-1:-1:-1;;;14129:71:9;;-1:-1:-1;;;;;14129:36:9;;;;;:71;;734:10:15;;14180:4:9;;14186:7;;14195:4;;14129:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14129:71:9;;;;;;;;-1:-1:-1;;14129:71:9;;;;;;;;;;;;:::i;:::-;;;14125:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14367:6;:13;14384:1;14367:18;14363:321;;14409:60;;-1:-1:-1;;;14409:60:9;;;;;;;:::i;14363:321::-;14636:6;14630:13;14621:6;14617:2;14613:15;14606:38;14125:573;-1:-1:-1;;;;;;14250:51:9;-1:-1:-1;;;14250:51:9;;-1:-1:-1;14243:58:9;;14090:660;-1:-1:-1;14735:4:9;13925:831;;;;;;:::o;10139:916:20:-;10192:7;;-1:-1:-1;;;10267:17:20;;10263:103;;-1:-1:-1;;;10304:17:20;;;-1:-1:-1;10349:2:20;10339:12;10263:103;10392:8;10383:5;:17;10379:103;;10429:8;10420:17;;;-1:-1:-1;10465:2:20;10455:12;10379:103;10508:8;10499:5;:17;10495:103;;10545:8;10536:17;;;-1:-1:-1;10581:2:20;10571:12;10495:103;10624:7;10615:5;:16;10611:100;;10660:7;10651:16;;;-1:-1:-1;10695:1:20;10685:11;10611:100;10737:7;10728:5;:16;10724:100;;10773:7;10764:16;;;-1:-1:-1;10808:1:20;10798:11;10724:100;10850:7;10841:5;:16;10837:100;;10886:7;10877:16;;;-1:-1:-1;10921:1:20;10911:11;10837:100;10963:7;10954:5;:16;10950:66;;11000:1;10990:11;11042:6;10139:916;-1:-1:-1;;10139:916:20:o;14:131:25:-;-1:-1:-1;;;;;;88:32:25;;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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:25;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:25;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:25:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:25;;1348:180;-1:-1:-1;1348:180:25:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:25;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:25:o;2178:328::-;2255:6;2263;2271;2324:2;2312:9;2303:7;2299:23;2295:32;2292:52;;;2340:1;2337;2330:12;2292:52;2363:29;2382:9;2363:29;:::i;:::-;2353:39;;2411:38;2445:2;2434:9;2430:18;2411:38;:::i;:::-;2401:48;;2496:2;2485:9;2481:18;2468:32;2458:42;;2178:328;;;;;:::o;2511:186::-;2570:6;2623:2;2611:9;2602:7;2598:23;2594:32;2591:52;;;2639:1;2636;2629:12;2591:52;2662:29;2681:9;2662:29;:::i;2884:347::-;2949:6;2957;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3049:29;3068:9;3049:29;:::i;:::-;3039:39;;3128:2;3117:9;3113:18;3100:32;3175:5;3168:13;3161:21;3154:5;3151:32;3141:60;;3197:1;3194;3187:12;3141:60;3220:5;3210:15;;;2884:347;;;;;:::o;3236:127::-;3297:10;3292:3;3288:20;3285:1;3278:31;3328:4;3325:1;3318:15;3352:4;3349:1;3342:15;3368:1138;3463:6;3471;3479;3487;3540:3;3528:9;3519:7;3515:23;3511:33;3508:53;;;3557:1;3554;3547:12;3508:53;3580:29;3599:9;3580:29;:::i;:::-;3570:39;;3628:38;3662:2;3651:9;3647:18;3628:38;:::i;:::-;3618:48;;3713:2;3702:9;3698:18;3685:32;3675:42;;3768:2;3757:9;3753:18;3740:32;3791:18;3832:2;3824:6;3821:14;3818:34;;;3848:1;3845;3838:12;3818:34;3886:6;3875:9;3871:22;3861:32;;3931:7;3924:4;3920:2;3916:13;3912:27;3902:55;;3953:1;3950;3943:12;3902:55;3989:2;3976:16;4011:2;4007;4004:10;4001:36;;;4017:18;;:::i;:::-;4092:2;4086:9;4060:2;4146:13;;-1:-1:-1;;4142:22:25;;;4166:2;4138:31;4134:40;4122:53;;;4190:18;;;4210:22;;;4187:46;4184:72;;;4236:18;;:::i;:::-;4276:10;4272:2;4265:22;4311:2;4303:6;4296:18;4351:7;4346:2;4341;4337;4333:11;4329:20;4326:33;4323:53;;;4372:1;4369;4362:12;4323:53;4428:2;4423;4419;4415:11;4410:2;4402:6;4398:15;4385:46;4473:1;4468:2;4463;4455:6;4451:15;4447:24;4440:35;4494:6;4484:16;;;;;;;3368:1138;;;;;;;:::o;4511:260::-;4579:6;4587;4640:2;4628:9;4619:7;4615:23;4611:32;4608:52;;;4656:1;4653;4646:12;4608:52;4679:29;4698:9;4679:29;:::i;:::-;4669:39;;4727:38;4761:2;4750:9;4746:18;4727:38;:::i;:::-;4717:48;;4511:260;;;;;:::o;4776:380::-;4855:1;4851:12;;;;4898;;;4919:61;;4973:4;4965:6;4961:17;4951:27;;4919:61;5026:2;5018:6;5015:14;4995:18;4992:38;4989:161;;5072:10;5067:3;5063:20;5060:1;5053:31;5107:4;5104:1;5097:15;5135:4;5132:1;5125:15;4989:161;;4776:380;;;:::o;5993:409::-;6195:2;6177:21;;;6234:2;6214:18;;;6207:30;6273:34;6268:2;6253:18;;6246:62;-1:-1:-1;;;6339:2:25;6324:18;;6317:43;6392:3;6377:19;;5993:409::o;7170:496::-;7349:3;7387:6;7381:13;7403:66;7462:6;7457:3;7450:4;7442:6;7438:17;7403:66;:::i;:::-;7532:13;;7491:16;;;;7554:70;7532:13;7491:16;7601:4;7589:17;;7554:70;:::i;:::-;7640:20;;7170:496;-1:-1:-1;;;;7170:496:25:o;7671:401::-;7873:2;7855:21;;;7912:2;7892:18;;;7885:30;7951:34;7946:2;7931:18;;7924:62;-1:-1:-1;;;8017:2:25;8002:18;;7995:35;8062:3;8047:19;;7671:401::o;8836:414::-;9038:2;9020:21;;;9077:2;9057:18;;;9050:30;9116:34;9111:2;9096:18;;9089:62;-1:-1:-1;;;9182:2:25;9167:18;;9160:48;9240:3;9225:19;;8836:414::o;9387:489::-;-1:-1:-1;;;;;9656:15:25;;;9638:34;;9708:15;;9703:2;9688:18;;9681:43;9755:2;9740:18;;9733:34;;;9803:3;9798:2;9783:18;;9776:31;;;9581:4;;9824:46;;9850:19;;9842:6;9824:46;:::i;:::-;9816:54;9387:489;-1:-1:-1;;;;;;9387:489:25:o;9881:249::-;9950:6;10003:2;9991:9;9982:7;9978:23;9974:32;9971:52;;;10019:1;10016;10009:12;9971:52;10051:9;10045:16;10070:30;10094:5;10070:30;:::i"},"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.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"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\":\"\",\"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[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.\",\"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\":\"See {IERC721-approve}.\"},\"balanceOf(address)\":{\"details\":\"See {IERC721-balanceOf}.\"},\"constructor\":{\"details\":\"Initializes the contract by setting a `name` and a `symbol` to the token collection.\"},\"getApproved(uint256)\":{\"details\":\"See {IERC721-getApproved}.\"},\"isApprovedForAll(address,address)\":{\"details\":\"See {IERC721-isApprovedForAll}.\"},\"name()\":{\"details\":\"See {IERC721Metadata-name}.\"},\"ownerOf(uint256)\":{\"details\":\"See {IERC721-ownerOf}.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"See {IERC721-setApprovalForAll}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"See {IERC721Metadata-symbol}.\"},\"tokenURI(uint256)\":{\"details\":\"See {IERC721Metadata-tokenURI}.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-transferFrom}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/ERC721.sol\":\"ERC721\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/ERC721.sol\":{\"keccak256\":\"0x2c309e7df9e05e6ce15bedfe74f3c61b467fc37e0fae9eab496acf5ea0bbd7ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7063b5c98711a98018ba4635ac74cee1c1cfa2ea01099498e062699ed9530005\",\"dweb:/ipfs/QmeJ8rGXkcv7RrqLdAW8PCXPAykxVsddfYY6g5NaTwmRFE\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5bce51e11f7d194b79ea59fe00c9e8de9fa2c5530124960f29a24d4c740a3266\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e66dfde185df46104c11bc89d08fa0760737aa59a2b8546a656473d810a8ea4\",\"dweb:/ipfs/QmXvyqtXPaPss2PD7eqPoSao5Szm2n6UMoiG8TZZDjmChR\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708\",\"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f\",\"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]}},\"version\":1}"}},"@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.19+commit.7dd6d404\"},\"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 ERC721 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 ERC721 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 caller. 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[EIP 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 ERC721 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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5bce51e11f7d194b79ea59fe00c9e8de9fa2c5530124960f29a24d4c740a3266\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e66dfde185df46104c11bc89d08fa0760737aa59a2b8546a656473d810a8ea4\",\"dweb:/ipfs/QmXvyqtXPaPss2PD7eqPoSao5Szm2n6UMoiG8TZZDjmChR\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@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.19+commit.7dd6d404\"},\"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 ERC721 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\":\"ERC721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708\",\"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol":{"ERC721URIStorage":{"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":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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.19+commit.7dd6d404\"},\"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\":false,\"internalType\":\"uint256\",\"name\":\"_fromTokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_toTokenId\",\"type\":\"uint256\"}],\"name\":\"BatchMetadataUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"MetadataUpdate\",\"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\":\"ERC721 token with storage based token URI management.\",\"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.\"},\"BatchMetadataUpdate(uint256,uint256)\":{\"details\":\"This event emits when the metadata of a range of tokens is changed. So that the third-party platforms such as NFT market could timely update the images and related attributes of the NFTs.\"},\"MetadataUpdate(uint256)\":{\"details\":\"This event emits when the metadata of a token is changed. So that the third-party platforms such as NFT market could timely update the images and related attributes of the NFT.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"See {IERC721-approve}.\"},\"balanceOf(address)\":{\"details\":\"See {IERC721-balanceOf}.\"},\"getApproved(uint256)\":{\"details\":\"See {IERC721-getApproved}.\"},\"isApprovedForAll(address,address)\":{\"details\":\"See {IERC721-isApprovedForAll}.\"},\"name()\":{\"details\":\"See {IERC721Metadata-name}.\"},\"ownerOf(uint256)\":{\"details\":\"See {IERC721-ownerOf}.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"See {IERC721-setApprovalForAll}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}\"},\"symbol()\":{\"details\":\"See {IERC721Metadata-symbol}.\"},\"tokenURI(uint256)\":{\"details\":\"See {IERC721Metadata-tokenURI}.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-transferFrom}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\":\"ERC721URIStorage\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xd04b0f06e0666f29cf7cccc82894de541e19bb30a765b107b1e40bb7fe5f7d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7b652499d098e88d8d878374616bb58434301061cae2253298b3f374044e0ddb\",\"dweb:/ipfs/QmbhAzctqo5jrSKU6idHdVyqfmzCcDbNUPvmx4GiXxfA6q\"]},\"@openzeppelin/contracts/interfaces/IERC4906.sol\":{\"keccak256\":\"0x2a9dadb806be80dd451821f1f1190eb9aa6f6edae85b185db29d60767cc0c5f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c25cac8dbe5bd96320053d23c3dacdb875e629d7c53ac00892eb7aa8500bde6\",\"dweb:/ipfs/Qmaf2oqbxxdJA9DphAoH4UCb8aXEAVM8fnu6qMxHJ5ta4A\"]},\"@openzeppelin/contracts/interfaces/IERC721.sol\":{\"keccak256\":\"0xaf297d12d8d4a57fe01a70f0ef38908f208e3faedc577056d0b728fa2f3ccf0c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fbfaf37123958822a2720a4ea29651be00edab787540b770f73d3e025d286ff8\",\"dweb:/ipfs/QmbzgWeTm8hJVUqWrNAwFjshqbYVyeGpQA8D1huzxQdmw6\"]},\"@openzeppelin/contracts/token/ERC721/ERC721.sol\":{\"keccak256\":\"0x2c309e7df9e05e6ce15bedfe74f3c61b467fc37e0fae9eab496acf5ea0bbd7ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7063b5c98711a98018ba4635ac74cee1c1cfa2ea01099498e062699ed9530005\",\"dweb:/ipfs/QmeJ8rGXkcv7RrqLdAW8PCXPAykxVsddfYY6g5NaTwmRFE\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5bce51e11f7d194b79ea59fe00c9e8de9fa2c5530124960f29a24d4c740a3266\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e66dfde185df46104c11bc89d08fa0760737aa59a2b8546a656473d810a8ea4\",\"dweb:/ipfs/QmXvyqtXPaPss2PD7eqPoSao5Szm2n6UMoiG8TZZDjmChR\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708\",\"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV\"]},\"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\":{\"keccak256\":\"0x7942989e3525aec1672469e4c65fb33fbd19c785c9cadbcb70fcbe1fe8bfdd37\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c9f260258c2be0e3b75f8ca285872c4bfa3a8fc97fdc2e62366c78abf22b54f\",\"dweb:/ipfs/QmTg1DMNwCDj8NVi6i1noqx7cxuRdPP4VyW4fzDkKAKmH2\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f\",\"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]}},\"version\":1}"}},"@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.19+commit.7dd6d404\"},\"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 ERC721 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 caller. 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[EIP 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 ERC721 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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5bce51e11f7d194b79ea59fe00c9e8de9fa2c5530124960f29a24d4c740a3266\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e66dfde185df46104c11bc89d08fa0760737aa59a2b8546a656473d810a8ea4\",\"dweb:/ipfs/QmXvyqtXPaPss2PD7eqPoSao5Szm2n6UMoiG8TZZDjmChR\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Address.sol":{"Address":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212206a5ffe3918ffd67bc8201cd7c53cdf8cf8012872ab683529e81e227957132c4364736f6c63430008130033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x5FFE3918FFD67BC8201CD7 0xC5 EXTCODECOPY 0xDF DUP13 0xF8 ADD 0x28 PUSH19 0xAB683529E81E227957132C4364736F6C634300 ADDMOD SGT STOP CALLER ","sourceMap":"194:9169:14:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;194:9169:14;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212206a5ffe3918ffd67bc8201cd7c53cdf8cf8012872ab683529e81e227957132c4364736f6c63430008130033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x5FFE3918FFD67BC8201CD7 0xC5 EXTCODECOPY 0xDF DUP13 0xF8 ADD 0x28 PUSH19 0xAB683529E81E227957132C4364736F6C634300 ADDMOD SGT STOP CALLER ","sourceMap":"194:9169:14:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]}},\"version\":1}"}},"@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.19+commit.7dd6d404\"},\"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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Counters.sol":{"Counters":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122061ff10289f043bf5939e7e851238bbb80d8104c7b6ace582472994a8ff859e9964736f6c63430008130033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH2 0xFF10 0x28 SWAP16 DIV EXTCODESIZE CREATE2 SWAP4 SWAP15 PUSH31 0x851238BBB80D8104C7B6ACE582472994A8FF859E9964736F6C634300081300 CALLER ","sourceMap":"424:971:16:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;424:971:16;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122061ff10289f043bf5939e7e851238bbb80d8104c7b6ace582472994a8ff859e9964736f6c63430008130033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH2 0xFF10 0x28 SWAP16 DIV EXTCODESIZE CREATE2 SWAP4 SWAP15 PUSH31 0x851238BBB80D8104C7B6ACE582472994A8FF859E9964736F6C634300081300 CALLER ","sourceMap":"424:971:16:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"Matt Condon (@shrugs)\",\"details\":\"Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number of elements in a mapping, issuing ERC721 ids, or counting request ids. Include with `using Counters for Counters.Counter;`\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Counters\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Counters.sol\":\"Counters\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Counters.sol\":{\"keccak256\":\"0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://59e1c62884d55b70f3ae5432b44bb3166ad71ae3acd19c57ab6ddc3c87c325ee\",\"dweb:/ipfs/QmezuXg5GK5oeA4F91EZhozBFekhq5TD966bHPH18cCqhu\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Strings.sol":{"Strings":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122011d4b54bc80c0b44d0162d73c9c1dba9b336560313d5935c1ed2a4804e8673e864736f6c63430008130033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GT 0xD4 0xB5 0x4B 0xC8 0xC SIGNEXTEND PREVRANDAO 0xD0 AND 0x2D PUSH20 0xC9C1DBA9B336560313D5935C1ED2A4804E8673E8 PUSH5 0x736F6C6343 STOP ADDMOD SGT STOP CALLER ","sourceMap":"220:2559:17:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;220:2559:17;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122011d4b54bc80c0b44d0162d73c9c1dba9b336560313d5935c1ed2a4804e8673e864736f6c63430008130033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GT 0xD4 0xB5 0x4B 0xC8 0xC SIGNEXTEND PREVRANDAO 0xD0 AND 0x2D PUSH20 0xC9C1DBA9B336560313D5935C1ED2A4804E8673E8 PUSH5 0x736F6C6343 STOP ADDMOD SGT STOP CALLER ","sourceMap":"220:2559:17:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"String operations.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f\",\"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]}},\"version\":1}"}},"@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.19+commit.7dd6d404\"},\"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 ERC165 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); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@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.19+commit.7dd6d404\"},\"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 ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. 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[EIP 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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e91d0b72d0ff009b3ea09e6b95963bbe902271bfde10f6c03cf48d240255864664736f6c63430008130033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE9 SAR SIGNEXTEND PUSH19 0xD0FF009B3EA09E6B95963BBE902271BFDE10F6 0xC0 EXTCODECOPY DELEGATECALL DUP14 0x24 MUL SSTORE DUP7 CHAINID PUSH5 0x736F6C6343 STOP ADDMOD SGT STOP CALLER ","sourceMap":"202:12582:20:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;202:12582:20;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e91d0b72d0ff009b3ea09e6b95963bbe902271bfde10f6c03cf48d240255864664736f6c63430008130033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE9 SAR SIGNEXTEND PUSH19 0xD0FF009B3EA09E6B95963BBE902271BFDE10F6 0xC0 EXTCODECOPY DELEGATECALL DUP14 0x24 MUL SSTORE DUP7 CHAINID PUSH5 0x736F6C6343 STOP ADDMOD SGT STOP CALLER ","sourceMap":"202:12582:20:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"SignedMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122088366b59ea99732082b3124288e8358f874708936e6768c5650b9be28fa19db664736f6c63430008130033","opcodes":"PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP9 CALLDATASIZE PUSH12 0x59EA99732082B3124288E835 DUP16 DUP8 SELFBALANCE ADDMOD SWAP4 PUSH15 0x6768C5650B9BE28FA19DB664736F6C PUSH4 0x43000813 STOP CALLER ","sourceMap":"215:1047:21:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;215:1047:21;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122088366b59ea99732082b3124288e8358f874708936e6768c5650b9be28fa19db664736f6c63430008130033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP9 CALLDATASIZE PUSH12 0x59EA99732082B3124288E835 DUP16 DUP8 SELFBALANCE ADDMOD SWAP4 PUSH15 0x6768C5650B9BE28FA19DB664736F6C PUSH4 0x43000813 STOP CALLER ","sourceMap":"215:1047:21:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]}},\"version\":1}"}},"contracts/ERC1155NFT.sol":{"ERC1155NFT":{"abi":[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"},{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"bool","name":"_isPublicMint","type":"bool"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"newBaseURI","type":"string"}],"name":"BaseURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"MintPriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"}],"name":"NFTMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"PublicMintToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"string[]","name":"tokenURIs","type":"string[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyRecipient","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setTokenURI","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":"bool","name":"_enabled","type":"bool"}],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","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":"uint256","name":"tokenId","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_159":{"entryPoint":null,"id":159,"parameterSlots":0,"returnSlots":0},"@_23":{"entryPoint":null,"id":23,"parameterSlots":0,"returnSlots":0},"@_250":{"entryPoint":null,"id":250,"parameterSlots":1,"returnSlots":0},"@_4663":{"entryPoint":null,"id":4663,"parameterSlots":9,"returnSlots":0},"@_msgSender_3192":{"entryPoint":null,"id":3192,"parameterSlots":0,"returnSlots":1},"@_setURI_761":{"entryPoint":240,"id":761,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_111":{"entryPoint":258,"id":111,"parameterSlots":1,"returnSlots":0},"abi_decode_address_fromMemory":{"entryPoint":537,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_bool_fromMemory":{"entryPoint":566,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_string_fromMemory":{"entryPoint":362,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_uint256t_uint256t_addresst_uint256t_boolt_address_fromMemory":{"entryPoint":583,"id":null,"parameterSlots":2,"returnSlots":9},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":874,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":957,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":814,"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":340,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:5137:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:25"},"nodeType":"YulFunctionCall","src":"66:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:25"},"nodeType":"YulFunctionCall","src":"56:31:25"},"nodeType":"YulExpressionStatement","src":"56:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:25","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:25"},"nodeType":"YulFunctionCall","src":"96:15:25"},"nodeType":"YulExpressionStatement","src":"96:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:25"},"nodeType":"YulFunctionCall","src":"120:15:25"},"nodeType":"YulExpressionStatement","src":"120:15:25"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:25"},{"body":{"nodeType":"YulBlock","src":"210:776:25","statements":[{"body":{"nodeType":"YulBlock","src":"259:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"268:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"271:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"261:6:25"},"nodeType":"YulFunctionCall","src":"261:12:25"},"nodeType":"YulExpressionStatement","src":"261:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"238:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"246:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"234:3:25"},"nodeType":"YulFunctionCall","src":"234:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"253:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"230:3:25"},"nodeType":"YulFunctionCall","src":"230:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"223:6:25"},"nodeType":"YulFunctionCall","src":"223:35:25"},"nodeType":"YulIf","src":"220:55:25"},{"nodeType":"YulVariableDeclaration","src":"284:23:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"300:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"294:5:25"},"nodeType":"YulFunctionCall","src":"294:13:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"288:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"316:28:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"338:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"330:3:25"},"nodeType":"YulFunctionCall","src":"330:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"342:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"326:3:25"},"nodeType":"YulFunctionCall","src":"326:18:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"320:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"367:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"369:16:25"},"nodeType":"YulFunctionCall","src":"369:18:25"},"nodeType":"YulExpressionStatement","src":"369:18:25"}]},"condition":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"359:2:25"},{"name":"_2","nodeType":"YulIdentifier","src":"363:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"356:2:25"},"nodeType":"YulFunctionCall","src":"356:10:25"},"nodeType":"YulIf","src":"353:36:25"},{"nodeType":"YulVariableDeclaration","src":"398:17:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"412:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"408:3:25"},"nodeType":"YulFunctionCall","src":"408:7:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"402:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"424:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"444:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"438:5:25"},"nodeType":"YulFunctionCall","src":"438:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"428:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"456:71:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"478:6:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"502:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"506:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"498:3:25"},"nodeType":"YulFunctionCall","src":"498:13:25"},{"name":"_3","nodeType":"YulIdentifier","src":"513:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"494:3:25"},"nodeType":"YulFunctionCall","src":"494:22:25"},{"kind":"number","nodeType":"YulLiteral","src":"518:2:25","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"490:3:25"},"nodeType":"YulFunctionCall","src":"490:31:25"},{"name":"_3","nodeType":"YulIdentifier","src":"523:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"486:3:25"},"nodeType":"YulFunctionCall","src":"486:40:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"474:3:25"},"nodeType":"YulFunctionCall","src":"474:53:25"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"460:10:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"586:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"588:16:25"},"nodeType":"YulFunctionCall","src":"588:18:25"},"nodeType":"YulExpressionStatement","src":"588:18:25"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"545:10:25"},{"name":"_2","nodeType":"YulIdentifier","src":"557:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"542:2:25"},"nodeType":"YulFunctionCall","src":"542:18:25"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"565:10:25"},{"name":"memPtr","nodeType":"YulIdentifier","src":"577:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"562:2:25"},"nodeType":"YulFunctionCall","src":"562:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"539:2:25"},"nodeType":"YulFunctionCall","src":"539:46:25"},"nodeType":"YulIf","src":"536:72:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"624:2:25","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"628:10:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"617:6:25"},"nodeType":"YulFunctionCall","src":"617:22:25"},"nodeType":"YulExpressionStatement","src":"617:22:25"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"655:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"663:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"648:6:25"},"nodeType":"YulFunctionCall","src":"648:18:25"},"nodeType":"YulExpressionStatement","src":"648:18:25"},{"nodeType":"YulVariableDeclaration","src":"675:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"685:4:25","type":"","value":"0x20"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"679:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"735:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"744:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"747:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"737:6:25"},"nodeType":"YulFunctionCall","src":"737:12:25"},"nodeType":"YulExpressionStatement","src":"737:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"712:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"720:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"708:3:25"},"nodeType":"YulFunctionCall","src":"708:15:25"},{"name":"_4","nodeType":"YulIdentifier","src":"725:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"704:3:25"},"nodeType":"YulFunctionCall","src":"704:24:25"},{"name":"end","nodeType":"YulIdentifier","src":"730:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"701:2:25"},"nodeType":"YulFunctionCall","src":"701:33:25"},"nodeType":"YulIf","src":"698:53:25"},{"nodeType":"YulVariableDeclaration","src":"760:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"769:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"764:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"825:87:25","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"854:6:25"},{"name":"i","nodeType":"YulIdentifier","src":"862:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"850:3:25"},"nodeType":"YulFunctionCall","src":"850:14:25"},{"name":"_4","nodeType":"YulIdentifier","src":"866:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"846:3:25"},"nodeType":"YulFunctionCall","src":"846:23:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"885:6:25"},{"name":"i","nodeType":"YulIdentifier","src":"893:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"881:3:25"},"nodeType":"YulFunctionCall","src":"881:14:25"},{"name":"_4","nodeType":"YulIdentifier","src":"897:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"877:3:25"},"nodeType":"YulFunctionCall","src":"877:23:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"871:5:25"},"nodeType":"YulFunctionCall","src":"871:30:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"839:6:25"},"nodeType":"YulFunctionCall","src":"839:63:25"},"nodeType":"YulExpressionStatement","src":"839:63:25"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"790:1:25"},{"name":"_1","nodeType":"YulIdentifier","src":"793:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"787:2:25"},"nodeType":"YulFunctionCall","src":"787:9:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"797:19:25","statements":[{"nodeType":"YulAssignment","src":"799:15:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"808:1:25"},{"name":"_4","nodeType":"YulIdentifier","src":"811:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"804:3:25"},"nodeType":"YulFunctionCall","src":"804:10:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"799:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"783:3:25","statements":[]},"src":"779:133:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"936:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"944:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"932:3:25"},"nodeType":"YulFunctionCall","src":"932:15:25"},{"name":"_4","nodeType":"YulIdentifier","src":"949:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"928:3:25"},"nodeType":"YulFunctionCall","src":"928:24:25"},{"kind":"number","nodeType":"YulLiteral","src":"954:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"921:6:25"},"nodeType":"YulFunctionCall","src":"921:35:25"},"nodeType":"YulExpressionStatement","src":"921:35:25"},{"nodeType":"YulAssignment","src":"965:15:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"974:6:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"965:5:25"}]}]},"name":"abi_decode_string_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"184:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"192:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"200:5:25","type":""}],"src":"146:840:25"},{"body":{"nodeType":"YulBlock","src":"1051:117:25","statements":[{"nodeType":"YulAssignment","src":"1061:22:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1076:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1070:5:25"},"nodeType":"YulFunctionCall","src":"1070:13:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1061:5:25"}]},{"body":{"nodeType":"YulBlock","src":"1146:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1155:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1158:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1148:6:25"},"nodeType":"YulFunctionCall","src":"1148:12:25"},"nodeType":"YulExpressionStatement","src":"1148:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1105:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1116:5:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1131:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1136:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1127:3:25"},"nodeType":"YulFunctionCall","src":"1127:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"1140:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1123:3:25"},"nodeType":"YulFunctionCall","src":"1123:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1112:3:25"},"nodeType":"YulFunctionCall","src":"1112:31:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1102:2:25"},"nodeType":"YulFunctionCall","src":"1102:42:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1095:6:25"},"nodeType":"YulFunctionCall","src":"1095:50:25"},"nodeType":"YulIf","src":"1092:70:25"}]},"name":"abi_decode_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1030:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1041:5:25","type":""}],"src":"991:177:25"},{"body":{"nodeType":"YulBlock","src":"1230:107:25","statements":[{"nodeType":"YulAssignment","src":"1240:22:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1255:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1249:5:25"},"nodeType":"YulFunctionCall","src":"1249:13:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1240:5:25"}]},{"body":{"nodeType":"YulBlock","src":"1315:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1324:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1327:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1317:6:25"},"nodeType":"YulFunctionCall","src":"1317:12:25"},"nodeType":"YulExpressionStatement","src":"1317:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1284:5:25"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1305:5:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1298:6:25"},"nodeType":"YulFunctionCall","src":"1298:13:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1291:6:25"},"nodeType":"YulFunctionCall","src":"1291:21:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1281:2:25"},"nodeType":"YulFunctionCall","src":"1281:32:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1274:6:25"},"nodeType":"YulFunctionCall","src":"1274:40:25"},"nodeType":"YulIf","src":"1271:60:25"}]},"name":"abi_decode_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1209:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1220:5:25","type":""}],"src":"1173:164:25"},{"body":{"nodeType":"YulBlock","src":"1586:960:25","statements":[{"body":{"nodeType":"YulBlock","src":"1633:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1642:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1645:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1635:6:25"},"nodeType":"YulFunctionCall","src":"1635:12:25"},"nodeType":"YulExpressionStatement","src":"1635:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1607:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1616:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1603:3:25"},"nodeType":"YulFunctionCall","src":"1603:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1628:3:25","type":"","value":"288"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1599:3:25"},"nodeType":"YulFunctionCall","src":"1599:33:25"},"nodeType":"YulIf","src":"1596:53:25"},{"nodeType":"YulVariableDeclaration","src":"1658:30:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1678:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1672:5:25"},"nodeType":"YulFunctionCall","src":"1672:16:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1662:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1697:28:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1715:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"1719:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1711:3:25"},"nodeType":"YulFunctionCall","src":"1711:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"1723:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1707:3:25"},"nodeType":"YulFunctionCall","src":"1707:18:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1701:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1752:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1761:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1764:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1754:6:25"},"nodeType":"YulFunctionCall","src":"1754:12:25"},"nodeType":"YulExpressionStatement","src":"1754:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1740:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1748:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1737:2:25"},"nodeType":"YulFunctionCall","src":"1737:14:25"},"nodeType":"YulIf","src":"1734:34:25"},{"nodeType":"YulAssignment","src":"1777:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1820:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"1831:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1816:3:25"},"nodeType":"YulFunctionCall","src":"1816:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1840:7:25"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1787:28:25"},"nodeType":"YulFunctionCall","src":"1787:61:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1777:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"1857:41:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1883:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1894:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1879:3:25"},"nodeType":"YulFunctionCall","src":"1879:18:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1873:5:25"},"nodeType":"YulFunctionCall","src":"1873:25:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"1861:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1927:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1936:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1939:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1929:6:25"},"nodeType":"YulFunctionCall","src":"1929:12:25"},"nodeType":"YulExpressionStatement","src":"1929:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"1913:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1923:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1910:2:25"},"nodeType":"YulFunctionCall","src":"1910:16:25"},"nodeType":"YulIf","src":"1907:36:25"},{"nodeType":"YulAssignment","src":"1952:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1995:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"2006:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1991:3:25"},"nodeType":"YulFunctionCall","src":"1991:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2017:7:25"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1962:28:25"},"nodeType":"YulFunctionCall","src":"1962:63:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1952:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"2034:41:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2060:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2071:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2056:3:25"},"nodeType":"YulFunctionCall","src":"2056:18:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2050:5:25"},"nodeType":"YulFunctionCall","src":"2050:25:25"},"variables":[{"name":"offset_2","nodeType":"YulTypedName","src":"2038:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2104:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2113:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2116:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2106:6:25"},"nodeType":"YulFunctionCall","src":"2106:12:25"},"nodeType":"YulExpressionStatement","src":"2106:12:25"}]},"condition":{"arguments":[{"name":"offset_2","nodeType":"YulIdentifier","src":"2090:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2100:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2087:2:25"},"nodeType":"YulFunctionCall","src":"2087:16:25"},"nodeType":"YulIf","src":"2084:36:25"},{"nodeType":"YulAssignment","src":"2129:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2172:9:25"},{"name":"offset_2","nodeType":"YulIdentifier","src":"2183:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2168:3:25"},"nodeType":"YulFunctionCall","src":"2168:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2194:7:25"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"2139:28:25"},"nodeType":"YulFunctionCall","src":"2139:63:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2129:6:25"}]},{"nodeType":"YulAssignment","src":"2211:35:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2231:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2242:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2227:3:25"},"nodeType":"YulFunctionCall","src":"2227:18:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2221:5:25"},"nodeType":"YulFunctionCall","src":"2221:25:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"2211:6:25"}]},{"nodeType":"YulAssignment","src":"2255:36:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2275:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2286:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2271:3:25"},"nodeType":"YulFunctionCall","src":"2271:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2265:5:25"},"nodeType":"YulFunctionCall","src":"2265:26:25"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"2255:6:25"}]},{"nodeType":"YulAssignment","src":"2300:60:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2344:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2355:3:25","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2340:3:25"},"nodeType":"YulFunctionCall","src":"2340:19:25"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"2310:29:25"},"nodeType":"YulFunctionCall","src":"2310:50:25"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"2300:6:25"}]},{"nodeType":"YulAssignment","src":"2369:36:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2389:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2400:3:25","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2385:3:25"},"nodeType":"YulFunctionCall","src":"2385:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2379:5:25"},"nodeType":"YulFunctionCall","src":"2379:26:25"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"2369:6:25"}]},{"nodeType":"YulAssignment","src":"2414:57:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2455:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2466:3:25","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2451:3:25"},"nodeType":"YulFunctionCall","src":"2451:19:25"}],"functionName":{"name":"abi_decode_bool_fromMemory","nodeType":"YulIdentifier","src":"2424:26:25"},"nodeType":"YulFunctionCall","src":"2424:47:25"},"variableNames":[{"name":"value7","nodeType":"YulIdentifier","src":"2414:6:25"}]},{"nodeType":"YulAssignment","src":"2480:60:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2524:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2535:3:25","type":"","value":"256"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2520:3:25"},"nodeType":"YulFunctionCall","src":"2520:19:25"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"2490:29:25"},"nodeType":"YulFunctionCall","src":"2490:50:25"},"variableNames":[{"name":"value8","nodeType":"YulIdentifier","src":"2480:6:25"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_uint256t_uint256t_addresst_uint256t_boolt_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1488:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1499:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1511:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1519:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1527:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"1535:6:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"1543:6:25","type":""},{"name":"value5","nodeType":"YulTypedName","src":"1551:6:25","type":""},{"name":"value6","nodeType":"YulTypedName","src":"1559:6:25","type":""},{"name":"value7","nodeType":"YulTypedName","src":"1567:6:25","type":""},{"name":"value8","nodeType":"YulTypedName","src":"1575:6:25","type":""}],"src":"1342:1204:25"},{"body":{"nodeType":"YulBlock","src":"2606:325:25","statements":[{"nodeType":"YulAssignment","src":"2616:22:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2630:1:25","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"2633:4:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2626:3:25"},"nodeType":"YulFunctionCall","src":"2626:12:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2616:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"2647:38:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2677:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"2683:1:25","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2673:3:25"},"nodeType":"YulFunctionCall","src":"2673:12:25"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"2651:18:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2724:31:25","statements":[{"nodeType":"YulAssignment","src":"2726:27:25","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2740:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2748:4:25","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2736:3:25"},"nodeType":"YulFunctionCall","src":"2736:17:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2726:6:25"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2704:18:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2697:6:25"},"nodeType":"YulFunctionCall","src":"2697:26:25"},"nodeType":"YulIf","src":"2694:61:25"},{"body":{"nodeType":"YulBlock","src":"2814:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2835:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2842:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2847:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2838:3:25"},"nodeType":"YulFunctionCall","src":"2838:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2828:6:25"},"nodeType":"YulFunctionCall","src":"2828:31:25"},"nodeType":"YulExpressionStatement","src":"2828:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2879:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2882:4:25","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2872:6:25"},"nodeType":"YulFunctionCall","src":"2872:15:25"},"nodeType":"YulExpressionStatement","src":"2872:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2907:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2910:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2900:6:25"},"nodeType":"YulFunctionCall","src":"2900:15:25"},"nodeType":"YulExpressionStatement","src":"2900:15:25"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2770:18:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2793:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2801:2:25","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2790:2:25"},"nodeType":"YulFunctionCall","src":"2790:14:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2767:2:25"},"nodeType":"YulFunctionCall","src":"2767:38:25"},"nodeType":"YulIf","src":"2764:161:25"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2586:4:25","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"2595:6:25","type":""}],"src":"2551:380:25"},{"body":{"nodeType":"YulBlock","src":"2992:65:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3009:1:25","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"3012:3:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3002:6:25"},"nodeType":"YulFunctionCall","src":"3002:14:25"},"nodeType":"YulExpressionStatement","src":"3002:14:25"},{"nodeType":"YulAssignment","src":"3025:26:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3043:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3046:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3033:9:25"},"nodeType":"YulFunctionCall","src":"3033:18:25"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"3025:4:25"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"2975:3:25","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"2983:4:25","type":""}],"src":"2936:121:25"},{"body":{"nodeType":"YulBlock","src":"3143:464:25","statements":[{"body":{"nodeType":"YulBlock","src":"3176:425:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3190:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3200:1:25","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3194:2:25","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"3221:2:25"},{"name":"array","nodeType":"YulIdentifier","src":"3225:5:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3214:6:25"},"nodeType":"YulFunctionCall","src":"3214:17:25"},"nodeType":"YulExpressionStatement","src":"3214:17:25"},{"nodeType":"YulVariableDeclaration","src":"3244:31:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"3266:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"3270:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3256:9:25"},"nodeType":"YulFunctionCall","src":"3256:19:25"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"3248:4:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3288:57:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3311:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3321:1:25","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"3328:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"3340:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3324:3:25"},"nodeType":"YulFunctionCall","src":"3324:19:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3317:3:25"},"nodeType":"YulFunctionCall","src":"3317:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3307:3:25"},"nodeType":"YulFunctionCall","src":"3307:38:25"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"3292:11:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3382:23:25","statements":[{"nodeType":"YulAssignment","src":"3384:19:25","value":{"name":"data","nodeType":"YulIdentifier","src":"3399:4:25"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"3384:11:25"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"3364:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"3376:4:25","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3361:2:25"},"nodeType":"YulFunctionCall","src":"3361:20:25"},"nodeType":"YulIf","src":"3358:47:25"},{"nodeType":"YulVariableDeclaration","src":"3418:41:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3432:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3442:1:25","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"3449:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"3454:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3445:3:25"},"nodeType":"YulFunctionCall","src":"3445:12:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3438:3:25"},"nodeType":"YulFunctionCall","src":"3438:20:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3428:3:25"},"nodeType":"YulFunctionCall","src":"3428:31:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"3422:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3472:24:25","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"3485:11:25"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"3476:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3570:21:25","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"3579:5:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3586:2:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3572:6:25"},"nodeType":"YulFunctionCall","src":"3572:17:25"},"nodeType":"YulExpressionStatement","src":"3572:17:25"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"3520:5:25"},{"name":"_2","nodeType":"YulIdentifier","src":"3527:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3517:2:25"},"nodeType":"YulFunctionCall","src":"3517:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3531:26:25","statements":[{"nodeType":"YulAssignment","src":"3533:22:25","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"3546:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"3553:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3542:3:25"},"nodeType":"YulFunctionCall","src":"3542:13:25"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"3533:5:25"}]}]},"pre":{"nodeType":"YulBlock","src":"3513:3:25","statements":[]},"src":"3509:82:25"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"3159:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"3164:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3156:2:25"},"nodeType":"YulFunctionCall","src":"3156:11:25"},"nodeType":"YulIf","src":"3153:448:25"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"3115:5:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"3122:3:25","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"3127:10:25","type":""}],"src":"3062:545:25"},{"body":{"nodeType":"YulBlock","src":"3697:81:25","statements":[{"nodeType":"YulAssignment","src":"3707:65:25","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3722:4:25"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3740:1:25","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"3743:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3736:3:25"},"nodeType":"YulFunctionCall","src":"3736:11:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3753:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3749:3:25"},"nodeType":"YulFunctionCall","src":"3749:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3732:3:25"},"nodeType":"YulFunctionCall","src":"3732:24:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3728:3:25"},"nodeType":"YulFunctionCall","src":"3728:29:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3718:3:25"},"nodeType":"YulFunctionCall","src":"3718:40:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3764:1:25","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"3767:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3760:3:25"},"nodeType":"YulFunctionCall","src":"3760:11:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"3715:2:25"},"nodeType":"YulFunctionCall","src":"3715:57:25"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"3707:4:25"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"3674:4:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"3680:3:25","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"3688:4:25","type":""}],"src":"3612:166:25"},{"body":{"nodeType":"YulBlock","src":"3879:1256:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3889:24:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3909:3:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3903:5:25"},"nodeType":"YulFunctionCall","src":"3903:10:25"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"3893:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3956:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"3958:16:25"},"nodeType":"YulFunctionCall","src":"3958:18:25"},"nodeType":"YulExpressionStatement","src":"3958:18:25"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3928:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3944:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"3948:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3940:3:25"},"nodeType":"YulFunctionCall","src":"3940:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"3952:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3936:3:25"},"nodeType":"YulFunctionCall","src":"3936:18:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3925:2:25"},"nodeType":"YulFunctionCall","src":"3925:30:25"},"nodeType":"YulIf","src":"3922:56:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4031:4:25"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4069:4:25"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"4063:5:25"},"nodeType":"YulFunctionCall","src":"4063:11:25"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"4037:25:25"},"nodeType":"YulFunctionCall","src":"4037:38:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"4077:6:25"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"3987:43:25"},"nodeType":"YulFunctionCall","src":"3987:97:25"},"nodeType":"YulExpressionStatement","src":"3987:97:25"},{"nodeType":"YulVariableDeclaration","src":"4093:18:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4110:1:25","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"4097:9:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4120:23:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4139:4:25","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"4124:11:25","type":""}]},{"nodeType":"YulAssignment","src":"4152:24:25","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"4165:11:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4152:9:25"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"4222:656:25","statements":[{"nodeType":"YulVariableDeclaration","src":"4236:35:25","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4255:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4267:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4263:3:25"},"nodeType":"YulFunctionCall","src":"4263:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4251:3:25"},"nodeType":"YulFunctionCall","src":"4251:20:25"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"4240:7:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4284:49:25","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4328:4:25"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"4298:29:25"},"nodeType":"YulFunctionCall","src":"4298:35:25"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"4288:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4346:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4355:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"4350:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4433:172:25","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4458:6:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4476:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4481:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4472:3:25"},"nodeType":"YulFunctionCall","src":"4472:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4466:5:25"},"nodeType":"YulFunctionCall","src":"4466:26:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4451:6:25"},"nodeType":"YulFunctionCall","src":"4451:42:25"},"nodeType":"YulExpressionStatement","src":"4451:42:25"},{"nodeType":"YulAssignment","src":"4510:24:25","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4524:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4532:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4520:3:25"},"nodeType":"YulFunctionCall","src":"4520:14:25"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4510:6:25"}]},{"nodeType":"YulAssignment","src":"4551:40:25","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4568:9:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"4579:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4564:3:25"},"nodeType":"YulFunctionCall","src":"4564:27:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4551:9:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4380:1:25"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"4383:7:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4377:2:25"},"nodeType":"YulFunctionCall","src":"4377:14:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"4392:28:25","statements":[{"nodeType":"YulAssignment","src":"4394:24:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4403:1:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"4406:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4399:3:25"},"nodeType":"YulFunctionCall","src":"4399:19:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"4394:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"4373:3:25","statements":[]},"src":"4369:236:25"},{"body":{"nodeType":"YulBlock","src":"4653:166:25","statements":[{"nodeType":"YulVariableDeclaration","src":"4671:43:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4698:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4703:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4694:3:25"},"nodeType":"YulFunctionCall","src":"4694:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4688:5:25"},"nodeType":"YulFunctionCall","src":"4688:26:25"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"4675:9:25","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4738:6:25"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"4750:9:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4777:1:25","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"4780:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4773:3:25"},"nodeType":"YulFunctionCall","src":"4773:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"4789:3:25","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4769:3:25"},"nodeType":"YulFunctionCall","src":"4769:24:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4799:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4795:3:25"},"nodeType":"YulFunctionCall","src":"4795:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"4765:3:25"},"nodeType":"YulFunctionCall","src":"4765:37:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4761:3:25"},"nodeType":"YulFunctionCall","src":"4761:42:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4746:3:25"},"nodeType":"YulFunctionCall","src":"4746:58:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4731:6:25"},"nodeType":"YulFunctionCall","src":"4731:74:25"},"nodeType":"YulExpressionStatement","src":"4731:74:25"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"4624:7:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"4633:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4621:2:25"},"nodeType":"YulFunctionCall","src":"4621:19:25"},"nodeType":"YulIf","src":"4618:201:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4839:4:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4853:1:25","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"4856:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4849:3:25"},"nodeType":"YulFunctionCall","src":"4849:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"4865:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4845:3:25"},"nodeType":"YulFunctionCall","src":"4845:22:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4832:6:25"},"nodeType":"YulFunctionCall","src":"4832:36:25"},"nodeType":"YulExpressionStatement","src":"4832:36:25"}]},"nodeType":"YulCase","src":"4215:663:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4220:1:25","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"4895:234:25","statements":[{"nodeType":"YulVariableDeclaration","src":"4909:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4922:1:25","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"4913:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4958:67:25","statements":[{"nodeType":"YulAssignment","src":"4976:35:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4995:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"5000:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4991:3:25"},"nodeType":"YulFunctionCall","src":"4991:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4985:5:25"},"nodeType":"YulFunctionCall","src":"4985:26:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"4976:5:25"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"4939:6:25"},"nodeType":"YulIf","src":"4936:89:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5045:4:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5104:5:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"5111:6:25"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"5051:52:25"},"nodeType":"YulFunctionCall","src":"5051:67:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"5038:6:25"},"nodeType":"YulFunctionCall","src":"5038:81:25"},"nodeType":"YulExpressionStatement","src":"5038:81:25"}]},"nodeType":"YulCase","src":"4887:242:25","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4195:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4203:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4192:2:25"},"nodeType":"YulFunctionCall","src":"4192:14:25"},"nodeType":"YulSwitch","src":"4185:944:25"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"3864:4:25","type":""},{"name":"src","nodeType":"YulTypedName","src":"3870:3:25","type":""}],"src":"3783:1352:25"}]},"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 _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        mstore(add(add(memPtr, _1), _4), 0)\n        array := memPtr\n    }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_bool_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_uint256t_uint256t_addresst_uint256t_boolt_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7, value8\n    {\n        if slt(sub(dataEnd, headStart), 288) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _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, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let offset_2 := mload(add(headStart, 64))\n        if gt(offset_2, _1) { revert(0, 0) }\n        value2 := abi_decode_string_fromMemory(add(headStart, offset_2), dataEnd)\n        value3 := mload(add(headStart, 96))\n        value4 := mload(add(headStart, 128))\n        value5 := abi_decode_address_fromMemory(add(headStart, 160))\n        value6 := mload(add(headStart, 192))\n        value7 := abi_decode_bool_fromMemory(add(headStart, 224))\n        value8 := abi_decode_address_fromMemory(add(headStart, 256))\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            let _1 := 0\n            mstore(_1, array)\n            let data := keccak256(_1, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _2 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _2) { start := add(start, 1) }\n            { sstore(start, _1) }\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        let srcOffset_1 := 0x20\n        srcOffset := srcOffset_1\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, srcOffset_1) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, srcOffset_1)\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}","id":25,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b5060405162002e8f38038062002e8f833981016040819052620000349162000247565b866200004081620000f0565b506200004c3362000102565b600160045560066200005f8a82620003bd565b5060076200006e8982620003bd565b5060086200007d8882620003bd565b506009869055600b859055600c8054600a859055831515600160a01b026001600160a81b03199091166001600160a01b03871617179055620000bf8162000102565b6001600160a01b03166000908152600d60205260409020805460ff1916600117905550620004899650505050505050565b6002620000fe8282620003bd565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200017c57600080fd5b81516001600160401b038082111562000199576200019962000154565b604051601f8301601f19908116603f01168101908282118183101715620001c457620001c462000154565b81604052838152602092508683858801011115620001e157600080fd5b600091505b83821015620002055785820183015181830184015290820190620001e6565b600093810190920192909252949350505050565b80516001600160a01b03811681146200023157600080fd5b919050565b805180151581146200023157600080fd5b60008060008060008060008060006101208a8c0312156200026757600080fd5b89516001600160401b03808211156200027f57600080fd5b6200028d8d838e016200016a565b9a5060208c0151915080821115620002a457600080fd5b620002b28d838e016200016a565b995060408c0151915080821115620002c957600080fd5b50620002d88c828d016200016a565b97505060608a0151955060808a01519450620002f760a08b0162000219565b935060c08a015192506200030e60e08b0162000236565b91506200031f6101008b0162000219565b90509295985092959850929598565b600181811c908216806200034357607f821691505b6020821081036200036457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003b857600081815260208120601f850160051c81016020861015620003935750805b601f850160051c820191505b81811015620003b4578281556001016200039f565b5050505b505050565b81516001600160401b03811115620003d957620003d962000154565b620003f181620003ea84546200032e565b846200036a565b602080601f831160018114620004295760008415620004105750858301515b600019600386901b1c1916600185901b178555620003b4565b600085815260208120601f198616915b828110156200045a5788860151825594840194600190910190840162000439565b5085821015620004795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6129f680620004996000396000f3fe6080604052600436106101ed5760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105ae578063e985e9c5146105c4578063f242432a1461060d578063f2fde38b1461062d578063f4a0a5281461064d57600080fd5b8063a22cb4651461052c578063b3a80e9c1461054c578063bd85b0391461056c578063d547cfb71461059957600080fd5b80638da5cb5b116100dc5780638da5cb5b146104a957806395d89b41146104c75780639b19251a146104dc5780639b7c1c831461050c57600080fd5b8063715018a61461044b57806377097fc8146104605780637f649783146104735780638a71bb2d1461049357600080fd5b80632a55205a116101855780634e1273f4116101545780634e1273f4146103c8578063548db174146103f557806355f804b3146104155780636817c76c1461043557600080fd5b80632a55205a1461031c5780632eb2c2d61461035b5780633ccfd60b1461037b5780634c00de821461039057600080fd5b80630e89341c116101c15780630e89341c14610298578063162094c4146102b857806318160ddd146102da5780632693ebf2146102ef57600080fd5b8062fdd58e146101f25780630116bc2d1461022557806301ffc9a71461025657806306fdde0314610276575b600080fd5b3480156101fe57600080fd5b5061021261020d366004611d88565b61066d565b6040519081526020015b60405180910390f35b34801561023157600080fd5b50600c5461024690600160a01b900460ff1681565b604051901515815260200161021c565b34801561026257600080fd5b50610246610271366004611dc8565b610706565b34801561028257600080fd5b5061028b610711565b60405161021c9190611e3c565b3480156102a457600080fd5b5061028b6102b3366004611e4f565b61079f565b3480156102c457600080fd5b506102d86102d3366004611f1d565b610880565b005b3480156102e657600080fd5b506102126108f7565b3480156102fb57600080fd5b5061021261030a366004611e4f565b600f6020526000908152604090205481565b34801561032857600080fd5b5061033c610337366004611f63565b610907565b604080516001600160a01b03909316835260208301919091520161021c565b34801561036757600080fd5b506102d8610376366004612019565b61093b565b34801561038757600080fd5b506102d8610987565b34801561039c57600080fd5b50600c546103b0906001600160a01b031681565b6040516001600160a01b03909116815260200161021c565b3480156103d457600080fd5b506103e86103e336600461212f565b610ae2565b60405161021c91906121c3565b34801561040157600080fd5b506102d86104103660046121d6565b610c0b565b34801561042157600080fd5b506102d861043036600461220a565b610c7f565b34801561044157600080fd5b50610212600a5481565b34801561045757600080fd5b506102d8610cd7565b61021261046e366004611f1d565b610ce9565b34801561047f57600080fd5b506102d861048e3660046121d6565b610f43565b34801561049f57600080fd5b50610212600b5481565b3480156104b557600080fd5b506003546001600160a01b03166103b0565b3480156104d357600080fd5b5061028b610fb3565b3480156104e857600080fd5b506102466104f736600461223e565b600d6020526000908152604090205460ff1681565b34801561051857600080fd5b506102d8610527366004612269565b610fc0565b34801561053857600080fd5b506102d8610547366004612284565b611015565b34801561055857600080fd5b506102d86105673660046122b7565b611020565b34801561057857600080fd5b50610212610587366004611e4f565b6000908152600f602052604090205490565b3480156105a557600080fd5b5061028b61129f565b3480156105ba57600080fd5b5061021260095481565b3480156105d057600080fd5b506102466105df3660046123db565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561061957600080fd5b506102d8610628366004612405565b6112ac565b34801561063957600080fd5b506102d861064836600461223e565b6112f1565b34801561065957600080fd5b506102d8610668366004611e4f565b61136a565b60006001600160a01b0383166106dd5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b6000610700826113a7565b6006805461071e90612469565b80601f016020809104026020016040519081016040528092919081815260200182805461074a90612469565b80156107975780601f1061076c57610100808354040283529160200191610797565b820191906000526020600020905b81548152906001019060200180831161077a57829003601f168201915b505050505081565b6000818152600e60205260408120805460609291906107bd90612469565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990612469565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905060008151111561084d5792915050565b6008610858846113f7565b6040516020016108699291906124a3565b604051602081830303815290604052915050919050565b6108886114ff565b6000828152600f60205260409020546108da5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016106d4565b6000828152600e602052604090206108f28282612570565b505050565b600061090260055490565b905090565b600080612710600b548461091b9190612645565b6109259190612672565b600c546001600160a01b03169590945092505050565b6001600160a01b038516331480610957575061095785336105df565b6109735760405162461bcd60e51b81526004016106d490612686565b6109808585858585611559565b5050505050565b61098f6114ff565b610997611736565b47806109de5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016106d4565b60006109f26003546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610a3c576040519150601f19603f3d011682016040523d82523d6000602084013e610a41565b606091505b5050905080610a865760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b60448201526064016106d4565b6003546001600160a01b03166001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d583604051610acc91815260200190565b60405180910390a25050610ae06001600455565b565b60608151835114610b475760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106d4565b600083516001600160401b03811115610b6257610b62611e68565b604051908082528060200260200182016040528015610b8b578160200160208202803683370190505b50905060005b8451811015610c0357610bd6858281518110610baf57610baf6126d4565b6020026020010151858381518110610bc957610bc96126d4565b602002602001015161066d565b828281518110610be857610be86126d4565b6020908102919091010152610bfc816126ea565b9050610b91565b509392505050565b610c136114ff565b60005b8151811015610c7b576000600d6000848481518110610c3757610c376126d4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c73816126ea565b915050610c16565b5050565b610c876114ff565b6008610c938282612570565b50610c9d8161178f565b7f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad81604051610ccc9190611e3c565b60405180910390a150565b610cdf6114ff565b610ae0600061179b565b6000610cf3611736565b600c54600160a01b900460ff1680610d1a5750336000908152600d602052604090205460ff165b80610d2f57506003546001600160a01b031633145b610d715760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08185b1b1bddd959606a1b60448201526064016106d4565b60008311610dc15760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016106d4565b82600a54610dcf9190612645565b341015610e155760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016106d4565b610e23600580546001019055565b6000610e2e60055490565b905060095460001480610e5c57506009546000828152600f6020526040902054610e59908690612703565b11155b610ea25760405162461bcd60e51b8152602060048201526017602482015276576f756c6420657863656564206d617820737570706c7960481b60448201526064016106d4565b610ebd338286604051806020016040528060008152506117ed565b6000818152600e60205260409020610ed58482612570565b506000818152600f602052604081208054869290610ef4908490612703565b9091555050604051819033907f01f8bd07e6c27ff813d5c6d3c4bf0313a1d75043cf978214b504b794075e526690610f2f9088908890612716565b60405180910390a390506107006001600455565b610f4b6114ff565b60005b8151811015610c7b576001600d6000848481518110610f6f57610f6f6126d4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610fab816126ea565b915050610f4e565b6007805461071e90612469565b610fc86114ff565b600c8054821515600160a01b0260ff60a01b199091161790556040517fa81e445dac2343503dc87e4663774817434721db7d985310a6959766e6d4480e90610ccc90831515815260200190565b610c7b338383611901565b6110286114ff565b611030611736565b82518451148015611042575081518351145b801561104f575080518251145b6110935760405162461bcd60e51b8152602060048201526015602482015274082e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b60448201526064016106d4565b60005b845181101561128e5760008482815181106110b3576110b36126d4565b6020026020010151905060008483815181106110d1576110d16126d4565b602002602001015190506009546000148061110757506009546000838152600f6020526040902054611104908390612703565b11155b61114d5760405162461bcd60e51b8152602060048201526017602482015276576f756c6420657863656564206d617820737570706c7960481b60448201526064016106d4565b611181878481518110611162576111626126d4565b60200260200101518383604051806020016040528060008152506117ed565b6000828152600e60205260409020805461119a90612469565b90506000036111de578383815181106111b5576111b56126d4565b6020026020010151600e600084815260200190815260200160002090816111dc9190612570565b505b6000828152600f6020526040812080548392906111fc908490612703565b9250508190555081878481518110611216576112166126d4565b60200260200101516001600160a01b03167f01f8bd07e6c27ff813d5c6d3c4bf0313a1d75043cf978214b504b794075e52668387878151811061125b5761125b6126d4565b6020026020010151604051611271929190612716565b60405180910390a350508080611286906126ea565b915050611096565b506112996001600455565b50505050565b6008805461071e90612469565b6001600160a01b0385163314806112c857506112c885336105df565b6112e45760405162461bcd60e51b81526004016106d490612686565b61098085858585856119e1565b6112f96114ff565b6001600160a01b03811661135e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b6113678161179b565b50565b6113726114ff565b600a8190556040518181527f525b762709cc2a983aec5ccdfd807a061f993c91090b5bcd7da92ca254976aaa90602001610ccc565b60006001600160e01b03198216636cdb3d1360e11b14806113d857506001600160e01b031982166303a24d0760e21b145b8061070057506301ffc9a760e01b6001600160e01b0319831614610700565b60608160000361141e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114485780611432816126ea565b91506114419050600a83612672565b9150611422565b6000816001600160401b0381111561146257611462611e68565b6040519080825280601f01601f19166020018201604052801561148c576020820181803683370190505b5090505b84156114f7576114a160018361272f565b91506114ae600a86612742565b6114b9906030612703565b60f81b8183815181106114ce576114ce6126d4565b60200101906001600160f81b031916908160001a9053506114f0600a86612672565b9450611490565b949350505050565b6003546001600160a01b03163314610ae05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d4565b81518351146115bb5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016106d4565b6001600160a01b0384166115e15760405162461bcd60e51b81526004016106d490612756565b3360005b84518110156116c8576000858281518110611602576116026126d4565b602002602001015190506000858381518110611620576116206126d4565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156116705760405162461bcd60e51b81526004016106d49061279b565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906116ad908490612703565b92505081905550505050806116c1906126ea565b90506115e5565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117189291906127e5565b60405180910390a461172e818787878787611b0b565b505050505050565b6002600454036117885760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d4565b6002600455565b6002610c7b8282612570565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841661184d5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106d4565b33600061185985611c66565b9050600061186685611c66565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611898908490612703565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46118f883600089898989611cb1565b50505050505050565b816001600160a01b0316836001600160a01b0316036119745760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106d4565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611a075760405162461bcd60e51b81526004016106d490612756565b336000611a1385611c66565b90506000611a2085611c66565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015611a635760405162461bcd60e51b81526004016106d49061279b565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611aa0908490612703565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b00848a8a8a8a8a611cb1565b505050505050505050565b6001600160a01b0384163b1561172e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611b4f9089908990889088908890600401612813565b6020604051808303816000875af1925050508015611b8a575060408051601f3d908101601f19168201909252611b8791810190612871565b60015b611c3657611b9661288e565b806308c379a003611bcf5750611baa6128aa565b80611bb55750611bd1565b8060405162461bcd60e51b81526004016106d49190611e3c565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106d4565b6001600160e01b0319811663bc197c8160e01b146118f85760405162461bcd60e51b81526004016106d490612933565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611ca057611ca06126d4565b602090810291909101015292915050565b6001600160a01b0384163b1561172e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611cf5908990899088908890889060040161297b565b6020604051808303816000875af1925050508015611d30575060408051601f3d908101601f19168201909252611d2d91810190612871565b60015b611d3c57611b9661288e565b6001600160e01b0319811663f23a6e6160e01b146118f85760405162461bcd60e51b81526004016106d490612933565b80356001600160a01b0381168114611d8357600080fd5b919050565b60008060408385031215611d9b57600080fd5b611da483611d6c565b946020939093013593505050565b6001600160e01b03198116811461136757600080fd5b600060208284031215611dda57600080fd5b8135611de581611db2565b9392505050565b60005b83811015611e07578181015183820152602001611def565b50506000910152565b60008151808452611e28816020860160208601611dec565b601f01601f19169290920160200192915050565b602081526000611de56020830184611e10565b600060208284031215611e6157600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715611ea357611ea3611e68565b6040525050565b600082601f830112611ebb57600080fd5b81356001600160401b03811115611ed457611ed4611e68565b604051611eeb601f8301601f191660200182611e7e565b818152846020838601011115611f0057600080fd5b816020850160208301376000918101602001919091529392505050565b60008060408385031215611f3057600080fd5b8235915060208301356001600160401b03811115611f4d57600080fd5b611f5985828601611eaa565b9150509250929050565b60008060408385031215611f7657600080fd5b50508035926020909101359150565b60006001600160401b03821115611f9e57611f9e611e68565b5060051b60200190565b600082601f830112611fb957600080fd5b81356020611fc682611f85565b604051611fd38282611e7e565b83815260059390931b8501820192828101915086841115611ff357600080fd5b8286015b8481101561200e5780358352918301918301611ff7565b509695505050505050565b600080600080600060a0868803121561203157600080fd5b61203a86611d6c565b945061204860208701611d6c565b935060408601356001600160401b038082111561206457600080fd5b61207089838a01611fa8565b9450606088013591508082111561208657600080fd5b61209289838a01611fa8565b935060808801359150808211156120a857600080fd5b506120b588828901611eaa565b9150509295509295909350565b600082601f8301126120d357600080fd5b813560206120e082611f85565b6040516120ed8282611e7e565b83815260059390931b850182019282810191508684111561210d57600080fd5b8286015b8481101561200e5761212281611d6c565b8352918301918301612111565b6000806040838503121561214257600080fd5b82356001600160401b038082111561215957600080fd5b612165868387016120c2565b9350602085013591508082111561217b57600080fd5b50611f5985828601611fa8565b600081518084526020808501945080840160005b838110156121b85781518752958201959082019060010161219c565b509495945050505050565b602081526000611de56020830184612188565b6000602082840312156121e857600080fd5b81356001600160401b038111156121fe57600080fd5b6114f7848285016120c2565b60006020828403121561221c57600080fd5b81356001600160401b0381111561223257600080fd5b6114f784828501611eaa565b60006020828403121561225057600080fd5b611de582611d6c565b80358015158114611d8357600080fd5b60006020828403121561227b57600080fd5b611de582612259565b6000806040838503121561229757600080fd5b6122a083611d6c565b91506122ae60208401612259565b90509250929050565b600080600080608085870312156122cd57600080fd5b84356001600160401b03808211156122e457600080fd5b6122f0888389016120c2565b955060209150818701358181111561230757600080fd5b61231389828a01611fa8565b95505060408701358181111561232857600080fd5b61233489828a01611fa8565b94505060608701358181111561234957600080fd5b8701601f8101891361235a57600080fd5b803561236581611f85565b6040516123728282611e7e565b82815260059290921b830185019185810191508b83111561239257600080fd5b8584015b838110156123ca578035868111156123ae5760008081fd5b6123bc8e8983890101611eaa565b845250918601918601612396565b50989b979a50959850505050505050565b600080604083850312156123ee57600080fd5b6123f783611d6c565b91506122ae60208401611d6c565b600080600080600060a0868803121561241d57600080fd5b61242686611d6c565b945061243460208701611d6c565b9350604086013592506060860135915060808601356001600160401b0381111561245d57600080fd5b6120b588828901611eaa565b600181811c9082168061247d57607f821691505b60208210810361249d57634e487b7160e01b600052602260045260246000fd5b50919050565b60008084546124b181612469565b600182811680156124c957600181146124de5761250d565b60ff198416875282151583028701945061250d565b8860005260208060002060005b858110156125045781548a8201529084019082016124eb565b50505082870194505b505050508351612521818360208801611dec565b01949350505050565b601f8211156108f257600081815260208120601f850160051c810160208610156125515750805b601f850160051c820191505b8181101561172e5782815560010161255d565b81516001600160401b0381111561258957612589611e68565b61259d816125978454612469565b8461252a565b602080601f8311600181146125d257600084156125ba5750858301515b600019600386901b1c1916600185901b17855561172e565b600085815260208120601f198616915b82811015612601578886015182559484019460019091019084016125e2565b508582101561261f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107005761070061262f565b634e487b7160e01b600052601260045260246000fd5b6000826126815761268161265c565b500490565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016126fc576126fc61262f565b5060010190565b808201808211156107005761070061262f565b8281526040602082015260006114f76040830184611e10565b818103818111156107005761070061262f565b6000826127515761275161265c565b500690565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006127f86040830185612188565b828103602084015261280a8185612188565b95945050505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061283f90830186612188565b82810360608401526128518186612188565b905082810360808401526128658185611e10565b98975050505050505050565b60006020828403121561288357600080fd5b8151611de581611db2565b600060033d11156128a75760046000803e5060005160e01c5b90565b600060443d10156128b85790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156128e757505050505090565b82850191508151818111156128ff5750505050505090565b843d87010160208285010111156129195750505050505090565b61292860208286010187611e7e565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906129b590830184611e10565b97965050505050505056fea2646970667358221220b84a1bcef1f04088f5928ccb66fcfa3bcf2ea01c3257b061cc63fd376e83b39364736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2E8F CODESIZE SUB DUP1 PUSH3 0x2E8F DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x247 JUMP JUMPDEST DUP7 PUSH3 0x40 DUP2 PUSH3 0xF0 JUMP JUMPDEST POP PUSH3 0x4C CALLER PUSH3 0x102 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x4 SSTORE PUSH1 0x6 PUSH3 0x5F DUP11 DUP3 PUSH3 0x3BD JUMP JUMPDEST POP PUSH1 0x7 PUSH3 0x6E DUP10 DUP3 PUSH3 0x3BD JUMP JUMPDEST POP PUSH1 0x8 PUSH3 0x7D DUP9 DUP3 PUSH3 0x3BD JUMP JUMPDEST POP PUSH1 0x9 DUP7 SWAP1 SSTORE PUSH1 0xB DUP6 SWAP1 SSTORE PUSH1 0xC DUP1 SLOAD PUSH1 0xA DUP6 SWAP1 SSTORE DUP4 ISZERO ISZERO PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND OR OR SWAP1 SSTORE PUSH3 0xBF DUP2 PUSH3 0x102 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE POP PUSH3 0x489 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH3 0xFE DUP3 DUP3 PUSH3 0x3BD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x17C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x199 JUMPI PUSH3 0x199 PUSH3 0x154 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x1C4 JUMPI PUSH3 0x1C4 PUSH3 0x154 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x1E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x205 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x1E6 JUMP JUMPDEST PUSH1 0x0 SWAP4 DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH3 0x231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x120 DUP11 DUP13 SUB SLT ISZERO PUSH3 0x267 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x27F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x28D DUP14 DUP4 DUP15 ADD PUSH3 0x16A JUMP JUMPDEST SWAP11 POP PUSH1 0x20 DUP13 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x2A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x2B2 DUP14 DUP4 DUP15 ADD PUSH3 0x16A JUMP JUMPDEST SWAP10 POP PUSH1 0x40 DUP13 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x2C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x2D8 DUP13 DUP3 DUP14 ADD PUSH3 0x16A JUMP JUMPDEST SWAP8 POP POP PUSH1 0x60 DUP11 ADD MLOAD SWAP6 POP PUSH1 0x80 DUP11 ADD MLOAD SWAP5 POP PUSH3 0x2F7 PUSH1 0xA0 DUP12 ADD PUSH3 0x219 JUMP JUMPDEST SWAP4 POP PUSH1 0xC0 DUP11 ADD MLOAD SWAP3 POP PUSH3 0x30E PUSH1 0xE0 DUP12 ADD PUSH3 0x236 JUMP JUMPDEST SWAP2 POP PUSH3 0x31F PUSH2 0x100 DUP12 ADD PUSH3 0x219 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x343 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x364 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x3B8 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x393 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x3B4 JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x39F JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x3D9 JUMPI PUSH3 0x3D9 PUSH3 0x154 JUMP JUMPDEST PUSH3 0x3F1 DUP2 PUSH3 0x3EA DUP5 SLOAD PUSH3 0x32E JUMP JUMPDEST DUP5 PUSH3 0x36A JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x429 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x410 JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x3B4 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x45A JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x439 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x479 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x29F6 DUP1 PUSH3 0x499 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1ED JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x10D JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x5AE JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x5C4 JUMPI DUP1 PUSH4 0xF242432A EQ PUSH2 0x60D JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x62D JUMPI DUP1 PUSH4 0xF4A0A528 EQ PUSH2 0x64D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x52C JUMPI DUP1 PUSH4 0xB3A80E9C EQ PUSH2 0x54C JUMPI DUP1 PUSH4 0xBD85B039 EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0xD547CFB7 EQ PUSH2 0x599 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x4A9 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4C7 JUMPI DUP1 PUSH4 0x9B19251A EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0x9B7C1C83 EQ PUSH2 0x50C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x44B JUMPI DUP1 PUSH4 0x77097FC8 EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0x7F649783 EQ PUSH2 0x473 JUMPI DUP1 PUSH4 0x8A71BB2D EQ PUSH2 0x493 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2A55205A GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x4E1273F4 GT PUSH2 0x154 JUMPI DUP1 PUSH4 0x4E1273F4 EQ PUSH2 0x3C8 JUMPI DUP1 PUSH4 0x548DB174 EQ PUSH2 0x3F5 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x415 JUMPI DUP1 PUSH4 0x6817C76C EQ PUSH2 0x435 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2A55205A EQ PUSH2 0x31C JUMPI DUP1 PUSH4 0x2EB2C2D6 EQ PUSH2 0x35B JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x4C00DE82 EQ PUSH2 0x390 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xE89341C GT PUSH2 0x1C1 JUMPI DUP1 PUSH4 0xE89341C EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0x162094C4 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2DA JUMPI DUP1 PUSH4 0x2693EBF2 EQ PUSH2 0x2EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0xFDD58E EQ PUSH2 0x1F2 JUMPI DUP1 PUSH4 0x116BC2D EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x256 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x276 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH2 0x20D CALLDATASIZE PUSH1 0x4 PUSH2 0x1D88 JUMP JUMPDEST PUSH2 0x66D 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 0x231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xC SLOAD PUSH2 0x246 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x21C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x262 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x246 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC8 JUMP JUMPDEST PUSH2 0x706 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x282 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x711 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x2B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E4F JUMP JUMPDEST PUSH2 0x79F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x2D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F1D JUMP JUMPDEST PUSH2 0x880 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH2 0x8F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH2 0x30A CALLDATASIZE PUSH1 0x4 PUSH2 0x1E4F JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x328 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x337 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F63 JUMP JUMPDEST PUSH2 0x907 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x21C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x367 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x376 CALLDATASIZE PUSH1 0x4 PUSH2 0x2019 JUMP JUMPDEST PUSH2 0x93B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x387 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x987 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xC SLOAD PUSH2 0x3B0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x21C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E8 PUSH2 0x3E3 CALLDATASIZE PUSH1 0x4 PUSH2 0x212F JUMP JUMPDEST PUSH2 0xAE2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x401 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x410 CALLDATASIZE PUSH1 0x4 PUSH2 0x21D6 JUMP JUMPDEST PUSH2 0xC0B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x430 CALLDATASIZE PUSH1 0x4 PUSH2 0x220A JUMP JUMPDEST PUSH2 0xC7F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x441 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x457 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0xCD7 JUMP JUMPDEST PUSH2 0x212 PUSH2 0x46E CALLDATASIZE PUSH1 0x4 PUSH2 0x1F1D JUMP JUMPDEST PUSH2 0xCE9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x47F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x48E CALLDATASIZE PUSH1 0x4 PUSH2 0x21D6 JUMP JUMPDEST PUSH2 0xF43 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x3B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0xFB3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x246 PUSH2 0x4F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x223E JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x518 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x527 CALLDATASIZE PUSH1 0x4 PUSH2 0x2269 JUMP JUMPDEST PUSH2 0xFC0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x538 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x547 CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0x1015 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x558 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x567 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B7 JUMP JUMPDEST PUSH2 0x1020 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x578 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH2 0x587 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E4F JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x129F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x246 PUSH2 0x5DF CALLDATASIZE PUSH1 0x4 PUSH2 0x23DB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 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 PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x619 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x628 CALLDATASIZE PUSH1 0x4 PUSH2 0x2405 JUMP JUMPDEST PUSH2 0x12AC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x639 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x648 CALLDATASIZE PUSH1 0x4 PUSH2 0x223E JUMP JUMPDEST PUSH2 0x12F1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x659 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x668 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E4F JUMP JUMPDEST PUSH2 0x136A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2061646472657373207A65726F206973206E6F7420612076 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x30B634B21037BBB732B9 PUSH1 0xB1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP2 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 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x700 DUP3 PUSH2 0x13A7 JUMP JUMPDEST PUSH1 0x6 DUP1 SLOAD PUSH2 0x71E SWAP1 PUSH2 0x2469 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 0x74A SWAP1 PUSH2 0x2469 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x797 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x76C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x797 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x77A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP3 SWAP2 SWAP1 PUSH2 0x7BD SWAP1 PUSH2 0x2469 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 0x7E9 SWAP1 PUSH2 0x2469 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x836 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x80B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x836 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x819 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT ISZERO PUSH2 0x84D JUMPI SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x8 PUSH2 0x858 DUP5 PUSH2 0x13F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x869 SWAP3 SWAP2 SWAP1 PUSH2 0x24A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x888 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x8DA 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 0x151BDAD95B88191BD95CC81B9BDD08195E1A5CDD PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x8F2 DUP3 DUP3 PUSH2 0x2570 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x902 PUSH1 0x5 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2710 PUSH1 0xB SLOAD DUP5 PUSH2 0x91B SWAP2 SWAP1 PUSH2 0x2645 JUMP JUMPDEST PUSH2 0x925 SWAP2 SWAP1 PUSH2 0x2672 JUMP JUMPDEST PUSH1 0xC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER EQ DUP1 PUSH2 0x957 JUMPI POP PUSH2 0x957 DUP6 CALLER PUSH2 0x5DF JUMP JUMPDEST PUSH2 0x973 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2686 JUMP JUMPDEST PUSH2 0x980 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x1559 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x98F PUSH2 0x14FF JUMP JUMPDEST PUSH2 0x997 PUSH2 0x1736 JUMP JUMPDEST SELFBALANCE DUP1 PUSH2 0x9DE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x4E6F2062616C616E636520746F207769746864726177 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F2 PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xA3C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xA41 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xA86 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 0x15DA5D1A191C985DD85B0819985A5B1959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP4 PUSH1 0x40 MLOAD PUSH2 0xACC SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH2 0xAE0 PUSH1 0x1 PUSH1 0x4 SSTORE JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0xB47 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A206163636F756E747320616E6420696473206C656E677468 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x40DAD2E6DAC2E8C6D PUSH1 0xBB SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xB62 JUMPI PUSH2 0xB62 PUSH2 0x1E68 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xB8B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0xC03 JUMPI PUSH2 0xBD6 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBAF JUMPI PUSH2 0xBAF PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xBC9 JUMPI PUSH2 0xBC9 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x66D JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBE8 JUMPI PUSH2 0xBE8 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0xBFC DUP2 PUSH2 0x26EA JUMP JUMPDEST SWAP1 POP PUSH2 0xB91 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0xC13 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xC7B JUMPI PUSH1 0x0 PUSH1 0xD PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xC37 JUMPI PUSH2 0xC37 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xC73 DUP2 PUSH2 0x26EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC16 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xC87 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x8 PUSH2 0xC93 DUP3 DUP3 PUSH2 0x2570 JUMP JUMPDEST POP PUSH2 0xC9D DUP2 PUSH2 0x178F JUMP JUMPDEST PUSH32 0x6741B2FC379FAD678116FE3D4D4B9A1A184AB53BA36B86AD0FA66340B1AB41AD DUP2 PUSH1 0x40 MLOAD PUSH2 0xCCC SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0xCDF PUSH2 0x14FF JUMP JUMPDEST PUSH2 0xAE0 PUSH1 0x0 PUSH2 0x179B JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCF3 PUSH2 0x1736 JUMP JUMPDEST PUSH1 0xC SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND DUP1 PUSH2 0xD1A JUMPI POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST DUP1 PUSH2 0xD2F JUMPI POP PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST PUSH2 0xD71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x135A5B9D1A5B99C81B9BDD08185B1B1BDDD959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP4 GT PUSH2 0xDC1 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 0x416D6F756E74206D7573742062652067726561746572207468616E2030000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST DUP3 PUSH1 0xA SLOAD PUSH2 0xDCF SWAP2 SWAP1 PUSH2 0x2645 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xE15 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 0x125B9CDD59999A58DA595B9D081C185E5B595B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0xE23 PUSH1 0x5 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE2E PUSH1 0x5 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x9 SLOAD PUSH1 0x0 EQ DUP1 PUSH2 0xE5C JUMPI POP PUSH1 0x9 SLOAD PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0xE59 SWAP1 DUP7 SWAP1 PUSH2 0x2703 JUMP JUMPDEST GT ISZERO JUMPDEST PUSH2 0xEA2 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 PUSH23 0x576F756C6420657863656564206D617820737570706C79 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0xEBD CALLER DUP3 DUP7 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x17ED JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0xED5 DUP5 DUP3 PUSH2 0x2570 JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 SWAP3 SWAP1 PUSH2 0xEF4 SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 SWAP1 CALLER SWAP1 PUSH32 0x1F8BD07E6C27FF813D5C6D3C4BF0313A1D75043CF978214B504B794075E5266 SWAP1 PUSH2 0xF2F SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0x2716 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 SWAP1 POP PUSH2 0x700 PUSH1 0x1 PUSH1 0x4 SSTORE JUMP JUMPDEST PUSH2 0xF4B PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xC7B JUMPI PUSH1 0x1 PUSH1 0xD PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xF6F JUMPI PUSH2 0xF6F PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xFAB DUP2 PUSH2 0x26EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xF4E JUMP JUMPDEST PUSH1 0x7 DUP1 SLOAD PUSH2 0x71E SWAP1 PUSH2 0x2469 JUMP JUMPDEST PUSH2 0xFC8 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD DUP3 ISZERO ISZERO PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH1 0xFF PUSH1 0xA0 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH32 0xA81E445DAC2343503DC87E4663774817434721DB7D985310A6959766E6D4480E SWAP1 PUSH2 0xCCC SWAP1 DUP4 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0xC7B CALLER DUP4 DUP4 PUSH2 0x1901 JUMP JUMPDEST PUSH2 0x1028 PUSH2 0x14FF JUMP JUMPDEST PUSH2 0x1030 PUSH2 0x1736 JUMP JUMPDEST DUP3 MLOAD DUP5 MLOAD EQ DUP1 ISZERO PUSH2 0x1042 JUMPI POP DUP2 MLOAD DUP4 MLOAD EQ JUMPDEST DUP1 ISZERO PUSH2 0x104F JUMPI POP DUP1 MLOAD DUP3 MLOAD EQ JUMPDEST PUSH2 0x1093 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 0x82E4E4C2F240D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x128E JUMPI PUSH1 0x0 DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x10B3 JUMPI PUSH2 0x10B3 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x10D1 JUMPI PUSH2 0x10D1 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x9 SLOAD PUSH1 0x0 EQ DUP1 PUSH2 0x1107 JUMPI POP PUSH1 0x9 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x1104 SWAP1 DUP4 SWAP1 PUSH2 0x2703 JUMP JUMPDEST GT ISZERO JUMPDEST PUSH2 0x114D 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 PUSH23 0x576F756C6420657863656564206D617820737570706C79 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0x1181 DUP8 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x1162 JUMPI PUSH2 0x1162 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x17ED JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x119A SWAP1 PUSH2 0x2469 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 SUB PUSH2 0x11DE JUMPI DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x11B5 JUMPI PUSH2 0x11B5 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xE PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP2 PUSH2 0x11DC SWAP2 SWAP1 PUSH2 0x2570 JUMP JUMPDEST POP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x11FC SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 DUP8 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x1216 JUMPI PUSH2 0x1216 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x1F8BD07E6C27FF813D5C6D3C4BF0313A1D75043CF978214B504B794075E5266 DUP4 DUP8 DUP8 DUP2 MLOAD DUP2 LT PUSH2 0x125B JUMPI PUSH2 0x125B PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x1271 SWAP3 SWAP2 SWAP1 PUSH2 0x2716 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP DUP1 DUP1 PUSH2 0x1286 SWAP1 PUSH2 0x26EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1096 JUMP JUMPDEST POP PUSH2 0x1299 PUSH1 0x1 PUSH1 0x4 SSTORE JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD PUSH2 0x71E SWAP1 PUSH2 0x2469 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER EQ DUP1 PUSH2 0x12C8 JUMPI POP PUSH2 0x12C8 DUP6 CALLER PUSH2 0x5DF JUMP JUMPDEST PUSH2 0x12E4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2686 JUMP JUMPDEST PUSH2 0x980 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x19E1 JUMP JUMPDEST PUSH2 0x12F9 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x135E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0x1367 DUP2 PUSH2 0x179B JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1372 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0xA DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x525B762709CC2A983AEC5CCDFD807A061F993C91090B5BCD7DA92CA254976AAA SWAP1 PUSH1 0x20 ADD PUSH2 0xCCC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x6CDB3D13 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x13D8 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3A24D07 PUSH1 0xE2 SHL EQ JUMPDEST DUP1 PUSH2 0x700 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x700 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 SUB PUSH2 0x141E JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x1448 JUMPI DUP1 PUSH2 0x1432 DUP2 PUSH2 0x26EA JUMP JUMPDEST SWAP2 POP PUSH2 0x1441 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x2672 JUMP JUMPDEST SWAP2 POP PUSH2 0x1422 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1462 JUMPI PUSH2 0x1462 PUSH2 0x1E68 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 0x148C JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x14F7 JUMPI PUSH2 0x14A1 PUSH1 0x1 DUP4 PUSH2 0x272F JUMP JUMPDEST SWAP2 POP PUSH2 0x14AE PUSH1 0xA DUP7 PUSH2 0x2742 JUMP JUMPDEST PUSH2 0x14B9 SWAP1 PUSH1 0x30 PUSH2 0x2703 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x14CE JUMPI PUSH2 0x14CE PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x14F0 PUSH1 0xA DUP7 PUSH2 0x2672 JUMP JUMPDEST SWAP5 POP PUSH2 0x1490 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xAE0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x15BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2069647320616E6420616D6F756E7473206C656E67746820 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0xDAD2E6DAC2E8C6D PUSH1 0xC3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x15E1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2756 JUMP JUMPDEST CALLER PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x16C8 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1602 JUMPI PUSH2 0x1602 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1620 JUMPI PUSH2 0x1620 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x0 DUP5 DUP2 MSTORE DUP1 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND DUP4 MSTORE SWAP1 SWAP4 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP2 DUP2 LT ISZERO PUSH2 0x1670 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x279B JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 DUP2 AND DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP1 DUP12 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x16AD SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0x16C1 SWAP1 PUSH2 0x26EA JUMP JUMPDEST SWAP1 POP PUSH2 0x15E5 JUMP JUMPDEST POP DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1718 SWAP3 SWAP2 SWAP1 PUSH2 0x27E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x172E DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1B0B JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x4 SLOAD SUB PUSH2 0x1788 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 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x4 SSTORE JUMP JUMPDEST PUSH1 0x2 PUSH2 0xC7B DUP3 DUP3 PUSH2 0x2570 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x184D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A206D696E7420746F20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST CALLER PUSH1 0x0 PUSH2 0x1859 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1866 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP8 SWAP3 SWAP1 PUSH2 0x1898 SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP8 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP11 AND SWAP3 PUSH1 0x0 SWAP3 SWAP2 DUP8 AND SWAP2 PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x18F8 DUP4 PUSH1 0x0 DUP10 DUP10 DUP10 DUP10 PUSH2 0x1CB1 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x1974 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2073657474696E6720617070726F76616C20737461747573 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x103337B91039B2B633 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 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 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x1A07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2756 JUMP JUMPDEST CALLER PUSH1 0x0 PUSH2 0x1A13 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1A20 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP6 DUP2 LT ISZERO PUSH2 0x1A63 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x279B JUMP JUMPDEST PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 DUP2 AND DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP10 DUP6 SUB SWAP1 SSTORE SWAP1 DUP11 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP9 SWAP3 SWAP1 PUSH2 0x1AA0 SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP9 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP12 AND SWAP3 DUP13 DUP3 AND SWAP3 SWAP2 DUP9 AND SWAP2 PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x1B00 DUP5 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0x1CB1 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x172E JUMPI PUSH1 0x40 MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBC197C81 SWAP1 PUSH2 0x1B4F SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x2813 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1B8A JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1B87 SWAP2 DUP2 ADD SWAP1 PUSH2 0x2871 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1C36 JUMPI PUSH2 0x1B96 PUSH2 0x288E JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0x1BCF JUMPI POP PUSH2 0x1BAA PUSH2 0x28AA JUMP JUMPDEST DUP1 PUSH2 0x1BB5 JUMPI POP PUSH2 0x1BD1 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x34 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2D45524331313535 PUSH1 0x44 DUP3 ADD MSTORE PUSH20 0x2932B1B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x61 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xBC197C81 PUSH1 0xE0 SHL EQ PUSH2 0x18F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2933 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x60 SWAP2 PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1CA0 JUMPI PUSH2 0x1CA0 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x172E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xF23A6E61 SWAP1 PUSH2 0x1CF5 SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x297B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1D30 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1D2D SWAP2 DUP2 ADD SWAP1 PUSH2 0x2871 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1D3C JUMPI PUSH2 0x1B96 PUSH2 0x288E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xF23A6E61 PUSH1 0xE0 SHL EQ PUSH2 0x18F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2933 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1D83 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D9B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DA4 DUP4 PUSH2 0x1D6C JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1367 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DDA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1DE5 DUP2 PUSH2 0x1DB2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1E07 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1DEF JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x1E28 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1DEC JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1DE5 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1E10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E61 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST 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 0x1EA3 JUMPI PUSH2 0x1EA3 PUSH2 0x1E68 JUMP JUMPDEST PUSH1 0x40 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1EBB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1ED4 JUMPI PUSH2 0x1ED4 PUSH2 0x1E68 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1EEB PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 PUSH2 0x1E7E JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0x1F00 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1F4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F59 DUP6 DUP3 DUP7 ADD PUSH2 0x1EAA JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F76 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x1F9E JUMPI PUSH2 0x1F9E PUSH2 0x1E68 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1FB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x1FC6 DUP3 PUSH2 0x1F85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD3 DUP3 DUP3 PUSH2 0x1E7E JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x5 SWAP4 SWAP1 SWAP4 SHL DUP6 ADD DUP3 ADD SWAP3 DUP3 DUP2 ADD SWAP2 POP DUP7 DUP5 GT ISZERO PUSH2 0x1FF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x200E JUMPI DUP1 CALLDATALOAD DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0x1FF7 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x2031 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x203A DUP7 PUSH2 0x1D6C JUMP JUMPDEST SWAP5 POP PUSH2 0x2048 PUSH1 0x20 DUP8 ADD PUSH2 0x1D6C JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x2064 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2070 DUP10 DUP4 DUP11 ADD PUSH2 0x1FA8 JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x2086 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2092 DUP10 DUP4 DUP11 ADD PUSH2 0x1FA8 JUMP JUMPDEST SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x20A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x20B5 DUP9 DUP3 DUP10 ADD PUSH2 0x1EAA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x20D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x20E0 DUP3 PUSH2 0x1F85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20ED DUP3 DUP3 PUSH2 0x1E7E JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x5 SWAP4 SWAP1 SWAP4 SHL DUP6 ADD DUP3 ADD SWAP3 DUP3 DUP2 ADD SWAP2 POP DUP7 DUP5 GT ISZERO PUSH2 0x210D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x200E JUMPI PUSH2 0x2122 DUP2 PUSH2 0x1D6C JUMP JUMPDEST DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0x2111 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2142 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x2159 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2165 DUP7 DUP4 DUP8 ADD PUSH2 0x20C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x217B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F59 DUP6 DUP3 DUP7 ADD PUSH2 0x1FA8 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x21B8 JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x219C JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1DE5 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2188 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14F7 DUP5 DUP3 DUP6 ADD PUSH2 0x20C2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x221C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2232 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14F7 DUP5 DUP3 DUP6 ADD PUSH2 0x1EAA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2250 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DE5 DUP3 PUSH2 0x1D6C JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1D83 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x227B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DE5 DUP3 PUSH2 0x2259 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x22A0 DUP4 PUSH2 0x1D6C JUMP JUMPDEST SWAP2 POP PUSH2 0x22AE PUSH1 0x20 DUP5 ADD PUSH2 0x2259 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x22CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x22E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x22F0 DUP9 DUP4 DUP10 ADD PUSH2 0x20C2 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 SWAP2 POP DUP2 DUP8 ADD CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2307 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2313 DUP10 DUP3 DUP11 ADD PUSH2 0x1FA8 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2328 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2334 DUP10 DUP3 DUP11 ADD PUSH2 0x1FA8 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x60 DUP8 ADD CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2349 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x1F DUP2 ADD DUP10 SGT PUSH2 0x235A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2365 DUP2 PUSH2 0x1F85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2372 DUP3 DUP3 PUSH2 0x1E7E JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x5 SWAP3 SWAP1 SWAP3 SHL DUP4 ADD DUP6 ADD SWAP2 DUP6 DUP2 ADD SWAP2 POP DUP12 DUP4 GT ISZERO PUSH2 0x2392 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP5 ADD JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x23CA JUMPI DUP1 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x23AE JUMPI PUSH1 0x0 DUP1 DUP2 REVERT JUMPDEST PUSH2 0x23BC DUP15 DUP10 DUP4 DUP10 ADD ADD PUSH2 0x1EAA JUMP JUMPDEST DUP5 MSTORE POP SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x2396 JUMP JUMPDEST POP SWAP9 SWAP12 SWAP8 SWAP11 POP SWAP6 SWAP9 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x23F7 DUP4 PUSH2 0x1D6C JUMP JUMPDEST SWAP2 POP PUSH2 0x22AE PUSH1 0x20 DUP5 ADD PUSH2 0x1D6C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x241D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2426 DUP7 PUSH2 0x1D6C JUMP JUMPDEST SWAP5 POP PUSH2 0x2434 PUSH1 0x20 DUP8 ADD PUSH2 0x1D6C JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x245D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x20B5 DUP9 DUP3 DUP10 ADD PUSH2 0x1EAA JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x247D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x249D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 SLOAD PUSH2 0x24B1 DUP2 PUSH2 0x2469 JUMP JUMPDEST PUSH1 0x1 DUP3 DUP2 AND DUP1 ISZERO PUSH2 0x24C9 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x24DE JUMPI PUSH2 0x250D JUMP JUMPDEST PUSH1 0xFF NOT DUP5 AND DUP8 MSTORE DUP3 ISZERO ISZERO DUP4 MUL DUP8 ADD SWAP5 POP PUSH2 0x250D JUMP JUMPDEST DUP9 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 PUSH1 0x0 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2504 JUMPI DUP2 SLOAD DUP11 DUP3 ADD MSTORE SWAP1 DUP5 ADD SWAP1 DUP3 ADD PUSH2 0x24EB JUMP JUMPDEST POP POP POP DUP3 DUP8 ADD SWAP5 POP JUMPDEST POP POP POP POP DUP4 MLOAD PUSH2 0x2521 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1DEC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x8F2 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH2 0x2551 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x172E JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x255D JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2589 JUMPI PUSH2 0x2589 PUSH2 0x1E68 JUMP JUMPDEST PUSH2 0x259D DUP2 PUSH2 0x2597 DUP5 SLOAD PUSH2 0x2469 JUMP JUMPDEST DUP5 PUSH2 0x252A JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x25D2 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x25BA JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH2 0x172E JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2601 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH2 0x25E2 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH2 0x261F JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x700 JUMPI PUSH2 0x700 PUSH2 0x262F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2681 JUMPI PUSH2 0x2681 PUSH2 0x265C JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2E SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A2063616C6C6572206973206E6F7420746F6B656E206F776E PUSH1 0x40 DUP3 ADD MSTORE PUSH14 0x195C881BDC88185C1C1C9BDD9959 PUSH1 0x92 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x26FC JUMPI PUSH2 0x26FC PUSH2 0x262F JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x700 JUMPI PUSH2 0x700 PUSH2 0x262F JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x14F7 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x1E10 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x700 JUMPI PUSH2 0x700 PUSH2 0x262F JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2751 JUMPI PUSH2 0x2751 PUSH2 0x265C JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A207472616E7366657220746F20746865207A65726F206164 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2A SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A20696E73756666696369656E742062616C616E636520666F PUSH1 0x40 DUP3 ADD MSTORE PUSH10 0x39103A3930B739B332B9 PUSH1 0xB1 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x27F8 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x2188 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x280A DUP2 DUP6 PUSH2 0x2188 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x283F SWAP1 DUP4 ADD DUP7 PUSH2 0x2188 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x60 DUP5 ADD MSTORE PUSH2 0x2851 DUP2 DUP7 PUSH2 0x2188 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 SUB PUSH1 0x80 DUP5 ADD MSTORE PUSH2 0x2865 DUP2 DUP6 PUSH2 0x1E10 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2883 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1DE5 DUP2 PUSH2 0x1DB2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x28A7 JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY POP PUSH1 0x0 MLOAD PUSH1 0xE0 SHR JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x28B8 JUMPI SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3 NOT RETURNDATASIZE DUP2 ADD PUSH1 0x4 DUP4 RETURNDATACOPY DUP2 MLOAD RETURNDATASIZE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 PUSH1 0x24 DUP5 ADD GT DUP2 DUP5 GT OR ISZERO PUSH2 0x28E7 JUMPI POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 DUP6 ADD SWAP2 POP DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x28FF JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP5 RETURNDATASIZE DUP8 ADD ADD PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2919 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x2928 PUSH1 0x20 DUP3 DUP7 ADD ADD DUP8 PUSH2 0x1E7E JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x28 SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x40 DUP3 ADD MSTORE PUSH8 0x6420746F6B656E73 PUSH1 0xC0 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0xA0 PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x29B5 SWAP1 DUP4 ADD DUP5 PUSH2 0x1E10 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB8 0x4A SHL 0xCE CALL CREATE BLOCKHASH DUP9 CREATE2 SWAP3 DUP13 0xCB PUSH7 0xFCFA3BCF2EA01C ORIGIN JUMPI 0xB0 PUSH2 0xCC63 REVERT CALLDATACOPY PUSH15 0x83B39364736F6C6343000813003300 ","sourceMap":"430:7671:22:-:0;;;1380:795;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1692:13;1149::5;1692::22;1149:7:5;:13::i;:::-;-1:-1:-1;936:32:0;734:10:15;936:18:0;:32::i;:::-;1716:1:4;1821:7;:22;1718:4:22::1;:12;1725:5:::0;1718:4;:12:::1;:::i;:::-;-1:-1:-1::0;1741:6:22::1;:16;1750:7:::0;1741:6;:16:::1;:::i;:::-;-1:-1:-1::0;1768:12:22::1;:28;1783:13:::0;1768:12;:28:::1;:::i;:::-;-1:-1:-1::0;1807:9:22::1;:22:::0;;;1840:17:::1;:38:::0;;;1889:16:::1;:36:::0;;1936:9:::1;:22:::0;;;1969:35;::::1;;-1:-1:-1::0;;;1969:35:22::1;-1:-1:-1::0;;;;;;1969:35:22;;;-1:-1:-1;;;;;1889:36:22;::::1;1969:35:::0;::::1;::::0;;2069:26:::1;2088:6:::0;2069:18:::1;:26::i;:::-;-1:-1:-1::0;;;;;2143:17:22::1;;::::0;;;:9:::1;:17;::::0;;;;:24;;-1:-1:-1;;2143:24:22::1;2163:4;2143:24;::::0;;-1:-1:-1;430:7671:22;;-1:-1:-1;;;;;;;430:7671:22;8149:86:5;8215:4;:13;8222:6;8215:4;:13;:::i;:::-;;8149:86;:::o;2426:187:0:-;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;14:127:25:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:840;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;294:13;;-1:-1:-1;;;;;356:10:25;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:25;;;518:2;490:31;486:40;474:53;;;542:18;;;562:22;;;539:46;536:72;;;588:18;;:::i;:::-;628:10;624:2;617:22;663:2;655:6;648:18;685:4;675:14;;730:3;725:2;720;712:6;708:15;704:24;701:33;698:53;;;747:1;744;737:12;698:53;769:1;760:10;;779:133;793:2;790:1;787:9;779:133;;;881:14;;;877:23;;871:30;850:14;;;846:23;;839:63;804:10;;;;779:133;;;954:1;932:15;;;928:24;;;921:35;;;;936:6;146:840;-1:-1:-1;;;;146:840:25:o;991:177::-;1070:13;;-1:-1:-1;;;;;1112:31:25;;1102:42;;1092:70;;1158:1;1155;1148:12;1092:70;991:177;;;:::o;1173:164::-;1249:13;;1298;;1291:21;1281:32;;1271:60;;1327:1;1324;1317:12;1342:1204;1511:6;1519;1527;1535;1543;1551;1559;1567;1575;1628:3;1616:9;1607:7;1603:23;1599:33;1596:53;;;1645:1;1642;1635:12;1596:53;1672:16;;-1:-1:-1;;;;;1737:14:25;;;1734:34;;;1764:1;1761;1754:12;1734:34;1787:61;1840:7;1831:6;1820:9;1816:22;1787:61;:::i;:::-;1777:71;;1894:2;1883:9;1879:18;1873:25;1857:41;;1923:2;1913:8;1910:16;1907:36;;;1939:1;1936;1929:12;1907:36;1962:63;2017:7;2006:8;1995:9;1991:24;1962:63;:::i;:::-;1952:73;;2071:2;2060:9;2056:18;2050:25;2034:41;;2100:2;2090:8;2087:16;2084:36;;;2116:1;2113;2106:12;2084:36;;2139:63;2194:7;2183:8;2172:9;2168:24;2139:63;:::i;:::-;2129:73;;;2242:2;2231:9;2227:18;2221:25;2211:35;;2286:3;2275:9;2271:19;2265:26;2255:36;;2310:50;2355:3;2344:9;2340:19;2310:50;:::i;:::-;2300:60;;2400:3;2389:9;2385:19;2379:26;2369:36;;2424:47;2466:3;2455:9;2451:19;2424:47;:::i;:::-;2414:57;;2490:50;2535:3;2524:9;2520:19;2490:50;:::i;:::-;2480:60;;1342:1204;;;;;;;;;;;:::o;2551:380::-;2630:1;2626:12;;;;2673;;;2694:61;;2748:4;2740:6;2736:17;2726:27;;2694:61;2801:2;2793:6;2790:14;2770:18;2767:38;2764:161;;2847:10;2842:3;2838:20;2835:1;2828:31;2882:4;2879:1;2872:15;2910:4;2907:1;2900:15;2764:161;;2551:380;;;:::o;3062:545::-;3164:2;3159:3;3156:11;3153:448;;;3200:1;3225:5;3221:2;3214:17;3270:4;3266:2;3256:19;3340:2;3328:10;3324:19;3321:1;3317:27;3311:4;3307:38;3376:4;3364:10;3361:20;3358:47;;;-1:-1:-1;3399:4:25;3358:47;3454:2;3449:3;3445:12;3442:1;3438:20;3432:4;3428:31;3418:41;;3509:82;3527:2;3520:5;3517:13;3509:82;;;3572:17;;;3553:1;3542:13;3509:82;;;3513:3;;;3153:448;3062:545;;;:::o;3783:1352::-;3903:10;;-1:-1:-1;;;;;3925:30:25;;3922:56;;;3958:18;;:::i;:::-;3987:97;4077:6;4037:38;4069:4;4063:11;4037:38;:::i;:::-;4031:4;3987:97;:::i;:::-;4139:4;;4203:2;4192:14;;4220:1;4215:663;;;;4922:1;4939:6;4936:89;;;-1:-1:-1;4991:19:25;;;4985:26;4936:89;-1:-1:-1;;3740:1:25;3736:11;;;3732:24;3728:29;3718:40;3764:1;3760:11;;;3715:57;5038:81;;4185:944;;4215:663;3009:1;3002:14;;;3046:4;3033:18;;-1:-1:-1;;4251:20:25;;;4369:236;4383:7;4380:1;4377:14;4369:236;;;4472:19;;;4466:26;4451:42;;4564:27;;;;4532:1;4520:14;;;;4399:19;;4369:236;;;4373:3;4633:6;4624:7;4621:19;4618:201;;;4694:19;;;4688:26;-1:-1:-1;;4777:1:25;4773:14;;;4789:3;4769:24;4765:37;4761:42;4746:58;4731:74;;4618:201;-1:-1:-1;;;;;4865:1:25;4849:14;;;4845:22;4832:36;;-1:-1:-1;3783:1352:25:o;:::-;430:7671:22;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_1271":{"entryPoint":null,"id":1271,"parameterSlots":6,"returnSlots":0},"@_asSingletonArray_1427":{"entryPoint":7270,"id":1427,"parameterSlots":1,"returnSlots":1},"@_beforeTokenTransfer_1252":{"entryPoint":null,"id":1252,"parameterSlots":6,"returnSlots":0},"@_checkOwner_54":{"entryPoint":5375,"id":54,"parameterSlots":0,"returnSlots":0},"@_doSafeBatchTransferAcceptanceCheck_1399":{"entryPoint":6923,"id":1399,"parameterSlots":6,"returnSlots":0},"@_doSafeTransferAcceptanceCheck_1334":{"entryPoint":7345,"id":1334,"parameterSlots":6,"returnSlots":0},"@_mint_862":{"entryPoint":6125,"id":862,"parameterSlots":4,"returnSlots":0},"@_msgSender_3192":{"entryPoint":null,"id":3192,"parameterSlots":0,"returnSlots":1},"@_nonReentrantAfter_193":{"entryPoint":null,"id":193,"parameterSlots":0,"returnSlots":0},"@_nonReentrantBefore_185":{"entryPoint":5942,"id":185,"parameterSlots":0,"returnSlots":0},"@_safeBatchTransferFrom_750":{"entryPoint":5465,"id":750,"parameterSlots":5,"returnSlots":0},"@_safeTransferFrom_615":{"entryPoint":6625,"id":615,"parameterSlots":5,"returnSlots":0},"@_setApprovalForAll_1233":{"entryPoint":6401,"id":1233,"parameterSlots":3,"returnSlots":0},"@_setURI_761":{"entryPoint":6031,"id":761,"parameterSlots":1,"returnSlots":0},"@_toString_5250":{"entryPoint":5111,"id":5250,"parameterSlots":1,"returnSlots":1},"@_transferOwnership_111":{"entryPoint":6043,"id":111,"parameterSlots":1,"returnSlots":0},"@addToWhitelist_5042":{"entryPoint":3907,"id":5042,"parameterSlots":1,"returnSlots":0},"@balanceOfBatch_385":{"entryPoint":2786,"id":385,"parameterSlots":2,"returnSlots":1},"@balanceOf_321":{"entryPoint":1645,"id":321,"parameterSlots":2,"returnSlots":1},"@baseTokenURI_4546":{"entryPoint":4767,"id":4546,"parameterSlots":0,"returnSlots":0},"@batchMint_4892":{"entryPoint":4128,"id":4892,"parameterSlots":4,"returnSlots":0},"@current_3228":{"entryPoint":null,"id":3228,"parameterSlots":1,"returnSlots":1},"@increment_3242":{"entryPoint":null,"id":3242,"parameterSlots":1,"returnSlots":0},"@isApprovedForAll_420":{"entryPoint":null,"id":420,"parameterSlots":2,"returnSlots":1},"@isContract_2868":{"entryPoint":null,"id":2868,"parameterSlots":1,"returnSlots":1},"@isPublicMintEnabled_4556":{"entryPoint":null,"id":4556,"parameterSlots":0,"returnSlots":0},"@maxSupply_4548":{"entryPoint":null,"id":4548,"parameterSlots":0,"returnSlots":0},"@mintPrice_4550":{"entryPoint":null,"id":4550,"parameterSlots":0,"returnSlots":0},"@mint_4765":{"entryPoint":3305,"id":4765,"parameterSlots":2,"returnSlots":1},"@name_4542":{"entryPoint":1809,"id":4542,"parameterSlots":0,"returnSlots":0},"@owner_40":{"entryPoint":null,"id":40,"parameterSlots":0,"returnSlots":1},"@removeFromWhitelist_5073":{"entryPoint":3083,"id":5073,"parameterSlots":1,"returnSlots":0},"@renounceOwnership_68":{"entryPoint":3287,"id":68,"parameterSlots":0,"returnSlots":0},"@royaltyInfo_5171":{"entryPoint":2311,"id":5171,"parameterSlots":2,"returnSlots":2},"@royaltyPercentage_4552":{"entryPoint":null,"id":4552,"parameterSlots":0,"returnSlots":0},"@royaltyRecipient_4554":{"entryPoint":null,"id":4554,"parameterSlots":0,"returnSlots":0},"@safeBatchTransferFrom_498":{"entryPoint":2363,"id":498,"parameterSlots":5,"returnSlots":0},"@safeTransferFrom_458":{"entryPoint":4780,"id":458,"parameterSlots":5,"returnSlots":0},"@setApprovalForAll_402":{"entryPoint":4117,"id":402,"parameterSlots":2,"returnSlots":0},"@setBaseURI_4913":{"entryPoint":3199,"id":4913,"parameterSlots":1,"returnSlots":0},"@setMintPrice_4994":{"entryPoint":4970,"id":4994,"parameterSlots":1,"returnSlots":0},"@setTokenURI_4939":{"entryPoint":2176,"id":4939,"parameterSlots":2,"returnSlots":0},"@supportsInterface_281":{"entryPoint":5031,"id":281,"parameterSlots":1,"returnSlots":1},"@supportsInterface_3536":{"entryPoint":null,"id":3536,"parameterSlots":1,"returnSlots":1},"@supportsInterface_5266":{"entryPoint":1798,"id":5266,"parameterSlots":1,"returnSlots":1},"@symbol_4544":{"entryPoint":4019,"id":4544,"parameterSlots":0,"returnSlots":0},"@togglePublicMint_5011":{"entryPoint":4032,"id":5011,"parameterSlots":1,"returnSlots":0},"@tokenSupply_4568":{"entryPoint":null,"id":4568,"parameterSlots":0,"returnSlots":0},"@totalSupply_5084":{"entryPoint":2295,"id":5084,"parameterSlots":0,"returnSlots":1},"@totalSupply_5097":{"entryPoint":null,"id":5097,"parameterSlots":1,"returnSlots":1},"@transferOwnership_91":{"entryPoint":4849,"id":91,"parameterSlots":1,"returnSlots":0},"@uri_4977":{"entryPoint":1951,"id":4977,"parameterSlots":1,"returnSlots":1},"@whitelist_4560":{"entryPoint":null,"id":4560,"parameterSlots":0,"returnSlots":0},"@withdraw_5145":{"entryPoint":2439,"id":5145,"parameterSlots":0,"returnSlots":0},"abi_decode_address":{"entryPoint":7532,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_address_dyn":{"entryPoint":8386,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_uint256_dyn":{"entryPoint":8104,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bool":{"entryPoint":8793,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_string":{"entryPoint":7850,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":8766,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":9179,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr":{"entryPoint":8217,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr":{"entryPoint":9221,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_bool":{"entryPoint":8836,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":7560,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr":{"entryPoint":8662,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr":{"entryPoint":8495,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptr":{"entryPoint":8887,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_bool":{"entryPoint":8809,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":7624,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":10353,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptr":{"entryPoint":8714,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":7759,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_string_memory_ptr":{"entryPoint":7965,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_uint256":{"entryPoint":8035,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_array_uint256_dyn":{"entryPoint":8584,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":7696,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":9379,"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_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":10259,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":10619,"id":null,"parameterSlots":6,"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_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":8643,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":10213,"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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":7740,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":10547,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":9862,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_547be7f5ed2d17cca91d35e8212265e350385ed13daeee07722cf3e686dd6726__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":10070,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":10139,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d__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_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":10006,"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},"array_allocation_size_array_uint256_dyn":{"entryPoint":8069,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":9987,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":9842,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":9797,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":10031,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":9514,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":9584,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":7660,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":9321,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"finalize_allocation":{"entryPoint":7806,"id":null,"parameterSlots":2,"returnSlots":0},"increment_t_uint256":{"entryPoint":9962,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint256":{"entryPoint":10050,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":9775,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":9820,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":9940,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":7784,"id":null,"parameterSlots":0,"returnSlots":0},"return_data_selector":{"entryPoint":10382,"id":null,"parameterSlots":0,"returnSlots":1},"try_decode_error_message":{"entryPoint":10410,"id":null,"parameterSlots":0,"returnSlots":1},"validator_revert_bytes4":{"entryPoint":7602,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:28978:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:25","statements":[{"nodeType":"YulAssignment","src":"73:29:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:25"},"nodeType":"YulFunctionCall","src":"82:20:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:25"}]},{"body":{"nodeType":"YulBlock","src":"165:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:25"},"nodeType":"YulFunctionCall","src":"167:12:25"},"nodeType":"YulExpressionStatement","src":"167:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:25"},"nodeType":"YulFunctionCall","src":"146:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:25"},"nodeType":"YulFunctionCall","src":"142:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:25"},"nodeType":"YulFunctionCall","src":"131:31:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:25"},"nodeType":"YulFunctionCall","src":"121:42:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:25"},"nodeType":"YulFunctionCall","src":"114:50:25"},"nodeType":"YulIf","src":"111:70:25"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:25","type":""}],"src":"14:173:25"},{"body":{"nodeType":"YulBlock","src":"279:167:25","statements":[{"body":{"nodeType":"YulBlock","src":"325:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"337:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"327:6:25"},"nodeType":"YulFunctionCall","src":"327:12:25"},"nodeType":"YulExpressionStatement","src":"327:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"300:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"309:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"296:3:25"},"nodeType":"YulFunctionCall","src":"296:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"321:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"292:3:25"},"nodeType":"YulFunctionCall","src":"292:32:25"},"nodeType":"YulIf","src":"289:52:25"},{"nodeType":"YulAssignment","src":"350:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"379:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"360:18:25"},"nodeType":"YulFunctionCall","src":"360:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"350:6:25"}]},{"nodeType":"YulAssignment","src":"398:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"425:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"436:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"421:3:25"},"nodeType":"YulFunctionCall","src":"421:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"408:12:25"},"nodeType":"YulFunctionCall","src":"408:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"398:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"237:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"248:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"260:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"268:6:25","type":""}],"src":"192:254:25"},{"body":{"nodeType":"YulBlock","src":"552:76:25","statements":[{"nodeType":"YulAssignment","src":"562:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"574:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"585:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"570:3:25"},"nodeType":"YulFunctionCall","src":"570:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"562:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"604:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"615:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"597:6:25"},"nodeType":"YulFunctionCall","src":"597:25:25"},"nodeType":"YulExpressionStatement","src":"597:25:25"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"521:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"532:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"543:4:25","type":""}],"src":"451:177:25"},{"body":{"nodeType":"YulBlock","src":"728:92:25","statements":[{"nodeType":"YulAssignment","src":"738:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"750:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"761:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"746:3:25"},"nodeType":"YulFunctionCall","src":"746:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"738:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"780:9:25"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"805:6:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"798:6:25"},"nodeType":"YulFunctionCall","src":"798:14:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"791:6:25"},"nodeType":"YulFunctionCall","src":"791:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"773:6:25"},"nodeType":"YulFunctionCall","src":"773:41:25"},"nodeType":"YulExpressionStatement","src":"773:41:25"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"697:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"708:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"719:4:25","type":""}],"src":"633:187:25"},{"body":{"nodeType":"YulBlock","src":"869:87:25","statements":[{"body":{"nodeType":"YulBlock","src":"934:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"943:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"946:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"936:6:25"},"nodeType":"YulFunctionCall","src":"936:12:25"},"nodeType":"YulExpressionStatement","src":"936:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"892:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"903:5:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"914:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"919:10:25","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"910:3:25"},"nodeType":"YulFunctionCall","src":"910:20:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"899:3:25"},"nodeType":"YulFunctionCall","src":"899:32:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"889:2:25"},"nodeType":"YulFunctionCall","src":"889:43:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"882:6:25"},"nodeType":"YulFunctionCall","src":"882:51:25"},"nodeType":"YulIf","src":"879:71:25"}]},"name":"validator_revert_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"858:5:25","type":""}],"src":"825:131:25"},{"body":{"nodeType":"YulBlock","src":"1030:176:25","statements":[{"body":{"nodeType":"YulBlock","src":"1076:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1085:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1088:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1078:6:25"},"nodeType":"YulFunctionCall","src":"1078:12:25"},"nodeType":"YulExpressionStatement","src":"1078:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1051:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1060:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1047:3:25"},"nodeType":"YulFunctionCall","src":"1047:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1072:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1043:3:25"},"nodeType":"YulFunctionCall","src":"1043:32:25"},"nodeType":"YulIf","src":"1040:52:25"},{"nodeType":"YulVariableDeclaration","src":"1101:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1127:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1114:12:25"},"nodeType":"YulFunctionCall","src":"1114:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"1105:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1170:5:25"}],"functionName":{"name":"validator_revert_bytes4","nodeType":"YulIdentifier","src":"1146:23:25"},"nodeType":"YulFunctionCall","src":"1146:30:25"},"nodeType":"YulExpressionStatement","src":"1146:30:25"},{"nodeType":"YulAssignment","src":"1185:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"1195:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1185:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"996:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1007:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1019:6:25","type":""}],"src":"961:245:25"},{"body":{"nodeType":"YulBlock","src":"1277:184:25","statements":[{"nodeType":"YulVariableDeclaration","src":"1287:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"1296:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"1291:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1356:63:25","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"1381:3:25"},{"name":"i","nodeType":"YulIdentifier","src":"1386:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1377:3:25"},"nodeType":"YulFunctionCall","src":"1377:11:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"1400:3:25"},{"name":"i","nodeType":"YulIdentifier","src":"1405:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1396:3:25"},"nodeType":"YulFunctionCall","src":"1396:11:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1390:5:25"},"nodeType":"YulFunctionCall","src":"1390:18:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1370:6:25"},"nodeType":"YulFunctionCall","src":"1370:39:25"},"nodeType":"YulExpressionStatement","src":"1370:39:25"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1317:1:25"},{"name":"length","nodeType":"YulIdentifier","src":"1320:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1314:2:25"},"nodeType":"YulFunctionCall","src":"1314:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"1328:19:25","statements":[{"nodeType":"YulAssignment","src":"1330:15:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1339:1:25"},{"kind":"number","nodeType":"YulLiteral","src":"1342:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1335:3:25"},"nodeType":"YulFunctionCall","src":"1335:10:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"1330:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"1310:3:25","statements":[]},"src":"1306:113:25"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"1439:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"1444:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1435:3:25"},"nodeType":"YulFunctionCall","src":"1435:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"1453:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1428:6:25"},"nodeType":"YulFunctionCall","src":"1428:27:25"},"nodeType":"YulExpressionStatement","src":"1428:27:25"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"1255:3:25","type":""},{"name":"dst","nodeType":"YulTypedName","src":"1260:3:25","type":""},{"name":"length","nodeType":"YulTypedName","src":"1265:6:25","type":""}],"src":"1211:250:25"},{"body":{"nodeType":"YulBlock","src":"1516:221:25","statements":[{"nodeType":"YulVariableDeclaration","src":"1526:26:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1546:5:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1540:5:25"},"nodeType":"YulFunctionCall","src":"1540:12:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"1530:6:25","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1568:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"1573:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1561:6:25"},"nodeType":"YulFunctionCall","src":"1561:19:25"},"nodeType":"YulExpressionStatement","src":"1561:19:25"},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1628:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"1635:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1624:3:25"},"nodeType":"YulFunctionCall","src":"1624:16:25"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1646:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"1651:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1642:3:25"},"nodeType":"YulFunctionCall","src":"1642:14:25"},{"name":"length","nodeType":"YulIdentifier","src":"1658:6:25"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"1589:34:25"},"nodeType":"YulFunctionCall","src":"1589:76:25"},"nodeType":"YulExpressionStatement","src":"1589:76:25"},{"nodeType":"YulAssignment","src":"1674:57:25","value":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1689:3:25"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1702:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"1710:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1698:3:25"},"nodeType":"YulFunctionCall","src":"1698:15:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1719:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1715:3:25"},"nodeType":"YulFunctionCall","src":"1715:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1694:3:25"},"nodeType":"YulFunctionCall","src":"1694:29:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1685:3:25"},"nodeType":"YulFunctionCall","src":"1685:39:25"},{"kind":"number","nodeType":"YulLiteral","src":"1726:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1681:3:25"},"nodeType":"YulFunctionCall","src":"1681:50:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"1674:3:25"}]}]},"name":"abi_encode_string","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1493:5:25","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1500:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"1508:3:25","type":""}],"src":"1466:271:25"},{"body":{"nodeType":"YulBlock","src":"1863:99:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1880:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1891:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1873:6:25"},"nodeType":"YulFunctionCall","src":"1873:21:25"},"nodeType":"YulExpressionStatement","src":"1873:21:25"},{"nodeType":"YulAssignment","src":"1903:53:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1929:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1941:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1952:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1937:3:25"},"nodeType":"YulFunctionCall","src":"1937:18:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"1911:17:25"},"nodeType":"YulFunctionCall","src":"1911:45:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1903:4:25"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1832:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1843:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1854:4:25","type":""}],"src":"1742:220:25"},{"body":{"nodeType":"YulBlock","src":"2037:110:25","statements":[{"body":{"nodeType":"YulBlock","src":"2083:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2092:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2095:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2085:6:25"},"nodeType":"YulFunctionCall","src":"2085:12:25"},"nodeType":"YulExpressionStatement","src":"2085:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2058:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"2067:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2054:3:25"},"nodeType":"YulFunctionCall","src":"2054:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"2079:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2050:3:25"},"nodeType":"YulFunctionCall","src":"2050:32:25"},"nodeType":"YulIf","src":"2047:52:25"},{"nodeType":"YulAssignment","src":"2108:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2131:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2118:12:25"},"nodeType":"YulFunctionCall","src":"2118:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2108:6:25"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2003:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2014:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2026:6:25","type":""}],"src":"1967:180:25"},{"body":{"nodeType":"YulBlock","src":"2184:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2201:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2208:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2213:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2204:3:25"},"nodeType":"YulFunctionCall","src":"2204:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2194:6:25"},"nodeType":"YulFunctionCall","src":"2194:31:25"},"nodeType":"YulExpressionStatement","src":"2194:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2241:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2244:4:25","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2234:6:25"},"nodeType":"YulFunctionCall","src":"2234:15:25"},"nodeType":"YulExpressionStatement","src":"2234:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2265:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2268:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2258:6:25"},"nodeType":"YulFunctionCall","src":"2258:15:25"},"nodeType":"YulExpressionStatement","src":"2258:15:25"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"2152:127:25"},{"body":{"nodeType":"YulBlock","src":"2331:202:25","statements":[{"nodeType":"YulVariableDeclaration","src":"2341:58:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2363:6:25"},{"arguments":[{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"2379:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"2385:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2375:3:25"},"nodeType":"YulFunctionCall","src":"2375:13:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2394:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2390:3:25"},"nodeType":"YulFunctionCall","src":"2390:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2371:3:25"},"nodeType":"YulFunctionCall","src":"2371:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2359:3:25"},"nodeType":"YulFunctionCall","src":"2359:40:25"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"2345:10:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2474:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2476:16:25"},"nodeType":"YulFunctionCall","src":"2476:18:25"},"nodeType":"YulExpressionStatement","src":"2476:18:25"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2417:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"2429:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2414:2:25"},"nodeType":"YulFunctionCall","src":"2414:34:25"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2453:10:25"},{"name":"memPtr","nodeType":"YulIdentifier","src":"2465:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2450:2:25"},"nodeType":"YulFunctionCall","src":"2450:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2411:2:25"},"nodeType":"YulFunctionCall","src":"2411:62:25"},"nodeType":"YulIf","src":"2408:88:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2512:2:25","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2516:10:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2505:6:25"},"nodeType":"YulFunctionCall","src":"2505:22:25"},"nodeType":"YulExpressionStatement","src":"2505:22:25"}]},"name":"finalize_allocation","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"2313:6:25","type":""},{"name":"size","nodeType":"YulTypedName","src":"2321:4:25","type":""}],"src":"2284:249:25"},{"body":{"nodeType":"YulBlock","src":"2591:503:25","statements":[{"body":{"nodeType":"YulBlock","src":"2640:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2649:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2652:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2642:6:25"},"nodeType":"YulFunctionCall","src":"2642:12:25"},"nodeType":"YulExpressionStatement","src":"2642:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2619:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2627:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2615:3:25"},"nodeType":"YulFunctionCall","src":"2615:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"2634:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2611:3:25"},"nodeType":"YulFunctionCall","src":"2611:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2604:6:25"},"nodeType":"YulFunctionCall","src":"2604:35:25"},"nodeType":"YulIf","src":"2601:55:25"},{"nodeType":"YulVariableDeclaration","src":"2665:30:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2688:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2675:12:25"},"nodeType":"YulFunctionCall","src":"2675:20:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2669:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2734:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2736:16:25"},"nodeType":"YulFunctionCall","src":"2736:18:25"},"nodeType":"YulExpressionStatement","src":"2736:18:25"}]},"condition":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2710:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"2714:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2707:2:25"},"nodeType":"YulFunctionCall","src":"2707:26:25"},"nodeType":"YulIf","src":"2704:52:25"},{"nodeType":"YulVariableDeclaration","src":"2765:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2785:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2779:5:25"},"nodeType":"YulFunctionCall","src":"2779:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"2769:6:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2817:6:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2837:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"2841:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2833:3:25"},"nodeType":"YulFunctionCall","src":"2833:13:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2852:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2848:3:25"},"nodeType":"YulFunctionCall","src":"2848:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2829:3:25"},"nodeType":"YulFunctionCall","src":"2829:27:25"},{"kind":"number","nodeType":"YulLiteral","src":"2858:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2825:3:25"},"nodeType":"YulFunctionCall","src":"2825:38:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"2797:19:25"},"nodeType":"YulFunctionCall","src":"2797:67:25"},"nodeType":"YulExpressionStatement","src":"2797:67:25"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2880:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2888:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2873:6:25"},"nodeType":"YulFunctionCall","src":"2873:18:25"},"nodeType":"YulExpressionStatement","src":"2873:18:25"},{"body":{"nodeType":"YulBlock","src":"2939:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2948:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2951:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2941:6:25"},"nodeType":"YulFunctionCall","src":"2941:12:25"},"nodeType":"YulExpressionStatement","src":"2941:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2914:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2922:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2910:3:25"},"nodeType":"YulFunctionCall","src":"2910:15:25"},{"kind":"number","nodeType":"YulLiteral","src":"2927:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2906:3:25"},"nodeType":"YulFunctionCall","src":"2906:26:25"},{"name":"end","nodeType":"YulIdentifier","src":"2934:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2903:2:25"},"nodeType":"YulFunctionCall","src":"2903:35:25"},"nodeType":"YulIf","src":"2900:55:25"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2981:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2989:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2977:3:25"},"nodeType":"YulFunctionCall","src":"2977:17:25"},{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3000:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3008:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2996:3:25"},"nodeType":"YulFunctionCall","src":"2996:17:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3015:2:25"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"2964:12:25"},"nodeType":"YulFunctionCall","src":"2964:54:25"},"nodeType":"YulExpressionStatement","src":"2964:54:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"3042:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3050:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3038:3:25"},"nodeType":"YulFunctionCall","src":"3038:15:25"},{"kind":"number","nodeType":"YulLiteral","src":"3055:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3034:3:25"},"nodeType":"YulFunctionCall","src":"3034:26:25"},{"kind":"number","nodeType":"YulLiteral","src":"3062:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3027:6:25"},"nodeType":"YulFunctionCall","src":"3027:37:25"},"nodeType":"YulExpressionStatement","src":"3027:37:25"},{"nodeType":"YulAssignment","src":"3073:15:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"3082:6:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"3073:5:25"}]}]},"name":"abi_decode_string","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2565:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"2573:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"2581:5:25","type":""}],"src":"2538:556:25"},{"body":{"nodeType":"YulBlock","src":"3196:293:25","statements":[{"body":{"nodeType":"YulBlock","src":"3242:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3251:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3254:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3244:6:25"},"nodeType":"YulFunctionCall","src":"3244:12:25"},"nodeType":"YulExpressionStatement","src":"3244:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3217:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"3226:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3213:3:25"},"nodeType":"YulFunctionCall","src":"3213:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"3238:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3209:3:25"},"nodeType":"YulFunctionCall","src":"3209:32:25"},"nodeType":"YulIf","src":"3206:52:25"},{"nodeType":"YulAssignment","src":"3267:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3290:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3277:12:25"},"nodeType":"YulFunctionCall","src":"3277:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3267:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"3309:46:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3340:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3351:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3336:3:25"},"nodeType":"YulFunctionCall","src":"3336:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3323:12:25"},"nodeType":"YulFunctionCall","src":"3323:32:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3313:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3398:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3407:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3410:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3400:6:25"},"nodeType":"YulFunctionCall","src":"3400:12:25"},"nodeType":"YulExpressionStatement","src":"3400:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3370:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3378:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3367:2:25"},"nodeType":"YulFunctionCall","src":"3367:30:25"},"nodeType":"YulIf","src":"3364:50:25"},{"nodeType":"YulAssignment","src":"3423:60:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3455:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"3466:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3451:3:25"},"nodeType":"YulFunctionCall","src":"3451:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3475:7:25"}],"functionName":{"name":"abi_decode_string","nodeType":"YulIdentifier","src":"3433:17:25"},"nodeType":"YulFunctionCall","src":"3433:50:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"3423:6:25"}]}]},"name":"abi_decode_tuple_t_uint256t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3154:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3165:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3177:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3185:6:25","type":""}],"src":"3099:390:25"},{"body":{"nodeType":"YulBlock","src":"3581:161:25","statements":[{"body":{"nodeType":"YulBlock","src":"3627:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3636:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3639:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3629:6:25"},"nodeType":"YulFunctionCall","src":"3629:12:25"},"nodeType":"YulExpressionStatement","src":"3629:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3602:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"3611:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3598:3:25"},"nodeType":"YulFunctionCall","src":"3598:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"3623:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3594:3:25"},"nodeType":"YulFunctionCall","src":"3594:32:25"},"nodeType":"YulIf","src":"3591:52:25"},{"nodeType":"YulAssignment","src":"3652:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3675:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3662:12:25"},"nodeType":"YulFunctionCall","src":"3662:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3652:6:25"}]},{"nodeType":"YulAssignment","src":"3694:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3721:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3732:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3717:3:25"},"nodeType":"YulFunctionCall","src":"3717:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3704:12:25"},"nodeType":"YulFunctionCall","src":"3704:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"3694:6:25"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3539:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3550:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3562:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3570:6:25","type":""}],"src":"3494:248:25"},{"body":{"nodeType":"YulBlock","src":"3876:145:25","statements":[{"nodeType":"YulAssignment","src":"3886:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3898:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3909:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3894:3:25"},"nodeType":"YulFunctionCall","src":"3894:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3886:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3928:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3943:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3959:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"3964:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3955:3:25"},"nodeType":"YulFunctionCall","src":"3955:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"3968:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3951:3:25"},"nodeType":"YulFunctionCall","src":"3951:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3939:3:25"},"nodeType":"YulFunctionCall","src":"3939:32:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3921:6:25"},"nodeType":"YulFunctionCall","src":"3921:51:25"},"nodeType":"YulExpressionStatement","src":"3921:51:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3992:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4003:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3988:3:25"},"nodeType":"YulFunctionCall","src":"3988:18:25"},{"name":"value1","nodeType":"YulIdentifier","src":"4008:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3981:6:25"},"nodeType":"YulFunctionCall","src":"3981:34:25"},"nodeType":"YulExpressionStatement","src":"3981:34:25"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3837:9:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3848:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3856:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3867:4:25","type":""}],"src":"3747:274:25"},{"body":{"nodeType":"YulBlock","src":"4095:114:25","statements":[{"body":{"nodeType":"YulBlock","src":"4139:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"4141:16:25"},"nodeType":"YulFunctionCall","src":"4141:18:25"},"nodeType":"YulExpressionStatement","src":"4141:18:25"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4111:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4119:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4108:2:25"},"nodeType":"YulFunctionCall","src":"4108:30:25"},"nodeType":"YulIf","src":"4105:56:25"},{"nodeType":"YulAssignment","src":"4170:33:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4186:1:25","type":"","value":"5"},{"name":"length","nodeType":"YulIdentifier","src":"4189:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4182:3:25"},"nodeType":"YulFunctionCall","src":"4182:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"4198:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4178:3:25"},"nodeType":"YulFunctionCall","src":"4178:25:25"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"4170:4:25"}]}]},"name":"array_allocation_size_array_uint256_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nodeType":"YulTypedName","src":"4075:6:25","type":""}],"returnVariables":[{"name":"size","nodeType":"YulTypedName","src":"4086:4:25","type":""}],"src":"4026:183:25"},{"body":{"nodeType":"YulBlock","src":"4278:660:25","statements":[{"body":{"nodeType":"YulBlock","src":"4327:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4336:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4339:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4329:6:25"},"nodeType":"YulFunctionCall","src":"4329:12:25"},"nodeType":"YulExpressionStatement","src":"4329:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4306:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4314:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4302:3:25"},"nodeType":"YulFunctionCall","src":"4302:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"4321:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4298:3:25"},"nodeType":"YulFunctionCall","src":"4298:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"4291:6:25"},"nodeType":"YulFunctionCall","src":"4291:35:25"},"nodeType":"YulIf","src":"4288:55:25"},{"nodeType":"YulVariableDeclaration","src":"4352:30:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4375:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4362:12:25"},"nodeType":"YulFunctionCall","src":"4362:20:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"4356:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4391:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4401:4:25","type":"","value":"0x20"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"4395:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4414:53:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"4464:2:25"}],"functionName":{"name":"array_allocation_size_array_uint256_dyn","nodeType":"YulIdentifier","src":"4424:39:25"},"nodeType":"YulFunctionCall","src":"4424:43:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"4418:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4476:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4496:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4490:5:25"},"nodeType":"YulFunctionCall","src":"4490:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"4480:6:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"4528:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"4536:2:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"4508:19:25"},"nodeType":"YulFunctionCall","src":"4508:31:25"},"nodeType":"YulExpressionStatement","src":"4508:31:25"},{"nodeType":"YulVariableDeclaration","src":"4548:17:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"4559:6:25"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"4552:3:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"4581:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"4589:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4574:6:25"},"nodeType":"YulFunctionCall","src":"4574:18:25"},"nodeType":"YulExpressionStatement","src":"4574:18:25"},{"nodeType":"YulAssignment","src":"4601:22:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"4612:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4620:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4608:3:25"},"nodeType":"YulFunctionCall","src":"4608:15:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"4601:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"4632:46:25","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4654:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4666:1:25","type":"","value":"5"},{"name":"_1","nodeType":"YulIdentifier","src":"4669:2:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4662:3:25"},"nodeType":"YulFunctionCall","src":"4662:10:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4650:3:25"},"nodeType":"YulFunctionCall","src":"4650:23:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4675:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4646:3:25"},"nodeType":"YulFunctionCall","src":"4646:32:25"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"4636:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4706:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4715:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4718:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4708:6:25"},"nodeType":"YulFunctionCall","src":"4708:12:25"},"nodeType":"YulExpressionStatement","src":"4708:12:25"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"4693:6:25"},{"name":"end","nodeType":"YulIdentifier","src":"4701:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4690:2:25"},"nodeType":"YulFunctionCall","src":"4690:15:25"},"nodeType":"YulIf","src":"4687:35:25"},{"nodeType":"YulVariableDeclaration","src":"4731:26:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4746:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4754:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4742:3:25"},"nodeType":"YulFunctionCall","src":"4742:15:25"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"4735:3:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4822:86:25","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4843:3:25"},{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4861:3:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4848:12:25"},"nodeType":"YulFunctionCall","src":"4848:17:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4836:6:25"},"nodeType":"YulFunctionCall","src":"4836:30:25"},"nodeType":"YulExpressionStatement","src":"4836:30:25"},{"nodeType":"YulAssignment","src":"4879:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4890:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4895:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4886:3:25"},"nodeType":"YulFunctionCall","src":"4886:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"4879:3:25"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4777:3:25"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"4782:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4774:2:25"},"nodeType":"YulFunctionCall","src":"4774:15:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"4790:23:25","statements":[{"nodeType":"YulAssignment","src":"4792:19:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4803:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4808:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4799:3:25"},"nodeType":"YulFunctionCall","src":"4799:12:25"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"4792:3:25"}]}]},"pre":{"nodeType":"YulBlock","src":"4770:3:25","statements":[]},"src":"4766:142:25"},{"nodeType":"YulAssignment","src":"4917:15:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"4926:6:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"4917:5:25"}]}]},"name":"abi_decode_array_uint256_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"4252:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"4260:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"4268:5:25","type":""}],"src":"4214:724:25"},{"body":{"nodeType":"YulBlock","src":"5140:747:25","statements":[{"body":{"nodeType":"YulBlock","src":"5187:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5196:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5199:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5189:6:25"},"nodeType":"YulFunctionCall","src":"5189:12:25"},"nodeType":"YulExpressionStatement","src":"5189:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5161:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"5170:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5157:3:25"},"nodeType":"YulFunctionCall","src":"5157:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"5182:3:25","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5153:3:25"},"nodeType":"YulFunctionCall","src":"5153:33:25"},"nodeType":"YulIf","src":"5150:53:25"},{"nodeType":"YulAssignment","src":"5212:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5241:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"5222:18:25"},"nodeType":"YulFunctionCall","src":"5222:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5212:6:25"}]},{"nodeType":"YulAssignment","src":"5260:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5293:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5304:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5289:3:25"},"nodeType":"YulFunctionCall","src":"5289:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"5270:18:25"},"nodeType":"YulFunctionCall","src":"5270:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5260:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"5317:46:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5348:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5359:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5344:3:25"},"nodeType":"YulFunctionCall","src":"5344:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5331:12:25"},"nodeType":"YulFunctionCall","src":"5331:32:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5321:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"5372:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"5382:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"5376:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5427:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5436:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5439:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5429:6:25"},"nodeType":"YulFunctionCall","src":"5429:12:25"},"nodeType":"YulExpressionStatement","src":"5429:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5415:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"5423:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5412:2:25"},"nodeType":"YulFunctionCall","src":"5412:14:25"},"nodeType":"YulIf","src":"5409:34:25"},{"nodeType":"YulAssignment","src":"5452:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5495:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"5506:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5491:3:25"},"nodeType":"YulFunctionCall","src":"5491:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5515:7:25"}],"functionName":{"name":"abi_decode_array_uint256_dyn","nodeType":"YulIdentifier","src":"5462:28:25"},"nodeType":"YulFunctionCall","src":"5462:61:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"5452:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"5532:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5565:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5576:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5561:3:25"},"nodeType":"YulFunctionCall","src":"5561:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5548:12:25"},"nodeType":"YulFunctionCall","src":"5548:32:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"5536:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5609:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5618:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5621:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5611:6:25"},"nodeType":"YulFunctionCall","src":"5611:12:25"},"nodeType":"YulExpressionStatement","src":"5611:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"5595:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"5605:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5592:2:25"},"nodeType":"YulFunctionCall","src":"5592:16:25"},"nodeType":"YulIf","src":"5589:36:25"},{"nodeType":"YulAssignment","src":"5634:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5677:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"5688:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5673:3:25"},"nodeType":"YulFunctionCall","src":"5673:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5699:7:25"}],"functionName":{"name":"abi_decode_array_uint256_dyn","nodeType":"YulIdentifier","src":"5644:28:25"},"nodeType":"YulFunctionCall","src":"5644:63:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"5634:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"5716:49:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5749:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5760:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5745:3:25"},"nodeType":"YulFunctionCall","src":"5745:19:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5732:12:25"},"nodeType":"YulFunctionCall","src":"5732:33:25"},"variables":[{"name":"offset_2","nodeType":"YulTypedName","src":"5720:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5794:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5803:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5806:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5796:6:25"},"nodeType":"YulFunctionCall","src":"5796:12:25"},"nodeType":"YulExpressionStatement","src":"5796:12:25"}]},"condition":{"arguments":[{"name":"offset_2","nodeType":"YulIdentifier","src":"5780:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"5790:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5777:2:25"},"nodeType":"YulFunctionCall","src":"5777:16:25"},"nodeType":"YulIf","src":"5774:36:25"},{"nodeType":"YulAssignment","src":"5819:62:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5851:9:25"},{"name":"offset_2","nodeType":"YulIdentifier","src":"5862:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5847:3:25"},"nodeType":"YulFunctionCall","src":"5847:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5873:7:25"}],"functionName":{"name":"abi_decode_string","nodeType":"YulIdentifier","src":"5829:17:25"},"nodeType":"YulFunctionCall","src":"5829:52:25"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"5819:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5074:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5085:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5097:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5105:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"5113:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"5121:6:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"5129:6:25","type":""}],"src":"4943:944:25"},{"body":{"nodeType":"YulBlock","src":"5993:102:25","statements":[{"nodeType":"YulAssignment","src":"6003:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6015:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6026:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6011:3:25"},"nodeType":"YulFunctionCall","src":"6011:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6003:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6045:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6060:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6076:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"6081:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"6072:3:25"},"nodeType":"YulFunctionCall","src":"6072:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"6085:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6068:3:25"},"nodeType":"YulFunctionCall","src":"6068:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6056:3:25"},"nodeType":"YulFunctionCall","src":"6056:32:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6038:6:25"},"nodeType":"YulFunctionCall","src":"6038:51:25"},"nodeType":"YulExpressionStatement","src":"6038:51:25"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5962:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5973:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5984:4:25","type":""}],"src":"5892:203:25"},{"body":{"nodeType":"YulBlock","src":"6164:666:25","statements":[{"body":{"nodeType":"YulBlock","src":"6213:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6222:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6225:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6215:6:25"},"nodeType":"YulFunctionCall","src":"6215:12:25"},"nodeType":"YulExpressionStatement","src":"6215:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6192:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"6200:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6188:3:25"},"nodeType":"YulFunctionCall","src":"6188:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"6207:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6184:3:25"},"nodeType":"YulFunctionCall","src":"6184:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6177:6:25"},"nodeType":"YulFunctionCall","src":"6177:35:25"},"nodeType":"YulIf","src":"6174:55:25"},{"nodeType":"YulVariableDeclaration","src":"6238:30:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6261:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6248:12:25"},"nodeType":"YulFunctionCall","src":"6248:20:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"6242:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6277:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"6287:4:25","type":"","value":"0x20"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"6281:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6300:53:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"6350:2:25"}],"functionName":{"name":"array_allocation_size_array_uint256_dyn","nodeType":"YulIdentifier","src":"6310:39:25"},"nodeType":"YulFunctionCall","src":"6310:43:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"6304:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6362:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6382:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6376:5:25"},"nodeType":"YulFunctionCall","src":"6376:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"6366:6:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6414:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"6422:2:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"6394:19:25"},"nodeType":"YulFunctionCall","src":"6394:31:25"},"nodeType":"YulExpressionStatement","src":"6394:31:25"},{"nodeType":"YulVariableDeclaration","src":"6434:17:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"6445:6:25"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"6438:3:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6467:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"6475:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6460:6:25"},"nodeType":"YulFunctionCall","src":"6460:18:25"},"nodeType":"YulExpressionStatement","src":"6460:18:25"},{"nodeType":"YulAssignment","src":"6487:22:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6498:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6506:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6494:3:25"},"nodeType":"YulFunctionCall","src":"6494:15:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"6487:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"6518:46:25","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6540:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6552:1:25","type":"","value":"5"},{"name":"_1","nodeType":"YulIdentifier","src":"6555:2:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"6548:3:25"},"nodeType":"YulFunctionCall","src":"6548:10:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6536:3:25"},"nodeType":"YulFunctionCall","src":"6536:23:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6561:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6532:3:25"},"nodeType":"YulFunctionCall","src":"6532:32:25"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"6522:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6592:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6601:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6604:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6594:6:25"},"nodeType":"YulFunctionCall","src":"6594:12:25"},"nodeType":"YulExpressionStatement","src":"6594:12:25"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"6579:6:25"},{"name":"end","nodeType":"YulIdentifier","src":"6587:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6576:2:25"},"nodeType":"YulFunctionCall","src":"6576:15:25"},"nodeType":"YulIf","src":"6573:35:25"},{"nodeType":"YulVariableDeclaration","src":"6617:26:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6632:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6640:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6628:3:25"},"nodeType":"YulFunctionCall","src":"6628:15:25"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"6621:3:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6708:92:25","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"6729:3:25"},{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"6753:3:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"6734:18:25"},"nodeType":"YulFunctionCall","src":"6734:23:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6722:6:25"},"nodeType":"YulFunctionCall","src":"6722:36:25"},"nodeType":"YulExpressionStatement","src":"6722:36:25"},{"nodeType":"YulAssignment","src":"6771:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"6782:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6787:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6778:3:25"},"nodeType":"YulFunctionCall","src":"6778:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"6771:3:25"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"6663:3:25"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"6668:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6660:2:25"},"nodeType":"YulFunctionCall","src":"6660:15:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"6676:23:25","statements":[{"nodeType":"YulAssignment","src":"6678:19:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"6689:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6694:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6685:3:25"},"nodeType":"YulFunctionCall","src":"6685:12:25"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"6678:3:25"}]}]},"pre":{"nodeType":"YulBlock","src":"6656:3:25","statements":[]},"src":"6652:148:25"},{"nodeType":"YulAssignment","src":"6809:15:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"6818:6:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"6809:5:25"}]}]},"name":"abi_decode_array_address_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"6138:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"6146:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"6154:5:25","type":""}],"src":"6100:730:25"},{"body":{"nodeType":"YulBlock","src":"6972:458:25","statements":[{"body":{"nodeType":"YulBlock","src":"7018:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7027:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7030:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7020:6:25"},"nodeType":"YulFunctionCall","src":"7020:12:25"},"nodeType":"YulExpressionStatement","src":"7020:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6993:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"7002:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6989:3:25"},"nodeType":"YulFunctionCall","src":"6989:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"7014:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6985:3:25"},"nodeType":"YulFunctionCall","src":"6985:32:25"},"nodeType":"YulIf","src":"6982:52:25"},{"nodeType":"YulVariableDeclaration","src":"7043:37:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7070:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7057:12:25"},"nodeType":"YulFunctionCall","src":"7057:23:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"7047:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7089:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"7099:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"7093:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"7144:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7153:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7156:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7146:6:25"},"nodeType":"YulFunctionCall","src":"7146:12:25"},"nodeType":"YulExpressionStatement","src":"7146:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7132:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"7140:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7129:2:25"},"nodeType":"YulFunctionCall","src":"7129:14:25"},"nodeType":"YulIf","src":"7126:34:25"},{"nodeType":"YulAssignment","src":"7169:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7212:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"7223:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7208:3:25"},"nodeType":"YulFunctionCall","src":"7208:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7232:7:25"}],"functionName":{"name":"abi_decode_array_address_dyn","nodeType":"YulIdentifier","src":"7179:28:25"},"nodeType":"YulFunctionCall","src":"7179:61:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7169:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"7249:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7282:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7293:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7278:3:25"},"nodeType":"YulFunctionCall","src":"7278:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7265:12:25"},"nodeType":"YulFunctionCall","src":"7265:32:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"7253:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"7326:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7335:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7338:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7328:6:25"},"nodeType":"YulFunctionCall","src":"7328:12:25"},"nodeType":"YulExpressionStatement","src":"7328:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"7312:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"7322:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7309:2:25"},"nodeType":"YulFunctionCall","src":"7309:16:25"},"nodeType":"YulIf","src":"7306:36:25"},{"nodeType":"YulAssignment","src":"7351:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7394:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"7405:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7390:3:25"},"nodeType":"YulFunctionCall","src":"7390:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7416:7:25"}],"functionName":{"name":"abi_decode_array_uint256_dyn","nodeType":"YulIdentifier","src":"7361:28:25"},"nodeType":"YulFunctionCall","src":"7361:63:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7351:6:25"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6930:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"6941:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6953:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6961:6:25","type":""}],"src":"6835:595:25"},{"body":{"nodeType":"YulBlock","src":"7496:374:25","statements":[{"nodeType":"YulVariableDeclaration","src":"7506:26:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7526:5:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7520:5:25"},"nodeType":"YulFunctionCall","src":"7520:12:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"7510:6:25","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7548:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"7553:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7541:6:25"},"nodeType":"YulFunctionCall","src":"7541:19:25"},"nodeType":"YulExpressionStatement","src":"7541:19:25"},{"nodeType":"YulVariableDeclaration","src":"7569:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"7579:4:25","type":"","value":"0x20"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"7573:2:25","type":""}]},{"nodeType":"YulAssignment","src":"7592:19:25","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7603:3:25"},{"name":"_1","nodeType":"YulIdentifier","src":"7608:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7599:3:25"},"nodeType":"YulFunctionCall","src":"7599:12:25"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"7592:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"7620:28:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7638:5:25"},{"name":"_1","nodeType":"YulIdentifier","src":"7645:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7634:3:25"},"nodeType":"YulFunctionCall","src":"7634:14:25"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"7624:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7657:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"7666:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"7661:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"7725:120:25","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7746:3:25"},{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"7757:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7751:5:25"},"nodeType":"YulFunctionCall","src":"7751:13:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7739:6:25"},"nodeType":"YulFunctionCall","src":"7739:26:25"},"nodeType":"YulExpressionStatement","src":"7739:26:25"},{"nodeType":"YulAssignment","src":"7778:19:25","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7789:3:25"},{"name":"_1","nodeType":"YulIdentifier","src":"7794:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7785:3:25"},"nodeType":"YulFunctionCall","src":"7785:12:25"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"7778:3:25"}]},{"nodeType":"YulAssignment","src":"7810:25:25","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"7824:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"7832:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7820:3:25"},"nodeType":"YulFunctionCall","src":"7820:15:25"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"7810:6:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"7687:1:25"},{"name":"length","nodeType":"YulIdentifier","src":"7690:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"7684:2:25"},"nodeType":"YulFunctionCall","src":"7684:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"7698:18:25","statements":[{"nodeType":"YulAssignment","src":"7700:14:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"7709:1:25"},{"kind":"number","nodeType":"YulLiteral","src":"7712:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7705:3:25"},"nodeType":"YulFunctionCall","src":"7705:9:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"7700:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"7680:3:25","statements":[]},"src":"7676:169:25"},{"nodeType":"YulAssignment","src":"7854:10:25","value":{"name":"pos","nodeType":"YulIdentifier","src":"7861:3:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"7854:3:25"}]}]},"name":"abi_encode_array_uint256_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"7473:5:25","type":""},{"name":"pos","nodeType":"YulTypedName","src":"7480:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"7488:3:25","type":""}],"src":"7435:435:25"},{"body":{"nodeType":"YulBlock","src":"8026:110:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8043:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8054:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8036:6:25"},"nodeType":"YulFunctionCall","src":"8036:21:25"},"nodeType":"YulExpressionStatement","src":"8036:21:25"},{"nodeType":"YulAssignment","src":"8066:64:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"8103:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8115:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8126:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8111:3:25"},"nodeType":"YulFunctionCall","src":"8111:18:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"8074:28:25"},"nodeType":"YulFunctionCall","src":"8074:56:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8066:4:25"}]}]},"name":"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7995:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"8006:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8017:4:25","type":""}],"src":"7875:261:25"},{"body":{"nodeType":"YulBlock","src":"8236:253:25","statements":[{"body":{"nodeType":"YulBlock","src":"8282:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8291:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8294:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8284:6:25"},"nodeType":"YulFunctionCall","src":"8284:12:25"},"nodeType":"YulExpressionStatement","src":"8284:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"8257:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"8266:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8253:3:25"},"nodeType":"YulFunctionCall","src":"8253:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"8278:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8249:3:25"},"nodeType":"YulFunctionCall","src":"8249:32:25"},"nodeType":"YulIf","src":"8246:52:25"},{"nodeType":"YulVariableDeclaration","src":"8307:37:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8334:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8321:12:25"},"nodeType":"YulFunctionCall","src":"8321:23:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8311:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"8387:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8396:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8399:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8389:6:25"},"nodeType":"YulFunctionCall","src":"8389:12:25"},"nodeType":"YulExpressionStatement","src":"8389:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"8359:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"8367:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"8356:2:25"},"nodeType":"YulFunctionCall","src":"8356:30:25"},"nodeType":"YulIf","src":"8353:50:25"},{"nodeType":"YulAssignment","src":"8412:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8455:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"8466:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8451:3:25"},"nodeType":"YulFunctionCall","src":"8451:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8475:7:25"}],"functionName":{"name":"abi_decode_array_address_dyn","nodeType":"YulIdentifier","src":"8422:28:25"},"nodeType":"YulFunctionCall","src":"8422:61:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8412:6:25"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8202:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"8213:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"8225:6:25","type":""}],"src":"8141:348:25"},{"body":{"nodeType":"YulBlock","src":"8574:242:25","statements":[{"body":{"nodeType":"YulBlock","src":"8620:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8629:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8632:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8622:6:25"},"nodeType":"YulFunctionCall","src":"8622:12:25"},"nodeType":"YulExpressionStatement","src":"8622:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"8595:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"8604:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8591:3:25"},"nodeType":"YulFunctionCall","src":"8591:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"8616:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8587:3:25"},"nodeType":"YulFunctionCall","src":"8587:32:25"},"nodeType":"YulIf","src":"8584:52:25"},{"nodeType":"YulVariableDeclaration","src":"8645:37:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8672:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8659:12:25"},"nodeType":"YulFunctionCall","src":"8659:23:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8649:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"8725:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8734:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8737:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8727:6:25"},"nodeType":"YulFunctionCall","src":"8727:12:25"},"nodeType":"YulExpressionStatement","src":"8727:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"8697:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"8705:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"8694:2:25"},"nodeType":"YulFunctionCall","src":"8694:30:25"},"nodeType":"YulIf","src":"8691:50:25"},{"nodeType":"YulAssignment","src":"8750:60:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8782:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"8793:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8778:3:25"},"nodeType":"YulFunctionCall","src":"8778:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8802:7:25"}],"functionName":{"name":"abi_decode_string","nodeType":"YulIdentifier","src":"8760:17:25"},"nodeType":"YulFunctionCall","src":"8760:50:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8750:6:25"}]}]},"name":"abi_decode_tuple_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8540:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"8551:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"8563:6:25","type":""}],"src":"8494:322:25"},{"body":{"nodeType":"YulBlock","src":"8891:116:25","statements":[{"body":{"nodeType":"YulBlock","src":"8937:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8946:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8949:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8939:6:25"},"nodeType":"YulFunctionCall","src":"8939:12:25"},"nodeType":"YulExpressionStatement","src":"8939:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"8912:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"8921:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8908:3:25"},"nodeType":"YulFunctionCall","src":"8908:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"8933:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8904:3:25"},"nodeType":"YulFunctionCall","src":"8904:32:25"},"nodeType":"YulIf","src":"8901:52:25"},{"nodeType":"YulAssignment","src":"8962:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8991:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"8972:18:25"},"nodeType":"YulFunctionCall","src":"8972:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8962:6:25"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8857:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"8868:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"8880:6:25","type":""}],"src":"8821:186:25"},{"body":{"nodeType":"YulBlock","src":"9058:114:25","statements":[{"nodeType":"YulAssignment","src":"9068:29:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"9090:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"9077:12:25"},"nodeType":"YulFunctionCall","src":"9077:20:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"9068:5:25"}]},{"body":{"nodeType":"YulBlock","src":"9150:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9159:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9162:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9152:6:25"},"nodeType":"YulFunctionCall","src":"9152:12:25"},"nodeType":"YulExpressionStatement","src":"9152:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9119:5:25"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9140:5:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"9133:6:25"},"nodeType":"YulFunctionCall","src":"9133:13:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"9126:6:25"},"nodeType":"YulFunctionCall","src":"9126:21:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"9116:2:25"},"nodeType":"YulFunctionCall","src":"9116:32:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"9109:6:25"},"nodeType":"YulFunctionCall","src":"9109:40:25"},"nodeType":"YulIf","src":"9106:60:25"}]},"name":"abi_decode_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"9037:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"9048:5:25","type":""}],"src":"9012:160:25"},{"body":{"nodeType":"YulBlock","src":"9244:113:25","statements":[{"body":{"nodeType":"YulBlock","src":"9290:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9299:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9302:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9292:6:25"},"nodeType":"YulFunctionCall","src":"9292:12:25"},"nodeType":"YulExpressionStatement","src":"9292:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9265:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"9274:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9261:3:25"},"nodeType":"YulFunctionCall","src":"9261:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"9286:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9257:3:25"},"nodeType":"YulFunctionCall","src":"9257:32:25"},"nodeType":"YulIf","src":"9254:52:25"},{"nodeType":"YulAssignment","src":"9315:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9341:9:25"}],"functionName":{"name":"abi_decode_bool","nodeType":"YulIdentifier","src":"9325:15:25"},"nodeType":"YulFunctionCall","src":"9325:26:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"9315:6:25"}]}]},"name":"abi_decode_tuple_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9210:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9221:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9233:6:25","type":""}],"src":"9177:180:25"},{"body":{"nodeType":"YulBlock","src":"9446:170:25","statements":[{"body":{"nodeType":"YulBlock","src":"9492:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9501:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9504:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9494:6:25"},"nodeType":"YulFunctionCall","src":"9494:12:25"},"nodeType":"YulExpressionStatement","src":"9494:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9467:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"9476:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9463:3:25"},"nodeType":"YulFunctionCall","src":"9463:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"9488:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9459:3:25"},"nodeType":"YulFunctionCall","src":"9459:32:25"},"nodeType":"YulIf","src":"9456:52:25"},{"nodeType":"YulAssignment","src":"9517:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9546:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"9527:18:25"},"nodeType":"YulFunctionCall","src":"9527:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"9517:6:25"}]},{"nodeType":"YulAssignment","src":"9565:45:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9595:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9606:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9591:3:25"},"nodeType":"YulFunctionCall","src":"9591:18:25"}],"functionName":{"name":"abi_decode_bool","nodeType":"YulIdentifier","src":"9575:15:25"},"nodeType":"YulFunctionCall","src":"9575:35:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"9565:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9404:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9415:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9427:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9435:6:25","type":""}],"src":"9362:254:25"},{"body":{"nodeType":"YulBlock","src":"9852:1643:25","statements":[{"body":{"nodeType":"YulBlock","src":"9899:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9908:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9911:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9901:6:25"},"nodeType":"YulFunctionCall","src":"9901:12:25"},"nodeType":"YulExpressionStatement","src":"9901:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9873:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"9882:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9869:3:25"},"nodeType":"YulFunctionCall","src":"9869:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"9894:3:25","type":"","value":"128"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9865:3:25"},"nodeType":"YulFunctionCall","src":"9865:33:25"},"nodeType":"YulIf","src":"9862:53:25"},{"nodeType":"YulVariableDeclaration","src":"9924:37:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9951:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"9938:12:25"},"nodeType":"YulFunctionCall","src":"9938:23:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"9928:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9970:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"9980:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"9974:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"10025:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10034:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10037:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10027:6:25"},"nodeType":"YulFunctionCall","src":"10027:12:25"},"nodeType":"YulExpressionStatement","src":"10027:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"10013:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"10021:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"10010:2:25"},"nodeType":"YulFunctionCall","src":"10010:14:25"},"nodeType":"YulIf","src":"10007:34:25"},{"nodeType":"YulAssignment","src":"10050:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10093:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"10104:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10089:3:25"},"nodeType":"YulFunctionCall","src":"10089:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10113:7:25"}],"functionName":{"name":"abi_decode_array_address_dyn","nodeType":"YulIdentifier","src":"10060:28:25"},"nodeType":"YulFunctionCall","src":"10060:61:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"10050:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"10130:12:25","value":{"kind":"number","nodeType":"YulLiteral","src":"10140:2:25","type":"","value":"32"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"10134:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"10151:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10184:9:25"},{"name":"_2","nodeType":"YulIdentifier","src":"10195:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10180:3:25"},"nodeType":"YulFunctionCall","src":"10180:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10167:12:25"},"nodeType":"YulFunctionCall","src":"10167:32:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"10155:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"10228:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10237:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10240:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10230:6:25"},"nodeType":"YulFunctionCall","src":"10230:12:25"},"nodeType":"YulExpressionStatement","src":"10230:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"10214:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"10224:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"10211:2:25"},"nodeType":"YulFunctionCall","src":"10211:16:25"},"nodeType":"YulIf","src":"10208:36:25"},{"nodeType":"YulAssignment","src":"10253:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10296:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"10307:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10292:3:25"},"nodeType":"YulFunctionCall","src":"10292:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10318:7:25"}],"functionName":{"name":"abi_decode_array_uint256_dyn","nodeType":"YulIdentifier","src":"10263:28:25"},"nodeType":"YulFunctionCall","src":"10263:63:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"10253:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"10335:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10368:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10379:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10364:3:25"},"nodeType":"YulFunctionCall","src":"10364:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10351:12:25"},"nodeType":"YulFunctionCall","src":"10351:32:25"},"variables":[{"name":"offset_2","nodeType":"YulTypedName","src":"10339:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"10412:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10421:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10424:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10414:6:25"},"nodeType":"YulFunctionCall","src":"10414:12:25"},"nodeType":"YulExpressionStatement","src":"10414:12:25"}]},"condition":{"arguments":[{"name":"offset_2","nodeType":"YulIdentifier","src":"10398:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"10408:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"10395:2:25"},"nodeType":"YulFunctionCall","src":"10395:16:25"},"nodeType":"YulIf","src":"10392:36:25"},{"nodeType":"YulAssignment","src":"10437:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10480:9:25"},{"name":"offset_2","nodeType":"YulIdentifier","src":"10491:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10476:3:25"},"nodeType":"YulFunctionCall","src":"10476:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10502:7:25"}],"functionName":{"name":"abi_decode_array_uint256_dyn","nodeType":"YulIdentifier","src":"10447:28:25"},"nodeType":"YulFunctionCall","src":"10447:63:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"10437:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"10519:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10552:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10563:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10548:3:25"},"nodeType":"YulFunctionCall","src":"10548:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10535:12:25"},"nodeType":"YulFunctionCall","src":"10535:32:25"},"variables":[{"name":"offset_3","nodeType":"YulTypedName","src":"10523:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"10596:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10605:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10608:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10598:6:25"},"nodeType":"YulFunctionCall","src":"10598:12:25"},"nodeType":"YulExpressionStatement","src":"10598:12:25"}]},"condition":{"arguments":[{"name":"offset_3","nodeType":"YulIdentifier","src":"10582:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"10592:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"10579:2:25"},"nodeType":"YulFunctionCall","src":"10579:16:25"},"nodeType":"YulIf","src":"10576:36:25"},{"nodeType":"YulVariableDeclaration","src":"10621:34:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10635:9:25"},{"name":"offset_3","nodeType":"YulIdentifier","src":"10646:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10631:3:25"},"nodeType":"YulFunctionCall","src":"10631:24:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"10625:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"10703:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10712:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10715:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10705:6:25"},"nodeType":"YulFunctionCall","src":"10705:12:25"},"nodeType":"YulExpressionStatement","src":"10705:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10682:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"10686:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10678:3:25"},"nodeType":"YulFunctionCall","src":"10678:13:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10693:7:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"10674:3:25"},"nodeType":"YulFunctionCall","src":"10674:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10667:6:25"},"nodeType":"YulFunctionCall","src":"10667:35:25"},"nodeType":"YulIf","src":"10664:55:25"},{"nodeType":"YulVariableDeclaration","src":"10728:26:25","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10751:2:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10738:12:25"},"nodeType":"YulFunctionCall","src":"10738:16:25"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"10732:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"10763:53:25","value":{"arguments":[{"name":"_4","nodeType":"YulIdentifier","src":"10813:2:25"}],"functionName":{"name":"array_allocation_size_array_uint256_dyn","nodeType":"YulIdentifier","src":"10773:39:25"},"nodeType":"YulFunctionCall","src":"10773:43:25"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"10767:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"10825:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10845:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10839:5:25"},"nodeType":"YulFunctionCall","src":"10839:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"10829:6:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10877:6:25"},{"name":"_5","nodeType":"YulIdentifier","src":"10885:2:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"10857:19:25"},"nodeType":"YulFunctionCall","src":"10857:31:25"},"nodeType":"YulExpressionStatement","src":"10857:31:25"},{"nodeType":"YulVariableDeclaration","src":"10897:17:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"10908:6:25"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"10901:3:25","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10930:6:25"},{"name":"_4","nodeType":"YulIdentifier","src":"10938:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10923:6:25"},"nodeType":"YulFunctionCall","src":"10923:18:25"},"nodeType":"YulExpressionStatement","src":"10923:18:25"},{"nodeType":"YulAssignment","src":"10950:22:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10961:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"10969:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10957:3:25"},"nodeType":"YulFunctionCall","src":"10957:15:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"10950:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"10981:42:25","value":{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"11003:2:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11011:1:25","type":"","value":"5"},{"name":"_4","nodeType":"YulIdentifier","src":"11014:2:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"11007:3:25"},"nodeType":"YulFunctionCall","src":"11007:10:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10999:3:25"},"nodeType":"YulFunctionCall","src":"10999:19:25"},{"name":"_2","nodeType":"YulIdentifier","src":"11020:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10995:3:25"},"nodeType":"YulFunctionCall","src":"10995:28:25"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"10985:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"11055:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11064:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"11067:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"11057:6:25"},"nodeType":"YulFunctionCall","src":"11057:12:25"},"nodeType":"YulExpressionStatement","src":"11057:12:25"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"11038:6:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"11046:7:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"11035:2:25"},"nodeType":"YulFunctionCall","src":"11035:19:25"},"nodeType":"YulIf","src":"11032:39:25"},{"nodeType":"YulVariableDeclaration","src":"11080:22:25","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"11095:2:25"},{"name":"_2","nodeType":"YulIdentifier","src":"11099:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11091:3:25"},"nodeType":"YulFunctionCall","src":"11091:11:25"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"11084:3:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"11167:297:25","statements":[{"nodeType":"YulVariableDeclaration","src":"11181:36:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"11213:3:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11200:12:25"},"nodeType":"YulFunctionCall","src":"11200:17:25"},"variables":[{"name":"innerOffset","nodeType":"YulTypedName","src":"11185:11:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"11265:74:25","statements":[{"nodeType":"YulVariableDeclaration","src":"11283:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"11293:1:25","type":"","value":"0"},"variables":[{"name":"_6","nodeType":"YulTypedName","src":"11287:2:25","type":""}]},{"expression":{"arguments":[{"name":"_6","nodeType":"YulIdentifier","src":"11318:2:25"},{"name":"_6","nodeType":"YulIdentifier","src":"11322:2:25"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"11311:6:25"},"nodeType":"YulFunctionCall","src":"11311:14:25"},"nodeType":"YulExpressionStatement","src":"11311:14:25"}]},"condition":{"arguments":[{"name":"innerOffset","nodeType":"YulIdentifier","src":"11236:11:25"},{"name":"_1","nodeType":"YulIdentifier","src":"11249:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"11233:2:25"},"nodeType":"YulFunctionCall","src":"11233:19:25"},"nodeType":"YulIf","src":"11230:109:25"},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"11359:3:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"11390:2:25"},{"name":"innerOffset","nodeType":"YulIdentifier","src":"11394:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11386:3:25"},"nodeType":"YulFunctionCall","src":"11386:20:25"},{"name":"_2","nodeType":"YulIdentifier","src":"11408:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11382:3:25"},"nodeType":"YulFunctionCall","src":"11382:29:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"11413:7:25"}],"functionName":{"name":"abi_decode_string","nodeType":"YulIdentifier","src":"11364:17:25"},"nodeType":"YulFunctionCall","src":"11364:57:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11352:6:25"},"nodeType":"YulFunctionCall","src":"11352:70:25"},"nodeType":"YulExpressionStatement","src":"11352:70:25"},{"nodeType":"YulAssignment","src":"11435:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"11446:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"11451:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11442:3:25"},"nodeType":"YulFunctionCall","src":"11442:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"11435:3:25"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"11122:3:25"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"11127:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"11119:2:25"},"nodeType":"YulFunctionCall","src":"11119:15:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"11135:23:25","statements":[{"nodeType":"YulAssignment","src":"11137:19:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"11148:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"11153:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11144:3:25"},"nodeType":"YulFunctionCall","src":"11144:12:25"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"11137:3:25"}]}]},"pre":{"nodeType":"YulBlock","src":"11115:3:25","statements":[]},"src":"11111:353:25"},{"nodeType":"YulAssignment","src":"11473:16:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"11483:6:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"11473:6:25"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9794:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9805:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9817:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9825:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"9833:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"9841:6:25","type":""}],"src":"9621:1874:25"},{"body":{"nodeType":"YulBlock","src":"11587:173:25","statements":[{"body":{"nodeType":"YulBlock","src":"11633:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11642:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"11645:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"11635:6:25"},"nodeType":"YulFunctionCall","src":"11635:12:25"},"nodeType":"YulExpressionStatement","src":"11635:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"11608:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"11617:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11604:3:25"},"nodeType":"YulFunctionCall","src":"11604:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"11629:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"11600:3:25"},"nodeType":"YulFunctionCall","src":"11600:32:25"},"nodeType":"YulIf","src":"11597:52:25"},{"nodeType":"YulAssignment","src":"11658:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11687:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"11668:18:25"},"nodeType":"YulFunctionCall","src":"11668:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"11658:6:25"}]},{"nodeType":"YulAssignment","src":"11706:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11739:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11750:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11735:3:25"},"nodeType":"YulFunctionCall","src":"11735:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"11716:18:25"},"nodeType":"YulFunctionCall","src":"11716:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"11706:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11545:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"11556:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"11568:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"11576:6:25","type":""}],"src":"11500:260:25"},{"body":{"nodeType":"YulBlock","src":"11912:460:25","statements":[{"body":{"nodeType":"YulBlock","src":"11959:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11968:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"11971:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"11961:6:25"},"nodeType":"YulFunctionCall","src":"11961:12:25"},"nodeType":"YulExpressionStatement","src":"11961:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"11933:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"11942:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11929:3:25"},"nodeType":"YulFunctionCall","src":"11929:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"11954:3:25","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"11925:3:25"},"nodeType":"YulFunctionCall","src":"11925:33:25"},"nodeType":"YulIf","src":"11922:53:25"},{"nodeType":"YulAssignment","src":"11984:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12013:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"11994:18:25"},"nodeType":"YulFunctionCall","src":"11994:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"11984:6:25"}]},{"nodeType":"YulAssignment","src":"12032:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12065:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12076:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12061:3:25"},"nodeType":"YulFunctionCall","src":"12061:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"12042:18:25"},"nodeType":"YulFunctionCall","src":"12042:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"12032:6:25"}]},{"nodeType":"YulAssignment","src":"12089:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12116:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12127:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12112:3:25"},"nodeType":"YulFunctionCall","src":"12112:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"12099:12:25"},"nodeType":"YulFunctionCall","src":"12099:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"12089:6:25"}]},{"nodeType":"YulAssignment","src":"12140:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12167:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12178:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12163:3:25"},"nodeType":"YulFunctionCall","src":"12163:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"12150:12:25"},"nodeType":"YulFunctionCall","src":"12150:32:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"12140:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"12191:47:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12222:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12233:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12218:3:25"},"nodeType":"YulFunctionCall","src":"12218:19:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"12205:12:25"},"nodeType":"YulFunctionCall","src":"12205:33:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"12195:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"12281:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12290:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"12293:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"12283:6:25"},"nodeType":"YulFunctionCall","src":"12283:12:25"},"nodeType":"YulExpressionStatement","src":"12283:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"12253:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"12261:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"12250:2:25"},"nodeType":"YulFunctionCall","src":"12250:30:25"},"nodeType":"YulIf","src":"12247:50:25"},{"nodeType":"YulAssignment","src":"12306:60:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12338:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"12349:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12334:3:25"},"nodeType":"YulFunctionCall","src":"12334:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"12358:7:25"}],"functionName":{"name":"abi_decode_string","nodeType":"YulIdentifier","src":"12316:17:25"},"nodeType":"YulFunctionCall","src":"12316:50:25"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"12306:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11846:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"11857:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"11869:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"11877:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"11885:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"11893:6:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"11901:6:25","type":""}],"src":"11765:607:25"},{"body":{"nodeType":"YulBlock","src":"12551:232:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12568:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12579:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12561:6:25"},"nodeType":"YulFunctionCall","src":"12561:21:25"},"nodeType":"YulExpressionStatement","src":"12561:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12602:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12613:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12598:3:25"},"nodeType":"YulFunctionCall","src":"12598:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"12618:2:25","type":"","value":"42"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12591:6:25"},"nodeType":"YulFunctionCall","src":"12591:30:25"},"nodeType":"YulExpressionStatement","src":"12591:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12641:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12652:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12637:3:25"},"nodeType":"YulFunctionCall","src":"12637:18:25"},{"hexValue":"455243313135353a2061646472657373207a65726f206973206e6f7420612076","kind":"string","nodeType":"YulLiteral","src":"12657:34:25","type":"","value":"ERC1155: address zero is not a v"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12630:6:25"},"nodeType":"YulFunctionCall","src":"12630:62:25"},"nodeType":"YulExpressionStatement","src":"12630:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12712:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12723:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12708:3:25"},"nodeType":"YulFunctionCall","src":"12708:18:25"},{"hexValue":"616c6964206f776e6572","kind":"string","nodeType":"YulLiteral","src":"12728:12:25","type":"","value":"alid owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12701:6:25"},"nodeType":"YulFunctionCall","src":"12701:40:25"},"nodeType":"YulExpressionStatement","src":"12701:40:25"},{"nodeType":"YulAssignment","src":"12750:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12762:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12773:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12758:3:25"},"nodeType":"YulFunctionCall","src":"12758:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12750:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12528:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12542:4:25","type":""}],"src":"12377:406:25"},{"body":{"nodeType":"YulBlock","src":"12843:325:25","statements":[{"nodeType":"YulAssignment","src":"12853:22:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12867:1:25","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"12870:4:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"12863:3:25"},"nodeType":"YulFunctionCall","src":"12863:12:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"12853:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"12884:38:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"12914:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"12920:1:25","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12910:3:25"},"nodeType":"YulFunctionCall","src":"12910:12:25"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"12888:18:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"12961:31:25","statements":[{"nodeType":"YulAssignment","src":"12963:27:25","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"12977:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"12985:4:25","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12973:3:25"},"nodeType":"YulFunctionCall","src":"12973:17:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"12963:6:25"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"12941:18:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"12934:6:25"},"nodeType":"YulFunctionCall","src":"12934:26:25"},"nodeType":"YulIf","src":"12931:61:25"},{"body":{"nodeType":"YulBlock","src":"13051:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13072:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13079:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"13084:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"13075:3:25"},"nodeType":"YulFunctionCall","src":"13075:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13065:6:25"},"nodeType":"YulFunctionCall","src":"13065:31:25"},"nodeType":"YulExpressionStatement","src":"13065:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13116:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"13119:4:25","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13109:6:25"},"nodeType":"YulFunctionCall","src":"13109:15:25"},"nodeType":"YulExpressionStatement","src":"13109:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13144:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13147:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"13137:6:25"},"nodeType":"YulFunctionCall","src":"13137:15:25"},"nodeType":"YulExpressionStatement","src":"13137:15:25"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"13007:18:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"13030:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"13038:2:25","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"13027:2:25"},"nodeType":"YulFunctionCall","src":"13027:14:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"13004:2:25"},"nodeType":"YulFunctionCall","src":"13004:38:25"},"nodeType":"YulIf","src":"13001:161:25"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"12823:4:25","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"12832:6:25","type":""}],"src":"12788:380:25"},{"body":{"nodeType":"YulBlock","src":"13229:65:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13246:1:25","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"13249:3:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13239:6:25"},"nodeType":"YulFunctionCall","src":"13239:14:25"},"nodeType":"YulExpressionStatement","src":"13239:14:25"},{"nodeType":"YulAssignment","src":"13262:26:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13280:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13283:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"13270:9:25"},"nodeType":"YulFunctionCall","src":"13270:18:25"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"13262:4:25"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"13212:3:25","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"13220:4:25","type":""}],"src":"13173:121:25"},{"body":{"nodeType":"YulBlock","src":"13483:836:25","statements":[{"nodeType":"YulVariableDeclaration","src":"13493:12:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13504:1:25","type":"","value":"0"},"variables":[{"name":"ret","nodeType":"YulTypedName","src":"13497:3:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13514:30:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"13537:6:25"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"13531:5:25"},"nodeType":"YulFunctionCall","src":"13531:13:25"},"variables":[{"name":"slotValue","nodeType":"YulTypedName","src":"13518:9:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13553:50:25","value":{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"13593:9:25"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"13567:25:25"},"nodeType":"YulFunctionCall","src":"13567:36:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"13557:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13612:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13622:1:25","type":"","value":"1"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"13616:2:25","type":""}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"13673:126:25","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13694:3:25"},{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"13703:9:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13718:3:25","type":"","value":"255"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"13714:3:25"},"nodeType":"YulFunctionCall","src":"13714:8:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13699:3:25"},"nodeType":"YulFunctionCall","src":"13699:24:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13687:6:25"},"nodeType":"YulFunctionCall","src":"13687:37:25"},"nodeType":"YulExpressionStatement","src":"13687:37:25"},{"nodeType":"YulAssignment","src":"13737:52:25","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13748:3:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"13757:6:25"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"13779:6:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"13772:6:25"},"nodeType":"YulFunctionCall","src":"13772:14:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"13765:6:25"},"nodeType":"YulFunctionCall","src":"13765:22:25"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"13753:3:25"},"nodeType":"YulFunctionCall","src":"13753:35:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13744:3:25"},"nodeType":"YulFunctionCall","src":"13744:45:25"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"13737:3:25"}]}]},"nodeType":"YulCase","src":"13666:133:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13671:1:25","type":"","value":"0"}},{"body":{"nodeType":"YulBlock","src":"13815:349:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13836:1:25","type":"","value":"0"},{"name":"value0","nodeType":"YulIdentifier","src":"13839:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13829:6:25"},"nodeType":"YulFunctionCall","src":"13829:17:25"},"nodeType":"YulExpressionStatement","src":"13829:17:25"},{"nodeType":"YulVariableDeclaration","src":"13859:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13869:4:25","type":"","value":"0x20"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"13863:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13886:31:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13911:1:25","type":"","value":"0"},{"name":"_2","nodeType":"YulIdentifier","src":"13914:2:25"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"13901:9:25"},"nodeType":"YulFunctionCall","src":"13901:16:25"},"variables":[{"name":"dataPos","nodeType":"YulTypedName","src":"13890:7:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13930:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13939:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"13934:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"14007:111:25","statements":[{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14036:3:25"},{"name":"i","nodeType":"YulIdentifier","src":"14041:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14032:3:25"},"nodeType":"YulFunctionCall","src":"14032:11:25"},{"arguments":[{"name":"dataPos","nodeType":"YulIdentifier","src":"14051:7:25"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"14045:5:25"},"nodeType":"YulFunctionCall","src":"14045:14:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14025:6:25"},"nodeType":"YulFunctionCall","src":"14025:35:25"},"nodeType":"YulExpressionStatement","src":"14025:35:25"},{"nodeType":"YulAssignment","src":"14077:27:25","value":{"arguments":[{"name":"dataPos","nodeType":"YulIdentifier","src":"14092:7:25"},{"name":"_1","nodeType":"YulIdentifier","src":"14101:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14088:3:25"},"nodeType":"YulFunctionCall","src":"14088:16:25"},"variableNames":[{"name":"dataPos","nodeType":"YulIdentifier","src":"14077:7:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"13964:1:25"},{"name":"length","nodeType":"YulIdentifier","src":"13967:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"13961:2:25"},"nodeType":"YulFunctionCall","src":"13961:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"13975:19:25","statements":[{"nodeType":"YulAssignment","src":"13977:15:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"13986:1:25"},{"name":"_2","nodeType":"YulIdentifier","src":"13989:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13982:3:25"},"nodeType":"YulFunctionCall","src":"13982:10:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"13977:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"13957:3:25","statements":[]},"src":"13953:165:25"},{"nodeType":"YulAssignment","src":"14131:23:25","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14142:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"14147:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14138:3:25"},"nodeType":"YulFunctionCall","src":"14138:16:25"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"14131:3:25"}]}]},"nodeType":"YulCase","src":"13808:356:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13813:1:25","type":"","value":"1"}}],"expression":{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"13643:9:25"},{"name":"_1","nodeType":"YulIdentifier","src":"13654:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13639:3:25"},"nodeType":"YulFunctionCall","src":"13639:18:25"},"nodeType":"YulSwitch","src":"13632:532:25"},{"nodeType":"YulVariableDeclaration","src":"14173:29:25","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"14195:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14189:5:25"},"nodeType":"YulFunctionCall","src":"14189:13:25"},"variables":[{"name":"length_1","nodeType":"YulTypedName","src":"14177:8:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"14250:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"14258:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14246:3:25"},"nodeType":"YulFunctionCall","src":"14246:17:25"},{"name":"ret","nodeType":"YulIdentifier","src":"14265:3:25"},{"name":"length_1","nodeType":"YulIdentifier","src":"14270:8:25"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"14211:34:25"},"nodeType":"YulFunctionCall","src":"14211:68:25"},"nodeType":"YulExpressionStatement","src":"14211:68:25"},{"nodeType":"YulAssignment","src":"14288:25:25","value":{"arguments":[{"name":"ret","nodeType":"YulIdentifier","src":"14299:3:25"},{"name":"length_1","nodeType":"YulIdentifier","src":"14304:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14295:3:25"},"nodeType":"YulFunctionCall","src":"14295:18:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"14288:3:25"}]}]},"name":"abi_encode_tuple_packed_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"13451:3:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"13456:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"13464:6:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"13475:3:25","type":""}],"src":"13299:1020:25"},{"body":{"nodeType":"YulBlock","src":"14498:170:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14515:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14526:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14508:6:25"},"nodeType":"YulFunctionCall","src":"14508:21:25"},"nodeType":"YulExpressionStatement","src":"14508:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14549:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14560:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14545:3:25"},"nodeType":"YulFunctionCall","src":"14545:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"14565:2:25","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14538:6:25"},"nodeType":"YulFunctionCall","src":"14538:30:25"},"nodeType":"YulExpressionStatement","src":"14538:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14588:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14599:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14584:3:25"},"nodeType":"YulFunctionCall","src":"14584:18:25"},{"hexValue":"546f6b656e20646f6573206e6f74206578697374","kind":"string","nodeType":"YulLiteral","src":"14604:22:25","type":"","value":"Token does not exist"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14577:6:25"},"nodeType":"YulFunctionCall","src":"14577:50:25"},"nodeType":"YulExpressionStatement","src":"14577:50:25"},{"nodeType":"YulAssignment","src":"14636:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14648:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14659:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14644:3:25"},"nodeType":"YulFunctionCall","src":"14644:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14636:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_547be7f5ed2d17cca91d35e8212265e350385ed13daeee07722cf3e686dd6726__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14475:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14489:4:25","type":""}],"src":"14324:344:25"},{"body":{"nodeType":"YulBlock","src":"14754:464:25","statements":[{"body":{"nodeType":"YulBlock","src":"14787:425:25","statements":[{"nodeType":"YulVariableDeclaration","src":"14801:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"14811:1:25","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"14805:2:25","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"14832:2:25"},{"name":"array","nodeType":"YulIdentifier","src":"14836:5:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14825:6:25"},"nodeType":"YulFunctionCall","src":"14825:17:25"},"nodeType":"YulExpressionStatement","src":"14825:17:25"},{"nodeType":"YulVariableDeclaration","src":"14855:31:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"14877:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"14881:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"14867:9:25"},"nodeType":"YulFunctionCall","src":"14867:19:25"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"14859:4:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"14899:57:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"14922:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14932:1:25","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"14939:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"14951:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14935:3:25"},"nodeType":"YulFunctionCall","src":"14935:19:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"14928:3:25"},"nodeType":"YulFunctionCall","src":"14928:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14918:3:25"},"nodeType":"YulFunctionCall","src":"14918:38:25"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"14903:11:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"14993:23:25","statements":[{"nodeType":"YulAssignment","src":"14995:19:25","value":{"name":"data","nodeType":"YulIdentifier","src":"15010:4:25"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"14995:11:25"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"14975:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"14987:4:25","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"14972:2:25"},"nodeType":"YulFunctionCall","src":"14972:20:25"},"nodeType":"YulIf","src":"14969:47:25"},{"nodeType":"YulVariableDeclaration","src":"15029:41:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"15043:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"15053:1:25","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"15060:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"15065:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15056:3:25"},"nodeType":"YulFunctionCall","src":"15056:12:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"15049:3:25"},"nodeType":"YulFunctionCall","src":"15049:20:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15039:3:25"},"nodeType":"YulFunctionCall","src":"15039:31:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"15033:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"15083:24:25","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"15096:11:25"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"15087:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"15181:21:25","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"15190:5:25"},{"name":"_1","nodeType":"YulIdentifier","src":"15197:2:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"15183:6:25"},"nodeType":"YulFunctionCall","src":"15183:17:25"},"nodeType":"YulExpressionStatement","src":"15183:17:25"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"15131:5:25"},{"name":"_2","nodeType":"YulIdentifier","src":"15138:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"15128:2:25"},"nodeType":"YulFunctionCall","src":"15128:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"15142:26:25","statements":[{"nodeType":"YulAssignment","src":"15144:22:25","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"15157:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"15164:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15153:3:25"},"nodeType":"YulFunctionCall","src":"15153:13:25"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"15144:5:25"}]}]},"pre":{"nodeType":"YulBlock","src":"15124:3:25","statements":[]},"src":"15120:82:25"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"14770:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"14775:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"14767:2:25"},"nodeType":"YulFunctionCall","src":"14767:11:25"},"nodeType":"YulIf","src":"14764:448:25"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"14726:5:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"14733:3:25","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"14738:10:25","type":""}],"src":"14673:545:25"},{"body":{"nodeType":"YulBlock","src":"15308:81:25","statements":[{"nodeType":"YulAssignment","src":"15318:65:25","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"15333:4:25"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"15351:1:25","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"15354:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"15347:3:25"},"nodeType":"YulFunctionCall","src":"15347:11:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"15364:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"15360:3:25"},"nodeType":"YulFunctionCall","src":"15360:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"15343:3:25"},"nodeType":"YulFunctionCall","src":"15343:24:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"15339:3:25"},"nodeType":"YulFunctionCall","src":"15339:29:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"15329:3:25"},"nodeType":"YulFunctionCall","src":"15329:40:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"15375:1:25","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"15378:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"15371:3:25"},"nodeType":"YulFunctionCall","src":"15371:11:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"15326:2:25"},"nodeType":"YulFunctionCall","src":"15326:57:25"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"15318:4:25"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"15285:4:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"15291:3:25","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"15299:4:25","type":""}],"src":"15223:166:25"},{"body":{"nodeType":"YulBlock","src":"15490:1256:25","statements":[{"nodeType":"YulVariableDeclaration","src":"15500:24:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"15520:3:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"15514:5:25"},"nodeType":"YulFunctionCall","src":"15514:10:25"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"15504:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"15567:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"15569:16:25"},"nodeType":"YulFunctionCall","src":"15569:18:25"},"nodeType":"YulExpressionStatement","src":"15569:18:25"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"15539:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"15547:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"15536:2:25"},"nodeType":"YulFunctionCall","src":"15536:30:25"},"nodeType":"YulIf","src":"15533:56:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"15642:4:25"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"15680:4:25"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"15674:5:25"},"nodeType":"YulFunctionCall","src":"15674:11:25"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"15648:25:25"},"nodeType":"YulFunctionCall","src":"15648:38:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"15688:6:25"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"15598:43:25"},"nodeType":"YulFunctionCall","src":"15598:97:25"},"nodeType":"YulExpressionStatement","src":"15598:97:25"},{"nodeType":"YulVariableDeclaration","src":"15704:18:25","value":{"kind":"number","nodeType":"YulLiteral","src":"15721:1:25","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"15708:9:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"15731:23:25","value":{"kind":"number","nodeType":"YulLiteral","src":"15750:4:25","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"15735:11:25","type":""}]},{"nodeType":"YulAssignment","src":"15763:24:25","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"15776:11:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"15763:9:25"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"15833:656:25","statements":[{"nodeType":"YulVariableDeclaration","src":"15847:35:25","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"15866:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"15878:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"15874:3:25"},"nodeType":"YulFunctionCall","src":"15874:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"15862:3:25"},"nodeType":"YulFunctionCall","src":"15862:20:25"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"15851:7:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"15895:49:25","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"15939:4:25"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"15909:29:25"},"nodeType":"YulFunctionCall","src":"15909:35:25"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"15899:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"15957:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"15966:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"15961:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"16044:172:25","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"16069:6:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"16087:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"16092:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16083:3:25"},"nodeType":"YulFunctionCall","src":"16083:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16077:5:25"},"nodeType":"YulFunctionCall","src":"16077:26:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"16062:6:25"},"nodeType":"YulFunctionCall","src":"16062:42:25"},"nodeType":"YulExpressionStatement","src":"16062:42:25"},{"nodeType":"YulAssignment","src":"16121:24:25","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"16135:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"16143:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16131:3:25"},"nodeType":"YulFunctionCall","src":"16131:14:25"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"16121:6:25"}]},{"nodeType":"YulAssignment","src":"16162:40:25","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"16179:9:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"16190:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16175:3:25"},"nodeType":"YulFunctionCall","src":"16175:27:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"16162:9:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"15991:1:25"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"15994:7:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"15988:2:25"},"nodeType":"YulFunctionCall","src":"15988:14:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"16003:28:25","statements":[{"nodeType":"YulAssignment","src":"16005:24:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"16014:1:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"16017:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16010:3:25"},"nodeType":"YulFunctionCall","src":"16010:19:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"16005:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"15984:3:25","statements":[]},"src":"15980:236:25"},{"body":{"nodeType":"YulBlock","src":"16264:166:25","statements":[{"nodeType":"YulVariableDeclaration","src":"16282:43:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"16309:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"16314:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16305:3:25"},"nodeType":"YulFunctionCall","src":"16305:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16299:5:25"},"nodeType":"YulFunctionCall","src":"16299:26:25"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"16286:9:25","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"16349:6:25"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"16361:9:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16388:1:25","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"16391:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"16384:3:25"},"nodeType":"YulFunctionCall","src":"16384:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"16400:3:25","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"16380:3:25"},"nodeType":"YulFunctionCall","src":"16380:24:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16410:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"16406:3:25"},"nodeType":"YulFunctionCall","src":"16406:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"16376:3:25"},"nodeType":"YulFunctionCall","src":"16376:37:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"16372:3:25"},"nodeType":"YulFunctionCall","src":"16372:42:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"16357:3:25"},"nodeType":"YulFunctionCall","src":"16357:58:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"16342:6:25"},"nodeType":"YulFunctionCall","src":"16342:74:25"},"nodeType":"YulExpressionStatement","src":"16342:74:25"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"16235:7:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"16244:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"16232:2:25"},"nodeType":"YulFunctionCall","src":"16232:19:25"},"nodeType":"YulIf","src":"16229:201:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"16450:4:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16464:1:25","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"16467:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"16460:3:25"},"nodeType":"YulFunctionCall","src":"16460:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"16476:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16456:3:25"},"nodeType":"YulFunctionCall","src":"16456:22:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"16443:6:25"},"nodeType":"YulFunctionCall","src":"16443:36:25"},"nodeType":"YulExpressionStatement","src":"16443:36:25"}]},"nodeType":"YulCase","src":"15826:663:25","value":{"kind":"number","nodeType":"YulLiteral","src":"15831:1:25","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"16506:234:25","statements":[{"nodeType":"YulVariableDeclaration","src":"16520:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"16533:1:25","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"16524:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"16569:67:25","statements":[{"nodeType":"YulAssignment","src":"16587:35:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"16606:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"16611:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16602:3:25"},"nodeType":"YulFunctionCall","src":"16602:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16596:5:25"},"nodeType":"YulFunctionCall","src":"16596:26:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"16587:5:25"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"16550:6:25"},"nodeType":"YulIf","src":"16547:89:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"16656:4:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"16715:5:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"16722:6:25"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"16662:52:25"},"nodeType":"YulFunctionCall","src":"16662:67:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"16649:6:25"},"nodeType":"YulFunctionCall","src":"16649:81:25"},"nodeType":"YulExpressionStatement","src":"16649:81:25"}]},"nodeType":"YulCase","src":"16498:242:25","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"15806:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"15814:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"15803:2:25"},"nodeType":"YulFunctionCall","src":"15803:14:25"},"nodeType":"YulSwitch","src":"15796:944:25"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"15475:4:25","type":""},{"name":"src","nodeType":"YulTypedName","src":"15481:3:25","type":""}],"src":"15394:1352:25"},{"body":{"nodeType":"YulBlock","src":"16783:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16800:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16807:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"16812:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"16803:3:25"},"nodeType":"YulFunctionCall","src":"16803:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16793:6:25"},"nodeType":"YulFunctionCall","src":"16793:31:25"},"nodeType":"YulExpressionStatement","src":"16793:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16840:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"16843:4:25","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16833:6:25"},"nodeType":"YulFunctionCall","src":"16833:15:25"},"nodeType":"YulExpressionStatement","src":"16833:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16864:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"16867:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"16857:6:25"},"nodeType":"YulFunctionCall","src":"16857:15:25"},"nodeType":"YulExpressionStatement","src":"16857:15:25"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"16751:127:25"},{"body":{"nodeType":"YulBlock","src":"16935:116:25","statements":[{"nodeType":"YulAssignment","src":"16945:20:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"16960:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"16963:1:25"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"16956:3:25"},"nodeType":"YulFunctionCall","src":"16956:9:25"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"16945:7:25"}]},{"body":{"nodeType":"YulBlock","src":"17023:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"17025:16:25"},"nodeType":"YulFunctionCall","src":"17025:18:25"},"nodeType":"YulExpressionStatement","src":"17025:18:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"16994:1:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"16987:6:25"},"nodeType":"YulFunctionCall","src":"16987:9:25"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"17001:1:25"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"17008:7:25"},{"name":"x","nodeType":"YulIdentifier","src":"17017:1:25"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"17004:3:25"},"nodeType":"YulFunctionCall","src":"17004:15:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"16998:2:25"},"nodeType":"YulFunctionCall","src":"16998:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"16984:2:25"},"nodeType":"YulFunctionCall","src":"16984:37:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"16977:6:25"},"nodeType":"YulFunctionCall","src":"16977:45:25"},"nodeType":"YulIf","src":"16974:71:25"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"16914:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"16917:1:25","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"16923:7:25","type":""}],"src":"16883:168:25"},{"body":{"nodeType":"YulBlock","src":"17088:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17105:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17112:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"17117:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"17108:3:25"},"nodeType":"YulFunctionCall","src":"17108:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17098:6:25"},"nodeType":"YulFunctionCall","src":"17098:31:25"},"nodeType":"YulExpressionStatement","src":"17098:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17145:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"17148:4:25","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17138:6:25"},"nodeType":"YulFunctionCall","src":"17138:15:25"},"nodeType":"YulExpressionStatement","src":"17138:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17169:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"17172:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"17162:6:25"},"nodeType":"YulFunctionCall","src":"17162:15:25"},"nodeType":"YulExpressionStatement","src":"17162:15:25"}]},"name":"panic_error_0x12","nodeType":"YulFunctionDefinition","src":"17056:127:25"},{"body":{"nodeType":"YulBlock","src":"17234:74:25","statements":[{"body":{"nodeType":"YulBlock","src":"17257:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nodeType":"YulIdentifier","src":"17259:16:25"},"nodeType":"YulFunctionCall","src":"17259:18:25"},"nodeType":"YulExpressionStatement","src":"17259:18:25"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"17254:1:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"17247:6:25"},"nodeType":"YulFunctionCall","src":"17247:9:25"},"nodeType":"YulIf","src":"17244:35:25"},{"nodeType":"YulAssignment","src":"17288:14:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"17297:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"17300:1:25"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"17293:3:25"},"nodeType":"YulFunctionCall","src":"17293:9:25"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"17288:1:25"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"17219:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"17222:1:25","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"17228:1:25","type":""}],"src":"17188:120:25"},{"body":{"nodeType":"YulBlock","src":"17487:236:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17504:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17515:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17497:6:25"},"nodeType":"YulFunctionCall","src":"17497:21:25"},"nodeType":"YulExpressionStatement","src":"17497:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17538:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17549:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17534:3:25"},"nodeType":"YulFunctionCall","src":"17534:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"17554:2:25","type":"","value":"46"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17527:6:25"},"nodeType":"YulFunctionCall","src":"17527:30:25"},"nodeType":"YulExpressionStatement","src":"17527:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17577:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17588:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17573:3:25"},"nodeType":"YulFunctionCall","src":"17573:18:25"},{"hexValue":"455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e","kind":"string","nodeType":"YulLiteral","src":"17593:34:25","type":"","value":"ERC1155: caller is not token own"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17566:6:25"},"nodeType":"YulFunctionCall","src":"17566:62:25"},"nodeType":"YulExpressionStatement","src":"17566:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17648:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17659:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17644:3:25"},"nodeType":"YulFunctionCall","src":"17644:18:25"},{"hexValue":"6572206f7220617070726f766564","kind":"string","nodeType":"YulLiteral","src":"17664:16:25","type":"","value":"er or approved"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17637:6:25"},"nodeType":"YulFunctionCall","src":"17637:44:25"},"nodeType":"YulExpressionStatement","src":"17637:44:25"},{"nodeType":"YulAssignment","src":"17690:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17702:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17713:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17698:3:25"},"nodeType":"YulFunctionCall","src":"17698:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17690:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17464:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17478:4:25","type":""}],"src":"17313:410:25"},{"body":{"nodeType":"YulBlock","src":"17902:172:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17919:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17930:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17912:6:25"},"nodeType":"YulFunctionCall","src":"17912:21:25"},"nodeType":"YulExpressionStatement","src":"17912:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17953:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17964:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17949:3:25"},"nodeType":"YulFunctionCall","src":"17949:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"17969:2:25","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17942:6:25"},"nodeType":"YulFunctionCall","src":"17942:30:25"},"nodeType":"YulExpressionStatement","src":"17942:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17992:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18003:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17988:3:25"},"nodeType":"YulFunctionCall","src":"17988:18:25"},{"hexValue":"4e6f2062616c616e636520746f207769746864726177","kind":"string","nodeType":"YulLiteral","src":"18008:24:25","type":"","value":"No balance to withdraw"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17981:6:25"},"nodeType":"YulFunctionCall","src":"17981:52:25"},"nodeType":"YulExpressionStatement","src":"17981:52:25"},{"nodeType":"YulAssignment","src":"18042:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18054:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18065:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18050:3:25"},"nodeType":"YulFunctionCall","src":"18050:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18042:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17879:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17893:4:25","type":""}],"src":"17728:346:25"},{"body":{"nodeType":"YulBlock","src":"18270:14:25","statements":[{"nodeType":"YulAssignment","src":"18272:10:25","value":{"name":"pos","nodeType":"YulIdentifier","src":"18279:3:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"18272:3:25"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"18254:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"18262:3:25","type":""}],"src":"18079:205:25"},{"body":{"nodeType":"YulBlock","src":"18463:167:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18480:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18491:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18473:6:25"},"nodeType":"YulFunctionCall","src":"18473:21:25"},"nodeType":"YulExpressionStatement","src":"18473:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18514:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18525:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18510:3:25"},"nodeType":"YulFunctionCall","src":"18510:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"18530:2:25","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18503:6:25"},"nodeType":"YulFunctionCall","src":"18503:30:25"},"nodeType":"YulExpressionStatement","src":"18503:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18553:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18564:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18549:3:25"},"nodeType":"YulFunctionCall","src":"18549:18:25"},{"hexValue":"5769746864726177616c206661696c6564","kind":"string","nodeType":"YulLiteral","src":"18569:19:25","type":"","value":"Withdrawal failed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18542:6:25"},"nodeType":"YulFunctionCall","src":"18542:47:25"},"nodeType":"YulExpressionStatement","src":"18542:47:25"},{"nodeType":"YulAssignment","src":"18598:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18610:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18621:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18606:3:25"},"nodeType":"YulFunctionCall","src":"18606:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18598:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18440:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18454:4:25","type":""}],"src":"18289:341:25"},{"body":{"nodeType":"YulBlock","src":"18809:231:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18826:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18837:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18819:6:25"},"nodeType":"YulFunctionCall","src":"18819:21:25"},"nodeType":"YulExpressionStatement","src":"18819:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18860:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18871:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18856:3:25"},"nodeType":"YulFunctionCall","src":"18856:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"18876:2:25","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18849:6:25"},"nodeType":"YulFunctionCall","src":"18849:30:25"},"nodeType":"YulExpressionStatement","src":"18849:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18899:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18910:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18895:3:25"},"nodeType":"YulFunctionCall","src":"18895:18:25"},{"hexValue":"455243313135353a206163636f756e747320616e6420696473206c656e677468","kind":"string","nodeType":"YulLiteral","src":"18915:34:25","type":"","value":"ERC1155: accounts and ids length"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18888:6:25"},"nodeType":"YulFunctionCall","src":"18888:62:25"},"nodeType":"YulExpressionStatement","src":"18888:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18970:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18981:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18966:3:25"},"nodeType":"YulFunctionCall","src":"18966:18:25"},{"hexValue":"206d69736d61746368","kind":"string","nodeType":"YulLiteral","src":"18986:11:25","type":"","value":" mismatch"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18959:6:25"},"nodeType":"YulFunctionCall","src":"18959:39:25"},"nodeType":"YulExpressionStatement","src":"18959:39:25"},{"nodeType":"YulAssignment","src":"19007:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19019:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19030:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19015:3:25"},"nodeType":"YulFunctionCall","src":"19015:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19007:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18786:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18800:4:25","type":""}],"src":"18635:405:25"},{"body":{"nodeType":"YulBlock","src":"19077:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19094:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19101:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"19106:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"19097:3:25"},"nodeType":"YulFunctionCall","src":"19097:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19087:6:25"},"nodeType":"YulFunctionCall","src":"19087:31:25"},"nodeType":"YulExpressionStatement","src":"19087:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19134:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"19137:4:25","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19127:6:25"},"nodeType":"YulFunctionCall","src":"19127:15:25"},"nodeType":"YulExpressionStatement","src":"19127:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19158:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"19161:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"19151:6:25"},"nodeType":"YulFunctionCall","src":"19151:15:25"},"nodeType":"YulExpressionStatement","src":"19151:15:25"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"19045:127:25"},{"body":{"nodeType":"YulBlock","src":"19224:88:25","statements":[{"body":{"nodeType":"YulBlock","src":"19255:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"19257:16:25"},"nodeType":"YulFunctionCall","src":"19257:18:25"},"nodeType":"YulExpressionStatement","src":"19257:18:25"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19240:5:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19251:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"19247:3:25"},"nodeType":"YulFunctionCall","src":"19247:6:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"19237:2:25"},"nodeType":"YulFunctionCall","src":"19237:17:25"},"nodeType":"YulIf","src":"19234:43:25"},{"nodeType":"YulAssignment","src":"19286:20:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19297:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"19304:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19293:3:25"},"nodeType":"YulFunctionCall","src":"19293:13:25"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"19286:3:25"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"19206:5:25","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"19216:3:25","type":""}],"src":"19177:135:25"},{"body":{"nodeType":"YulBlock","src":"19491:169:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19508:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19519:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19501:6:25"},"nodeType":"YulFunctionCall","src":"19501:21:25"},"nodeType":"YulExpressionStatement","src":"19501:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19542:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19553:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19538:3:25"},"nodeType":"YulFunctionCall","src":"19538:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"19558:2:25","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19531:6:25"},"nodeType":"YulFunctionCall","src":"19531:30:25"},"nodeType":"YulExpressionStatement","src":"19531:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19581:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19592:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19577:3:25"},"nodeType":"YulFunctionCall","src":"19577:18:25"},{"hexValue":"4d696e74696e67206e6f7420616c6c6f776564","kind":"string","nodeType":"YulLiteral","src":"19597:21:25","type":"","value":"Minting not allowed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19570:6:25"},"nodeType":"YulFunctionCall","src":"19570:49:25"},"nodeType":"YulExpressionStatement","src":"19570:49:25"},{"nodeType":"YulAssignment","src":"19628:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19640:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19651:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19636:3:25"},"nodeType":"YulFunctionCall","src":"19636:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19628:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19468:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19482:4:25","type":""}],"src":"19317:343:25"},{"body":{"nodeType":"YulBlock","src":"19839:179:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19856:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19867:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19849:6:25"},"nodeType":"YulFunctionCall","src":"19849:21:25"},"nodeType":"YulExpressionStatement","src":"19849:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19890:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19901:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19886:3:25"},"nodeType":"YulFunctionCall","src":"19886:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"19906:2:25","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19879:6:25"},"nodeType":"YulFunctionCall","src":"19879:30:25"},"nodeType":"YulExpressionStatement","src":"19879:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19929:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19940:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19925:3:25"},"nodeType":"YulFunctionCall","src":"19925:18:25"},{"hexValue":"416d6f756e74206d7573742062652067726561746572207468616e2030","kind":"string","nodeType":"YulLiteral","src":"19945:31:25","type":"","value":"Amount must be greater than 0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19918:6:25"},"nodeType":"YulFunctionCall","src":"19918:59:25"},"nodeType":"YulExpressionStatement","src":"19918:59:25"},{"nodeType":"YulAssignment","src":"19986:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19998:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20009:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19994:3:25"},"nodeType":"YulFunctionCall","src":"19994:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19986:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19816:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19830:4:25","type":""}],"src":"19665:353:25"},{"body":{"nodeType":"YulBlock","src":"20197:170:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20214:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20225:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20207:6:25"},"nodeType":"YulFunctionCall","src":"20207:21:25"},"nodeType":"YulExpressionStatement","src":"20207:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20248:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20259:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20244:3:25"},"nodeType":"YulFunctionCall","src":"20244:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"20264:2:25","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20237:6:25"},"nodeType":"YulFunctionCall","src":"20237:30:25"},"nodeType":"YulExpressionStatement","src":"20237:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20287:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20298:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20283:3:25"},"nodeType":"YulFunctionCall","src":"20283:18:25"},{"hexValue":"496e73756666696369656e74207061796d656e74","kind":"string","nodeType":"YulLiteral","src":"20303:22:25","type":"","value":"Insufficient payment"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20276:6:25"},"nodeType":"YulFunctionCall","src":"20276:50:25"},"nodeType":"YulExpressionStatement","src":"20276:50:25"},{"nodeType":"YulAssignment","src":"20335:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20347:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20358:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20343:3:25"},"nodeType":"YulFunctionCall","src":"20343:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20335:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20174:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20188:4:25","type":""}],"src":"20023:344:25"},{"body":{"nodeType":"YulBlock","src":"20420:77:25","statements":[{"nodeType":"YulAssignment","src":"20430:16:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"20441:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"20444:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20437:3:25"},"nodeType":"YulFunctionCall","src":"20437:9:25"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"20430:3:25"}]},{"body":{"nodeType":"YulBlock","src":"20469:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"20471:16:25"},"nodeType":"YulFunctionCall","src":"20471:18:25"},"nodeType":"YulExpressionStatement","src":"20471:18:25"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"20461:1:25"},{"name":"sum","nodeType":"YulIdentifier","src":"20464:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"20458:2:25"},"nodeType":"YulFunctionCall","src":"20458:10:25"},"nodeType":"YulIf","src":"20455:36:25"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"20403:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"20406:1:25","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"20412:3:25","type":""}],"src":"20372:125:25"},{"body":{"nodeType":"YulBlock","src":"20676:173:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20693:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20704:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20686:6:25"},"nodeType":"YulFunctionCall","src":"20686:21:25"},"nodeType":"YulExpressionStatement","src":"20686:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20727:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20738:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20723:3:25"},"nodeType":"YulFunctionCall","src":"20723:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"20743:2:25","type":"","value":"23"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20716:6:25"},"nodeType":"YulFunctionCall","src":"20716:30:25"},"nodeType":"YulExpressionStatement","src":"20716:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20766:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20777:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20762:3:25"},"nodeType":"YulFunctionCall","src":"20762:18:25"},{"hexValue":"576f756c6420657863656564206d617820737570706c79","kind":"string","nodeType":"YulLiteral","src":"20782:25:25","type":"","value":"Would exceed max supply"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20755:6:25"},"nodeType":"YulFunctionCall","src":"20755:53:25"},"nodeType":"YulExpressionStatement","src":"20755:53:25"},{"nodeType":"YulAssignment","src":"20817:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20829:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20840:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20825:3:25"},"nodeType":"YulFunctionCall","src":"20825:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20817:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20653:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20667:4:25","type":""}],"src":"20502:347:25"},{"body":{"nodeType":"YulBlock","src":"21003:142:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21020:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"21031:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21013:6:25"},"nodeType":"YulFunctionCall","src":"21013:25:25"},"nodeType":"YulExpressionStatement","src":"21013:25:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21058:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21069:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21054:3:25"},"nodeType":"YulFunctionCall","src":"21054:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"21074:2:25","type":"","value":"64"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21047:6:25"},"nodeType":"YulFunctionCall","src":"21047:30:25"},"nodeType":"YulExpressionStatement","src":"21047:30:25"},{"nodeType":"YulAssignment","src":"21086:53:25","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"21112:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21124:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21135:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21120:3:25"},"nodeType":"YulFunctionCall","src":"21120:18:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"21094:17:25"},"nodeType":"YulFunctionCall","src":"21094:45:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21086:4:25"}]}]},"name":"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20964:9:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"20975:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"20983:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20994:4:25","type":""}],"src":"20854:291:25"},{"body":{"nodeType":"YulBlock","src":"21324:171:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21341:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21352:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21334:6:25"},"nodeType":"YulFunctionCall","src":"21334:21:25"},"nodeType":"YulExpressionStatement","src":"21334:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21375:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21386:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21371:3:25"},"nodeType":"YulFunctionCall","src":"21371:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"21391:2:25","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21364:6:25"},"nodeType":"YulFunctionCall","src":"21364:30:25"},"nodeType":"YulExpressionStatement","src":"21364:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21414:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21425:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21410:3:25"},"nodeType":"YulFunctionCall","src":"21410:18:25"},{"hexValue":"4172726179206c656e677468206d69736d61746368","kind":"string","nodeType":"YulLiteral","src":"21430:23:25","type":"","value":"Array length mismatch"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21403:6:25"},"nodeType":"YulFunctionCall","src":"21403:51:25"},"nodeType":"YulExpressionStatement","src":"21403:51:25"},{"nodeType":"YulAssignment","src":"21463:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21475:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21486:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21471:3:25"},"nodeType":"YulFunctionCall","src":"21471:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21463:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21301:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21315:4:25","type":""}],"src":"21150:345:25"},{"body":{"nodeType":"YulBlock","src":"21674:228:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21691:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21702:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21684:6:25"},"nodeType":"YulFunctionCall","src":"21684:21:25"},"nodeType":"YulExpressionStatement","src":"21684:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21725:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21736:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21721:3:25"},"nodeType":"YulFunctionCall","src":"21721:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"21741:2:25","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21714:6:25"},"nodeType":"YulFunctionCall","src":"21714:30:25"},"nodeType":"YulExpressionStatement","src":"21714:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21764:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21775:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21760:3:25"},"nodeType":"YulFunctionCall","src":"21760:18:25"},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061","kind":"string","nodeType":"YulLiteral","src":"21780:34:25","type":"","value":"Ownable: new owner is the zero a"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21753:6:25"},"nodeType":"YulFunctionCall","src":"21753:62:25"},"nodeType":"YulExpressionStatement","src":"21753:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21835:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21846:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21831:3:25"},"nodeType":"YulFunctionCall","src":"21831:18:25"},{"hexValue":"646472657373","kind":"string","nodeType":"YulLiteral","src":"21851:8:25","type":"","value":"ddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21824:6:25"},"nodeType":"YulFunctionCall","src":"21824:36:25"},"nodeType":"YulExpressionStatement","src":"21824:36:25"},{"nodeType":"YulAssignment","src":"21869:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21881:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21892:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21877:3:25"},"nodeType":"YulFunctionCall","src":"21877:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21869:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21651:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21665:4:25","type":""}],"src":"21500:402:25"},{"body":{"nodeType":"YulBlock","src":"21956:79:25","statements":[{"nodeType":"YulAssignment","src":"21966:17:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"21978:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"21981:1:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"21974:3:25"},"nodeType":"YulFunctionCall","src":"21974:9:25"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"21966:4:25"}]},{"body":{"nodeType":"YulBlock","src":"22007:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"22009:16:25"},"nodeType":"YulFunctionCall","src":"22009:18:25"},"nodeType":"YulExpressionStatement","src":"22009:18:25"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"21998:4:25"},{"name":"x","nodeType":"YulIdentifier","src":"22004:1:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"21995:2:25"},"nodeType":"YulFunctionCall","src":"21995:11:25"},"nodeType":"YulIf","src":"21992:37:25"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"21938:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"21941:1:25","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"21947:4:25","type":""}],"src":"21907:128:25"},{"body":{"nodeType":"YulBlock","src":"22078:74:25","statements":[{"body":{"nodeType":"YulBlock","src":"22101:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nodeType":"YulIdentifier","src":"22103:16:25"},"nodeType":"YulFunctionCall","src":"22103:18:25"},"nodeType":"YulExpressionStatement","src":"22103:18:25"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"22098:1:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"22091:6:25"},"nodeType":"YulFunctionCall","src":"22091:9:25"},"nodeType":"YulIf","src":"22088:35:25"},{"nodeType":"YulAssignment","src":"22132:14:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22141:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"22144:1:25"}],"functionName":{"name":"mod","nodeType":"YulIdentifier","src":"22137:3:25"},"nodeType":"YulFunctionCall","src":"22137:9:25"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"22132:1:25"}]}]},"name":"mod_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"22063:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"22066:1:25","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"22072:1:25","type":""}],"src":"22040:112:25"},{"body":{"nodeType":"YulBlock","src":"22331:182:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22348:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22359:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22341:6:25"},"nodeType":"YulFunctionCall","src":"22341:21:25"},"nodeType":"YulExpressionStatement","src":"22341:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22382:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22393:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22378:3:25"},"nodeType":"YulFunctionCall","src":"22378:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"22398:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22371:6:25"},"nodeType":"YulFunctionCall","src":"22371:30:25"},"nodeType":"YulExpressionStatement","src":"22371:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22421:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22432:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22417:3:25"},"nodeType":"YulFunctionCall","src":"22417:18:25"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"22437:34:25","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22410:6:25"},"nodeType":"YulFunctionCall","src":"22410:62:25"},"nodeType":"YulExpressionStatement","src":"22410:62:25"},{"nodeType":"YulAssignment","src":"22481:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22493:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22504:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22489:3:25"},"nodeType":"YulFunctionCall","src":"22489:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22481:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22308:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22322:4:25","type":""}],"src":"22157:356:25"},{"body":{"nodeType":"YulBlock","src":"22692:230:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22709:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22720:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22702:6:25"},"nodeType":"YulFunctionCall","src":"22702:21:25"},"nodeType":"YulExpressionStatement","src":"22702:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22743:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22754:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22739:3:25"},"nodeType":"YulFunctionCall","src":"22739:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"22759:2:25","type":"","value":"40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22732:6:25"},"nodeType":"YulFunctionCall","src":"22732:30:25"},"nodeType":"YulExpressionStatement","src":"22732:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22782:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22793:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22778:3:25"},"nodeType":"YulFunctionCall","src":"22778:18:25"},{"hexValue":"455243313135353a2069647320616e6420616d6f756e7473206c656e67746820","kind":"string","nodeType":"YulLiteral","src":"22798:34:25","type":"","value":"ERC1155: ids and amounts length "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22771:6:25"},"nodeType":"YulFunctionCall","src":"22771:62:25"},"nodeType":"YulExpressionStatement","src":"22771:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22853:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22864:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22849:3:25"},"nodeType":"YulFunctionCall","src":"22849:18:25"},{"hexValue":"6d69736d61746368","kind":"string","nodeType":"YulLiteral","src":"22869:10:25","type":"","value":"mismatch"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22842:6:25"},"nodeType":"YulFunctionCall","src":"22842:38:25"},"nodeType":"YulExpressionStatement","src":"22842:38:25"},{"nodeType":"YulAssignment","src":"22889:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22901:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22912:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22897:3:25"},"nodeType":"YulFunctionCall","src":"22897:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22889:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22669:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22683:4:25","type":""}],"src":"22518:404:25"},{"body":{"nodeType":"YulBlock","src":"23101:227:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23118:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23129:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23111:6:25"},"nodeType":"YulFunctionCall","src":"23111:21:25"},"nodeType":"YulExpressionStatement","src":"23111:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23152:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23163:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23148:3:25"},"nodeType":"YulFunctionCall","src":"23148:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"23168:2:25","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23141:6:25"},"nodeType":"YulFunctionCall","src":"23141:30:25"},"nodeType":"YulExpressionStatement","src":"23141:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23191:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23202:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23187:3:25"},"nodeType":"YulFunctionCall","src":"23187:18:25"},{"hexValue":"455243313135353a207472616e7366657220746f20746865207a65726f206164","kind":"string","nodeType":"YulLiteral","src":"23207:34:25","type":"","value":"ERC1155: transfer to the zero ad"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23180:6:25"},"nodeType":"YulFunctionCall","src":"23180:62:25"},"nodeType":"YulExpressionStatement","src":"23180:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23262:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23273:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23258:3:25"},"nodeType":"YulFunctionCall","src":"23258:18:25"},{"hexValue":"6472657373","kind":"string","nodeType":"YulLiteral","src":"23278:7:25","type":"","value":"dress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23251:6:25"},"nodeType":"YulFunctionCall","src":"23251:35:25"},"nodeType":"YulExpressionStatement","src":"23251:35:25"},{"nodeType":"YulAssignment","src":"23295:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23307:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23318:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23303:3:25"},"nodeType":"YulFunctionCall","src":"23303:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23295:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23078:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23092:4:25","type":""}],"src":"22927:401:25"},{"body":{"nodeType":"YulBlock","src":"23507:232:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23524:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23535:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23517:6:25"},"nodeType":"YulFunctionCall","src":"23517:21:25"},"nodeType":"YulExpressionStatement","src":"23517:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23558:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23569:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23554:3:25"},"nodeType":"YulFunctionCall","src":"23554:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"23574:2:25","type":"","value":"42"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23547:6:25"},"nodeType":"YulFunctionCall","src":"23547:30:25"},"nodeType":"YulExpressionStatement","src":"23547:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23597:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23608:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23593:3:25"},"nodeType":"YulFunctionCall","src":"23593:18:25"},{"hexValue":"455243313135353a20696e73756666696369656e742062616c616e636520666f","kind":"string","nodeType":"YulLiteral","src":"23613:34:25","type":"","value":"ERC1155: insufficient balance fo"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23586:6:25"},"nodeType":"YulFunctionCall","src":"23586:62:25"},"nodeType":"YulExpressionStatement","src":"23586:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23668:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23679:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23664:3:25"},"nodeType":"YulFunctionCall","src":"23664:18:25"},{"hexValue":"72207472616e73666572","kind":"string","nodeType":"YulLiteral","src":"23684:12:25","type":"","value":"r transfer"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23657:6:25"},"nodeType":"YulFunctionCall","src":"23657:40:25"},"nodeType":"YulExpressionStatement","src":"23657:40:25"},{"nodeType":"YulAssignment","src":"23706:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23718:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"23729:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23714:3:25"},"nodeType":"YulFunctionCall","src":"23714:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23706:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23484:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23498:4:25","type":""}],"src":"23333:406:25"},{"body":{"nodeType":"YulBlock","src":"23973:236:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23990:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24001:2:25","type":"","value":"64"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23983:6:25"},"nodeType":"YulFunctionCall","src":"23983:21:25"},"nodeType":"YulExpressionStatement","src":"23983:21:25"},{"nodeType":"YulVariableDeclaration","src":"24013:70:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"24056:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24068:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24079:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24064:3:25"},"nodeType":"YulFunctionCall","src":"24064:18:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"24027:28:25"},"nodeType":"YulFunctionCall","src":"24027:56:25"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"24017:6:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24103:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24114:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24099:3:25"},"nodeType":"YulFunctionCall","src":"24099:18:25"},{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"24123:6:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"24131:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"24119:3:25"},"nodeType":"YulFunctionCall","src":"24119:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24092:6:25"},"nodeType":"YulFunctionCall","src":"24092:50:25"},"nodeType":"YulExpressionStatement","src":"24092:50:25"},{"nodeType":"YulAssignment","src":"24151:52:25","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"24188:6:25"},{"name":"tail_1","nodeType":"YulIdentifier","src":"24196:6:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"24159:28:25"},"nodeType":"YulFunctionCall","src":"24159:44:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24151:4:25"}]}]},"name":"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23934:9:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"23945:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"23953:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23964:4:25","type":""}],"src":"23744:465:25"},{"body":{"nodeType":"YulBlock","src":"24388:181:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24405:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24416:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24398:6:25"},"nodeType":"YulFunctionCall","src":"24398:21:25"},"nodeType":"YulExpressionStatement","src":"24398:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24439:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24450:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24435:3:25"},"nodeType":"YulFunctionCall","src":"24435:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"24455:2:25","type":"","value":"31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24428:6:25"},"nodeType":"YulFunctionCall","src":"24428:30:25"},"nodeType":"YulExpressionStatement","src":"24428:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24478:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24489:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24474:3:25"},"nodeType":"YulFunctionCall","src":"24474:18:25"},{"hexValue":"5265656e7472616e637947756172643a207265656e7472616e742063616c6c","kind":"string","nodeType":"YulLiteral","src":"24494:33:25","type":"","value":"ReentrancyGuard: reentrant call"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24467:6:25"},"nodeType":"YulFunctionCall","src":"24467:61:25"},"nodeType":"YulExpressionStatement","src":"24467:61:25"},{"nodeType":"YulAssignment","src":"24537:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24549:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24560:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24545:3:25"},"nodeType":"YulFunctionCall","src":"24545:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24537:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24365:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24379:4:25","type":""}],"src":"24214:355:25"},{"body":{"nodeType":"YulBlock","src":"24748:223:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24765:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24776:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24758:6:25"},"nodeType":"YulFunctionCall","src":"24758:21:25"},"nodeType":"YulExpressionStatement","src":"24758:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24799:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24810:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24795:3:25"},"nodeType":"YulFunctionCall","src":"24795:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"24815:2:25","type":"","value":"33"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24788:6:25"},"nodeType":"YulFunctionCall","src":"24788:30:25"},"nodeType":"YulExpressionStatement","src":"24788:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24838:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24849:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24834:3:25"},"nodeType":"YulFunctionCall","src":"24834:18:25"},{"hexValue":"455243313135353a206d696e7420746f20746865207a65726f20616464726573","kind":"string","nodeType":"YulLiteral","src":"24854:34:25","type":"","value":"ERC1155: mint to the zero addres"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24827:6:25"},"nodeType":"YulFunctionCall","src":"24827:62:25"},"nodeType":"YulExpressionStatement","src":"24827:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24909:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24920:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24905:3:25"},"nodeType":"YulFunctionCall","src":"24905:18:25"},{"hexValue":"73","kind":"string","nodeType":"YulLiteral","src":"24925:3:25","type":"","value":"s"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24898:6:25"},"nodeType":"YulFunctionCall","src":"24898:31:25"},"nodeType":"YulExpressionStatement","src":"24898:31:25"},{"nodeType":"YulAssignment","src":"24938:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24950:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"24961:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24946:3:25"},"nodeType":"YulFunctionCall","src":"24946:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24938:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24725:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24739:4:25","type":""}],"src":"24574:397:25"},{"body":{"nodeType":"YulBlock","src":"25105:119:25","statements":[{"nodeType":"YulAssignment","src":"25115:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25127:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"25138:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25123:3:25"},"nodeType":"YulFunctionCall","src":"25123:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25115:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25157:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"25168:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25150:6:25"},"nodeType":"YulFunctionCall","src":"25150:25:25"},"nodeType":"YulExpressionStatement","src":"25150:25:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25195:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"25206:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25191:3:25"},"nodeType":"YulFunctionCall","src":"25191:18:25"},{"name":"value1","nodeType":"YulIdentifier","src":"25211:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25184:6:25"},"nodeType":"YulFunctionCall","src":"25184:34:25"},"nodeType":"YulExpressionStatement","src":"25184:34:25"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25066:9:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"25077:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"25085:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25096:4:25","type":""}],"src":"24976:248:25"},{"body":{"nodeType":"YulBlock","src":"25403:231:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25420:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"25431:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25413:6:25"},"nodeType":"YulFunctionCall","src":"25413:21:25"},"nodeType":"YulExpressionStatement","src":"25413:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25454:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"25465:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25450:3:25"},"nodeType":"YulFunctionCall","src":"25450:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"25470:2:25","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25443:6:25"},"nodeType":"YulFunctionCall","src":"25443:30:25"},"nodeType":"YulExpressionStatement","src":"25443:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25493:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"25504:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25489:3:25"},"nodeType":"YulFunctionCall","src":"25489:18:25"},{"hexValue":"455243313135353a2073657474696e6720617070726f76616c20737461747573","kind":"string","nodeType":"YulLiteral","src":"25509:34:25","type":"","value":"ERC1155: setting approval status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25482:6:25"},"nodeType":"YulFunctionCall","src":"25482:62:25"},"nodeType":"YulExpressionStatement","src":"25482:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25564:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"25575:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25560:3:25"},"nodeType":"YulFunctionCall","src":"25560:18:25"},{"hexValue":"20666f722073656c66","kind":"string","nodeType":"YulLiteral","src":"25580:11:25","type":"","value":" for self"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25553:6:25"},"nodeType":"YulFunctionCall","src":"25553:39:25"},"nodeType":"YulExpressionStatement","src":"25553:39:25"},{"nodeType":"YulAssignment","src":"25601:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25613:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"25624:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25609:3:25"},"nodeType":"YulFunctionCall","src":"25609:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25601:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25380:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25394:4:25","type":""}],"src":"25229:405:25"},{"body":{"nodeType":"YulBlock","src":"25970:496:25","statements":[{"nodeType":"YulVariableDeclaration","src":"25980:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"25998:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"26003:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"25994:3:25"},"nodeType":"YulFunctionCall","src":"25994:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"26007:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"25990:3:25"},"nodeType":"YulFunctionCall","src":"25990:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"25984:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26025:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"26040:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"26048:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"26036:3:25"},"nodeType":"YulFunctionCall","src":"26036:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26018:6:25"},"nodeType":"YulFunctionCall","src":"26018:34:25"},"nodeType":"YulExpressionStatement","src":"26018:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26072:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"26083:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26068:3:25"},"nodeType":"YulFunctionCall","src":"26068:18:25"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"26092:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"26100:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"26088:3:25"},"nodeType":"YulFunctionCall","src":"26088:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26061:6:25"},"nodeType":"YulFunctionCall","src":"26061:43:25"},"nodeType":"YulExpressionStatement","src":"26061:43:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26124:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"26135:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26120:3:25"},"nodeType":"YulFunctionCall","src":"26120:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"26140:3:25","type":"","value":"160"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26113:6:25"},"nodeType":"YulFunctionCall","src":"26113:31:25"},"nodeType":"YulExpressionStatement","src":"26113:31:25"},{"nodeType":"YulVariableDeclaration","src":"26153:71:25","value":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"26196:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26208:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"26219:3:25","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26204:3:25"},"nodeType":"YulFunctionCall","src":"26204:19:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"26167:28:25"},"nodeType":"YulFunctionCall","src":"26167:57:25"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"26157:6:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26244:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"26255:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26240:3:25"},"nodeType":"YulFunctionCall","src":"26240:18:25"},{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"26264:6:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"26272:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"26260:3:25"},"nodeType":"YulFunctionCall","src":"26260:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26233:6:25"},"nodeType":"YulFunctionCall","src":"26233:50:25"},"nodeType":"YulExpressionStatement","src":"26233:50:25"},{"nodeType":"YulVariableDeclaration","src":"26292:58:25","value":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"26335:6:25"},{"name":"tail_1","nodeType":"YulIdentifier","src":"26343:6:25"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"26306:28:25"},"nodeType":"YulFunctionCall","src":"26306:44:25"},"variables":[{"name":"tail_2","nodeType":"YulTypedName","src":"26296:6:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26370:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"26381:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26366:3:25"},"nodeType":"YulFunctionCall","src":"26366:19:25"},{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"26391:6:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"26399:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"26387:3:25"},"nodeType":"YulFunctionCall","src":"26387:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26359:6:25"},"nodeType":"YulFunctionCall","src":"26359:51:25"},"nodeType":"YulExpressionStatement","src":"26359:51:25"},{"nodeType":"YulAssignment","src":"26419:41:25","value":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"26445:6:25"},{"name":"tail_2","nodeType":"YulIdentifier","src":"26453:6:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"26427:17:25"},"nodeType":"YulFunctionCall","src":"26427:33:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26419:4:25"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25907:9:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"25918:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"25926:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"25934:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"25942:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"25950:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25961:4:25","type":""}],"src":"25639:827:25"},{"body":{"nodeType":"YulBlock","src":"26551:169:25","statements":[{"body":{"nodeType":"YulBlock","src":"26597:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26606:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"26609:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"26599:6:25"},"nodeType":"YulFunctionCall","src":"26599:12:25"},"nodeType":"YulExpressionStatement","src":"26599:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"26572:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"26581:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"26568:3:25"},"nodeType":"YulFunctionCall","src":"26568:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"26593:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"26564:3:25"},"nodeType":"YulFunctionCall","src":"26564:32:25"},"nodeType":"YulIf","src":"26561:52:25"},{"nodeType":"YulVariableDeclaration","src":"26622:29:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26641:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"26635:5:25"},"nodeType":"YulFunctionCall","src":"26635:16:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"26626:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"26684:5:25"}],"functionName":{"name":"validator_revert_bytes4","nodeType":"YulIdentifier","src":"26660:23:25"},"nodeType":"YulFunctionCall","src":"26660:30:25"},"nodeType":"YulExpressionStatement","src":"26660:30:25"},{"nodeType":"YulAssignment","src":"26699:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"26709:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"26699:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26517:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"26528:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"26540:6:25","type":""}],"src":"26471:249:25"},{"body":{"nodeType":"YulBlock","src":"26768:136:25","statements":[{"body":{"nodeType":"YulBlock","src":"26813:85:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26842:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"26845:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"26848:1:25","type":"","value":"4"}],"functionName":{"name":"returndatacopy","nodeType":"YulIdentifier","src":"26827:14:25"},"nodeType":"YulFunctionCall","src":"26827:23:25"},"nodeType":"YulExpressionStatement","src":"26827:23:25"},{"nodeType":"YulAssignment","src":"26863:25:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26874:3:25","type":"","value":"224"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26885:1:25","type":"","value":"0"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"26879:5:25"},"nodeType":"YulFunctionCall","src":"26879:8:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"26870:3:25"},"nodeType":"YulFunctionCall","src":"26870:18:25"},"variableNames":[{"name":"sig","nodeType":"YulIdentifier","src":"26863:3:25"}]}]},"condition":{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"26784:14:25"},"nodeType":"YulFunctionCall","src":"26784:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"26802:1:25","type":"","value":"3"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"26781:2:25"},"nodeType":"YulFunctionCall","src":"26781:23:25"},"nodeType":"YulIf","src":"26778:120:25"}]},"name":"return_data_selector","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"sig","nodeType":"YulTypedName","src":"26760:3:25","type":""}],"src":"26725:179:25"},{"body":{"nodeType":"YulBlock","src":"26956:624:25","statements":[{"body":{"nodeType":"YulBlock","src":"26996:9:25","statements":[{"nodeType":"YulLeave","src":"26998:5:25"}]},"condition":{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"26972:14:25"},"nodeType":"YulFunctionCall","src":"26972:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"26990:4:25","type":"","value":"0x44"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"26969:2:25"},"nodeType":"YulFunctionCall","src":"26969:26:25"},"nodeType":"YulIf","src":"26966:39:25"},{"nodeType":"YulVariableDeclaration","src":"27014:21:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"27032:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"27026:5:25"},"nodeType":"YulFunctionCall","src":"27026:9:25"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"27018:4:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"27044:16:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"27058:1:25","type":"","value":"3"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"27054:3:25"},"nodeType":"YulFunctionCall","src":"27054:6:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"27048:2:25","type":""}]},{"expression":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"27084:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"27090:1:25","type":"","value":"4"},{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"27097:14:25"},"nodeType":"YulFunctionCall","src":"27097:16:25"},{"name":"_1","nodeType":"YulIdentifier","src":"27115:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27093:3:25"},"nodeType":"YulFunctionCall","src":"27093:25:25"}],"functionName":{"name":"returndatacopy","nodeType":"YulIdentifier","src":"27069:14:25"},"nodeType":"YulFunctionCall","src":"27069:50:25"},"nodeType":"YulExpressionStatement","src":"27069:50:25"},{"nodeType":"YulVariableDeclaration","src":"27128:25:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"27148:4:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"27142:5:25"},"nodeType":"YulFunctionCall","src":"27142:11:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"27132:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"27162:26:25","value":{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"27172:14:25"},"nodeType":"YulFunctionCall","src":"27172:16:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"27166:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"27197:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"27207:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"27201:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"27283:9:25","statements":[{"nodeType":"YulLeave","src":"27285:5:25"}]},"condition":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"27243:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"27251:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"27240:2:25"},"nodeType":"YulFunctionCall","src":"27240:14:25"},{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"27263:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"27271:4:25","type":"","value":"0x24"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27259:3:25"},"nodeType":"YulFunctionCall","src":"27259:17:25"},{"name":"_2","nodeType":"YulIdentifier","src":"27278:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"27256:2:25"},"nodeType":"YulFunctionCall","src":"27256:25:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"27237:2:25"},"nodeType":"YulFunctionCall","src":"27237:45:25"},"nodeType":"YulIf","src":"27234:58:25"},{"nodeType":"YulVariableDeclaration","src":"27301:28:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"27316:4:25"},{"name":"offset","nodeType":"YulIdentifier","src":"27322:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27312:3:25"},"nodeType":"YulFunctionCall","src":"27312:17:25"},"variables":[{"name":"msg","nodeType":"YulTypedName","src":"27305:3:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"27338:24:25","value":{"arguments":[{"name":"msg","nodeType":"YulIdentifier","src":"27358:3:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"27352:5:25"},"nodeType":"YulFunctionCall","src":"27352:10:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"27342:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"27389:9:25","statements":[{"nodeType":"YulLeave","src":"27391:5:25"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"27377:6:25"},{"name":"_3","nodeType":"YulIdentifier","src":"27385:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"27374:2:25"},"nodeType":"YulFunctionCall","src":"27374:14:25"},"nodeType":"YulIf","src":"27371:27:25"},{"body":{"nodeType":"YulBlock","src":"27480:9:25","statements":[{"nodeType":"YulLeave","src":"27482:5:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"msg","nodeType":"YulIdentifier","src":"27421:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"27426:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27417:3:25"},"nodeType":"YulFunctionCall","src":"27417:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"27435:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27413:3:25"},"nodeType":"YulFunctionCall","src":"27413:27:25"},{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"27450:4:25"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"27456:14:25"},"nodeType":"YulFunctionCall","src":"27456:16:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27446:3:25"},"nodeType":"YulFunctionCall","src":"27446:27:25"},{"name":"_1","nodeType":"YulIdentifier","src":"27475:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27442:3:25"},"nodeType":"YulFunctionCall","src":"27442:36:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"27410:2:25"},"nodeType":"YulFunctionCall","src":"27410:69:25"},"nodeType":"YulIf","src":"27407:82:25"},{"expression":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"27518:4:25"},{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"27532:6:25"},{"name":"length","nodeType":"YulIdentifier","src":"27540:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27528:3:25"},"nodeType":"YulFunctionCall","src":"27528:19:25"},{"kind":"number","nodeType":"YulLiteral","src":"27549:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27524:3:25"},"nodeType":"YulFunctionCall","src":"27524:30:25"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"27498:19:25"},"nodeType":"YulFunctionCall","src":"27498:57:25"},"nodeType":"YulExpressionStatement","src":"27498:57:25"},{"nodeType":"YulAssignment","src":"27564:10:25","value":{"name":"msg","nodeType":"YulIdentifier","src":"27571:3:25"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"27564:3:25"}]}]},"name":"try_decode_error_message","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"26948:3:25","type":""}],"src":"26909:671:25"},{"body":{"nodeType":"YulBlock","src":"27759:242:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27776:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"27787:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27769:6:25"},"nodeType":"YulFunctionCall","src":"27769:21:25"},"nodeType":"YulExpressionStatement","src":"27769:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27810:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"27821:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27806:3:25"},"nodeType":"YulFunctionCall","src":"27806:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"27826:2:25","type":"","value":"52"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27799:6:25"},"nodeType":"YulFunctionCall","src":"27799:30:25"},"nodeType":"YulExpressionStatement","src":"27799:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27849:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"27860:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27845:3:25"},"nodeType":"YulFunctionCall","src":"27845:18:25"},{"hexValue":"455243313135353a207472616e7366657220746f206e6f6e2d45524331313535","kind":"string","nodeType":"YulLiteral","src":"27865:34:25","type":"","value":"ERC1155: transfer to non-ERC1155"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27838:6:25"},"nodeType":"YulFunctionCall","src":"27838:62:25"},"nodeType":"YulExpressionStatement","src":"27838:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27920:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"27931:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27916:3:25"},"nodeType":"YulFunctionCall","src":"27916:18:25"},{"hexValue":"526563656976657220696d706c656d656e746572","kind":"string","nodeType":"YulLiteral","src":"27936:22:25","type":"","value":"Receiver implementer"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27909:6:25"},"nodeType":"YulFunctionCall","src":"27909:50:25"},"nodeType":"YulExpressionStatement","src":"27909:50:25"},{"nodeType":"YulAssignment","src":"27968:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27980:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"27991:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27976:3:25"},"nodeType":"YulFunctionCall","src":"27976:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27968:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27736:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27750:4:25","type":""}],"src":"27585:416:25"},{"body":{"nodeType":"YulBlock","src":"28180:230:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28197:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28208:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28190:6:25"},"nodeType":"YulFunctionCall","src":"28190:21:25"},"nodeType":"YulExpressionStatement","src":"28190:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28231:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28242:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28227:3:25"},"nodeType":"YulFunctionCall","src":"28227:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"28247:2:25","type":"","value":"40"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28220:6:25"},"nodeType":"YulFunctionCall","src":"28220:30:25"},"nodeType":"YulExpressionStatement","src":"28220:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28270:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28281:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28266:3:25"},"nodeType":"YulFunctionCall","src":"28266:18:25"},{"hexValue":"455243313135353a204552433131353552656365697665722072656a65637465","kind":"string","nodeType":"YulLiteral","src":"28286:34:25","type":"","value":"ERC1155: ERC1155Receiver rejecte"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28259:6:25"},"nodeType":"YulFunctionCall","src":"28259:62:25"},"nodeType":"YulExpressionStatement","src":"28259:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28341:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28352:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28337:3:25"},"nodeType":"YulFunctionCall","src":"28337:18:25"},{"hexValue":"6420746f6b656e73","kind":"string","nodeType":"YulLiteral","src":"28357:10:25","type":"","value":"d tokens"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28330:6:25"},"nodeType":"YulFunctionCall","src":"28330:38:25"},"nodeType":"YulExpressionStatement","src":"28330:38:25"},{"nodeType":"YulAssignment","src":"28377:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28389:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28400:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28385:3:25"},"nodeType":"YulFunctionCall","src":"28385:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28377:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28157:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28171:4:25","type":""}],"src":"28006:404:25"},{"body":{"nodeType":"YulBlock","src":"28646:330:25","statements":[{"nodeType":"YulVariableDeclaration","src":"28656:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"28674:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"28679:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"28670:3:25"},"nodeType":"YulFunctionCall","src":"28670:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"28683:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"28666:3:25"},"nodeType":"YulFunctionCall","src":"28666:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"28660:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28701:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"28716:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"28724:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"28712:3:25"},"nodeType":"YulFunctionCall","src":"28712:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28694:6:25"},"nodeType":"YulFunctionCall","src":"28694:34:25"},"nodeType":"YulExpressionStatement","src":"28694:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28748:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28759:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28744:3:25"},"nodeType":"YulFunctionCall","src":"28744:18:25"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"28768:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"28776:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"28764:3:25"},"nodeType":"YulFunctionCall","src":"28764:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28737:6:25"},"nodeType":"YulFunctionCall","src":"28737:43:25"},"nodeType":"YulExpressionStatement","src":"28737:43:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28800:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28811:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28796:3:25"},"nodeType":"YulFunctionCall","src":"28796:18:25"},{"name":"value2","nodeType":"YulIdentifier","src":"28816:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28789:6:25"},"nodeType":"YulFunctionCall","src":"28789:34:25"},"nodeType":"YulExpressionStatement","src":"28789:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28843:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28854:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28839:3:25"},"nodeType":"YulFunctionCall","src":"28839:18:25"},{"name":"value3","nodeType":"YulIdentifier","src":"28859:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28832:6:25"},"nodeType":"YulFunctionCall","src":"28832:34:25"},"nodeType":"YulExpressionStatement","src":"28832:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28886:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28897:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28882:3:25"},"nodeType":"YulFunctionCall","src":"28882:19:25"},{"kind":"number","nodeType":"YulLiteral","src":"28903:3:25","type":"","value":"160"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28875:6:25"},"nodeType":"YulFunctionCall","src":"28875:32:25"},"nodeType":"YulExpressionStatement","src":"28875:32:25"},{"nodeType":"YulAssignment","src":"28916:54:25","value":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"28942:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28954:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"28965:3:25","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28950:3:25"},"nodeType":"YulFunctionCall","src":"28950:19:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"28924:17:25"},"nodeType":"YulFunctionCall","src":"28924:46:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28916:4:25"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28583:9:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"28594:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"28602:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"28610:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"28618:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"28626:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28637:4:25","type":""}],"src":"28415:561:25"}]},"contents":"{\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        value1 := calldataload(add(headStart, 32))\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_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_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 copy_memory_to_memory_with_cleanup(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        mstore(add(dst, length), 0)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory_with_cleanup(add(value, 0x20), add(pos, 0x20), length)\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 abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function finalize_allocation(memPtr, size)\n    {\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_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := calldataload(offset)\n        if gt(_1, 0xffffffffffffffff) { panic_error_0x41() }\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, add(and(add(_1, 0x1f), not(31)), 0x20))\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), add(offset, 0x20), _1)\n        mstore(add(add(memPtr, _1), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_uint256t_string_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\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_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := calldataload(add(headStart, 32))\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 array_allocation_size_array_uint256_dyn(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(shl(5, length), 0x20)\n    }\n    function abi_decode_array_uint256_dyn(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := calldataload(offset)\n        let _2 := 0x20\n        let _3 := array_allocation_size_array_uint256_dyn(_1)\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, _3)\n        let dst := memPtr\n        mstore(memPtr, _1)\n        dst := add(memPtr, _2)\n        let srcEnd := add(add(offset, shl(5, _1)), _2)\n        if gt(srcEnd, end) { revert(0, 0) }\n        let src := add(offset, _2)\n        for { } lt(src, srcEnd) { src := add(src, _2) }\n        {\n            mstore(dst, calldataload(src))\n            dst := add(dst, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let offset := calldataload(add(headStart, 64))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        value2 := abi_decode_array_uint256_dyn(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 96))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value3 := abi_decode_array_uint256_dyn(add(headStart, offset_1), dataEnd)\n        let offset_2 := calldataload(add(headStart, 128))\n        if gt(offset_2, _1) { revert(0, 0) }\n        value4 := abi_decode_string(add(headStart, offset_2), 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 abi_decode_array_address_dyn(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := calldataload(offset)\n        let _2 := 0x20\n        let _3 := array_allocation_size_array_uint256_dyn(_1)\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, _3)\n        let dst := memPtr\n        mstore(memPtr, _1)\n        dst := add(memPtr, _2)\n        let srcEnd := add(add(offset, shl(5, _1)), _2)\n        if gt(srcEnd, end) { revert(0, 0) }\n        let src := add(offset, _2)\n        for { } lt(src, srcEnd) { src := add(src, _2) }\n        {\n            mstore(dst, abi_decode_address(src))\n            dst := add(dst, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_array_address_dyn(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_array_uint256_dyn(add(headStart, offset_1), dataEnd)\n    }\n    function abi_encode_array_uint256_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_array_uint256_dyn(value0, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_memory_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        value0 := abi_decode_array_address_dyn(add(headStart, offset), dataEnd)\n    }\n    function abi_decode_tuple_t_string_memory_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        value0 := abi_decode_string(add(headStart, offset), dataEnd)\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_bool(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_bool(headStart)\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        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_bool(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_array_address_dyn(add(headStart, offset), dataEnd)\n        let _2 := 32\n        let offset_1 := calldataload(add(headStart, _2))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_array_uint256_dyn(add(headStart, offset_1), dataEnd)\n        let offset_2 := calldataload(add(headStart, 64))\n        if gt(offset_2, _1) { revert(0, 0) }\n        value2 := abi_decode_array_uint256_dyn(add(headStart, offset_2), dataEnd)\n        let offset_3 := calldataload(add(headStart, 96))\n        if gt(offset_3, _1) { revert(0, 0) }\n        let _3 := add(headStart, offset_3)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        let _5 := array_allocation_size_array_uint256_dyn(_4)\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, _5)\n        let dst := memPtr\n        mstore(memPtr, _4)\n        dst := add(memPtr, _2)\n        let srcEnd := add(add(_3, shl(5, _4)), _2)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_3, _2)\n        for { } lt(src, srcEnd) { src := add(src, _2) }\n        {\n            let innerOffset := calldataload(src)\n            if gt(innerOffset, _1)\n            {\n                let _6 := 0\n                revert(_6, _6)\n            }\n            mstore(dst, abi_decode_string(add(add(_3, innerOffset), _2), dataEnd))\n            dst := add(dst, _2)\n        }\n        value3 := memPtr\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_addresst_addresst_uint256t_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        let offset := calldataload(add(headStart, 128))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value4 := abi_decode_string(add(headStart, offset), dataEnd)\n    }\n    function abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"ERC1155: address zero is not a v\")\n        mstore(add(headStart, 96), \"alid owner\")\n        tail := add(headStart, 128)\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 abi_encode_tuple_packed_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        let ret := 0\n        let slotValue := sload(value0)\n        let length := extract_byte_array_length(slotValue)\n        let _1 := 1\n        switch and(slotValue, _1)\n        case 0 {\n            mstore(pos, and(slotValue, not(255)))\n            ret := add(pos, mul(length, iszero(iszero(length))))\n        }\n        case 1 {\n            mstore(0, value0)\n            let _2 := 0x20\n            let dataPos := keccak256(0, _2)\n            let i := 0\n            for { } lt(i, length) { i := add(i, _2) }\n            {\n                mstore(add(pos, i), sload(dataPos))\n                dataPos := add(dataPos, _1)\n            }\n            ret := add(pos, length)\n        }\n        let length_1 := mload(value1)\n        copy_memory_to_memory_with_cleanup(add(value1, 0x20), ret, length_1)\n        end := add(ret, length_1)\n    }\n    function abi_encode_tuple_t_stringliteral_547be7f5ed2d17cca91d35e8212265e350385ed13daeee07722cf3e686dd6726__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), \"Token does not exist\")\n        tail := add(headStart, 96)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            let _1 := 0\n            mstore(_1, array)\n            let data := keccak256(_1, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _2 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _2) { start := add(start, 1) }\n            { sstore(start, _1) }\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        let srcOffset_1 := 0x20\n        srcOffset := srcOffset_1\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, srcOffset_1) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, srcOffset_1)\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 panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\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 abi_encode_tuple_t_stringliteral_47c72b42072ed6c647dec3a0a5c88bec44d3e901c64659bff94ecce0a0323156__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"ERC1155: caller is not token own\")\n        mstore(add(headStart, 96), \"er or approved\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 22)\n        mstore(add(headStart, 64), \"No balance to withdraw\")\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_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__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), \"Withdrawal failed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC1155: accounts and ids length\")\n        mstore(add(headStart, 96), \" mismatch\")\n        tail := add(headStart, 128)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\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_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 19)\n        mstore(add(headStart, 64), \"Minting not allowed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3e76f273c719bb7d23db533a2dc9a822ae7d899fcd42eb8910272e24764e8296__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), \"Amount must be greater than 0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__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), \"Insufficient payment\")\n        tail := add(headStart, 96)\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_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3__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), \"Would exceed max supply\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        tail := abi_encode_string(value1, add(headStart, 64))\n    }\n    function abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__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), \"Array length mismatch\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Ownable: new owner is the zero a\")\n        mstore(add(headStart, 96), \"ddress\")\n        tail := add(headStart, 128)\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 mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC1155: ids and amounts length \")\n        mstore(add(headStart, 96), \"mismatch\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC1155: transfer to the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"ERC1155: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r transfer\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint256_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__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), \"ReentrancyGuard: reentrant call\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC1155: mint to the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\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_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC1155: setting approval status\")\n        mstore(add(headStart, 96), \" for self\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), 160)\n        let tail_1 := abi_encode_array_uint256_dyn(value2, add(headStart, 160))\n        mstore(add(headStart, 96), sub(tail_1, headStart))\n        let tail_2 := abi_encode_array_uint256_dyn(value3, tail_1)\n        mstore(add(headStart, 128), sub(tail_2, headStart))\n        tail := abi_encode_string(value4, tail_2)\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 return_data_selector() -> sig\n    {\n        if gt(returndatasize(), 3)\n        {\n            returndatacopy(0, 0, 4)\n            sig := shr(224, mload(0))\n        }\n    }\n    function try_decode_error_message() -> ret\n    {\n        if lt(returndatasize(), 0x44) { leave }\n        let data := mload(64)\n        let _1 := not(3)\n        returndatacopy(data, 4, add(returndatasize(), _1))\n        let offset := mload(data)\n        let _2 := returndatasize()\n        let _3 := 0xffffffffffffffff\n        if or(gt(offset, _3), gt(add(offset, 0x24), _2)) { leave }\n        let msg := add(data, offset)\n        let length := mload(msg)\n        if gt(length, _3) { leave }\n        if gt(add(add(msg, length), 0x20), add(add(data, returndatasize()), _1)) { leave }\n        finalize_allocation(data, add(add(offset, length), 0x20))\n        ret := msg\n    }\n    function abi_encode_tuple_t_stringliteral_f591f7b75ffc499e05f8b34c3364b2eceff651378d9549db1d5d67c0d8255c5d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 52)\n        mstore(add(headStart, 64), \"ERC1155: transfer to non-ERC1155\")\n        mstore(add(headStart, 96), \"Receiver implementer\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC1155: ERC1155Receiver rejecte\")\n        mstore(add(headStart, 96), \"d tokens\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), 160)\n        tail := abi_encode_string(value4, add(headStart, 160))\n    }\n}","id":25,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"6080604052600436106101ed5760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105ae578063e985e9c5146105c4578063f242432a1461060d578063f2fde38b1461062d578063f4a0a5281461064d57600080fd5b8063a22cb4651461052c578063b3a80e9c1461054c578063bd85b0391461056c578063d547cfb71461059957600080fd5b80638da5cb5b116100dc5780638da5cb5b146104a957806395d89b41146104c75780639b19251a146104dc5780639b7c1c831461050c57600080fd5b8063715018a61461044b57806377097fc8146104605780637f649783146104735780638a71bb2d1461049357600080fd5b80632a55205a116101855780634e1273f4116101545780634e1273f4146103c8578063548db174146103f557806355f804b3146104155780636817c76c1461043557600080fd5b80632a55205a1461031c5780632eb2c2d61461035b5780633ccfd60b1461037b5780634c00de821461039057600080fd5b80630e89341c116101c15780630e89341c14610298578063162094c4146102b857806318160ddd146102da5780632693ebf2146102ef57600080fd5b8062fdd58e146101f25780630116bc2d1461022557806301ffc9a71461025657806306fdde0314610276575b600080fd5b3480156101fe57600080fd5b5061021261020d366004611d88565b61066d565b6040519081526020015b60405180910390f35b34801561023157600080fd5b50600c5461024690600160a01b900460ff1681565b604051901515815260200161021c565b34801561026257600080fd5b50610246610271366004611dc8565b610706565b34801561028257600080fd5b5061028b610711565b60405161021c9190611e3c565b3480156102a457600080fd5b5061028b6102b3366004611e4f565b61079f565b3480156102c457600080fd5b506102d86102d3366004611f1d565b610880565b005b3480156102e657600080fd5b506102126108f7565b3480156102fb57600080fd5b5061021261030a366004611e4f565b600f6020526000908152604090205481565b34801561032857600080fd5b5061033c610337366004611f63565b610907565b604080516001600160a01b03909316835260208301919091520161021c565b34801561036757600080fd5b506102d8610376366004612019565b61093b565b34801561038757600080fd5b506102d8610987565b34801561039c57600080fd5b50600c546103b0906001600160a01b031681565b6040516001600160a01b03909116815260200161021c565b3480156103d457600080fd5b506103e86103e336600461212f565b610ae2565b60405161021c91906121c3565b34801561040157600080fd5b506102d86104103660046121d6565b610c0b565b34801561042157600080fd5b506102d861043036600461220a565b610c7f565b34801561044157600080fd5b50610212600a5481565b34801561045757600080fd5b506102d8610cd7565b61021261046e366004611f1d565b610ce9565b34801561047f57600080fd5b506102d861048e3660046121d6565b610f43565b34801561049f57600080fd5b50610212600b5481565b3480156104b557600080fd5b506003546001600160a01b03166103b0565b3480156104d357600080fd5b5061028b610fb3565b3480156104e857600080fd5b506102466104f736600461223e565b600d6020526000908152604090205460ff1681565b34801561051857600080fd5b506102d8610527366004612269565b610fc0565b34801561053857600080fd5b506102d8610547366004612284565b611015565b34801561055857600080fd5b506102d86105673660046122b7565b611020565b34801561057857600080fd5b50610212610587366004611e4f565b6000908152600f602052604090205490565b3480156105a557600080fd5b5061028b61129f565b3480156105ba57600080fd5b5061021260095481565b3480156105d057600080fd5b506102466105df3660046123db565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561061957600080fd5b506102d8610628366004612405565b6112ac565b34801561063957600080fd5b506102d861064836600461223e565b6112f1565b34801561065957600080fd5b506102d8610668366004611e4f565b61136a565b60006001600160a01b0383166106dd5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b6000610700826113a7565b6006805461071e90612469565b80601f016020809104026020016040519081016040528092919081815260200182805461074a90612469565b80156107975780601f1061076c57610100808354040283529160200191610797565b820191906000526020600020905b81548152906001019060200180831161077a57829003601f168201915b505050505081565b6000818152600e60205260408120805460609291906107bd90612469565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990612469565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905060008151111561084d5792915050565b6008610858846113f7565b6040516020016108699291906124a3565b604051602081830303815290604052915050919050565b6108886114ff565b6000828152600f60205260409020546108da5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016106d4565b6000828152600e602052604090206108f28282612570565b505050565b600061090260055490565b905090565b600080612710600b548461091b9190612645565b6109259190612672565b600c546001600160a01b03169590945092505050565b6001600160a01b038516331480610957575061095785336105df565b6109735760405162461bcd60e51b81526004016106d490612686565b6109808585858585611559565b5050505050565b61098f6114ff565b610997611736565b47806109de5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016106d4565b60006109f26003546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610a3c576040519150601f19603f3d011682016040523d82523d6000602084013e610a41565b606091505b5050905080610a865760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b60448201526064016106d4565b6003546001600160a01b03166001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d583604051610acc91815260200190565b60405180910390a25050610ae06001600455565b565b60608151835114610b475760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106d4565b600083516001600160401b03811115610b6257610b62611e68565b604051908082528060200260200182016040528015610b8b578160200160208202803683370190505b50905060005b8451811015610c0357610bd6858281518110610baf57610baf6126d4565b6020026020010151858381518110610bc957610bc96126d4565b602002602001015161066d565b828281518110610be857610be86126d4565b6020908102919091010152610bfc816126ea565b9050610b91565b509392505050565b610c136114ff565b60005b8151811015610c7b576000600d6000848481518110610c3757610c376126d4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c73816126ea565b915050610c16565b5050565b610c876114ff565b6008610c938282612570565b50610c9d8161178f565b7f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad81604051610ccc9190611e3c565b60405180910390a150565b610cdf6114ff565b610ae0600061179b565b6000610cf3611736565b600c54600160a01b900460ff1680610d1a5750336000908152600d602052604090205460ff165b80610d2f57506003546001600160a01b031633145b610d715760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08185b1b1bddd959606a1b60448201526064016106d4565b60008311610dc15760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016106d4565b82600a54610dcf9190612645565b341015610e155760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016106d4565b610e23600580546001019055565b6000610e2e60055490565b905060095460001480610e5c57506009546000828152600f6020526040902054610e59908690612703565b11155b610ea25760405162461bcd60e51b8152602060048201526017602482015276576f756c6420657863656564206d617820737570706c7960481b60448201526064016106d4565b610ebd338286604051806020016040528060008152506117ed565b6000818152600e60205260409020610ed58482612570565b506000818152600f602052604081208054869290610ef4908490612703565b9091555050604051819033907f01f8bd07e6c27ff813d5c6d3c4bf0313a1d75043cf978214b504b794075e526690610f2f9088908890612716565b60405180910390a390506107006001600455565b610f4b6114ff565b60005b8151811015610c7b576001600d6000848481518110610f6f57610f6f6126d4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610fab816126ea565b915050610f4e565b6007805461071e90612469565b610fc86114ff565b600c8054821515600160a01b0260ff60a01b199091161790556040517fa81e445dac2343503dc87e4663774817434721db7d985310a6959766e6d4480e90610ccc90831515815260200190565b610c7b338383611901565b6110286114ff565b611030611736565b82518451148015611042575081518351145b801561104f575080518251145b6110935760405162461bcd60e51b8152602060048201526015602482015274082e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b60448201526064016106d4565b60005b845181101561128e5760008482815181106110b3576110b36126d4565b6020026020010151905060008483815181106110d1576110d16126d4565b602002602001015190506009546000148061110757506009546000838152600f6020526040902054611104908390612703565b11155b61114d5760405162461bcd60e51b8152602060048201526017602482015276576f756c6420657863656564206d617820737570706c7960481b60448201526064016106d4565b611181878481518110611162576111626126d4565b60200260200101518383604051806020016040528060008152506117ed565b6000828152600e60205260409020805461119a90612469565b90506000036111de578383815181106111b5576111b56126d4565b6020026020010151600e600084815260200190815260200160002090816111dc9190612570565b505b6000828152600f6020526040812080548392906111fc908490612703565b9250508190555081878481518110611216576112166126d4565b60200260200101516001600160a01b03167f01f8bd07e6c27ff813d5c6d3c4bf0313a1d75043cf978214b504b794075e52668387878151811061125b5761125b6126d4565b6020026020010151604051611271929190612716565b60405180910390a350508080611286906126ea565b915050611096565b506112996001600455565b50505050565b6008805461071e90612469565b6001600160a01b0385163314806112c857506112c885336105df565b6112e45760405162461bcd60e51b81526004016106d490612686565b61098085858585856119e1565b6112f96114ff565b6001600160a01b03811661135e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b6113678161179b565b50565b6113726114ff565b600a8190556040518181527f525b762709cc2a983aec5ccdfd807a061f993c91090b5bcd7da92ca254976aaa90602001610ccc565b60006001600160e01b03198216636cdb3d1360e11b14806113d857506001600160e01b031982166303a24d0760e21b145b8061070057506301ffc9a760e01b6001600160e01b0319831614610700565b60608160000361141e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114485780611432816126ea565b91506114419050600a83612672565b9150611422565b6000816001600160401b0381111561146257611462611e68565b6040519080825280601f01601f19166020018201604052801561148c576020820181803683370190505b5090505b84156114f7576114a160018361272f565b91506114ae600a86612742565b6114b9906030612703565b60f81b8183815181106114ce576114ce6126d4565b60200101906001600160f81b031916908160001a9053506114f0600a86612672565b9450611490565b949350505050565b6003546001600160a01b03163314610ae05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d4565b81518351146115bb5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016106d4565b6001600160a01b0384166115e15760405162461bcd60e51b81526004016106d490612756565b3360005b84518110156116c8576000858281518110611602576116026126d4565b602002602001015190506000858381518110611620576116206126d4565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156116705760405162461bcd60e51b81526004016106d49061279b565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906116ad908490612703565b92505081905550505050806116c1906126ea565b90506115e5565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117189291906127e5565b60405180910390a461172e818787878787611b0b565b505050505050565b6002600454036117885760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d4565b6002600455565b6002610c7b8282612570565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841661184d5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106d4565b33600061185985611c66565b9050600061186685611c66565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611898908490612703565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46118f883600089898989611cb1565b50505050505050565b816001600160a01b0316836001600160a01b0316036119745760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106d4565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611a075760405162461bcd60e51b81526004016106d490612756565b336000611a1385611c66565b90506000611a2085611c66565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015611a635760405162461bcd60e51b81526004016106d49061279b565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611aa0908490612703565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b00848a8a8a8a8a611cb1565b505050505050505050565b6001600160a01b0384163b1561172e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611b4f9089908990889088908890600401612813565b6020604051808303816000875af1925050508015611b8a575060408051601f3d908101601f19168201909252611b8791810190612871565b60015b611c3657611b9661288e565b806308c379a003611bcf5750611baa6128aa565b80611bb55750611bd1565b8060405162461bcd60e51b81526004016106d49190611e3c565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106d4565b6001600160e01b0319811663bc197c8160e01b146118f85760405162461bcd60e51b81526004016106d490612933565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611ca057611ca06126d4565b602090810291909101015292915050565b6001600160a01b0384163b1561172e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611cf5908990899088908890889060040161297b565b6020604051808303816000875af1925050508015611d30575060408051601f3d908101601f19168201909252611d2d91810190612871565b60015b611d3c57611b9661288e565b6001600160e01b0319811663f23a6e6160e01b146118f85760405162461bcd60e51b81526004016106d490612933565b80356001600160a01b0381168114611d8357600080fd5b919050565b60008060408385031215611d9b57600080fd5b611da483611d6c565b946020939093013593505050565b6001600160e01b03198116811461136757600080fd5b600060208284031215611dda57600080fd5b8135611de581611db2565b9392505050565b60005b83811015611e07578181015183820152602001611def565b50506000910152565b60008151808452611e28816020860160208601611dec565b601f01601f19169290920160200192915050565b602081526000611de56020830184611e10565b600060208284031215611e6157600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715611ea357611ea3611e68565b6040525050565b600082601f830112611ebb57600080fd5b81356001600160401b03811115611ed457611ed4611e68565b604051611eeb601f8301601f191660200182611e7e565b818152846020838601011115611f0057600080fd5b816020850160208301376000918101602001919091529392505050565b60008060408385031215611f3057600080fd5b8235915060208301356001600160401b03811115611f4d57600080fd5b611f5985828601611eaa565b9150509250929050565b60008060408385031215611f7657600080fd5b50508035926020909101359150565b60006001600160401b03821115611f9e57611f9e611e68565b5060051b60200190565b600082601f830112611fb957600080fd5b81356020611fc682611f85565b604051611fd38282611e7e565b83815260059390931b8501820192828101915086841115611ff357600080fd5b8286015b8481101561200e5780358352918301918301611ff7565b509695505050505050565b600080600080600060a0868803121561203157600080fd5b61203a86611d6c565b945061204860208701611d6c565b935060408601356001600160401b038082111561206457600080fd5b61207089838a01611fa8565b9450606088013591508082111561208657600080fd5b61209289838a01611fa8565b935060808801359150808211156120a857600080fd5b506120b588828901611eaa565b9150509295509295909350565b600082601f8301126120d357600080fd5b813560206120e082611f85565b6040516120ed8282611e7e565b83815260059390931b850182019282810191508684111561210d57600080fd5b8286015b8481101561200e5761212281611d6c565b8352918301918301612111565b6000806040838503121561214257600080fd5b82356001600160401b038082111561215957600080fd5b612165868387016120c2565b9350602085013591508082111561217b57600080fd5b50611f5985828601611fa8565b600081518084526020808501945080840160005b838110156121b85781518752958201959082019060010161219c565b509495945050505050565b602081526000611de56020830184612188565b6000602082840312156121e857600080fd5b81356001600160401b038111156121fe57600080fd5b6114f7848285016120c2565b60006020828403121561221c57600080fd5b81356001600160401b0381111561223257600080fd5b6114f784828501611eaa565b60006020828403121561225057600080fd5b611de582611d6c565b80358015158114611d8357600080fd5b60006020828403121561227b57600080fd5b611de582612259565b6000806040838503121561229757600080fd5b6122a083611d6c565b91506122ae60208401612259565b90509250929050565b600080600080608085870312156122cd57600080fd5b84356001600160401b03808211156122e457600080fd5b6122f0888389016120c2565b955060209150818701358181111561230757600080fd5b61231389828a01611fa8565b95505060408701358181111561232857600080fd5b61233489828a01611fa8565b94505060608701358181111561234957600080fd5b8701601f8101891361235a57600080fd5b803561236581611f85565b6040516123728282611e7e565b82815260059290921b830185019185810191508b83111561239257600080fd5b8584015b838110156123ca578035868111156123ae5760008081fd5b6123bc8e8983890101611eaa565b845250918601918601612396565b50989b979a50959850505050505050565b600080604083850312156123ee57600080fd5b6123f783611d6c565b91506122ae60208401611d6c565b600080600080600060a0868803121561241d57600080fd5b61242686611d6c565b945061243460208701611d6c565b9350604086013592506060860135915060808601356001600160401b0381111561245d57600080fd5b6120b588828901611eaa565b600181811c9082168061247d57607f821691505b60208210810361249d57634e487b7160e01b600052602260045260246000fd5b50919050565b60008084546124b181612469565b600182811680156124c957600181146124de5761250d565b60ff198416875282151583028701945061250d565b8860005260208060002060005b858110156125045781548a8201529084019082016124eb565b50505082870194505b505050508351612521818360208801611dec565b01949350505050565b601f8211156108f257600081815260208120601f850160051c810160208610156125515750805b601f850160051c820191505b8181101561172e5782815560010161255d565b81516001600160401b0381111561258957612589611e68565b61259d816125978454612469565b8461252a565b602080601f8311600181146125d257600084156125ba5750858301515b600019600386901b1c1916600185901b17855561172e565b600085815260208120601f198616915b82811015612601578886015182559484019460019091019084016125e2565b508582101561261f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107005761070061262f565b634e487b7160e01b600052601260045260246000fd5b6000826126815761268161265c565b500490565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016126fc576126fc61262f565b5060010190565b808201808211156107005761070061262f565b8281526040602082015260006114f76040830184611e10565b818103818111156107005761070061262f565b6000826127515761275161265c565b500690565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006127f86040830185612188565b828103602084015261280a8185612188565b95945050505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061283f90830186612188565b82810360608401526128518186612188565b905082810360808401526128658185611e10565b98975050505050505050565b60006020828403121561288357600080fd5b8151611de581611db2565b600060033d11156128a75760046000803e5060005160e01c5b90565b600060443d10156128b85790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156128e757505050505090565b82850191508151818111156128ff5750505050505090565b843d87010160208285010111156129195750505050505090565b61292860208286010187611e7e565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906129b590830184611e10565b97965050505050505056fea2646970667358221220b84a1bcef1f04088f5928ccb66fcfa3bcf2ea01c3257b061cc63fd376e83b39364736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1ED JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x10D JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x5AE JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x5C4 JUMPI DUP1 PUSH4 0xF242432A EQ PUSH2 0x60D JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x62D JUMPI DUP1 PUSH4 0xF4A0A528 EQ PUSH2 0x64D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x52C JUMPI DUP1 PUSH4 0xB3A80E9C EQ PUSH2 0x54C JUMPI DUP1 PUSH4 0xBD85B039 EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0xD547CFB7 EQ PUSH2 0x599 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x4A9 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4C7 JUMPI DUP1 PUSH4 0x9B19251A EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0x9B7C1C83 EQ PUSH2 0x50C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x44B JUMPI DUP1 PUSH4 0x77097FC8 EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0x7F649783 EQ PUSH2 0x473 JUMPI DUP1 PUSH4 0x8A71BB2D EQ PUSH2 0x493 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2A55205A GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x4E1273F4 GT PUSH2 0x154 JUMPI DUP1 PUSH4 0x4E1273F4 EQ PUSH2 0x3C8 JUMPI DUP1 PUSH4 0x548DB174 EQ PUSH2 0x3F5 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x415 JUMPI DUP1 PUSH4 0x6817C76C EQ PUSH2 0x435 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2A55205A EQ PUSH2 0x31C JUMPI DUP1 PUSH4 0x2EB2C2D6 EQ PUSH2 0x35B JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x4C00DE82 EQ PUSH2 0x390 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xE89341C GT PUSH2 0x1C1 JUMPI DUP1 PUSH4 0xE89341C EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0x162094C4 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2DA JUMPI DUP1 PUSH4 0x2693EBF2 EQ PUSH2 0x2EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0xFDD58E EQ PUSH2 0x1F2 JUMPI DUP1 PUSH4 0x116BC2D EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x256 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x276 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH2 0x20D CALLDATASIZE PUSH1 0x4 PUSH2 0x1D88 JUMP JUMPDEST PUSH2 0x66D 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 0x231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xC SLOAD PUSH2 0x246 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x21C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x262 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x246 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC8 JUMP JUMPDEST PUSH2 0x706 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x282 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x711 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x2B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E4F JUMP JUMPDEST PUSH2 0x79F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x2D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F1D JUMP JUMPDEST PUSH2 0x880 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH2 0x8F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH2 0x30A CALLDATASIZE PUSH1 0x4 PUSH2 0x1E4F JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x328 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x337 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F63 JUMP JUMPDEST PUSH2 0x907 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x21C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x367 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x376 CALLDATASIZE PUSH1 0x4 PUSH2 0x2019 JUMP JUMPDEST PUSH2 0x93B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x387 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x987 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xC SLOAD PUSH2 0x3B0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x21C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E8 PUSH2 0x3E3 CALLDATASIZE PUSH1 0x4 PUSH2 0x212F JUMP JUMPDEST PUSH2 0xAE2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x21C3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x401 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x410 CALLDATASIZE PUSH1 0x4 PUSH2 0x21D6 JUMP JUMPDEST PUSH2 0xC0B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x430 CALLDATASIZE PUSH1 0x4 PUSH2 0x220A JUMP JUMPDEST PUSH2 0xC7F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x441 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x457 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0xCD7 JUMP JUMPDEST PUSH2 0x212 PUSH2 0x46E CALLDATASIZE PUSH1 0x4 PUSH2 0x1F1D JUMP JUMPDEST PUSH2 0xCE9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x47F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x48E CALLDATASIZE PUSH1 0x4 PUSH2 0x21D6 JUMP JUMPDEST PUSH2 0xF43 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x3B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0xFB3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x246 PUSH2 0x4F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x223E JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x518 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x527 CALLDATASIZE PUSH1 0x4 PUSH2 0x2269 JUMP JUMPDEST PUSH2 0xFC0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x538 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x547 CALLDATASIZE PUSH1 0x4 PUSH2 0x2284 JUMP JUMPDEST PUSH2 0x1015 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x558 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x567 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B7 JUMP JUMPDEST PUSH2 0x1020 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x578 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH2 0x587 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E4F JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x129F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x212 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x246 PUSH2 0x5DF CALLDATASIZE PUSH1 0x4 PUSH2 0x23DB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 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 PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x619 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x628 CALLDATASIZE PUSH1 0x4 PUSH2 0x2405 JUMP JUMPDEST PUSH2 0x12AC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x639 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x648 CALLDATASIZE PUSH1 0x4 PUSH2 0x223E JUMP JUMPDEST PUSH2 0x12F1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x659 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH2 0x668 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E4F JUMP JUMPDEST PUSH2 0x136A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2061646472657373207A65726F206973206E6F7420612076 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x30B634B21037BBB732B9 PUSH1 0xB1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP2 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 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x700 DUP3 PUSH2 0x13A7 JUMP JUMPDEST PUSH1 0x6 DUP1 SLOAD PUSH2 0x71E SWAP1 PUSH2 0x2469 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 0x74A SWAP1 PUSH2 0x2469 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x797 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x76C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x797 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x77A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP3 SWAP2 SWAP1 PUSH2 0x7BD SWAP1 PUSH2 0x2469 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 0x7E9 SWAP1 PUSH2 0x2469 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x836 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x80B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x836 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x819 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT ISZERO PUSH2 0x84D JUMPI SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x8 PUSH2 0x858 DUP5 PUSH2 0x13F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x869 SWAP3 SWAP2 SWAP1 PUSH2 0x24A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x888 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x8DA 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 0x151BDAD95B88191BD95CC81B9BDD08195E1A5CDD PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x8F2 DUP3 DUP3 PUSH2 0x2570 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x902 PUSH1 0x5 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2710 PUSH1 0xB SLOAD DUP5 PUSH2 0x91B SWAP2 SWAP1 PUSH2 0x2645 JUMP JUMPDEST PUSH2 0x925 SWAP2 SWAP1 PUSH2 0x2672 JUMP JUMPDEST PUSH1 0xC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER EQ DUP1 PUSH2 0x957 JUMPI POP PUSH2 0x957 DUP6 CALLER PUSH2 0x5DF JUMP JUMPDEST PUSH2 0x973 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2686 JUMP JUMPDEST PUSH2 0x980 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x1559 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x98F PUSH2 0x14FF JUMP JUMPDEST PUSH2 0x997 PUSH2 0x1736 JUMP JUMPDEST SELFBALANCE DUP1 PUSH2 0x9DE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x4E6F2062616C616E636520746F207769746864726177 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F2 PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xA3C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xA41 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xA86 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 0x15DA5D1A191C985DD85B0819985A5B1959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP4 PUSH1 0x40 MLOAD PUSH2 0xACC SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH2 0xAE0 PUSH1 0x1 PUSH1 0x4 SSTORE JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0xB47 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A206163636F756E747320616E6420696473206C656E677468 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x40DAD2E6DAC2E8C6D PUSH1 0xBB SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xB62 JUMPI PUSH2 0xB62 PUSH2 0x1E68 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xB8B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0xC03 JUMPI PUSH2 0xBD6 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBAF JUMPI PUSH2 0xBAF PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xBC9 JUMPI PUSH2 0xBC9 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x66D JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBE8 JUMPI PUSH2 0xBE8 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0xBFC DUP2 PUSH2 0x26EA JUMP JUMPDEST SWAP1 POP PUSH2 0xB91 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0xC13 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xC7B JUMPI PUSH1 0x0 PUSH1 0xD PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xC37 JUMPI PUSH2 0xC37 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xC73 DUP2 PUSH2 0x26EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC16 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xC87 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x8 PUSH2 0xC93 DUP3 DUP3 PUSH2 0x2570 JUMP JUMPDEST POP PUSH2 0xC9D DUP2 PUSH2 0x178F JUMP JUMPDEST PUSH32 0x6741B2FC379FAD678116FE3D4D4B9A1A184AB53BA36B86AD0FA66340B1AB41AD DUP2 PUSH1 0x40 MLOAD PUSH2 0xCCC SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0xCDF PUSH2 0x14FF JUMP JUMPDEST PUSH2 0xAE0 PUSH1 0x0 PUSH2 0x179B JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCF3 PUSH2 0x1736 JUMP JUMPDEST PUSH1 0xC SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND DUP1 PUSH2 0xD1A JUMPI POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST DUP1 PUSH2 0xD2F JUMPI POP PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST PUSH2 0xD71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x135A5B9D1A5B99C81B9BDD08185B1B1BDDD959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP4 GT PUSH2 0xDC1 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 0x416D6F756E74206D7573742062652067726561746572207468616E2030000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST DUP3 PUSH1 0xA SLOAD PUSH2 0xDCF SWAP2 SWAP1 PUSH2 0x2645 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xE15 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 0x125B9CDD59999A58DA595B9D081C185E5B595B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0xE23 PUSH1 0x5 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE2E PUSH1 0x5 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x9 SLOAD PUSH1 0x0 EQ DUP1 PUSH2 0xE5C JUMPI POP PUSH1 0x9 SLOAD PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0xE59 SWAP1 DUP7 SWAP1 PUSH2 0x2703 JUMP JUMPDEST GT ISZERO JUMPDEST PUSH2 0xEA2 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 PUSH23 0x576F756C6420657863656564206D617820737570706C79 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0xEBD CALLER DUP3 DUP7 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x17ED JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0xED5 DUP5 DUP3 PUSH2 0x2570 JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 SWAP3 SWAP1 PUSH2 0xEF4 SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 SWAP1 CALLER SWAP1 PUSH32 0x1F8BD07E6C27FF813D5C6D3C4BF0313A1D75043CF978214B504B794075E5266 SWAP1 PUSH2 0xF2F SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0x2716 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 SWAP1 POP PUSH2 0x700 PUSH1 0x1 PUSH1 0x4 SSTORE JUMP JUMPDEST PUSH2 0xF4B PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xC7B JUMPI PUSH1 0x1 PUSH1 0xD PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xF6F JUMPI PUSH2 0xF6F PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xFAB DUP2 PUSH2 0x26EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xF4E JUMP JUMPDEST PUSH1 0x7 DUP1 SLOAD PUSH2 0x71E SWAP1 PUSH2 0x2469 JUMP JUMPDEST PUSH2 0xFC8 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD DUP3 ISZERO ISZERO PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH1 0xFF PUSH1 0xA0 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH32 0xA81E445DAC2343503DC87E4663774817434721DB7D985310A6959766E6D4480E SWAP1 PUSH2 0xCCC SWAP1 DUP4 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0xC7B CALLER DUP4 DUP4 PUSH2 0x1901 JUMP JUMPDEST PUSH2 0x1028 PUSH2 0x14FF JUMP JUMPDEST PUSH2 0x1030 PUSH2 0x1736 JUMP JUMPDEST DUP3 MLOAD DUP5 MLOAD EQ DUP1 ISZERO PUSH2 0x1042 JUMPI POP DUP2 MLOAD DUP4 MLOAD EQ JUMPDEST DUP1 ISZERO PUSH2 0x104F JUMPI POP DUP1 MLOAD DUP3 MLOAD EQ JUMPDEST PUSH2 0x1093 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 0x82E4E4C2F240D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x128E JUMPI PUSH1 0x0 DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x10B3 JUMPI PUSH2 0x10B3 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x10D1 JUMPI PUSH2 0x10D1 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x9 SLOAD PUSH1 0x0 EQ DUP1 PUSH2 0x1107 JUMPI POP PUSH1 0x9 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x1104 SWAP1 DUP4 SWAP1 PUSH2 0x2703 JUMP JUMPDEST GT ISZERO JUMPDEST PUSH2 0x114D 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 PUSH23 0x576F756C6420657863656564206D617820737570706C79 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0x1181 DUP8 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x1162 JUMPI PUSH2 0x1162 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x17ED JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x119A SWAP1 PUSH2 0x2469 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 SUB PUSH2 0x11DE JUMPI DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x11B5 JUMPI PUSH2 0x11B5 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xE PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP2 PUSH2 0x11DC SWAP2 SWAP1 PUSH2 0x2570 JUMP JUMPDEST POP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x11FC SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 DUP8 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x1216 JUMPI PUSH2 0x1216 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x1F8BD07E6C27FF813D5C6D3C4BF0313A1D75043CF978214B504B794075E5266 DUP4 DUP8 DUP8 DUP2 MLOAD DUP2 LT PUSH2 0x125B JUMPI PUSH2 0x125B PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x1271 SWAP3 SWAP2 SWAP1 PUSH2 0x2716 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP DUP1 DUP1 PUSH2 0x1286 SWAP1 PUSH2 0x26EA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1096 JUMP JUMPDEST POP PUSH2 0x1299 PUSH1 0x1 PUSH1 0x4 SSTORE JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD PUSH2 0x71E SWAP1 PUSH2 0x2469 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER EQ DUP1 PUSH2 0x12C8 JUMPI POP PUSH2 0x12C8 DUP6 CALLER PUSH2 0x5DF JUMP JUMPDEST PUSH2 0x12E4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2686 JUMP JUMPDEST PUSH2 0x980 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x19E1 JUMP JUMPDEST PUSH2 0x12F9 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x135E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0x1367 DUP2 PUSH2 0x179B JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1372 PUSH2 0x14FF JUMP JUMPDEST PUSH1 0xA DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x525B762709CC2A983AEC5CCDFD807A061F993C91090B5BCD7DA92CA254976AAA SWAP1 PUSH1 0x20 ADD PUSH2 0xCCC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x6CDB3D13 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x13D8 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3A24D07 PUSH1 0xE2 SHL EQ JUMPDEST DUP1 PUSH2 0x700 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x700 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 SUB PUSH2 0x141E JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x1448 JUMPI DUP1 PUSH2 0x1432 DUP2 PUSH2 0x26EA JUMP JUMPDEST SWAP2 POP PUSH2 0x1441 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x2672 JUMP JUMPDEST SWAP2 POP PUSH2 0x1422 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1462 JUMPI PUSH2 0x1462 PUSH2 0x1E68 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 0x148C JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x14F7 JUMPI PUSH2 0x14A1 PUSH1 0x1 DUP4 PUSH2 0x272F JUMP JUMPDEST SWAP2 POP PUSH2 0x14AE PUSH1 0xA DUP7 PUSH2 0x2742 JUMP JUMPDEST PUSH2 0x14B9 SWAP1 PUSH1 0x30 PUSH2 0x2703 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x14CE JUMPI PUSH2 0x14CE PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x14F0 PUSH1 0xA DUP7 PUSH2 0x2672 JUMP JUMPDEST SWAP5 POP PUSH2 0x1490 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xAE0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x15BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2069647320616E6420616D6F756E7473206C656E67746820 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0xDAD2E6DAC2E8C6D PUSH1 0xC3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x15E1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2756 JUMP JUMPDEST CALLER PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x16C8 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1602 JUMPI PUSH2 0x1602 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1620 JUMPI PUSH2 0x1620 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x0 DUP5 DUP2 MSTORE DUP1 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND DUP4 MSTORE SWAP1 SWAP4 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP2 DUP2 LT ISZERO PUSH2 0x1670 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x279B JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 DUP2 AND DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP1 DUP12 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x16AD SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0x16C1 SWAP1 PUSH2 0x26EA JUMP JUMPDEST SWAP1 POP PUSH2 0x15E5 JUMP JUMPDEST POP DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1718 SWAP3 SWAP2 SWAP1 PUSH2 0x27E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x172E DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1B0B JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x4 SLOAD SUB PUSH2 0x1788 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 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x4 SSTORE JUMP JUMPDEST PUSH1 0x2 PUSH2 0xC7B DUP3 DUP3 PUSH2 0x2570 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x184D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A206D696E7420746F20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST CALLER PUSH1 0x0 PUSH2 0x1859 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1866 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP8 SWAP3 SWAP1 PUSH2 0x1898 SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP8 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP11 AND SWAP3 PUSH1 0x0 SWAP3 SWAP2 DUP8 AND SWAP2 PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x18F8 DUP4 PUSH1 0x0 DUP10 DUP10 DUP10 DUP10 PUSH2 0x1CB1 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x1974 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A2073657474696E6720617070726F76616C20737461747573 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x103337B91039B2B633 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 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 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x1A07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2756 JUMP JUMPDEST CALLER PUSH1 0x0 PUSH2 0x1A13 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1A20 DUP6 PUSH2 0x1C66 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP6 DUP2 LT ISZERO PUSH2 0x1A63 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x279B JUMP JUMPDEST PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 DUP2 AND DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP10 DUP6 SUB SWAP1 SSTORE SWAP1 DUP11 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP9 SWAP3 SWAP1 PUSH2 0x1AA0 SWAP1 DUP5 SWAP1 PUSH2 0x2703 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP9 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP12 AND SWAP3 DUP13 DUP3 AND SWAP3 SWAP2 DUP9 AND SWAP2 PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x1B00 DUP5 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0x1CB1 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x172E JUMPI PUSH1 0x40 MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBC197C81 SWAP1 PUSH2 0x1B4F SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x2813 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1B8A JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1B87 SWAP2 DUP2 ADD SWAP1 PUSH2 0x2871 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1C36 JUMPI PUSH2 0x1B96 PUSH2 0x288E JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0x1BCF JUMPI POP PUSH2 0x1BAA PUSH2 0x28AA JUMP JUMPDEST DUP1 PUSH2 0x1BB5 JUMPI POP PUSH2 0x1BD1 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x34 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2D45524331313535 PUSH1 0x44 DUP3 ADD MSTORE PUSH20 0x2932B1B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x61 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xBC197C81 PUSH1 0xE0 SHL EQ PUSH2 0x18F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2933 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x60 SWAP2 PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1CA0 JUMPI PUSH2 0x1CA0 PUSH2 0x26D4 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x172E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xF23A6E61 SWAP1 PUSH2 0x1CF5 SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x297B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1D30 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1D2D SWAP2 DUP2 ADD SWAP1 PUSH2 0x2871 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1D3C JUMPI PUSH2 0x1B96 PUSH2 0x288E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xF23A6E61 PUSH1 0xE0 SHL EQ PUSH2 0x18F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x2933 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1D83 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D9B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DA4 DUP4 PUSH2 0x1D6C JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1367 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DDA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1DE5 DUP2 PUSH2 0x1DB2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1E07 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1DEF JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x1E28 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1DEC JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1DE5 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1E10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E61 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST 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 0x1EA3 JUMPI PUSH2 0x1EA3 PUSH2 0x1E68 JUMP JUMPDEST PUSH1 0x40 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1EBB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1ED4 JUMPI PUSH2 0x1ED4 PUSH2 0x1E68 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1EEB PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 PUSH2 0x1E7E JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0x1F00 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1F4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F59 DUP6 DUP3 DUP7 ADD PUSH2 0x1EAA JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F76 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x1F9E JUMPI PUSH2 0x1F9E PUSH2 0x1E68 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1FB9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x1FC6 DUP3 PUSH2 0x1F85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD3 DUP3 DUP3 PUSH2 0x1E7E JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x5 SWAP4 SWAP1 SWAP4 SHL DUP6 ADD DUP3 ADD SWAP3 DUP3 DUP2 ADD SWAP2 POP DUP7 DUP5 GT ISZERO PUSH2 0x1FF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x200E JUMPI DUP1 CALLDATALOAD DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0x1FF7 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x2031 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x203A DUP7 PUSH2 0x1D6C JUMP JUMPDEST SWAP5 POP PUSH2 0x2048 PUSH1 0x20 DUP8 ADD PUSH2 0x1D6C JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x2064 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2070 DUP10 DUP4 DUP11 ADD PUSH2 0x1FA8 JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x2086 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2092 DUP10 DUP4 DUP11 ADD PUSH2 0x1FA8 JUMP JUMPDEST SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x20A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x20B5 DUP9 DUP3 DUP10 ADD PUSH2 0x1EAA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x20D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x20E0 DUP3 PUSH2 0x1F85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20ED DUP3 DUP3 PUSH2 0x1E7E JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x5 SWAP4 SWAP1 SWAP4 SHL DUP6 ADD DUP3 ADD SWAP3 DUP3 DUP2 ADD SWAP2 POP DUP7 DUP5 GT ISZERO PUSH2 0x210D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x200E JUMPI PUSH2 0x2122 DUP2 PUSH2 0x1D6C JUMP JUMPDEST DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0x2111 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2142 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x2159 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2165 DUP7 DUP4 DUP8 ADD PUSH2 0x20C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x217B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F59 DUP6 DUP3 DUP7 ADD PUSH2 0x1FA8 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x21B8 JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x219C JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1DE5 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2188 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14F7 DUP5 DUP3 DUP6 ADD PUSH2 0x20C2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x221C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2232 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14F7 DUP5 DUP3 DUP6 ADD PUSH2 0x1EAA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2250 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DE5 DUP3 PUSH2 0x1D6C JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1D83 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x227B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DE5 DUP3 PUSH2 0x2259 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x22A0 DUP4 PUSH2 0x1D6C JUMP JUMPDEST SWAP2 POP PUSH2 0x22AE PUSH1 0x20 DUP5 ADD PUSH2 0x2259 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x22CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x22E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x22F0 DUP9 DUP4 DUP10 ADD PUSH2 0x20C2 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 SWAP2 POP DUP2 DUP8 ADD CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2307 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2313 DUP10 DUP3 DUP11 ADD PUSH2 0x1FA8 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2328 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2334 DUP10 DUP3 DUP11 ADD PUSH2 0x1FA8 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x60 DUP8 ADD CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x2349 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x1F DUP2 ADD DUP10 SGT PUSH2 0x235A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2365 DUP2 PUSH2 0x1F85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2372 DUP3 DUP3 PUSH2 0x1E7E JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x5 SWAP3 SWAP1 SWAP3 SHL DUP4 ADD DUP6 ADD SWAP2 DUP6 DUP2 ADD SWAP2 POP DUP12 DUP4 GT ISZERO PUSH2 0x2392 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP5 ADD JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x23CA JUMPI DUP1 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x23AE JUMPI PUSH1 0x0 DUP1 DUP2 REVERT JUMPDEST PUSH2 0x23BC DUP15 DUP10 DUP4 DUP10 ADD ADD PUSH2 0x1EAA JUMP JUMPDEST DUP5 MSTORE POP SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x2396 JUMP JUMPDEST POP SWAP9 SWAP12 SWAP8 SWAP11 POP SWAP6 SWAP9 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x23F7 DUP4 PUSH2 0x1D6C JUMP JUMPDEST SWAP2 POP PUSH2 0x22AE PUSH1 0x20 DUP5 ADD PUSH2 0x1D6C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x241D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2426 DUP7 PUSH2 0x1D6C JUMP JUMPDEST SWAP5 POP PUSH2 0x2434 PUSH1 0x20 DUP8 ADD PUSH2 0x1D6C JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x245D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x20B5 DUP9 DUP3 DUP10 ADD PUSH2 0x1EAA JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x247D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x249D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 SLOAD PUSH2 0x24B1 DUP2 PUSH2 0x2469 JUMP JUMPDEST PUSH1 0x1 DUP3 DUP2 AND DUP1 ISZERO PUSH2 0x24C9 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x24DE JUMPI PUSH2 0x250D JUMP JUMPDEST PUSH1 0xFF NOT DUP5 AND DUP8 MSTORE DUP3 ISZERO ISZERO DUP4 MUL DUP8 ADD SWAP5 POP PUSH2 0x250D JUMP JUMPDEST DUP9 PUSH1 0x0 MSTORE PUSH1 0x20 DUP1 PUSH1 0x0 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2504 JUMPI DUP2 SLOAD DUP11 DUP3 ADD MSTORE SWAP1 DUP5 ADD SWAP1 DUP3 ADD PUSH2 0x24EB JUMP JUMPDEST POP POP POP DUP3 DUP8 ADD SWAP5 POP JUMPDEST POP POP POP POP DUP4 MLOAD PUSH2 0x2521 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1DEC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x8F2 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH2 0x2551 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x172E JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x255D JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2589 JUMPI PUSH2 0x2589 PUSH2 0x1E68 JUMP JUMPDEST PUSH2 0x259D DUP2 PUSH2 0x2597 DUP5 SLOAD PUSH2 0x2469 JUMP JUMPDEST DUP5 PUSH2 0x252A JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x25D2 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x25BA JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH2 0x172E JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2601 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH2 0x25E2 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH2 0x261F JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x700 JUMPI PUSH2 0x700 PUSH2 0x262F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2681 JUMPI PUSH2 0x2681 PUSH2 0x265C JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2E SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A2063616C6C6572206973206E6F7420746F6B656E206F776E PUSH1 0x40 DUP3 ADD MSTORE PUSH14 0x195C881BDC88185C1C1C9BDD9959 PUSH1 0x92 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x26FC JUMPI PUSH2 0x26FC PUSH2 0x262F JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x700 JUMPI PUSH2 0x700 PUSH2 0x262F JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x14F7 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x1E10 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x700 JUMPI PUSH2 0x700 PUSH2 0x262F JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2751 JUMPI PUSH2 0x2751 PUSH2 0x265C JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A207472616E7366657220746F20746865207A65726F206164 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2A SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A20696E73756666696369656E742062616C616E636520666F PUSH1 0x40 DUP3 ADD MSTORE PUSH10 0x39103A3930B739B332B9 PUSH1 0xB1 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x27F8 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x2188 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x280A DUP2 DUP6 PUSH2 0x2188 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x283F SWAP1 DUP4 ADD DUP7 PUSH2 0x2188 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x60 DUP5 ADD MSTORE PUSH2 0x2851 DUP2 DUP7 PUSH2 0x2188 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 SUB PUSH1 0x80 DUP5 ADD MSTORE PUSH2 0x2865 DUP2 DUP6 PUSH2 0x1E10 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2883 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1DE5 DUP2 PUSH2 0x1DB2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x28A7 JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY POP PUSH1 0x0 MLOAD PUSH1 0xE0 SHR JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x28B8 JUMPI SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3 NOT RETURNDATASIZE DUP2 ADD PUSH1 0x4 DUP4 RETURNDATACOPY DUP2 MLOAD RETURNDATASIZE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 PUSH1 0x24 DUP5 ADD GT DUP2 DUP5 GT OR ISZERO PUSH2 0x28E7 JUMPI POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 DUP6 ADD SWAP2 POP DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x28FF JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP5 RETURNDATASIZE DUP8 ADD ADD PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2919 JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x2928 PUSH1 0x20 DUP3 DUP7 ADD ADD DUP8 PUSH2 0x1E7E JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x28 SWAP1 DUP3 ADD MSTORE PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x40 DUP3 ADD MSTORE PUSH8 0x6420746F6B656E73 PUSH1 0xC0 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0xA0 PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x29B5 SWAP1 DUP4 ADD DUP5 PUSH2 0x1E10 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB8 0x4A SHL 0xCE CALL CREATE BLOCKHASH DUP9 CREATE2 SWAP3 DUP13 0xCB PUSH7 0xFCFA3BCF2EA01C ORIGIN JUMPI 0xB0 PUSH2 0xCC63 REVERT CALLDATACOPY PUSH15 0x83B39364736F6C6343000813003300 ","sourceMap":"430:7671:22:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2185:227:5;;;;;;;;;;-1:-1:-1;2185:227:5;;;;;:::i;:::-;;:::i;:::-;;;597:25:25;;;585:2;570:18;2185:227:5;;;;;;;;834:31:22;;;;;;;;;;-1:-1:-1;834:31:22;;;;-1:-1:-1;;;834:31:22;;;;;;;;;798:14:25;;791:22;773:41;;761:2;746:18;834:31:22;633:187:25;7886:212:22;;;;;;;;;;-1:-1:-1;7886:212:22;;;;;:::i;:::-;;:::i;581:18::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4849:360::-;;;;;;;;;;-1:-1:-1;4849:360:22;;;;;:::i;:::-;;:::i;4575:221::-;;;;;;;;;;-1:-1:-1;4575:221:22;;;;;:::i;:::-;;:::i;:::-;;6225:100;;;;;;;;;;;;;:::i;974:46::-;;;;;;;;;;-1:-1:-1;974:46:22;;;;;:::i;:::-;;;;;;;;;;;;;;6968:257;;;;;;;;;;-1:-1:-1;6968:257:22;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3939:32:25;;;3921:51;;4003:2;3988:18;;3981:34;;;;3894:18;6968:257:22;3747:274:25;4042:426:5;;;;;;;;;;-1:-1:-1;4042:426:5;;;;;:::i;:::-;;:::i;6574:333:22:-;;;;;;;;;;;;;:::i;796:31::-;;;;;;;;;;-1:-1:-1;796:31:22;;;;-1:-1:-1;;;;;796:31:22;;;;;;-1:-1:-1;;;;;6056:32:25;;;6038:51;;6026:2;6011:18;796:31:22;5892:203:25;2569:486:5;;;;;;;;;;-1:-1:-1;2569:486:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5955:199:22:-;;;;;;;;;;-1:-1:-1;5955:199:22;;;;;:::i;:::-;;:::i;4310:193::-;;;;;;;;;;-1:-1:-1;4310:193:22;;;;;:::i;:::-;;:::i;697:24::-;;;;;;;;;;;;;;;;1824:101:0;;;;;;;;;;;;;:::i;2230:897:22:-;;;;;;:::i;:::-;;:::i;5691:193::-;;;;;;;;;;-1:-1:-1;5691:193:22;;;;;:::i;:::-;;:::i;728:32::-;;;;;;;;;;;;;;;;1201:85:0;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;606:20:22;;;;;;;;;;;;;:::i;874:41::-;;;;;;;;;;-1:-1:-1;874:41:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;5473:152;;;;;;;;;;-1:-1:-1;5473:152:22;;;;;:::i;:::-;;:::i;3123:153:5:-;;;;;;;;;;-1:-1:-1;3123:153:5;;;;;:::i;:::-;;:::i;3197:1061:22:-;;;;;;;;;;-1:-1:-1;3197:1061:22;;;;;:::i;:::-;;:::i;6393:116::-;;;;;;;;;;-1:-1:-1;6393:116:22;;;;;:::i;:::-;6454:7;6481:20;;;:11;:20;;;;;;;6393:116;633:26;;;;;;;;;;;;;:::i;666:24::-;;;;;;;;;;;;;;;;3343:166:5;;;;;;;;;;-1:-1:-1;3343:166:5;;;;;:::i;:::-;-1:-1:-1;;;;;3465:27:5;;;3442:4;3465:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3343:166;3576:394;;;;;;;;;;-1:-1:-1;3576:394:5;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;;;;;-1:-1:-1;2074:198:0;;;;;:::i;:::-;;:::i;5266:146:22:-;;;;;;;;;;-1:-1:-1;5266:146:22;;;;;:::i;:::-;;:::i;2185:227:5:-;2271:7;-1:-1:-1;;;;;2298:21:5;;2290:76;;;;-1:-1:-1;;;2290:76:5;;12579:2:25;2290:76:5;;;12561:21:25;12618:2;12598:18;;;12591:30;12657:34;12637:18;;;12630:62;-1:-1:-1;;;12708:18:25;;;12701:40;12758:19;;2290:76:5;;;;;;;;;-1:-1:-1;2383:9:5;:13;;;;;;;;;;;-1:-1:-1;;;;;2383:22:5;;;;;;;;;;2185:227;;;;;:::o;7886:212:22:-;8025:4;8054:36;8078:11;8054:23;:36::i;581:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4849:360::-;4993:22;5018:19;;;:10;:19;;;;;4993:44;;4962:13;;4993:22;5018:19;4993:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5079:1;5060:8;5054:22;:26;5050:74;;;5104:8;4849:360;-1:-1:-1;;4849:360:22:o;5050:74::-;5167:12;5181:18;5191:7;5181:9;:18::i;:::-;5150:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5136:65;;;4849:360;;;:::o;4575:221::-;1094:13:0;:11;:13::i;:::-;4721:1:22::1;4698:20:::0;;;:11:::1;:20;::::0;;;;;4690:57:::1;;;::::0;-1:-1:-1;;;4690:57:22;;14526:2:25;4690:57:22::1;::::0;::::1;14508:21:25::0;14565:2;14545:18;;;14538:30;-1:-1:-1;;;14584:18:25;;;14577:50;14644:18;;4690:57:22::1;14324:344:25::0;4690:57:22::1;4758:19;::::0;;;:10:::1;:19;::::0;;;;:30:::1;4780:8:::0;4758:19;:30:::1;:::i;:::-;;4575:221:::0;;:::o;6225:100::-;6271:7;6298:19;:9;918:14:16;;827:112;6298:19:22;6291:26;;6225:100;:::o;6968:257::-;7067:16;7085:21;7174:5;7153:17;;7141:9;:29;;;;:::i;:::-;7140:39;;;;:::i;:::-;7201:16;;-1:-1:-1;;;;;7201:16:22;;7124:55;;-1:-1:-1;6968:257:22;-1:-1:-1;;;6968:257:22:o;4042:426:5:-;-1:-1:-1;;;;;4267:20:5;;734:10:15;4267:20:5;;:60;;-1:-1:-1;4291:36:5;4308:4;734:10:15;3343:166:5;:::i;4291:36::-;4246:153;;;;-1:-1:-1;;;4246:153:5;;;;;;;:::i;:::-;4409:52;4432:4;4438:2;4442:3;4447:7;4456:4;4409:22;:52::i;:::-;4042:426;;;;;:::o;6574:333:22:-;1094:13:0;:11;:13::i;:::-;2261:21:4::1;:19;:21::i;:::-;6655::22::2;6695:11:::0;6687:46:::2;;;::::0;-1:-1:-1;;;6687:46:22;;17930:2:25;6687:46:22::2;::::0;::::2;17912:21:25::0;17969:2;17949:18;;;17942:30;-1:-1:-1;;;17988:18:25;;;17981:52;18050:18;;6687:46:22::2;17728:346:25::0;6687:46:22::2;6747:12;6773:7;1273:6:0::0;;-1:-1:-1;;;;;1273:6:0;;1201:85;6773:7:22::2;-1:-1:-1::0;;;;;6765:21:22::2;6794:7;6765:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6746:60;;;6825:7;6817:37;;;::::0;-1:-1:-1;;;6817:37:22;;18491:2:25;6817:37:22::2;::::0;::::2;18473:21:25::0;18530:2;18510:18;;;18503:30;-1:-1:-1;;;18549:18:25;;;18542:47;18606:18;;6817:37:22::2;18289:341:25::0;6817:37:22::2;1273:6:0::0;;-1:-1:-1;;;;;1273:6:0;-1:-1:-1;;;;;6872:27:22::2;;6891:7;6872:27;;;;597:25:25::0;;585:2;570:18;;451:177;6872:27:22::2;;;;;;;;6626:281;;2303:20:4::1;1716:1:::0;2809:7;:22;2629:209;2303:20:::1;6574:333:22:o:0;2569:486:5:-;2702:16;2757:3;:10;2738:8;:15;:29;2730:83;;;;-1:-1:-1;;;2730:83:5;;18837:2:25;2730:83:5;;;18819:21:25;18876:2;18856:18;;;18849:30;18915:34;18895:18;;;18888:62;-1:-1:-1;;;18966:18:25;;;18959:39;19015:19;;2730:83:5;18635:405:25;2730:83:5;2824:30;2871:8;:15;-1:-1:-1;;;;;2857:30:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2857:30:5;;2824:63;;2903:9;2898:120;2922:8;:15;2918:1;:19;2898:120;;;2977:30;2987:8;2996:1;2987:11;;;;;;;;:::i;:::-;;;;;;;3000:3;3004:1;3000:6;;;;;;;;:::i;:::-;;;;;;;2977:9;:30::i;:::-;2958:13;2972:1;2958:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2939:3;;;:::i;:::-;;;2898:120;;;-1:-1:-1;3035:13:5;2569:486;-1:-1:-1;;;2569:486:5:o;5955:199:22:-;1094:13:0;:11;:13::i;:::-;6047:9:22::1;6042:105;6066:9;:16;6062:1;:20;6042:105;;;6130:5;6104:9;:23;6114:9;6124:1;6114:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;6104:23:22::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;6104:23:22;:31;;-1:-1:-1;;6104:31:22::1;::::0;::::1;;::::0;;;::::1;::::0;;6084:3;::::1;::::0;::::1;:::i;:::-;;;;6042:105;;;;5955:199:::0;:::o;4310:193::-;1094:13:0;:11;:13::i;:::-;4389:12:22::1;:28;4404:13:::0;4389:12;:28:::1;:::i;:::-;;4428:22;4436:13;4428:7;:22::i;:::-;4466:29;4481:13;4466:29;;;;;;:::i;:::-;;;;;;;;4310:193:::0;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;2230:897:22:-:0;2348:7;2261:21:4;:19;:21::i;:::-;2390:19:22::1;::::0;-1:-1:-1;;;2390:19:22;::::1;;;::::0;:44:::1;;-1:-1:-1::0;2423:10:22::1;2413:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;2390:44;:69;;;-1:-1:-1::0;1273:6:0;;-1:-1:-1;;;;;1273:6:0;2438:10:22::1;:21;2390:69;2368:138;;;::::0;-1:-1:-1;;;2368:138:22;;19519:2:25;2368:138:22::1;::::0;::::1;19501:21:25::0;19558:2;19538:18;;;19531:30;-1:-1:-1;;;19577:18:25;;;19570:49;19636:18;;2368:138:22::1;19317:343:25::0;2368:138:22::1;2534:1;2525:6;:10;2517:52;;;::::0;-1:-1:-1;;;2517:52:22;;19867:2:25;2517:52:22::1;::::0;::::1;19849:21:25::0;19906:2;19886:18;;;19879:30;19945:31;19925:18;;;19918:59;19994:18;;2517:52:22::1;19665:353:25::0;2517:52:22::1;2613:6;2601:9;;:18;;;;:::i;:::-;2588:9;:31;;2580:64;;;::::0;-1:-1:-1;;;2580:64:22;;20225:2:25;2580:64:22::1;::::0;::::1;20207:21:25::0;20264:2;20244:18;;;20237:30;-1:-1:-1;;;20283:18:25;;;20276:50;20343:18;;2580:64:22::1;20023:344:25::0;2580:64:22::1;2657:21;:9;1032:19:16::0;;1050:1;1032:19;;;945:123;2657:21:22::1;2689:18;2710:19;:9;918:14:16::0;;827:112;2710:19:22::1;2689:40;;2764:9;;2777:1;2764:14;:63;;;-1:-1:-1::0;2818:9:22::1;::::0;2782:23:::1;::::0;;;:11:::1;:23;::::0;;;;;:32:::1;::::0;2808:6;;2782:32:::1;:::i;:::-;:45;;2764:63;2742:136;;;::::0;-1:-1:-1;;;2742:136:22;;20704:2:25;2742:136:22::1;::::0;::::1;20686:21:25::0;20743:2;20723:18;;;20716:30;-1:-1:-1;;;20762:18:25;;;20755:53;20825:18;;2742:136:22::1;20502:347:25::0;2742:136:22::1;2891:41;2897:10;2909;2921:6;2891:41;;;;;;;;;;;::::0;:5:::1;:41::i;:::-;2943:22;::::0;;;:10:::1;:22;::::0;;;;:33:::1;2968:8:::0;2943:22;:33:::1;:::i;:::-;-1:-1:-1::0;2987:23:22::1;::::0;;;:11:::1;:23;::::0;;;;:33;;3014:6;;2987:23;:33:::1;::::0;3014:6;;2987:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;3038:51:22::1;::::0;3060:10;;3048::::1;::::0;3038:51:::1;::::0;::::1;::::0;3072:6;;3080:8;;3038:51:::1;:::i;:::-;;;;;;;;3109:10:::0;-1:-1:-1;2303:20:4;1716:1;2809:7;:22;2629:209;5691:193:22;1094:13:0;:11;:13::i;:::-;5778:9:22::1;5773:104;5797:9;:16;5793:1;:20;5773:104;;;5861:4;5835:9;:23;5845:9;5855:1;5845:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;5835:23:22::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;5835:23:22;:30;;-1:-1:-1;;5835:30:22::1;::::0;::::1;;::::0;;;::::1;::::0;;5815:3;::::1;::::0;::::1;:::i;:::-;;;;5773:104;;606:20:::0;;;;;;;:::i;5473:152::-;1094:13:0;:11;:13::i;:::-;5544:19:22::1;:30:::0;;;::::1;;-1:-1:-1::0;;;5544:30:22::1;-1:-1:-1::0;;;;5544:30:22;;::::1;;::::0;;5590:27:::1;::::0;::::1;::::0;::::1;::::0;5566:8;798:14:25;791:22;773:41;;761:2;746:18;;633:187;3123:153:5;3217:52;734:10:15;3250:8:5;3260;3217:18;:52::i;3197:1061:22:-;1094:13:0;:11;:13::i;:::-;2261:21:4::1;:19;:21::i;:::-;3454:8:22::2;:15;3433:10;:17;:36;:86;;;;;3505:7;:14;3486:8;:15;:33;3433:86;:137;;;;;3554:9;:16;3536:7;:14;:34;3433:137;3411:208;;;::::0;-1:-1:-1;;;3411:208:22;;21352:2:25;3411:208:22::2;::::0;::::2;21334:21:25::0;21391:2;21371:18;;;21364:30;-1:-1:-1;;;21410:18:25;;;21403:51;21471:18;;3411:208:22::2;21150:345:25::0;3411:208:22::2;3637:9;3632:619;3656:10;:17;3652:1;:21;3632:619;;;3695:15;3713:8;3722:1;3713:11;;;;;;;;:::i;:::-;;;;;;;3695:29;;3739:14;3756:7;3764:1;3756:10;;;;;;;;:::i;:::-;;;;;;;3739:27;;3809:9;;3822:1;3809:14;:60;;;-1:-1:-1::0;3860:9:22::2;::::0;3827:20:::2;::::0;;;:11:::2;:20;::::0;;;;;:29:::2;::::0;3850:6;;3827:29:::2;:::i;:::-;:42;;3809:60;3783:145;;;::::0;-1:-1:-1;;;3783:145:22;;20704:2:25;3783:145:22::2;::::0;::::2;20686:21:25::0;20743:2;20723:18;;;20716:30;-1:-1:-1;;;20762:18:25;;;20755:53;20825:18;;3783:145:22::2;20502:347:25::0;3783:145:22::2;3945:41;3951:10;3962:1;3951:13;;;;;;;;:::i;:::-;;;;;;;3966:7;3975:6;3945:41;;;;;;;;;;;::::0;:5:::2;:41::i;:::-;4013:19;::::0;;;:10:::2;:19;::::0;;;;4007:33;;::::2;::::0;::::2;:::i;:::-;;;4044:1;4007:38:::0;4003:113:::2;;4088:9;4098:1;4088:12;;;;;;;;:::i;:::-;;;;;;;4066:10;:19;4077:7;4066:19;;;;;;;;;;;:34;;;;;;:::i;:::-;;4003:113;4132:20;::::0;;;:11:::2;:20;::::0;;;;:30;;4156:6;;4132:20;:30:::2;::::0;4156:6;;4132:30:::2;:::i;:::-;;;;;;;;4209:7;4194:10;4205:1;4194:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4184:55:22::2;;4218:6;4226:9;4236:1;4226:12;;;;;;;;:::i;:::-;;;;;;;4184:55;;;;;;;:::i;:::-;;;;;;;;3680:571;;3675:3;;;;;:::i;:::-;;;;3632:619;;;;2303:20:4::1;1716:1:::0;2809:7;:22;2629:209;2303:20:::1;3197:1061:22::0;;;;:::o;633:26::-;;;;;;;:::i;3576:394:5:-;-1:-1:-1;;;;;3776:20:5;;734:10:15;3776:20:5;;:60;;-1:-1:-1;3800:36:5;3817:4;734:10:15;3343:166:5;:::i;3800:36::-;3755:153;;;;-1:-1:-1;;;3755:153:5;;;;;;;:::i;:::-;3918:45;3936:4;3942:2;3946;3950:6;3958:4;3918:17;:45::i;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;21702:2:25;2154:73:0::1;::::0;::::1;21684:21:25::0;21741:2;21721:18;;;21714:30;21780:34;21760:18;;;21753:62;-1:-1:-1;;;21831:18:25;;;21824:36;21877:19;;2154:73:0::1;21500:402:25::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;5266:146:22:-;1094:13:0;:11;:13::i;:::-;5338:9:22::1;:22:::0;;;5376:28:::1;::::0;597:25:25;;;5376:28:22::1;::::0;585:2:25;570:18;5376:28:22::1;451:177:25::0;1236:305:5;1338:4;-1:-1:-1;;;;;;1373:41:5;;-1:-1:-1;;;1373:41:5;;:109;;-1:-1:-1;;;;;;;1430:52:5;;-1:-1:-1;;;1430:52:5;1373:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:18;;;1498:36:5;829:155:18;7290:533:22;7347:13;7377:5;7386:1;7377:10;7373:53;;-1:-1:-1;;7404:10:22;;;;;;;;;;;;-1:-1:-1;;;7404:10:22;;;;;7290:533::o;7373:53::-;7451:5;7436:12;7492:78;7499:9;;7492:78;;7525:8;;;;:::i;:::-;;-1:-1:-1;7548:10:22;;-1:-1:-1;7556:2:22;7548:10;;:::i;:::-;;;7492:78;;;7580:19;7612:6;-1:-1:-1;;;;;7602:17:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7602:17:22;;7580:39;;7630:154;7637:10;;7630:154;;7664:11;7674:1;7664:11;;:::i;:::-;;-1:-1:-1;7733:10:22;7741:2;7733:5;:10;:::i;:::-;7720:24;;:2;:24;:::i;:::-;7707:39;;7690:6;7697;7690:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7690:56:22;;;;;;;;-1:-1:-1;7761:11:22;7770:2;7761:11;;:::i;:::-;;;7630:154;;;7808:6;7290:533;-1:-1:-1;;;;7290:533:22:o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;734:10:15;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;22359:2:25;1414:68:0;;;22341:21:25;;;22378:18;;;22371:30;22437:34;22417:18;;;22410:62;22489:18;;1414:68:0;22157:356:25;6211:1115:5;6431:7;:14;6417:3;:10;:28;6409:81;;;;-1:-1:-1;;;6409:81:5;;22720:2:25;6409:81:5;;;22702:21:25;22759:2;22739:18;;;22732:30;22798:34;22778:18;;;22771:62;-1:-1:-1;;;22849:18:25;;;22842:38;22897:19;;6409:81:5;22518:404:25;6409:81:5;-1:-1:-1;;;;;6508:16:5;;6500:66;;;;-1:-1:-1;;;6500:66:5;;;;;;;:::i;:::-;734:10:15;6577:16:5;6690:411;6714:3;:10;6710:1;:14;6690:411;;;6745:10;6758:3;6762:1;6758:6;;;;;;;;:::i;:::-;;;;;;;6745:19;;6778:14;6795:7;6803:1;6795:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6820:19;6842:13;;;;;;;;;;-1:-1:-1;;;;;6842:19:5;;;;;;;;;;;;6795:10;;-1:-1:-1;6883:21:5;;;;6875:76;;;;-1:-1:-1;;;6875:76:5;;;;;;;:::i;:::-;6993:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6993:19:5;;;;;;;;;;7015:20;;;6993:42;;7063:17;;;;;;;:27;;7015:20;;6993:9;7063:27;;7015:20;;7063:27;:::i;:::-;;;;;;;;6731:370;;;6726:3;;;;:::i;:::-;;;6690:411;;;;7146:2;-1:-1:-1;;;;;7116:47:5;7140:4;-1:-1:-1;;;;;7116:47:5;7130:8;-1:-1:-1;;;;;7116:47:5;;7150:3;7155:7;7116:47;;;;;;;:::i;:::-;;;;;;;;7244:75;7280:8;7290:4;7296:2;7300:3;7305:7;7314:4;7244:35;:75::i;:::-;6399:927;6211:1115;;;;;:::o;2336:287:4:-;1759:1;2468:7;;:19;2460:63;;;;-1:-1:-1;;;2460:63:4;;24416:2:25;2460:63:4;;;24398:21:25;24455:2;24435:18;;;24428:30;24494:33;24474:18;;;24467:61;24545:18;;2460:63:4;24214:355:25;2460:63:4;1759:1;2598:7;:18;2336:287::o;8149:86:5:-;8215:4;:13;8222:6;8215:4;:13;:::i;2426:187:0:-;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;8608:671:5:-;-1:-1:-1;;;;;8717:16:5;;8709:62;;;;-1:-1:-1;;;8709:62:5;;24776:2:25;8709:62:5;;;24758:21:25;24815:2;24795:18;;;24788:30;24854:34;24834:18;;;24827:62;-1:-1:-1;;;24905:18:25;;;24898:31;24946:19;;8709:62:5;24574:397:25;8709:62:5;734:10:15;8782:16:5;8846:21;8864:2;8846:17;:21::i;:::-;8823:44;;8877:24;8904:25;8922:6;8904:17;:25::i;:::-;8877:52;;9017:9;:13;;;;;;;;;;;-1:-1:-1;;;;;9017:17:5;;;;;;;;;:27;;9038:6;;9017:9;:27;;9038:6;;9017:27;:::i;:::-;;;;-1:-1:-1;;9059:52:5;;;25150:25:25;;;25206:2;25191:18;;25184:34;;;-1:-1:-1;;;;;9059:52:5;;;;9092:1;;9059:52;;;;;;25123:18:25;9059:52:5;;;;;;;9198:74;9229:8;9247:1;9251:2;9255;9259:6;9267:4;9198:30;:74::i;:::-;8699:580;;;8608:671;;;;:::o;12790:293::-;12910:8;-1:-1:-1;;;;;12901:17:5;:5;-1:-1:-1;;;;;12901:17:5;;12893:71;;;;-1:-1:-1;;;12893:71:5;;25431:2:25;12893:71:5;;;25413:21:25;25470:2;25450:18;;;25443:30;25509:34;25489:18;;;25482:62;-1:-1:-1;;;25560:18:25;;;25553:39;25609:19;;12893:71:5;25229:405:25;12893:71:5;-1:-1:-1;;;;;12974:25:5;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12974:46:5;;;;;;;;;;13035:41;;773::25;;;13035::5;;746:18:25;13035:41:5;;;;;;;12790:293;;;:::o;4918:947::-;-1:-1:-1;;;;;5099:16:5;;5091:66;;;;-1:-1:-1;;;5091:66:5;;;;;;;:::i;:::-;734:10:15;5168:16:5;5232:21;5250:2;5232:17;:21::i;:::-;5209:44;;5263:24;5290:25;5308:6;5290:17;:25::i;:::-;5263:52;;5397:19;5419:13;;;;;;;;;;;-1:-1:-1;;;;;5419:19:5;;;;;;;;;;5456:21;;;;5448:76;;;;-1:-1:-1;;;5448:76:5;;;;;;;:::i;:::-;5558:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5558:19:5;;;;;;;;;;5580:20;;;5558:42;;5620:17;;;;;;;:27;;5580:20;;5558:9;5620:27;;5580:20;;5620:27;:::i;:::-;;;;-1:-1:-1;;5663:46:5;;;25150:25:25;;;25206:2;25191:18;;25184:34;;;-1:-1:-1;;;;;5663:46:5;;;;;;;;;;;;;;25123:18:25;5663:46:5;;;;;;;5790:68;5821:8;5831:4;5837:2;5841;5845:6;5853:4;5790:30;:68::i;:::-;5081:784;;;;4918:947;;;;;:::o;16116:792::-;-1:-1:-1;;;;;16348:13:5;;1702:19:14;:23;16344:558:5;;16383:79;;-1:-1:-1;;;16383:79:5;;-1:-1:-1;;;;;16383:43:5;;;;;:79;;16427:8;;16437:4;;16443:3;;16448:7;;16457:4;;16383:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16383:79:5;;;;;;;;-1:-1:-1;;16383:79:5;;;;;;;;;;;;:::i;:::-;;;16379:513;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;16768:6;16761:14;;-1:-1:-1;;;16761:14:5;;;;;;;;:::i;16379:513::-;;;16815:62;;-1:-1:-1;;;16815:62:5;;27787:2:25;16815:62:5;;;27769:21:25;27826:2;27806:18;;;27799:30;27865:34;27845:18;;;27838:62;-1:-1:-1;;;27916:18:25;;;27909:50;27976:19;;16815:62:5;27585:416:25;16379:513:5;-1:-1:-1;;;;;;16541:60:5;;-1:-1:-1;;;16541:60:5;16537:157;;16625:50;;-1:-1:-1;;;16625:50:5;;;;;;;:::i;16914:193::-;17033:16;;;17047:1;17033:16;;;;;;;;;16980;;17008:22;;17033:16;;;;;;;;;;;;-1:-1:-1;17033:16:5;17008:41;;17070:7;17059:5;17065:1;17059:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;17095:5;16914:193;-1:-1:-1;;16914:193:5:o;15385:725::-;-1:-1:-1;;;;;15592:13:5;;1702:19:14;:23;15588:516:5;;15627:72;;-1:-1:-1;;;15627:72:5;;-1:-1:-1;;;;;15627:38:5;;;;;:72;;15666:8;;15676:4;;15682:2;;15686:6;;15694:4;;15627:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15627:72:5;;;;;;;;-1:-1:-1;;15627:72:5;;;;;;;;;;;;:::i;:::-;;;15623:471;;;;:::i;:::-;-1:-1:-1;;;;;;15748:55:5;;-1:-1:-1;;;15748:55:5;15744:152;;15827:50;;-1:-1:-1;;;15827:50:5;;;;;;;:::i;14:173:25:-;82:20;;-1:-1:-1;;;;;131:31:25;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:25:o;825:131::-;-1:-1:-1;;;;;;899:32:25;;889:43;;879:71;;946:1;943;936:12;961:245;1019:6;1072:2;1060:9;1051:7;1047:23;1043:32;1040:52;;;1088:1;1085;1078:12;1040:52;1127:9;1114:23;1146:30;1170:5;1146:30;:::i;:::-;1195:5;961:245;-1:-1:-1;;;961:245:25:o;1211:250::-;1296:1;1306:113;1320:6;1317:1;1314:13;1306:113;;;1396:11;;;1390:18;1377:11;;;1370:39;1342:2;1335:10;1306:113;;;-1:-1:-1;;1453:1:25;1435:16;;1428:27;1211:250::o;1466:271::-;1508:3;1546:5;1540:12;1573:6;1568:3;1561:19;1589:76;1658:6;1651:4;1646:3;1642:14;1635:4;1628:5;1624:16;1589:76;:::i;:::-;1719:2;1698:15;-1:-1:-1;;1694:29:25;1685:39;;;;1726:4;1681:50;;1466:271;-1:-1:-1;;1466:271:25:o;1742:220::-;1891:2;1880:9;1873:21;1854:4;1911:45;1952:2;1941:9;1937:18;1929:6;1911:45;:::i;1967:180::-;2026:6;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;-1:-1:-1;2118:23:25;;1967:180;-1:-1:-1;1967:180:25:o;2152:127::-;2213:10;2208:3;2204:20;2201:1;2194:31;2244:4;2241:1;2234:15;2268:4;2265:1;2258:15;2284:249;2394:2;2375:13;;-1:-1:-1;;2371:27:25;2359:40;;-1:-1:-1;;;;;2414:34:25;;2450:22;;;2411:62;2408:88;;;2476:18;;:::i;:::-;2512:2;2505:22;-1:-1:-1;;2284:249:25:o;2538:556::-;2581:5;2634:3;2627:4;2619:6;2615:17;2611:27;2601:55;;2652:1;2649;2642:12;2601:55;2688:6;2675:20;-1:-1:-1;;;;;2710:2:25;2707:26;2704:52;;;2736:18;;:::i;:::-;2785:2;2779:9;2797:67;2852:2;2833:13;;-1:-1:-1;;2829:27:25;2858:4;2825:38;2779:9;2797:67;:::i;:::-;2888:2;2880:6;2873:18;2934:3;2927:4;2922:2;2914:6;2910:15;2906:26;2903:35;2900:55;;;2951:1;2948;2941:12;2900:55;3015:2;3008:4;3000:6;2996:17;2989:4;2981:6;2977:17;2964:54;3062:1;3038:15;;;3055:4;3034:26;3027:37;;;;3042:6;2538:556;-1:-1:-1;;;2538:556:25:o;3099:390::-;3177:6;3185;3238:2;3226:9;3217:7;3213:23;3209:32;3206:52;;;3254:1;3251;3244:12;3206:52;3290:9;3277:23;3267:33;;3351:2;3340:9;3336:18;3323:32;-1:-1:-1;;;;;3370:6:25;3367:30;3364:50;;;3410:1;3407;3400:12;3364:50;3433;3475:7;3466:6;3455:9;3451:22;3433:50;:::i;:::-;3423:60;;;3099:390;;;;;:::o;3494:248::-;3562:6;3570;3623:2;3611:9;3602:7;3598:23;3594:32;3591:52;;;3639:1;3636;3629:12;3591:52;-1:-1:-1;;3662:23:25;;;3732:2;3717:18;;;3704:32;;-1:-1:-1;3494:248:25:o;4026:183::-;4086:4;-1:-1:-1;;;;;4111:6:25;4108:30;4105:56;;;4141:18;;:::i;:::-;-1:-1:-1;4186:1:25;4182:14;4198:4;4178:25;;4026:183::o;4214:724::-;4268:5;4321:3;4314:4;4306:6;4302:17;4298:27;4288:55;;4339:1;4336;4329:12;4288:55;4375:6;4362:20;4401:4;4424:43;4464:2;4424:43;:::i;:::-;4496:2;4490:9;4508:31;4536:2;4528:6;4508:31;:::i;:::-;4574:18;;;4666:1;4662:10;;;;4650:23;;4646:32;;;4608:15;;;;-1:-1:-1;4690:15:25;;;4687:35;;;4718:1;4715;4708:12;4687:35;4754:2;4746:6;4742:15;4766:142;4782:6;4777:3;4774:15;4766:142;;;4848:17;;4836:30;;4886:12;;;;4799;;4766:142;;;-1:-1:-1;4926:6:25;4214:724;-1:-1:-1;;;;;;4214:724:25:o;4943:944::-;5097:6;5105;5113;5121;5129;5182:3;5170:9;5161:7;5157:23;5153:33;5150:53;;;5199:1;5196;5189:12;5150:53;5222:29;5241:9;5222:29;:::i;:::-;5212:39;;5270:38;5304:2;5293:9;5289:18;5270:38;:::i;:::-;5260:48;;5359:2;5348:9;5344:18;5331:32;-1:-1:-1;;;;;5423:2:25;5415:6;5412:14;5409:34;;;5439:1;5436;5429:12;5409:34;5462:61;5515:7;5506:6;5495:9;5491:22;5462:61;:::i;:::-;5452:71;;5576:2;5565:9;5561:18;5548:32;5532:48;;5605:2;5595:8;5592:16;5589:36;;;5621:1;5618;5611:12;5589:36;5644:63;5699:7;5688:8;5677:9;5673:24;5644:63;:::i;:::-;5634:73;;5760:3;5749:9;5745:19;5732:33;5716:49;;5790:2;5780:8;5777:16;5774:36;;;5806:1;5803;5796:12;5774:36;;5829:52;5873:7;5862:8;5851:9;5847:24;5829:52;:::i;:::-;5819:62;;;4943:944;;;;;;;;:::o;6100:730::-;6154:5;6207:3;6200:4;6192:6;6188:17;6184:27;6174:55;;6225:1;6222;6215:12;6174:55;6261:6;6248:20;6287:4;6310:43;6350:2;6310:43;:::i;:::-;6382:2;6376:9;6394:31;6422:2;6414:6;6394:31;:::i;:::-;6460:18;;;6552:1;6548:10;;;;6536:23;;6532:32;;;6494:15;;;;-1:-1:-1;6576:15:25;;;6573:35;;;6604:1;6601;6594:12;6573:35;6640:2;6632:6;6628:15;6652:148;6668:6;6663:3;6660:15;6652:148;;;6734:23;6753:3;6734:23;:::i;:::-;6722:36;;6778:12;;;;6685;;6652:148;;6835:595;6953:6;6961;7014:2;7002:9;6993:7;6989:23;6985:32;6982:52;;;7030:1;7027;7020:12;6982:52;7070:9;7057:23;-1:-1:-1;;;;;7140:2:25;7132:6;7129:14;7126:34;;;7156:1;7153;7146:12;7126:34;7179:61;7232:7;7223:6;7212:9;7208:22;7179:61;:::i;:::-;7169:71;;7293:2;7282:9;7278:18;7265:32;7249:48;;7322:2;7312:8;7309:16;7306:36;;;7338:1;7335;7328:12;7306:36;;7361:63;7416:7;7405:8;7394:9;7390:24;7361:63;:::i;7435:435::-;7488:3;7526:5;7520:12;7553:6;7548:3;7541:19;7579:4;7608:2;7603:3;7599:12;7592:19;;7645:2;7638:5;7634:14;7666:1;7676:169;7690:6;7687:1;7684:13;7676:169;;;7751:13;;7739:26;;7785:12;;;;7820:15;;;;7712:1;7705:9;7676:169;;;-1:-1:-1;7861:3:25;;7435:435;-1:-1:-1;;;;;7435:435:25:o;7875:261::-;8054:2;8043:9;8036:21;8017:4;8074:56;8126:2;8115:9;8111:18;8103:6;8074:56;:::i;8141:348::-;8225:6;8278:2;8266:9;8257:7;8253:23;8249:32;8246:52;;;8294:1;8291;8284:12;8246:52;8334:9;8321:23;-1:-1:-1;;;;;8359:6:25;8356:30;8353:50;;;8399:1;8396;8389:12;8353:50;8422:61;8475:7;8466:6;8455:9;8451:22;8422:61;:::i;8494:322::-;8563:6;8616:2;8604:9;8595:7;8591:23;8587:32;8584:52;;;8632:1;8629;8622:12;8584:52;8672:9;8659:23;-1:-1:-1;;;;;8697:6:25;8694:30;8691:50;;;8737:1;8734;8727:12;8691:50;8760;8802:7;8793:6;8782:9;8778:22;8760:50;:::i;8821:186::-;8880:6;8933:2;8921:9;8912:7;8908:23;8904:32;8901:52;;;8949:1;8946;8939:12;8901:52;8972:29;8991:9;8972:29;:::i;9012:160::-;9077:20;;9133:13;;9126:21;9116:32;;9106:60;;9162:1;9159;9152:12;9177:180;9233:6;9286:2;9274:9;9265:7;9261:23;9257:32;9254:52;;;9302:1;9299;9292:12;9254:52;9325:26;9341:9;9325:26;:::i;9362:254::-;9427:6;9435;9488:2;9476:9;9467:7;9463:23;9459:32;9456:52;;;9504:1;9501;9494:12;9456:52;9527:29;9546:9;9527:29;:::i;:::-;9517:39;;9575:35;9606:2;9595:9;9591:18;9575:35;:::i;:::-;9565:45;;9362:254;;;;;:::o;9621:1874::-;9817:6;9825;9833;9841;9894:3;9882:9;9873:7;9869:23;9865:33;9862:53;;;9911:1;9908;9901:12;9862:53;9951:9;9938:23;-1:-1:-1;;;;;10021:2:25;10013:6;10010:14;10007:34;;;10037:1;10034;10027:12;10007:34;10060:61;10113:7;10104:6;10093:9;10089:22;10060:61;:::i;:::-;10050:71;;10140:2;10130:12;;10195:2;10184:9;10180:18;10167:32;10224:2;10214:8;10211:16;10208:36;;;10240:1;10237;10230:12;10208:36;10263:63;10318:7;10307:8;10296:9;10292:24;10263:63;:::i;:::-;10253:73;;;10379:2;10368:9;10364:18;10351:32;10408:2;10398:8;10395:16;10392:36;;;10424:1;10421;10414:12;10392:36;10447:63;10502:7;10491:8;10480:9;10476:24;10447:63;:::i;:::-;10437:73;;;10563:2;10552:9;10548:18;10535:32;10592:2;10582:8;10579:16;10576:36;;;10608:1;10605;10598:12;10576:36;10631:24;;10686:4;10678:13;;10674:27;-1:-1:-1;10664:55:25;;10715:1;10712;10705:12;10664:55;10751:2;10738:16;10773:43;10813:2;10773:43;:::i;:::-;10845:2;10839:9;10857:31;10885:2;10877:6;10857:31;:::i;:::-;10923:18;;;11011:1;11007:10;;;;10999:19;;10995:28;;;10957:15;;;;-1:-1:-1;11035:19:25;;;11032:39;;;11067:1;11064;11057:12;11032:39;11099:2;11095;11091:11;11111:353;11127:6;11122:3;11119:15;11111:353;;;11213:3;11200:17;11249:2;11236:11;11233:19;11230:109;;;11293:1;11322:2;11318;11311:14;11230:109;11364:57;11413:7;11408:2;11394:11;11390:2;11386:20;11382:29;11364:57;:::i;:::-;11352:70;;-1:-1:-1;11442:12:25;;;;11144;;11111:353;;;-1:-1:-1;9621:1874:25;;;;-1:-1:-1;9621:1874:25;;-1:-1:-1;;;;;;;9621:1874:25:o;11500:260::-;11568:6;11576;11629:2;11617:9;11608:7;11604:23;11600:32;11597:52;;;11645:1;11642;11635:12;11597:52;11668:29;11687:9;11668:29;:::i;:::-;11658:39;;11716:38;11750:2;11739:9;11735:18;11716:38;:::i;11765:607::-;11869:6;11877;11885;11893;11901;11954:3;11942:9;11933:7;11929:23;11925:33;11922:53;;;11971:1;11968;11961:12;11922:53;11994:29;12013:9;11994:29;:::i;:::-;11984:39;;12042:38;12076:2;12065:9;12061:18;12042:38;:::i;:::-;12032:48;;12127:2;12116:9;12112:18;12099:32;12089:42;;12178:2;12167:9;12163:18;12150:32;12140:42;;12233:3;12222:9;12218:19;12205:33;-1:-1:-1;;;;;12253:6:25;12250:30;12247:50;;;12293:1;12290;12283:12;12247:50;12316;12358:7;12349:6;12338:9;12334:22;12316:50;:::i;12788:380::-;12867:1;12863:12;;;;12910;;;12931:61;;12985:4;12977:6;12973:17;12963:27;;12931:61;13038:2;13030:6;13027:14;13007:18;13004:38;13001:161;;13084:10;13079:3;13075:20;13072:1;13065:31;13119:4;13116:1;13109:15;13147:4;13144:1;13137:15;13001:161;;12788:380;;;:::o;13299:1020::-;13475:3;13504:1;13537:6;13531:13;13567:36;13593:9;13567:36;:::i;:::-;13622:1;13639:18;;;13666:133;;;;13813:1;13808:356;;;;13632:532;;13666:133;-1:-1:-1;;13699:24:25;;13687:37;;13772:14;;13765:22;13753:35;;13744:45;;;-1:-1:-1;13666:133:25;;13808:356;13839:6;13836:1;13829:17;13869:4;13914:2;13911:1;13901:16;13939:1;13953:165;13967:6;13964:1;13961:13;13953:165;;;14045:14;;14032:11;;;14025:35;14088:16;;;;13982:10;;13953:165;;;13957:3;;;14147:6;14142:3;14138:16;14131:23;;13632:532;;;;;14195:6;14189:13;14211:68;14270:8;14265:3;14258:4;14250:6;14246:17;14211:68;:::i;:::-;14295:18;;13299:1020;-1:-1:-1;;;;13299:1020:25:o;14673:545::-;14775:2;14770:3;14767:11;14764:448;;;14811:1;14836:5;14832:2;14825:17;14881:4;14877:2;14867:19;14951:2;14939:10;14935:19;14932:1;14928:27;14922:4;14918:38;14987:4;14975:10;14972:20;14969:47;;;-1:-1:-1;15010:4:25;14969:47;15065:2;15060:3;15056:12;15053:1;15049:20;15043:4;15039:31;15029:41;;15120:82;15138:2;15131:5;15128:13;15120:82;;;15183:17;;;15164:1;15153:13;15120:82;;15394:1352;15520:3;15514:10;-1:-1:-1;;;;;15539:6:25;15536:30;15533:56;;;15569:18;;:::i;:::-;15598:97;15688:6;15648:38;15680:4;15674:11;15648:38;:::i;:::-;15642:4;15598:97;:::i;:::-;15750:4;;15814:2;15803:14;;15831:1;15826:663;;;;16533:1;16550:6;16547:89;;;-1:-1:-1;16602:19:25;;;16596:26;16547:89;-1:-1:-1;;15351:1:25;15347:11;;;15343:24;15339:29;15329:40;15375:1;15371:11;;;15326:57;16649:81;;15796:944;;15826:663;13246:1;13239:14;;;13283:4;13270:18;;-1:-1:-1;;15862:20:25;;;15980:236;15994:7;15991:1;15988:14;15980:236;;;16083:19;;;16077:26;16062:42;;16175:27;;;;16143:1;16131:14;;;;16010:19;;15980:236;;;15984:3;16244:6;16235:7;16232:19;16229:201;;;16305:19;;;16299:26;-1:-1:-1;;16388:1:25;16384:14;;;16400:3;16380:24;16376:37;16372:42;16357:58;16342:74;;16229:201;-1:-1:-1;;;;;16476:1:25;16460:14;;;16456:22;16443:36;;-1:-1:-1;15394:1352:25:o;16751:127::-;16812:10;16807:3;16803:20;16800:1;16793:31;16843:4;16840:1;16833:15;16867:4;16864:1;16857:15;16883:168;16956:9;;;16987;;17004:15;;;16998:22;;16984:37;16974:71;;17025:18;;:::i;17056:127::-;17117:10;17112:3;17108:20;17105:1;17098:31;17148:4;17145:1;17138:15;17172:4;17169:1;17162:15;17188:120;17228:1;17254;17244:35;;17259:18;;:::i;:::-;-1:-1:-1;17293:9:25;;17188:120::o;17313:410::-;17515:2;17497:21;;;17554:2;17534:18;;;17527:30;17593:34;17588:2;17573:18;;17566:62;-1:-1:-1;;;17659:2:25;17644:18;;17637:44;17713:3;17698:19;;17313:410::o;19045:127::-;19106:10;19101:3;19097:20;19094:1;19087:31;19137:4;19134:1;19127:15;19161:4;19158:1;19151:15;19177:135;19216:3;19237:17;;;19234:43;;19257:18;;:::i;:::-;-1:-1:-1;19304:1:25;19293:13;;19177:135::o;20372:125::-;20437:9;;;20458:10;;;20455:36;;;20471:18;;:::i;20854:291::-;21031:6;21020:9;21013:25;21074:2;21069;21058:9;21054:18;21047:30;20994:4;21094:45;21135:2;21124:9;21120:18;21112:6;21094:45;:::i;21907:128::-;21974:9;;;21995:11;;;21992:37;;;22009:18;;:::i;22040:112::-;22072:1;22098;22088:35;;22103:18;;:::i;:::-;-1:-1:-1;22137:9:25;;22040:112::o;22927:401::-;23129:2;23111:21;;;23168:2;23148:18;;;23141:30;23207:34;23202:2;23187:18;;23180:62;-1:-1:-1;;;23273:2:25;23258:18;;23251:35;23318:3;23303:19;;22927:401::o;23333:406::-;23535:2;23517:21;;;23574:2;23554:18;;;23547:30;23613:34;23608:2;23593:18;;23586:62;-1:-1:-1;;;23679:2:25;23664:18;;23657:40;23729:3;23714:19;;23333:406::o;23744:465::-;24001:2;23990:9;23983:21;23964:4;24027:56;24079:2;24068:9;24064:18;24056:6;24027:56;:::i;:::-;24131:9;24123:6;24119:22;24114:2;24103:9;24099:18;24092:50;24159:44;24196:6;24188;24159:44;:::i;:::-;24151:52;23744:465;-1:-1:-1;;;;;23744:465:25:o;25639:827::-;-1:-1:-1;;;;;26036:15:25;;;26018:34;;26088:15;;26083:2;26068:18;;26061:43;25998:3;26135:2;26120:18;;26113:31;;;25961:4;;26167:57;;26204:19;;26196:6;26167:57;:::i;:::-;26272:9;26264:6;26260:22;26255:2;26244:9;26240:18;26233:50;26306:44;26343:6;26335;26306:44;:::i;:::-;26292:58;;26399:9;26391:6;26387:22;26381:3;26370:9;26366:19;26359:51;26427:33;26453:6;26445;26427:33;:::i;:::-;26419:41;25639:827;-1:-1:-1;;;;;;;;25639:827:25:o;26471:249::-;26540:6;26593:2;26581:9;26572:7;26568:23;26564:32;26561:52;;;26609:1;26606;26599:12;26561:52;26641:9;26635:16;26660:30;26684:5;26660:30;:::i;26725:179::-;26760:3;26802:1;26784:16;26781:23;26778:120;;;26848:1;26845;26842;26827:23;-1:-1:-1;26885:1:25;26879:8;26874:3;26870:18;26778:120;26725:179;:::o;26909:671::-;26948:3;26990:4;26972:16;26969:26;26966:39;;;26909:671;:::o;26966:39::-;27032:2;27026:9;-1:-1:-1;;27097:16:25;27093:25;;27090:1;27026:9;27069:50;27148:4;27142:11;27172:16;-1:-1:-1;;;;;27278:2:25;27271:4;27263:6;27259:17;27256:25;27251:2;27243:6;27240:14;27237:45;27234:58;;;27285:5;;;;;26909:671;:::o;27234:58::-;27322:6;27316:4;27312:17;27301:28;;27358:3;27352:10;27385:2;27377:6;27374:14;27371:27;;;27391:5;;;;;;26909:671;:::o;27371:27::-;27475:2;27456:16;27450:4;27446:27;27442:36;27435:4;27426:6;27421:3;27417:16;27413:27;27410:69;27407:82;;;27482:5;;;;;;26909:671;:::o;27407:82::-;27498:57;27549:4;27540:6;27532;27528:19;27524:30;27518:4;27498:57;:::i;:::-;-1:-1:-1;27571:3:25;;26909:671;-1:-1:-1;;;;;26909:671:25:o;28006:404::-;28208:2;28190:21;;;28247:2;28227:18;;;28220:30;28286:34;28281:2;28266:18;;28259:62;-1:-1:-1;;;28352:2:25;28337:18;;28330:38;28400:3;28385:19;;28006:404::o;28415:561::-;-1:-1:-1;;;;;28712:15:25;;;28694:34;;28764:15;;28759:2;28744:18;;28737:43;28811:2;28796:18;;28789:34;;;28854:2;28839:18;;28832:34;;;28674:3;28897;28882:19;;28875:32;;;28637:4;;28924:46;;28950:19;;28942:6;28924:46;:::i;:::-;28916:54;28415:561;-1:-1:-1;;;;;;;28415:561:25:o"},"methodIdentifiers":{"addToWhitelist(address[])":"7f649783","balanceOf(address,uint256)":"00fdd58e","balanceOfBatch(address[],uint256[])":"4e1273f4","baseTokenURI()":"d547cfb7","batchMint(address[],uint256[],uint256[],string[])":"b3a80e9c","isApprovedForAll(address,address)":"e985e9c5","isPublicMintEnabled()":"0116bc2d","maxSupply()":"d5abeb01","mint(uint256,string)":"77097fc8","mintPrice()":"6817c76c","name()":"06fdde03","owner()":"8da5cb5b","removeFromWhitelist(address[])":"548db174","renounceOwnership()":"715018a6","royaltyInfo(uint256,uint256)":"2a55205a","royaltyPercentage()":"8a71bb2d","royaltyRecipient()":"4c00de82","safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)":"2eb2c2d6","safeTransferFrom(address,address,uint256,uint256,bytes)":"f242432a","setApprovalForAll(address,bool)":"a22cb465","setBaseURI(string)":"55f804b3","setMintPrice(uint256)":"f4a0a528","setTokenURI(uint256,string)":"162094c4","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","togglePublicMint(bool)":"9b7c1c83","tokenSupply(uint256)":"2693ebf2","totalSupply()":"18160ddd","totalSupply(uint256)":"bd85b039","transferOwnership(address)":"f2fde38b","uri(uint256)":"0e89341c","whitelist(address)":"9b19251a","withdraw()":"3ccfd60b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_baseTokenURI\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"_maxSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_royaltyPercentage\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_royaltyRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_mintPrice\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"_isPublicMint\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"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\":\"newBaseURI\",\"type\":\"string\"}],\"name\":\"BaseURIUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newPrice\",\"type\":\"uint256\"}],\"name\":\"MintPriceUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"minter\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"tokenURI\",\"type\":\"string\"}],\"name\":\"NFTMinted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"enabled\",\"type\":\"bool\"}],\"name\":\"PublicMintToggled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"}],\"name\":\"TransferBatch\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"TransferSingle\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"value\",\"type\":\"string\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"URI\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"addresses\",\"type\":\"address[]\"}],\"name\":\"addToWhitelist\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"accounts\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"}],\"name\":\"balanceOfBatch\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"baseTokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"recipients\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"},{\"internalType\":\"string[]\",\"name\":\"tokenURIs\",\"type\":\"string[]\"}],\"name\":\"batchMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isPublicMintEnabled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"tokenURI\",\"type\":\"string\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"mintPrice\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"addresses\",\"type\":\"address[]\"}],\"name\":\"removeFromWhitelist\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"salePrice\",\"type\":\"uint256\"}],\"name\":\"royaltyInfo\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"royaltyAmount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"royaltyPercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"royaltyRecipient\",\"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\":\"ids\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeBatchTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"_baseTokenURI\",\"type\":\"string\"}],\"name\":\"setBaseURI\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_mintPrice\",\"type\":\"uint256\"}],\"name\":\"setMintPrice\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"tokenURI\",\"type\":\"string\"}],\"name\":\"setTokenURI\",\"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\":\"bool\",\"name\":\"_enabled\",\"type\":\"bool\"}],\"name\":\"togglePublicMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"tokenSupply\",\"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\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"uri\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"whitelist\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"withdraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Complete ERC1155 Multi-Token Collection Contract with Minting, Royalties, and Access Control\",\"events\":{\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to `approved`.\"},\"TransferBatch(address,address,address,uint256[],uint256[])\":{\"details\":\"Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all transfers.\"},\"TransferSingle(address,address,address,uint256,uint256)\":{\"details\":\"Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.\"},\"URI(string,uint256)\":{\"details\":\"Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. If an {URI} event was emitted for `id`, the standard https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value returned by {IERC1155MetadataURI-uri}.\"}},\"kind\":\"dev\",\"methods\":{\"addToWhitelist(address[])\":{\"details\":\"Add addresses to whitelist\"},\"balanceOf(address,uint256)\":{\"details\":\"See {IERC1155-balanceOf}. Requirements: - `account` cannot be the zero address.\"},\"balanceOfBatch(address[],uint256[])\":{\"details\":\"See {IERC1155-balanceOfBatch}. Requirements: - `accounts` and `ids` must have the same length.\"},\"batchMint(address[],uint256[],uint256[],string[])\":{\"details\":\"Batch mint tokens (only owner)\"},\"isApprovedForAll(address,address)\":{\"details\":\"See {IERC1155-isApprovedForAll}.\"},\"mint(uint256,string)\":{\"details\":\"Mint new tokens\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"removeFromWhitelist(address[])\":{\"details\":\"Remove addresses from whitelist\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"royaltyInfo(uint256,uint256)\":{\"details\":\"EIP-2981 royalty info\"},\"safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155-safeBatchTransferFrom}.\"},\"safeTransferFrom(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155-safeTransferFrom}.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"See {IERC1155-setApprovalForAll}.\"},\"setBaseURI(string)\":{\"details\":\"Set base URI\"},\"setMintPrice(uint256)\":{\"details\":\"Update mint price\"},\"setTokenURI(uint256,string)\":{\"details\":\"Set token URI for specific token\"},\"supportsInterface(bytes4)\":{\"details\":\"Check interface support\"},\"togglePublicMint(bool)\":{\"details\":\"Toggle public minting\"},\"totalSupply()\":{\"details\":\"Get total number of token types\"},\"totalSupply(uint256)\":{\"details\":\"Get supply of specific token\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"},\"uri(uint256)\":{\"details\":\"Get token URI\"},\"withdraw()\":{\"details\":\"Withdraw contract balance\"}},\"title\":\"ERC1155NFT\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/ERC1155NFT.sol\":\"ERC1155NFT\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41319e7f621f2dc3733511332c4fd032f8e32ad2aa7fd6f665c19741d9941a34\",\"dweb:/ipfs/QmcYR3bd862GD1Bc7jwrU9bGxrhUu5na1oP964bDCu2id1\"]},\"@openzeppelin/contracts/token/ERC1155/ERC1155.sol\":{\"keccak256\":\"0x81149353c99ccf8ff18af7701bc3f38665c7a97e344cdc0d27f927f03d22af0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b488da93995672b613897afa8ed85bb10442351ed54124001832bf2944108601\",\"dweb:/ipfs/QmP2fX6BzbgZyskxXqckeMzC1C3g7wKEbdtZfMegHoGW3j\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155.sol\":{\"keccak256\":\"0xcab667ddad478ff0d39c2053ca77fac778af8483c18ab07d810277b4216fd582\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://919c7ea27c77275c3c341da0c4a26a66a20ed27605fbe8becf11f58ec3bc65bf\",\"dweb:/ipfs/QmRLKyVE2n7e2Jo4bLNn8eLgqqhNGYnVQyjJPWdr8poskf\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0xeb373f1fdc7b755c6a750123a9b9e3a8a02c1470042fd6505d875000a80bde0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0e28648f994abf1d6bc345644a361cc0b7efa544f8bc0c8ec26011fed85a91ec\",\"dweb:/ipfs/QmVVE7AiRjKaQYYji7TkjmTeVzGpNmms5eoxqTCfvvpj6D\"]},\"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol\":{\"keccak256\":\"0xa66d18b9a85458d28fc3304717964502ae36f7f8a2ff35bc83f6f85d74b03574\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e46c80ea068989111d6103e5521223f9ef337e93de76deed8b03f75c6f7b2797\",\"dweb:/ipfs/QmNoSE6knNfFncdDDLTb3fGR6oSQty1srG96Vsx3E9wQdw\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"@openzeppelin/contracts/utils/Counters.sol\":{\"keccak256\":\"0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://59e1c62884d55b70f3ae5432b44bb3166ad71ae3acd19c57ab6ddc3c87c325ee\",\"dweb:/ipfs/QmezuXg5GK5oeA4F91EZhozBFekhq5TD966bHPH18cCqhu\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"contracts/ERC1155NFT.sol\":{\"keccak256\":\"0xfd915d2ed1ac5926a2d349321e5bc5ff1a5fb961b06ae017ae6258e71505ff81\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c12c084dc78e6afc2a61e4954cbdae5202d107336f89407f564edb2a64e76857\",\"dweb:/ipfs/QmTTZ5oD1USD3yiSVY4SdwnMMXKZsJvsUtSJjKKo2wuphD\"]}},\"version\":1}"}},"contracts/ERC721NFT.sol":{"ERC721NFT":{"abi":[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"},{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"bool","name":"_isPublicMint","type":"bool"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"newBaseURI","type":"string"}],"name":"BaseURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"MintPriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"}],"name":"NFTMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"PublicMintToggled","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":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"string[]","name":"tokenURIs","type":"string[]"}],"name":"batchMint","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":"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":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyRecipient","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":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","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":"bool","name":"_enabled","type":"bool"}],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_159":{"entryPoint":null,"id":159,"parameterSlots":0,"returnSlots":0},"@_1669":{"entryPoint":null,"id":1669,"parameterSlots":2,"returnSlots":0},"@_23":{"entryPoint":null,"id":23,"parameterSlots":0,"returnSlots":0},"@_5396":{"entryPoint":null,"id":5396,"parameterSlots":9,"returnSlots":0},"@_msgSender_3192":{"entryPoint":246,"id":3192,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_111":{"entryPoint":250,"id":111,"parameterSlots":1,"returnSlots":0},"abi_decode_address_fromMemory":{"entryPoint":529,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_bool_fromMemory":{"entryPoint":558,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_string_fromMemory":{"entryPoint":354,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_uint256t_uint256t_addresst_uint256t_boolt_address_fromMemory":{"entryPoint":575,"id":null,"parameterSlots":2,"returnSlots":9},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":866,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":949,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":806,"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":332,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:5137:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:25"},"nodeType":"YulFunctionCall","src":"66:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:25"},"nodeType":"YulFunctionCall","src":"56:31:25"},"nodeType":"YulExpressionStatement","src":"56:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:25","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:25"},"nodeType":"YulFunctionCall","src":"96:15:25"},"nodeType":"YulExpressionStatement","src":"96:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:25"},"nodeType":"YulFunctionCall","src":"120:15:25"},"nodeType":"YulExpressionStatement","src":"120:15:25"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:25"},{"body":{"nodeType":"YulBlock","src":"210:776:25","statements":[{"body":{"nodeType":"YulBlock","src":"259:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"268:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"271:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"261:6:25"},"nodeType":"YulFunctionCall","src":"261:12:25"},"nodeType":"YulExpressionStatement","src":"261:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"238:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"246:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"234:3:25"},"nodeType":"YulFunctionCall","src":"234:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"253:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"230:3:25"},"nodeType":"YulFunctionCall","src":"230:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"223:6:25"},"nodeType":"YulFunctionCall","src":"223:35:25"},"nodeType":"YulIf","src":"220:55:25"},{"nodeType":"YulVariableDeclaration","src":"284:23:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"300:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"294:5:25"},"nodeType":"YulFunctionCall","src":"294:13:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"288:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"316:28:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"338:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"330:3:25"},"nodeType":"YulFunctionCall","src":"330:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"342:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"326:3:25"},"nodeType":"YulFunctionCall","src":"326:18:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"320:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"367:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"369:16:25"},"nodeType":"YulFunctionCall","src":"369:18:25"},"nodeType":"YulExpressionStatement","src":"369:18:25"}]},"condition":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"359:2:25"},{"name":"_2","nodeType":"YulIdentifier","src":"363:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"356:2:25"},"nodeType":"YulFunctionCall","src":"356:10:25"},"nodeType":"YulIf","src":"353:36:25"},{"nodeType":"YulVariableDeclaration","src":"398:17:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"412:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"408:3:25"},"nodeType":"YulFunctionCall","src":"408:7:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"402:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"424:23:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"444:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"438:5:25"},"nodeType":"YulFunctionCall","src":"438:9:25"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"428:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"456:71:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"478:6:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"502:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"506:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"498:3:25"},"nodeType":"YulFunctionCall","src":"498:13:25"},{"name":"_3","nodeType":"YulIdentifier","src":"513:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"494:3:25"},"nodeType":"YulFunctionCall","src":"494:22:25"},{"kind":"number","nodeType":"YulLiteral","src":"518:2:25","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"490:3:25"},"nodeType":"YulFunctionCall","src":"490:31:25"},{"name":"_3","nodeType":"YulIdentifier","src":"523:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"486:3:25"},"nodeType":"YulFunctionCall","src":"486:40:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"474:3:25"},"nodeType":"YulFunctionCall","src":"474:53:25"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"460:10:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"586:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"588:16:25"},"nodeType":"YulFunctionCall","src":"588:18:25"},"nodeType":"YulExpressionStatement","src":"588:18:25"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"545:10:25"},{"name":"_2","nodeType":"YulIdentifier","src":"557:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"542:2:25"},"nodeType":"YulFunctionCall","src":"542:18:25"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"565:10:25"},{"name":"memPtr","nodeType":"YulIdentifier","src":"577:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"562:2:25"},"nodeType":"YulFunctionCall","src":"562:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"539:2:25"},"nodeType":"YulFunctionCall","src":"539:46:25"},"nodeType":"YulIf","src":"536:72:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"624:2:25","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"628:10:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"617:6:25"},"nodeType":"YulFunctionCall","src":"617:22:25"},"nodeType":"YulExpressionStatement","src":"617:22:25"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"655:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"663:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"648:6:25"},"nodeType":"YulFunctionCall","src":"648:18:25"},"nodeType":"YulExpressionStatement","src":"648:18:25"},{"nodeType":"YulVariableDeclaration","src":"675:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"685:4:25","type":"","value":"0x20"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"679:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"735:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"744:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"747:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"737:6:25"},"nodeType":"YulFunctionCall","src":"737:12:25"},"nodeType":"YulExpressionStatement","src":"737:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"712:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"720:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"708:3:25"},"nodeType":"YulFunctionCall","src":"708:15:25"},{"name":"_4","nodeType":"YulIdentifier","src":"725:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"704:3:25"},"nodeType":"YulFunctionCall","src":"704:24:25"},{"name":"end","nodeType":"YulIdentifier","src":"730:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"701:2:25"},"nodeType":"YulFunctionCall","src":"701:33:25"},"nodeType":"YulIf","src":"698:53:25"},{"nodeType":"YulVariableDeclaration","src":"760:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"769:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"764:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"825:87:25","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"854:6:25"},{"name":"i","nodeType":"YulIdentifier","src":"862:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"850:3:25"},"nodeType":"YulFunctionCall","src":"850:14:25"},{"name":"_4","nodeType":"YulIdentifier","src":"866:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"846:3:25"},"nodeType":"YulFunctionCall","src":"846:23:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"885:6:25"},{"name":"i","nodeType":"YulIdentifier","src":"893:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"881:3:25"},"nodeType":"YulFunctionCall","src":"881:14:25"},{"name":"_4","nodeType":"YulIdentifier","src":"897:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"877:3:25"},"nodeType":"YulFunctionCall","src":"877:23:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"871:5:25"},"nodeType":"YulFunctionCall","src":"871:30:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"839:6:25"},"nodeType":"YulFunctionCall","src":"839:63:25"},"nodeType":"YulExpressionStatement","src":"839:63:25"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"790:1:25"},{"name":"_1","nodeType":"YulIdentifier","src":"793:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"787:2:25"},"nodeType":"YulFunctionCall","src":"787:9:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"797:19:25","statements":[{"nodeType":"YulAssignment","src":"799:15:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"808:1:25"},{"name":"_4","nodeType":"YulIdentifier","src":"811:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"804:3:25"},"nodeType":"YulFunctionCall","src":"804:10:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"799:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"783:3:25","statements":[]},"src":"779:133:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"936:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"944:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"932:3:25"},"nodeType":"YulFunctionCall","src":"932:15:25"},{"name":"_4","nodeType":"YulIdentifier","src":"949:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"928:3:25"},"nodeType":"YulFunctionCall","src":"928:24:25"},{"kind":"number","nodeType":"YulLiteral","src":"954:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"921:6:25"},"nodeType":"YulFunctionCall","src":"921:35:25"},"nodeType":"YulExpressionStatement","src":"921:35:25"},{"nodeType":"YulAssignment","src":"965:15:25","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"974:6:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"965:5:25"}]}]},"name":"abi_decode_string_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"184:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"192:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"200:5:25","type":""}],"src":"146:840:25"},{"body":{"nodeType":"YulBlock","src":"1051:117:25","statements":[{"nodeType":"YulAssignment","src":"1061:22:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1076:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1070:5:25"},"nodeType":"YulFunctionCall","src":"1070:13:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1061:5:25"}]},{"body":{"nodeType":"YulBlock","src":"1146:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1155:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1158:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1148:6:25"},"nodeType":"YulFunctionCall","src":"1148:12:25"},"nodeType":"YulExpressionStatement","src":"1148:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1105:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1116:5:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1131:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1136:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1127:3:25"},"nodeType":"YulFunctionCall","src":"1127:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"1140:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1123:3:25"},"nodeType":"YulFunctionCall","src":"1123:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1112:3:25"},"nodeType":"YulFunctionCall","src":"1112:31:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1102:2:25"},"nodeType":"YulFunctionCall","src":"1102:42:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1095:6:25"},"nodeType":"YulFunctionCall","src":"1095:50:25"},"nodeType":"YulIf","src":"1092:70:25"}]},"name":"abi_decode_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1030:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1041:5:25","type":""}],"src":"991:177:25"},{"body":{"nodeType":"YulBlock","src":"1230:107:25","statements":[{"nodeType":"YulAssignment","src":"1240:22:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1255:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1249:5:25"},"nodeType":"YulFunctionCall","src":"1249:13:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1240:5:25"}]},{"body":{"nodeType":"YulBlock","src":"1315:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1324:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1327:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1317:6:25"},"nodeType":"YulFunctionCall","src":"1317:12:25"},"nodeType":"YulExpressionStatement","src":"1317:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1284:5:25"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1305:5:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1298:6:25"},"nodeType":"YulFunctionCall","src":"1298:13:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1291:6:25"},"nodeType":"YulFunctionCall","src":"1291:21:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1281:2:25"},"nodeType":"YulFunctionCall","src":"1281:32:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1274:6:25"},"nodeType":"YulFunctionCall","src":"1274:40:25"},"nodeType":"YulIf","src":"1271:60:25"}]},"name":"abi_decode_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1209:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1220:5:25","type":""}],"src":"1173:164:25"},{"body":{"nodeType":"YulBlock","src":"1586:960:25","statements":[{"body":{"nodeType":"YulBlock","src":"1633:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1642:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1645:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1635:6:25"},"nodeType":"YulFunctionCall","src":"1635:12:25"},"nodeType":"YulExpressionStatement","src":"1635:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1607:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1616:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1603:3:25"},"nodeType":"YulFunctionCall","src":"1603:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1628:3:25","type":"","value":"288"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1599:3:25"},"nodeType":"YulFunctionCall","src":"1599:33:25"},"nodeType":"YulIf","src":"1596:53:25"},{"nodeType":"YulVariableDeclaration","src":"1658:30:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1678:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1672:5:25"},"nodeType":"YulFunctionCall","src":"1672:16:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1662:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1697:28:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1715:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"1719:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1711:3:25"},"nodeType":"YulFunctionCall","src":"1711:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"1723:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1707:3:25"},"nodeType":"YulFunctionCall","src":"1707:18:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1701:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1752:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1761:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1764:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1754:6:25"},"nodeType":"YulFunctionCall","src":"1754:12:25"},"nodeType":"YulExpressionStatement","src":"1754:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1740:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1748:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1737:2:25"},"nodeType":"YulFunctionCall","src":"1737:14:25"},"nodeType":"YulIf","src":"1734:34:25"},{"nodeType":"YulAssignment","src":"1777:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1820:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"1831:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1816:3:25"},"nodeType":"YulFunctionCall","src":"1816:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1840:7:25"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1787:28:25"},"nodeType":"YulFunctionCall","src":"1787:61:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1777:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"1857:41:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1883:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1894:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1879:3:25"},"nodeType":"YulFunctionCall","src":"1879:18:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1873:5:25"},"nodeType":"YulFunctionCall","src":"1873:25:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"1861:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1927:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1936:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1939:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1929:6:25"},"nodeType":"YulFunctionCall","src":"1929:12:25"},"nodeType":"YulExpressionStatement","src":"1929:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"1913:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"1923:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1910:2:25"},"nodeType":"YulFunctionCall","src":"1910:16:25"},"nodeType":"YulIf","src":"1907:36:25"},{"nodeType":"YulAssignment","src":"1952:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1995:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"2006:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1991:3:25"},"nodeType":"YulFunctionCall","src":"1991:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2017:7:25"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1962:28:25"},"nodeType":"YulFunctionCall","src":"1962:63:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1952:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"2034:41:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2060:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2071:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2056:3:25"},"nodeType":"YulFunctionCall","src":"2056:18:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2050:5:25"},"nodeType":"YulFunctionCall","src":"2050:25:25"},"variables":[{"name":"offset_2","nodeType":"YulTypedName","src":"2038:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2104:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2113:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2116:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2106:6:25"},"nodeType":"YulFunctionCall","src":"2106:12:25"},"nodeType":"YulExpressionStatement","src":"2106:12:25"}]},"condition":{"arguments":[{"name":"offset_2","nodeType":"YulIdentifier","src":"2090:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2100:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2087:2:25"},"nodeType":"YulFunctionCall","src":"2087:16:25"},"nodeType":"YulIf","src":"2084:36:25"},{"nodeType":"YulAssignment","src":"2129:73:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2172:9:25"},{"name":"offset_2","nodeType":"YulIdentifier","src":"2183:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2168:3:25"},"nodeType":"YulFunctionCall","src":"2168:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2194:7:25"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"2139:28:25"},"nodeType":"YulFunctionCall","src":"2139:63:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2129:6:25"}]},{"nodeType":"YulAssignment","src":"2211:35:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2231:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2242:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2227:3:25"},"nodeType":"YulFunctionCall","src":"2227:18:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2221:5:25"},"nodeType":"YulFunctionCall","src":"2221:25:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"2211:6:25"}]},{"nodeType":"YulAssignment","src":"2255:36:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2275:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2286:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2271:3:25"},"nodeType":"YulFunctionCall","src":"2271:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2265:5:25"},"nodeType":"YulFunctionCall","src":"2265:26:25"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"2255:6:25"}]},{"nodeType":"YulAssignment","src":"2300:60:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2344:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2355:3:25","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2340:3:25"},"nodeType":"YulFunctionCall","src":"2340:19:25"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"2310:29:25"},"nodeType":"YulFunctionCall","src":"2310:50:25"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"2300:6:25"}]},{"nodeType":"YulAssignment","src":"2369:36:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2389:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2400:3:25","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2385:3:25"},"nodeType":"YulFunctionCall","src":"2385:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2379:5:25"},"nodeType":"YulFunctionCall","src":"2379:26:25"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"2369:6:25"}]},{"nodeType":"YulAssignment","src":"2414:57:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2455:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2466:3:25","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2451:3:25"},"nodeType":"YulFunctionCall","src":"2451:19:25"}],"functionName":{"name":"abi_decode_bool_fromMemory","nodeType":"YulIdentifier","src":"2424:26:25"},"nodeType":"YulFunctionCall","src":"2424:47:25"},"variableNames":[{"name":"value7","nodeType":"YulIdentifier","src":"2414:6:25"}]},{"nodeType":"YulAssignment","src":"2480:60:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2524:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2535:3:25","type":"","value":"256"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2520:3:25"},"nodeType":"YulFunctionCall","src":"2520:19:25"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"2490:29:25"},"nodeType":"YulFunctionCall","src":"2490:50:25"},"variableNames":[{"name":"value8","nodeType":"YulIdentifier","src":"2480:6:25"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_uint256t_uint256t_addresst_uint256t_boolt_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1488:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1499:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1511:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1519:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1527:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"1535:6:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"1543:6:25","type":""},{"name":"value5","nodeType":"YulTypedName","src":"1551:6:25","type":""},{"name":"value6","nodeType":"YulTypedName","src":"1559:6:25","type":""},{"name":"value7","nodeType":"YulTypedName","src":"1567:6:25","type":""},{"name":"value8","nodeType":"YulTypedName","src":"1575:6:25","type":""}],"src":"1342:1204:25"},{"body":{"nodeType":"YulBlock","src":"2606:325:25","statements":[{"nodeType":"YulAssignment","src":"2616:22:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2630:1:25","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"2633:4:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2626:3:25"},"nodeType":"YulFunctionCall","src":"2626:12:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2616:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"2647:38:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2677:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"2683:1:25","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2673:3:25"},"nodeType":"YulFunctionCall","src":"2673:12:25"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"2651:18:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2724:31:25","statements":[{"nodeType":"YulAssignment","src":"2726:27:25","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2740:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2748:4:25","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2736:3:25"},"nodeType":"YulFunctionCall","src":"2736:17:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2726:6:25"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2704:18:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2697:6:25"},"nodeType":"YulFunctionCall","src":"2697:26:25"},"nodeType":"YulIf","src":"2694:61:25"},{"body":{"nodeType":"YulBlock","src":"2814:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2835:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2842:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2847:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2838:3:25"},"nodeType":"YulFunctionCall","src":"2838:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2828:6:25"},"nodeType":"YulFunctionCall","src":"2828:31:25"},"nodeType":"YulExpressionStatement","src":"2828:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2879:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2882:4:25","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2872:6:25"},"nodeType":"YulFunctionCall","src":"2872:15:25"},"nodeType":"YulExpressionStatement","src":"2872:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2907:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2910:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2900:6:25"},"nodeType":"YulFunctionCall","src":"2900:15:25"},"nodeType":"YulExpressionStatement","src":"2900:15:25"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2770:18:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2793:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"2801:2:25","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2790:2:25"},"nodeType":"YulFunctionCall","src":"2790:14:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2767:2:25"},"nodeType":"YulFunctionCall","src":"2767:38:25"},"nodeType":"YulIf","src":"2764:161:25"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2586:4:25","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"2595:6:25","type":""}],"src":"2551:380:25"},{"body":{"nodeType":"YulBlock","src":"2992:65:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3009:1:25","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"3012:3:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3002:6:25"},"nodeType":"YulFunctionCall","src":"3002:14:25"},"nodeType":"YulExpressionStatement","src":"3002:14:25"},{"nodeType":"YulAssignment","src":"3025:26:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3043:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3046:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3033:9:25"},"nodeType":"YulFunctionCall","src":"3033:18:25"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"3025:4:25"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"2975:3:25","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"2983:4:25","type":""}],"src":"2936:121:25"},{"body":{"nodeType":"YulBlock","src":"3143:464:25","statements":[{"body":{"nodeType":"YulBlock","src":"3176:425:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3190:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"3200:1:25","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3194:2:25","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"3221:2:25"},{"name":"array","nodeType":"YulIdentifier","src":"3225:5:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3214:6:25"},"nodeType":"YulFunctionCall","src":"3214:17:25"},"nodeType":"YulExpressionStatement","src":"3214:17:25"},{"nodeType":"YulVariableDeclaration","src":"3244:31:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"3266:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"3270:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3256:9:25"},"nodeType":"YulFunctionCall","src":"3256:19:25"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"3248:4:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3288:57:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3311:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3321:1:25","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"3328:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"3340:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3324:3:25"},"nodeType":"YulFunctionCall","src":"3324:19:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3317:3:25"},"nodeType":"YulFunctionCall","src":"3317:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3307:3:25"},"nodeType":"YulFunctionCall","src":"3307:38:25"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"3292:11:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3382:23:25","statements":[{"nodeType":"YulAssignment","src":"3384:19:25","value":{"name":"data","nodeType":"YulIdentifier","src":"3399:4:25"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"3384:11:25"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"3364:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"3376:4:25","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3361:2:25"},"nodeType":"YulFunctionCall","src":"3361:20:25"},"nodeType":"YulIf","src":"3358:47:25"},{"nodeType":"YulVariableDeclaration","src":"3418:41:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3432:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3442:1:25","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"3449:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"3454:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3445:3:25"},"nodeType":"YulFunctionCall","src":"3445:12:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3438:3:25"},"nodeType":"YulFunctionCall","src":"3438:20:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3428:3:25"},"nodeType":"YulFunctionCall","src":"3428:31:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"3422:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3472:24:25","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"3485:11:25"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"3476:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3570:21:25","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"3579:5:25"},{"name":"_1","nodeType":"YulIdentifier","src":"3586:2:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3572:6:25"},"nodeType":"YulFunctionCall","src":"3572:17:25"},"nodeType":"YulExpressionStatement","src":"3572:17:25"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"3520:5:25"},{"name":"_2","nodeType":"YulIdentifier","src":"3527:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3517:2:25"},"nodeType":"YulFunctionCall","src":"3517:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3531:26:25","statements":[{"nodeType":"YulAssignment","src":"3533:22:25","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"3546:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"3553:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3542:3:25"},"nodeType":"YulFunctionCall","src":"3542:13:25"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"3533:5:25"}]}]},"pre":{"nodeType":"YulBlock","src":"3513:3:25","statements":[]},"src":"3509:82:25"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"3159:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"3164:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3156:2:25"},"nodeType":"YulFunctionCall","src":"3156:11:25"},"nodeType":"YulIf","src":"3153:448:25"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"3115:5:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"3122:3:25","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"3127:10:25","type":""}],"src":"3062:545:25"},{"body":{"nodeType":"YulBlock","src":"3697:81:25","statements":[{"nodeType":"YulAssignment","src":"3707:65:25","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3722:4:25"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3740:1:25","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"3743:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3736:3:25"},"nodeType":"YulFunctionCall","src":"3736:11:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3753:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3749:3:25"},"nodeType":"YulFunctionCall","src":"3749:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3732:3:25"},"nodeType":"YulFunctionCall","src":"3732:24:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3728:3:25"},"nodeType":"YulFunctionCall","src":"3728:29:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3718:3:25"},"nodeType":"YulFunctionCall","src":"3718:40:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3764:1:25","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"3767:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3760:3:25"},"nodeType":"YulFunctionCall","src":"3760:11:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"3715:2:25"},"nodeType":"YulFunctionCall","src":"3715:57:25"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"3707:4:25"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"3674:4:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"3680:3:25","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"3688:4:25","type":""}],"src":"3612:166:25"},{"body":{"nodeType":"YulBlock","src":"3879:1256:25","statements":[{"nodeType":"YulVariableDeclaration","src":"3889:24:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3909:3:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3903:5:25"},"nodeType":"YulFunctionCall","src":"3903:10:25"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"3893:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3956:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"3958:16:25"},"nodeType":"YulFunctionCall","src":"3958:18:25"},"nodeType":"YulExpressionStatement","src":"3958:18:25"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3928:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3944:2:25","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"3948:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3940:3:25"},"nodeType":"YulFunctionCall","src":"3940:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"3952:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3936:3:25"},"nodeType":"YulFunctionCall","src":"3936:18:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3925:2:25"},"nodeType":"YulFunctionCall","src":"3925:30:25"},"nodeType":"YulIf","src":"3922:56:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4031:4:25"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4069:4:25"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"4063:5:25"},"nodeType":"YulFunctionCall","src":"4063:11:25"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"4037:25:25"},"nodeType":"YulFunctionCall","src":"4037:38:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"4077:6:25"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"3987:43:25"},"nodeType":"YulFunctionCall","src":"3987:97:25"},"nodeType":"YulExpressionStatement","src":"3987:97:25"},{"nodeType":"YulVariableDeclaration","src":"4093:18:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4110:1:25","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"4097:9:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4120:23:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4139:4:25","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"4124:11:25","type":""}]},{"nodeType":"YulAssignment","src":"4152:24:25","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"4165:11:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4152:9:25"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"4222:656:25","statements":[{"nodeType":"YulVariableDeclaration","src":"4236:35:25","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4255:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4267:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4263:3:25"},"nodeType":"YulFunctionCall","src":"4263:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4251:3:25"},"nodeType":"YulFunctionCall","src":"4251:20:25"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"4240:7:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4284:49:25","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4328:4:25"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"4298:29:25"},"nodeType":"YulFunctionCall","src":"4298:35:25"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"4288:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4346:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4355:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"4350:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4433:172:25","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4458:6:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4476:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4481:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4472:3:25"},"nodeType":"YulFunctionCall","src":"4472:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4466:5:25"},"nodeType":"YulFunctionCall","src":"4466:26:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4451:6:25"},"nodeType":"YulFunctionCall","src":"4451:42:25"},"nodeType":"YulExpressionStatement","src":"4451:42:25"},{"nodeType":"YulAssignment","src":"4510:24:25","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4524:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4532:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4520:3:25"},"nodeType":"YulFunctionCall","src":"4520:14:25"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4510:6:25"}]},{"nodeType":"YulAssignment","src":"4551:40:25","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4568:9:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"4579:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4564:3:25"},"nodeType":"YulFunctionCall","src":"4564:27:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4551:9:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4380:1:25"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"4383:7:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4377:2:25"},"nodeType":"YulFunctionCall","src":"4377:14:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"4392:28:25","statements":[{"nodeType":"YulAssignment","src":"4394:24:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4403:1:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"4406:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4399:3:25"},"nodeType":"YulFunctionCall","src":"4399:19:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"4394:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"4373:3:25","statements":[]},"src":"4369:236:25"},{"body":{"nodeType":"YulBlock","src":"4653:166:25","statements":[{"nodeType":"YulVariableDeclaration","src":"4671:43:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4698:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4703:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4694:3:25"},"nodeType":"YulFunctionCall","src":"4694:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4688:5:25"},"nodeType":"YulFunctionCall","src":"4688:26:25"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"4675:9:25","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4738:6:25"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"4750:9:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4777:1:25","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"4780:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4773:3:25"},"nodeType":"YulFunctionCall","src":"4773:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"4789:3:25","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4769:3:25"},"nodeType":"YulFunctionCall","src":"4769:24:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4799:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4795:3:25"},"nodeType":"YulFunctionCall","src":"4795:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"4765:3:25"},"nodeType":"YulFunctionCall","src":"4765:37:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4761:3:25"},"nodeType":"YulFunctionCall","src":"4761:42:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4746:3:25"},"nodeType":"YulFunctionCall","src":"4746:58:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4731:6:25"},"nodeType":"YulFunctionCall","src":"4731:74:25"},"nodeType":"YulExpressionStatement","src":"4731:74:25"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"4624:7:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"4633:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4621:2:25"},"nodeType":"YulFunctionCall","src":"4621:19:25"},"nodeType":"YulIf","src":"4618:201:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4839:4:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4853:1:25","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"4856:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4849:3:25"},"nodeType":"YulFunctionCall","src":"4849:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"4865:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4845:3:25"},"nodeType":"YulFunctionCall","src":"4845:22:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4832:6:25"},"nodeType":"YulFunctionCall","src":"4832:36:25"},"nodeType":"YulExpressionStatement","src":"4832:36:25"}]},"nodeType":"YulCase","src":"4215:663:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4220:1:25","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"4895:234:25","statements":[{"nodeType":"YulVariableDeclaration","src":"4909:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4922:1:25","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"4913:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4958:67:25","statements":[{"nodeType":"YulAssignment","src":"4976:35:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4995:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"5000:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4991:3:25"},"nodeType":"YulFunctionCall","src":"4991:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4985:5:25"},"nodeType":"YulFunctionCall","src":"4985:26:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"4976:5:25"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"4939:6:25"},"nodeType":"YulIf","src":"4936:89:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5045:4:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5104:5:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"5111:6:25"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"5051:52:25"},"nodeType":"YulFunctionCall","src":"5051:67:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"5038:6:25"},"nodeType":"YulFunctionCall","src":"5038:81:25"},"nodeType":"YulExpressionStatement","src":"5038:81:25"}]},"nodeType":"YulCase","src":"4887:242:25","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4195:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4203:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4192:2:25"},"nodeType":"YulFunctionCall","src":"4192:14:25"},"nodeType":"YulSwitch","src":"4185:944:25"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"3864:4:25","type":""},{"name":"src","nodeType":"YulTypedName","src":"3870:3:25","type":""}],"src":"3783:1352:25"}]},"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 _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        mstore(add(add(memPtr, _1), _4), 0)\n        array := memPtr\n    }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_bool_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_uint256t_uint256t_addresst_uint256t_boolt_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7, value8\n    {\n        if slt(sub(dataEnd, headStart), 288) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _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, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let offset_2 := mload(add(headStart, 64))\n        if gt(offset_2, _1) { revert(0, 0) }\n        value2 := abi_decode_string_fromMemory(add(headStart, offset_2), dataEnd)\n        value3 := mload(add(headStart, 96))\n        value4 := mload(add(headStart, 128))\n        value5 := abi_decode_address_fromMemory(add(headStart, 160))\n        value6 := mload(add(headStart, 192))\n        value7 := abi_decode_bool_fromMemory(add(headStart, 224))\n        value8 := abi_decode_address_fromMemory(add(headStart, 256))\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            let _1 := 0\n            mstore(_1, array)\n            let data := keccak256(_1, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _2 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _2) { start := add(start, 1) }\n            { sstore(start, _1) }\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        let srcOffset_1 := 0x20\n        srcOffset := srcOffset_1\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, srcOffset_1) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, srcOffset_1)\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}","id":25,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b5060405162002a3e38038062002a3e83398101604081905262000034916200023f565b88886000620000448382620003b5565b506001620000538282620003b5565b505050620000706200006a620000f660201b60201c565b620000fa565b6001600855600a620000838882620003b5565b50600b869055600d859055600e8054600c859055831515600160a01b026001600160a81b03199091166001600160a01b03871617179055620000c581620000fa565b6001600160a01b03166000908152600f60205260409020805460ff1916600117905550620004819650505050505050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200017457600080fd5b81516001600160401b03808211156200019157620001916200014c565b604051601f8301601f19908116603f01168101908282118183101715620001bc57620001bc6200014c565b81604052838152602092508683858801011115620001d957600080fd5b600091505b83821015620001fd5785820183015181830184015290820190620001de565b600093810190920192909252949350505050565b80516001600160a01b03811681146200022957600080fd5b919050565b805180151581146200022957600080fd5b60008060008060008060008060006101208a8c0312156200025f57600080fd5b89516001600160401b03808211156200027757600080fd5b620002858d838e0162000162565b9a5060208c01519150808211156200029c57600080fd5b620002aa8d838e0162000162565b995060408c0151915080821115620002c157600080fd5b50620002d08c828d0162000162565b97505060608a0151955060808a01519450620002ef60a08b0162000211565b935060c08a015192506200030660e08b016200022e565b9150620003176101008b0162000211565b90509295985092959850929598565b600181811c908216806200033b57607f821691505b6020821081036200035c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003b057600081815260208120601f850160051c810160208610156200038b5750805b601f850160051c820191505b81811015620003ac5782815560010162000397565b5050505b505050565b81516001600160401b03811115620003d157620003d16200014c565b620003e981620003e2845462000326565b8462000362565b602080601f831160018114620004215760008415620004085750858301515b600019600386901b1c1916600185901b178555620003ac565b600085815260208120601f198616915b82811015620004525788860151825594840194600190910190840162000431565b5085821015620004715787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6125ad80620004916000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610595578063d85d3d27146105ab578063e985e9c5146105be578063f2fde38b146105de578063f4a0a528146105fe57600080fd5b8063a22cb46514610520578063b88d4fde14610540578063c87b56dd14610560578063d547cfb71461058057600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049d57806395d89b41146104bb5780639b19251a146104d05780639b7c1c831461050057600080fd5b806370a0823114610432578063715018a6146104525780637f649783146104675780638a71bb2d1461048757600080fd5b80633ccfd60b1161018557806355f804b31161015457806355f804b3146103bc5780636352211e146103dc57806364ba144e146103fc5780636817c76c1461041c57600080fd5b80633ccfd60b1461034757806342842e0e1461035c5780634c00de821461037c578063548db1741461039c57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a357806318160ddd146102c557806323b872dd146102e85780632a55205a1461030857600080fd5b80630116bc2d146101f357806301ffc9a71461022957806306fdde0314610249578063081812fc1461026b575b600080fd5b3480156101ff57600080fd5b50600e5461021490600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b34801561023557600080fd5b50610214610244366004611d46565b61061e565b34801561025557600080fd5b5061025e61062f565b6040516102209190611db3565b34801561027757600080fd5b5061028b610286366004611dc6565b6106c1565b6040516001600160a01b039091168152602001610220565b3480156102af57600080fd5b506102c36102be366004611df6565b6106e8565b005b3480156102d157600080fd5b506102da610802565b604051908152602001610220565b3480156102f457600080fd5b506102c3610303366004611e20565b610812565b34801561031457600080fd5b50610328610323366004611e5c565b610843565b604080516001600160a01b039093168352602083019190915201610220565b34801561035357600080fd5b506102c3610877565b34801561036857600080fd5b506102c3610377366004611e20565b6109d2565b34801561038857600080fd5b50600e5461028b906001600160a01b031681565b3480156103a857600080fd5b506102c36103b7366004611f5b565b6109ed565b3480156103c857600080fd5b506102c36103d7366004612008565b610a61565b3480156103e857600080fd5b5061028b6103f7366004611dc6565b610ab0565b34801561040857600080fd5b506102c361041736600461203d565b610b10565b34801561042857600080fd5b506102da600c5481565b34801561043e57600080fd5b506102da61044d366004612112565b610cd3565b34801561045e57600080fd5b506102c3610d59565b34801561047357600080fd5b506102c3610482366004611f5b565b610d6b565b34801561049357600080fd5b506102da600d5481565b3480156104a957600080fd5b506007546001600160a01b031661028b565b3480156104c757600080fd5b5061025e610ddb565b3480156104dc57600080fd5b506102146104eb366004612112565b600f6020526000908152604090205460ff1681565b34801561050c57600080fd5b506102c361051b36600461213d565b610dea565b34801561052c57600080fd5b506102c361053b366004612158565b610e3f565b34801561054c57600080fd5b506102c361055b36600461218b565b610e4a565b34801561056c57600080fd5b5061025e61057b366004611dc6565b610e82565b34801561058c57600080fd5b5061025e610e8d565b3480156105a157600080fd5b506102da600b5481565b6102da6105b9366004612008565b610f1b565b3480156105ca57600080fd5b506102146105d9366004612207565b6110c1565b3480156105ea57600080fd5b506102c36105f9366004612112565b6110ef565b34801561060a57600080fd5b506102c3610619366004611dc6565b611168565b6000610629826111a5565b92915050565b60606000805461063e90612231565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90612231565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106cc826111ca565b506000908152600460205260409020546001600160a01b031690565b60006106f382610ab0565b9050806001600160a01b0316836001600160a01b0316036107655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610781575061078181336110c1565b6107f35760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161075c565b6107fd8383611229565b505050565b600061080d60095490565b905090565b61081c3382611297565b6108385760405162461bcd60e51b815260040161075c9061226b565b6107fd8383836112f6565b600080612710600d548461085791906122ce565b61086191906122e5565b600e546001600160a01b03169590945092505050565b61087f61145a565b6108876114b4565b47806108ce5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b604482015260640161075c565b60006108e26007546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d806000811461092c576040519150601f19603f3d011682016040523d82523d6000602084013e610931565b606091505b50509050806109765760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b604482015260640161075c565b6007546001600160a01b03166001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040516109bc91815260200190565b60405180910390a250506109d06001600855565b565b6107fd83838360405180602001604052806000815250610e4a565b6109f561145a565b60005b8151811015610a5d576000600f6000848481518110610a1957610a19612307565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a558161231d565b9150506109f8565b5050565b610a6961145a565b600a610a758282612384565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad81604051610aa59190611db3565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806106295760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075c565b610b1861145a565b610b206114b4565b8051825114610b695760405162461bcd60e51b8152602060048201526015602482015274082e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b604482015260640161075c565b600b541580610b885750600b548251600954610b859190612444565b11155b610bd45760405162461bcd60e51b815260206004820152601760248201527f576f756c6420657863656564206d617820737570706c79000000000000000000604482015260640161075c565b60005b8251811015610cc857610bee600980546001019055565b6000610bf960095490565b9050610c1e848381518110610c1057610c10612307565b60200260200101518261150d565b610c4181848481518110610c3457610c34612307565b6020026020010151611527565b80848381518110610c5457610c54612307565b60200260200101516001600160a01b03167fd35bb95e09c04b219e35047ce7b7b300e3384264ef84a40456943dbc0fc17c14858581518110610c9857610c98612307565b6020026020010151604051610cad9190611db3565b60405180910390a35080610cc08161231d565b915050610bd7565b50610a5d6001600855565b60006001600160a01b038216610d3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161075c565b506001600160a01b031660009081526003602052604090205490565b610d6161145a565b6109d060006115f2565b610d7361145a565b60005b8151811015610a5d576001600f6000848481518110610d9757610d97612307565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610dd38161231d565b915050610d76565b60606001805461063e90612231565b610df261145a565b600e8054821515600160a01b0260ff60a01b199091161790556040517fa81e445dac2343503dc87e4663774817434721db7d985310a6959766e6d4480e90610aa590831515815260200190565b610a5d338383611644565b610e543383611297565b610e705760405162461bcd60e51b815260040161075c9061226b565b610e7c84848484611712565b50505050565b606061062982611745565b600a8054610e9a90612231565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec690612231565b8015610f135780601f10610ee857610100808354040283529160200191610f13565b820191906000526020600020905b815481529060010190602001808311610ef657829003601f168201915b505050505081565b6000610f256114b4565b600e54600160a01b900460ff1680610f4c5750336000908152600f602052604090205460ff165b80610f6157506007546001600160a01b031633145b610fa35760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08185b1b1bddd959606a1b604482015260640161075c565b600b541580610fb55750600b54600954105b610ff65760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015260640161075c565b600c5434101561103f5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b604482015260640161075c565b61104d600980546001019055565b600061105860095490565b9050611064338261150d565b61106e8184611527565b80336001600160a01b03167fd35bb95e09c04b219e35047ce7b7b300e3384264ef84a40456943dbc0fc17c14856040516110a89190611db3565b60405180910390a390506110bc6001600855565b919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6110f761145a565b6001600160a01b03811661115c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075c565b611165816115f2565b50565b61117061145a565b600c8190556040518181527f525b762709cc2a983aec5ccdfd807a061f993c91090b5bcd7da92ca254976aaa90602001610aa5565b60006001600160e01b03198216632483248360e11b1480610629575061062982611840565b6000818152600260205260409020546001600160a01b03166111655760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061125e82610ab0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112a383610ab0565b9050806001600160a01b0316846001600160a01b031614806112ca57506112ca81856110c1565b806112ee5750836001600160a01b03166112e3846106c1565b6001600160a01b0316145b949350505050565b826001600160a01b031661130982610ab0565b6001600160a01b03161461132f5760405162461bcd60e51b815260040161075c90612457565b6001600160a01b0382166113915760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161075c565b826001600160a01b03166113a482610ab0565b6001600160a01b0316146113ca5760405162461bcd60e51b815260040161075c90612457565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6007546001600160a01b031633146109d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075c565b6002600854036115065760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600855565b610a5d828260405180602001604052806000815250611890565b6000828152600260205260409020546001600160a01b03166115a25760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161075c565b60008281526006602052604090206115ba8282612384565b506040518281527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a15050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036116a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161075c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61171d8484846112f6565b611729848484846118c3565b610e7c5760405162461bcd60e51b815260040161075c9061249c565b6060611750826111ca565b6000828152600660205260408120805461176990612231565b80601f016020809104026020016040519081016040528092919081815260200182805461179590612231565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b5050505050905060006117f36119c4565b90508051600003611805575092915050565b81511561183757808260405160200161181f9291906124ee565b60405160208183030381529060405292505050919050565b6112ee846119d3565b60006001600160e01b031982166380ac58cd60e01b148061187157506001600160e01b03198216635b5e139f60e01b145b8061062957506301ffc9a760e01b6001600160e01b0319831614610629565b61189a8383611a3a565b6118a760008484846118c3565b6107fd5760405162461bcd60e51b815260040161075c9061249c565b60006001600160a01b0384163b156119b957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190790339089908890889060040161251d565b6020604051808303816000875af1925050508015611942575060408051601f3d908101601f1916820190925261193f9181019061255a565b60015b61199f573d808015611970576040519150601f19603f3d011682016040523d82523d6000602084013e611975565b606091505b5080516000036119975760405162461bcd60e51b815260040161075c9061249c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ee565b506001949350505050565b6060600a805461063e90612231565b60606119de826111ca565b60006119e86119c4565b90506000815111611a085760405180602001604052806000815250611a33565b80611a1284611bc5565b604051602001611a239291906124ee565b6040516020818303038152906040525b9392505050565b6001600160a01b038216611a905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161075c565b6000818152600260205260409020546001600160a01b031615611af55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075c565b6000818152600260205260409020546001600160a01b031615611b5a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075c565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606000611bd283611c58565b600101905060008167ffffffffffffffff811115611bf257611bf2611e7e565b6040519080825280601f01601f191660200182016040528015611c1c576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611c2657509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c975772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611cc3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611ce157662386f26fc10000830492506010015b6305f5e1008310611cf9576305f5e100830492506008015b6127108310611d0d57612710830492506004015b60648310611d1f576064830492506002015b600a83106106295760010192915050565b6001600160e01b03198116811461116557600080fd5b600060208284031215611d5857600080fd5b8135611a3381611d30565b60005b83811015611d7e578181015183820152602001611d66565b50506000910152565b60008151808452611d9f816020860160208601611d63565b601f01601f19169290920160200192915050565b602081526000611a336020830184611d87565b600060208284031215611dd857600080fd5b5035919050565b80356001600160a01b03811681146110bc57600080fd5b60008060408385031215611e0957600080fd5b611e1283611ddf565b946020939093013593505050565b600080600060608486031215611e3557600080fd5b611e3e84611ddf565b9250611e4c60208501611ddf565b9150604084013590509250925092565b60008060408385031215611e6f57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611ebd57611ebd611e7e565b604052919050565b600067ffffffffffffffff821115611edf57611edf611e7e565b5060051b60200190565b600082601f830112611efa57600080fd5b81356020611f0f611f0a83611ec5565b611e94565b82815260059290921b84018101918181019086841115611f2e57600080fd5b8286015b84811015611f5057611f4381611ddf565b8352918301918301611f32565b509695505050505050565b600060208284031215611f6d57600080fd5b813567ffffffffffffffff811115611f8457600080fd5b6112ee84828501611ee9565b600067ffffffffffffffff831115611faa57611faa611e7e565b611fbd601f8401601f1916602001611e94565b9050828152838383011115611fd157600080fd5b828260208301376000602084830101529392505050565b600082601f830112611ff957600080fd5b611a3383833560208501611f90565b60006020828403121561201a57600080fd5b813567ffffffffffffffff81111561203157600080fd5b6112ee84828501611fe8565b6000806040838503121561205057600080fd5b823567ffffffffffffffff8082111561206857600080fd5b61207486838701611ee9565b935060209150818501358181111561208b57600080fd5b8501601f8101871361209c57600080fd5b80356120aa611f0a82611ec5565b81815260059190911b820184019084810190898311156120c957600080fd5b8584015b83811015612101578035868111156120e55760008081fd5b6120f38c8983890101611fe8565b8452509186019186016120cd565b508096505050505050509250929050565b60006020828403121561212457600080fd5b611a3382611ddf565b803580151581146110bc57600080fd5b60006020828403121561214f57600080fd5b611a338261212d565b6000806040838503121561216b57600080fd5b61217483611ddf565b91506121826020840161212d565b90509250929050565b600080600080608085870312156121a157600080fd5b6121aa85611ddf565b93506121b860208601611ddf565b925060408501359150606085013567ffffffffffffffff8111156121db57600080fd5b8501601f810187136121ec57600080fd5b6121fb87823560208401611f90565b91505092959194509250565b6000806040838503121561221a57600080fd5b61222383611ddf565b915061218260208401611ddf565b600181811c9082168061224557607f821691505b60208210810361226557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610629576106296122b8565b60008261230257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161232f5761232f6122b8565b5060010190565b601f8211156107fd57600081815260208120601f850160051c8101602086101561235d5750805b601f850160051c820191505b8181101561237c57828155600101612369565b505050505050565b815167ffffffffffffffff81111561239e5761239e611e7e565b6123b2816123ac8454612231565b84612336565b602080601f8311600181146123e757600084156123cf5750858301515b600019600386901b1c1916600185901b17855561237c565b600085815260208120601f198616915b82811015612416578886015182559484019460019091019084016123f7565b50858210156124345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610629576106296122b8565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612500818460208801611d63565b835190830190612514818360208801611d63565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255090830184611d87565b9695505050505050565b60006020828403121561256c57600080fd5b8151611a3381611d3056fea26469706673582212204bcaf546e33761f13d9086cfb7b803fd0a7ee2f411dcb8a4cfe4cf2929a3345564736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2A3E CODESIZE SUB DUP1 PUSH3 0x2A3E DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x23F JUMP JUMPDEST DUP9 DUP9 PUSH1 0x0 PUSH3 0x44 DUP4 DUP3 PUSH3 0x3B5 JUMP JUMPDEST POP PUSH1 0x1 PUSH3 0x53 DUP3 DUP3 PUSH3 0x3B5 JUMP JUMPDEST POP POP POP PUSH3 0x70 PUSH3 0x6A PUSH3 0xF6 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xFA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x8 SSTORE PUSH1 0xA PUSH3 0x83 DUP9 DUP3 PUSH3 0x3B5 JUMP JUMPDEST POP PUSH1 0xB DUP7 SWAP1 SSTORE PUSH1 0xD DUP6 SWAP1 SSTORE PUSH1 0xE DUP1 SLOAD PUSH1 0xC DUP6 SWAP1 SSTORE DUP4 ISZERO ISZERO PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND OR OR SWAP1 SSTORE PUSH3 0xC5 DUP2 PUSH3 0xFA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE POP PUSH3 0x481 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER SWAP1 JUMP JUMPDEST PUSH1 0x7 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x174 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x191 JUMPI PUSH3 0x191 PUSH3 0x14C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x1BC JUMPI PUSH3 0x1BC PUSH3 0x14C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1FD JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x1DE JUMP JUMPDEST PUSH1 0x0 SWAP4 DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x229 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH3 0x229 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x120 DUP11 DUP13 SUB SLT ISZERO PUSH3 0x25F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x277 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x285 DUP14 DUP4 DUP15 ADD PUSH3 0x162 JUMP JUMPDEST SWAP11 POP PUSH1 0x20 DUP13 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x29C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x2AA DUP14 DUP4 DUP15 ADD PUSH3 0x162 JUMP JUMPDEST SWAP10 POP PUSH1 0x40 DUP13 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x2C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x2D0 DUP13 DUP3 DUP14 ADD PUSH3 0x162 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x60 DUP11 ADD MLOAD SWAP6 POP PUSH1 0x80 DUP11 ADD MLOAD SWAP5 POP PUSH3 0x2EF PUSH1 0xA0 DUP12 ADD PUSH3 0x211 JUMP JUMPDEST SWAP4 POP PUSH1 0xC0 DUP11 ADD MLOAD SWAP3 POP PUSH3 0x306 PUSH1 0xE0 DUP12 ADD PUSH3 0x22E JUMP JUMPDEST SWAP2 POP PUSH3 0x317 PUSH2 0x100 DUP12 ADD PUSH3 0x211 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x33B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x35C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x3B0 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x38B JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x3AC JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x397 JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x3D1 JUMPI PUSH3 0x3D1 PUSH3 0x14C JUMP JUMPDEST PUSH3 0x3E9 DUP2 PUSH3 0x3E2 DUP5 SLOAD PUSH3 0x326 JUMP JUMPDEST DUP5 PUSH3 0x362 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x421 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x408 JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x3AC JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x452 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x431 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x471 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x25AD DUP1 PUSH3 0x491 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1EE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x10D JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x595 JUMPI DUP1 PUSH4 0xD85D3D27 EQ PUSH2 0x5AB JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x5BE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x5DE JUMPI DUP1 PUSH4 0xF4A0A528 EQ PUSH2 0x5FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x520 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x540 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x560 JUMPI DUP1 PUSH4 0xD547CFB7 EQ PUSH2 0x580 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x49D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4BB JUMPI DUP1 PUSH4 0x9B19251A EQ PUSH2 0x4D0 JUMPI DUP1 PUSH4 0x9B7C1C83 EQ PUSH2 0x500 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x432 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x452 JUMPI DUP1 PUSH4 0x7F649783 EQ PUSH2 0x467 JUMPI DUP1 PUSH4 0x8A71BB2D EQ PUSH2 0x487 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3CCFD60B GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x55F804B3 GT PUSH2 0x154 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x3BC JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x3DC JUMPI DUP1 PUSH4 0x64BA144E EQ PUSH2 0x3FC JUMPI DUP1 PUSH4 0x6817C76C EQ PUSH2 0x41C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x347 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x4C00DE82 EQ PUSH2 0x37C JUMPI DUP1 PUSH4 0x548DB174 EQ PUSH2 0x39C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1C1 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2A3 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x2E8 JUMPI DUP1 PUSH4 0x2A55205A EQ PUSH2 0x308 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x116BC2D EQ PUSH2 0x1F3 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x229 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x26B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xE SLOAD PUSH2 0x214 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 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 0x235 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x214 PUSH2 0x244 CALLDATASIZE PUSH1 0x4 PUSH2 0x1D46 JUMP JUMPDEST PUSH2 0x61E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x255 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25E PUSH2 0x62F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x1DB3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x277 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x286 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC6 JUMP JUMPDEST PUSH2 0x6C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x220 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x2BE CALLDATASIZE PUSH1 0x4 PUSH2 0x1DF6 JUMP JUMPDEST PUSH2 0x6E8 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH2 0x802 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x220 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x303 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x812 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x328 PUSH2 0x323 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E5C JUMP JUMPDEST PUSH2 0x843 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x220 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x353 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x877 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x368 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x377 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x9D2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x388 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xE SLOAD PUSH2 0x28B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x3B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F5B JUMP JUMPDEST PUSH2 0x9ED JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x3D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x2008 JUMP JUMPDEST PUSH2 0xA61 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x3F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC6 JUMP JUMPDEST PUSH2 0xAB0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x408 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x417 CALLDATASIZE PUSH1 0x4 PUSH2 0x203D JUMP JUMPDEST PUSH2 0xB10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x428 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH1 0xC SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x43E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH2 0x44D CALLDATASIZE PUSH1 0x4 PUSH2 0x2112 JUMP JUMPDEST PUSH2 0xCD3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0xD59 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x473 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x482 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F5B JUMP JUMPDEST PUSH2 0xD6B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x493 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x28B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25E PUSH2 0xDDB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x214 PUSH2 0x4EB CALLDATASIZE PUSH1 0x4 PUSH2 0x2112 JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x213D JUMP JUMPDEST PUSH2 0xDEA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x52C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x53B CALLDATASIZE PUSH1 0x4 PUSH2 0x2158 JUMP JUMPDEST PUSH2 0xE3F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x54C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x55B CALLDATASIZE PUSH1 0x4 PUSH2 0x218B JUMP JUMPDEST PUSH2 0xE4A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x56C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25E PUSH2 0x57B CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC6 JUMP JUMPDEST PUSH2 0xE82 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25E PUSH2 0xE8D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH2 0x2DA PUSH2 0x5B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2008 JUMP JUMPDEST PUSH2 0xF1B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x214 PUSH2 0x5D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2207 JUMP JUMPDEST PUSH2 0x10C1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x5F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2112 JUMP JUMPDEST PUSH2 0x10EF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x619 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC6 JUMP JUMPDEST PUSH2 0x1168 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x629 DUP3 PUSH2 0x11A5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x63E SWAP1 PUSH2 0x2231 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 0x66A SWAP1 PUSH2 0x2231 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6B7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x68C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6B7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x69A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CC DUP3 PUSH2 0x11CA JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6F3 DUP3 PUSH2 0xAB0 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x765 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x781 JUMPI POP PUSH2 0x781 DUP2 CALLER PUSH2 0x10C1 JUMP JUMPDEST PUSH2 0x7F3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST PUSH2 0x7FD DUP4 DUP4 PUSH2 0x1229 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x80D PUSH1 0x9 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x81C CALLER DUP3 PUSH2 0x1297 JUMP JUMPDEST PUSH2 0x838 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x226B JUMP JUMPDEST PUSH2 0x7FD DUP4 DUP4 DUP4 PUSH2 0x12F6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2710 PUSH1 0xD SLOAD DUP5 PUSH2 0x857 SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST PUSH2 0x861 SWAP2 SWAP1 PUSH2 0x22E5 JUMP JUMPDEST PUSH1 0xE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x87F PUSH2 0x145A JUMP JUMPDEST PUSH2 0x887 PUSH2 0x14B4 JUMP JUMPDEST SELFBALANCE DUP1 PUSH2 0x8CE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x4E6F2062616C616E636520746F207769746864726177 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8E2 PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x92C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x931 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x976 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 0x15DA5D1A191C985DD85B0819985A5B1959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP4 PUSH1 0x40 MLOAD PUSH2 0x9BC SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH2 0x9D0 PUSH1 0x1 PUSH1 0x8 SSTORE JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x7FD DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xE4A JUMP JUMPDEST PUSH2 0x9F5 PUSH2 0x145A JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA5D JUMPI PUSH1 0x0 PUSH1 0xF PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xA19 JUMPI PUSH2 0xA19 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xA55 DUP2 PUSH2 0x231D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9F8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xA69 PUSH2 0x145A JUMP JUMPDEST PUSH1 0xA PUSH2 0xA75 DUP3 DUP3 PUSH2 0x2384 JUMP JUMPDEST POP PUSH32 0x6741B2FC379FAD678116FE3D4D4B9A1A184AB53BA36B86AD0FA66340B1AB41AD DUP2 PUSH1 0x40 MLOAD PUSH2 0xAA5 SWAP2 SWAP1 PUSH2 0x1DB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x629 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 PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH2 0xB18 PUSH2 0x145A JUMP JUMPDEST PUSH2 0xB20 PUSH2 0x14B4 JUMP JUMPDEST DUP1 MLOAD DUP3 MLOAD EQ PUSH2 0xB69 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 0x82E4E4C2F240D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0xB SLOAD ISZERO DUP1 PUSH2 0xB88 JUMPI POP PUSH1 0xB SLOAD DUP3 MLOAD PUSH1 0x9 SLOAD PUSH2 0xB85 SWAP2 SWAP1 PUSH2 0x2444 JUMP JUMPDEST GT ISZERO JUMPDEST PUSH2 0xBD4 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 0x576F756C6420657863656564206D617820737570706C79000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xCC8 JUMPI PUSH2 0xBEE PUSH1 0x9 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBF9 PUSH1 0x9 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0xC1E DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xC10 JUMPI PUSH2 0xC10 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 PUSH2 0x150D JUMP JUMPDEST PUSH2 0xC41 DUP2 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xC34 JUMPI PUSH2 0xC34 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1527 JUMP JUMPDEST DUP1 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xC54 JUMPI PUSH2 0xC54 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xD35BB95E09C04B219E35047CE7B7B300E3384264EF84A40456943DBC0FC17C14 DUP6 DUP6 DUP2 MLOAD DUP2 LT PUSH2 0xC98 JUMPI PUSH2 0xC98 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0xCAD SWAP2 SWAP1 PUSH2 0x1DB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP DUP1 PUSH2 0xCC0 DUP2 PUSH2 0x231D JUMP JUMPDEST SWAP2 POP POP PUSH2 0xBD7 JUMP JUMPDEST POP PUSH2 0xA5D PUSH1 0x1 PUSH1 0x8 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xD3D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3634B21037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD61 PUSH2 0x145A JUMP JUMPDEST PUSH2 0x9D0 PUSH1 0x0 PUSH2 0x15F2 JUMP JUMPDEST PUSH2 0xD73 PUSH2 0x145A JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA5D JUMPI PUSH1 0x1 PUSH1 0xF PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xD97 JUMPI PUSH2 0xD97 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xDD3 DUP2 PUSH2 0x231D JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD76 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x63E SWAP1 PUSH2 0x2231 JUMP JUMPDEST PUSH2 0xDF2 PUSH2 0x145A JUMP JUMPDEST PUSH1 0xE DUP1 SLOAD DUP3 ISZERO ISZERO PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH1 0xFF PUSH1 0xA0 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH32 0xA81E445DAC2343503DC87E4663774817434721DB7D985310A6959766E6D4480E SWAP1 PUSH2 0xAA5 SWAP1 DUP4 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0xA5D CALLER DUP4 DUP4 PUSH2 0x1644 JUMP JUMPDEST PUSH2 0xE54 CALLER DUP4 PUSH2 0x1297 JUMP JUMPDEST PUSH2 0xE70 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x226B JUMP JUMPDEST PUSH2 0xE7C DUP5 DUP5 DUP5 DUP5 PUSH2 0x1712 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x629 DUP3 PUSH2 0x1745 JUMP JUMPDEST PUSH1 0xA DUP1 SLOAD PUSH2 0xE9A SWAP1 PUSH2 0x2231 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 0xEC6 SWAP1 PUSH2 0x2231 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xF13 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xEE8 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xF13 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xEF6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF25 PUSH2 0x14B4 JUMP JUMPDEST PUSH1 0xE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND DUP1 PUSH2 0xF4C JUMPI POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST DUP1 PUSH2 0xF61 JUMPI POP PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST PUSH2 0xFA3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x135A5B9D1A5B99C81B9BDD08185B1B1BDDD959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0xB SLOAD ISZERO DUP1 PUSH2 0xFB5 JUMPI POP PUSH1 0xB SLOAD PUSH1 0x9 SLOAD LT JUMPDEST PUSH2 0xFF6 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 0x13585E081CDD5C1C1B1E481C995858DA1959 PUSH1 0x72 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0xC SLOAD CALLVALUE LT ISZERO PUSH2 0x103F 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 0x125B9CDD59999A58DA595B9D081C185E5B595B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH2 0x104D PUSH1 0x9 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1058 PUSH1 0x9 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x1064 CALLER DUP3 PUSH2 0x150D JUMP JUMPDEST PUSH2 0x106E DUP2 DUP5 PUSH2 0x1527 JUMP JUMPDEST DUP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xD35BB95E09C04B219E35047CE7B7B300E3384264EF84A40456943DBC0FC17C14 DUP6 PUSH1 0x40 MLOAD PUSH2 0x10A8 SWAP2 SWAP1 PUSH2 0x1DB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 SWAP1 POP PUSH2 0x10BC PUSH1 0x1 PUSH1 0x8 SSTORE JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 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 0x10F7 PUSH2 0x145A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x115C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST PUSH2 0x1165 DUP2 PUSH2 0x15F2 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1170 PUSH2 0x145A JUMP JUMPDEST PUSH1 0xC DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x525B762709CC2A983AEC5CCDFD807A061F993C91090B5BCD7DA92CA254976AAA SWAP1 PUSH1 0x20 ADD PUSH2 0xAA5 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x24832483 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x629 JUMPI POP PUSH2 0x629 DUP3 PUSH2 0x1840 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1165 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 PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x125E DUP3 PUSH2 0xAB0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x12A3 DUP4 PUSH2 0xAB0 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x12CA JUMPI POP PUSH2 0x12CA DUP2 DUP6 PUSH2 0x10C1 JUMP JUMPDEST DUP1 PUSH2 0x12EE JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x12E3 DUP5 PUSH2 0x6C1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1309 DUP3 PUSH2 0xAB0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x132F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x2457 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1391 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13A4 DUP3 PUSH2 0xAB0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13CA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x2457 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND DUP1 DUP7 MSTORE PUSH1 0x3 DUP6 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x0 NOT ADD SWAP1 SSTORE SWAP1 DUP8 AND DUP1 DUP7 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP7 DUP7 MSTORE PUSH1 0x2 SWAP1 SWAP5 MSTORE DUP3 DUP6 KECCAK256 DUP1 SLOAD SWAP1 SWAP3 AND DUP5 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP5 SWAP4 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x9D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SLOAD SUB PUSH2 0x1506 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 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SSTORE JUMP JUMPDEST PUSH2 0xA5D DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1890 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x15A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x32BC34B9BA32B73A103A37B5B2B7 PUSH1 0x91 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x15BA DUP3 DUP3 PUSH2 0x2384 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH32 0xF8E1A15ABA9398E019F0B49DF1A4FDE98EE17AE345CB5F6B5E2C27F5033E8CE7 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x7 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x16A5 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 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 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 JUMP JUMPDEST PUSH2 0x171D DUP5 DUP5 DUP5 PUSH2 0x12F6 JUMP JUMPDEST PUSH2 0x1729 DUP5 DUP5 DUP5 DUP5 PUSH2 0x18C3 JUMP JUMPDEST PUSH2 0xE7C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x249C JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1750 DUP3 PUSH2 0x11CA JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH2 0x1769 SWAP1 PUSH2 0x2231 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 0x1795 SWAP1 PUSH2 0x2231 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x17E2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x17B7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x17E2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x17C5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x17F3 PUSH2 0x19C4 JUMP JUMPDEST SWAP1 POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0x1805 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x1837 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x181F SWAP3 SWAP2 SWAP1 PUSH2 0x24EE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12EE DUP5 PUSH2 0x19D3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x1871 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x629 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x629 JUMP JUMPDEST PUSH2 0x189A DUP4 DUP4 PUSH2 0x1A3A JUMP JUMPDEST PUSH2 0x18A7 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x18C3 JUMP JUMPDEST PUSH2 0x7FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x249C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x19B9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1907 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x251D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1942 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x193F SWAP2 DUP2 ADD SWAP1 PUSH2 0x255A JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x199F JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1970 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1975 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0x1997 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x249C JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x12EE JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xA DUP1 SLOAD PUSH2 0x63E SWAP1 PUSH2 0x2231 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x19DE DUP3 PUSH2 0x11CA JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19E8 PUSH2 0x19C4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1A08 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1A33 JUMP JUMPDEST DUP1 PUSH2 0x1A12 DUP5 PUSH2 0x1BC5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1A23 SWAP3 SWAP2 SWAP1 PUSH2 0x24EE 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1A90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1AF5 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 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1B5A 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 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP5 DUP4 MSTORE PUSH1 0x2 SWAP1 SWAP2 MSTORE DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP5 OR SWAP1 SSTORE MLOAD DUP4 SWAP3 SWAP2 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1BD2 DUP4 PUSH2 0x1C58 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1BF2 JUMPI PUSH2 0x1BF2 PUSH2 0x1E7E 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 0x1C1C JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH1 0x0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x1C26 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x1C97 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x1CC3 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x1CE1 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x1CF9 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x1D0D JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x1D1F JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x629 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1165 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1A33 DUP2 PUSH2 0x1D30 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D7E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1D66 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x1D9F DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1D63 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1A33 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1D87 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DD8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1E09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E12 DUP4 PUSH2 0x1DDF JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E35 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E3E DUP5 PUSH2 0x1DDF JUMP JUMPDEST SWAP3 POP PUSH2 0x1E4C PUSH1 0x20 DUP6 ADD PUSH2 0x1DDF JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1E6F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1EBD JUMPI PUSH2 0x1EBD PUSH2 0x1E7E JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1EDF JUMPI PUSH2 0x1EDF PUSH2 0x1E7E JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1EFA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x1F0F PUSH2 0x1F0A DUP4 PUSH2 0x1EC5 JUMP JUMPDEST PUSH2 0x1E94 JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x5 SWAP3 SWAP1 SWAP3 SHL DUP5 ADD DUP2 ADD SWAP2 DUP2 DUP2 ADD SWAP1 DUP7 DUP5 GT ISZERO PUSH2 0x1F2E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1F50 JUMPI PUSH2 0x1F43 DUP2 PUSH2 0x1DDF JUMP JUMPDEST DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0x1F32 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F6D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1F84 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12EE DUP5 DUP3 DUP6 ADD PUSH2 0x1EE9 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 GT ISZERO PUSH2 0x1FAA JUMPI PUSH2 0x1FAA PUSH2 0x1E7E JUMP JUMPDEST PUSH2 0x1FBD PUSH1 0x1F DUP5 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x1E94 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE DUP4 DUP4 DUP4 ADD GT ISZERO PUSH2 0x1FD1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP3 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1FF9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1A33 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x201A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2031 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12EE DUP5 DUP3 DUP6 ADD PUSH2 0x1FE8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2050 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2068 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2074 DUP7 DUP4 DUP8 ADD PUSH2 0x1EE9 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 SWAP2 POP DUP2 DUP6 ADD CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x208B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x209C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x20AA PUSH2 0x1F0A DUP3 PUSH2 0x1EC5 JUMP JUMPDEST DUP2 DUP2 MSTORE PUSH1 0x5 SWAP2 SWAP1 SWAP2 SHL DUP3 ADD DUP5 ADD SWAP1 DUP5 DUP2 ADD SWAP1 DUP10 DUP4 GT ISZERO PUSH2 0x20C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP5 ADD JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2101 JUMPI DUP1 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x20E5 JUMPI PUSH1 0x0 DUP1 DUP2 REVERT JUMPDEST PUSH2 0x20F3 DUP13 DUP10 DUP4 DUP10 ADD ADD PUSH2 0x1FE8 JUMP JUMPDEST DUP5 MSTORE POP SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x20CD JUMP JUMPDEST POP DUP1 SWAP7 POP POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2124 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1A33 DUP3 PUSH2 0x1DDF JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x10BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x214F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1A33 DUP3 PUSH2 0x212D JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x216B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2174 DUP4 PUSH2 0x1DDF JUMP JUMPDEST SWAP2 POP PUSH2 0x2182 PUSH1 0x20 DUP5 ADD PUSH2 0x212D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x21A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21AA DUP6 PUSH2 0x1DDF JUMP JUMPDEST SWAP4 POP PUSH2 0x21B8 PUSH1 0x20 DUP7 ADD PUSH2 0x1DDF JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x21DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x21EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21FB DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1F90 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x221A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2223 DUP4 PUSH2 0x1DDF JUMP JUMPDEST SWAP2 POP PUSH2 0x2182 PUSH1 0x20 DUP5 ADD PUSH2 0x1DDF JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2245 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2265 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2D SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH13 0x1C881BDC88185C1C1C9BDD9959 PUSH1 0x9A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x629 JUMPI PUSH2 0x629 PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2302 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x232F JUMPI PUSH2 0x232F PUSH2 0x22B8 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x7FD JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH2 0x235D JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x237C JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x2369 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x239E JUMPI PUSH2 0x239E PUSH2 0x1E7E JUMP JUMPDEST PUSH2 0x23B2 DUP2 PUSH2 0x23AC DUP5 SLOAD PUSH2 0x2231 JUMP JUMPDEST DUP5 PUSH2 0x2336 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x23E7 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x23CF JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH2 0x237C JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2416 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH2 0x23F7 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH2 0x2434 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x629 JUMPI PUSH2 0x629 PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x37BBB732B9 PUSH1 0xD9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x2500 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1D63 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x2514 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1D63 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP 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 PUSH1 0x0 SWAP1 PUSH2 0x2550 SWAP1 DUP4 ADD DUP5 PUSH2 0x1D87 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x256C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1A33 DUP2 PUSH2 0x1D30 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B 0xCA CREATE2 CHAINID 0xE3 CALLDATACOPY PUSH2 0xF13D SWAP1 DUP7 0xCF 0xB7 0xB8 SUB REVERT EXP PUSH31 0xE2F411DCB8A4CFE4CF2929A3345564736F6C63430008130033000000000000 ","sourceMap":"498:6155:23:-:0;;;1300:745;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1611:5;1618:7;1456:5:9;:13;1611:5:23;1456::9;:13;:::i;:::-;-1:-1:-1;1479:7:9;:17;1489:7;1479;:17;:::i;:::-;;1390:113;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;:32::i;:::-;1716:1:4;1821:7;:22;1638:12:23::1;:28;1653:13:::0;1638:12;:28:::1;:::i;:::-;-1:-1:-1::0;1677:9:23::1;:22:::0;;;1710:17:::1;:38:::0;;;1759:16:::1;:36:::0;;1806:9:::1;:22:::0;;;1839:35;::::1;;-1:-1:-1::0;;;1839:35:23::1;-1:-1:-1::0;;;;;;1839:35:23;;;-1:-1:-1;;;;;1759:36:23;::::1;1839:35:::0;::::1;::::0;;1939:26:::1;1958:6:::0;1939:18:::1;:26::i;:::-;-1:-1:-1::0;;;;;2013:17:23::1;;::::0;;;:9:::1;:17;::::0;;;;:24;;-1:-1:-1;;2013:24:23::1;2033:4;2013:24;::::0;;-1:-1:-1;498:6155:23;;-1:-1:-1;;;;;;;498:6155:23;655:96:15;734:10;;655:96::o;2426:187:0:-;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;14:127:25:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:840;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;294:13;;-1:-1:-1;;;;;356:10:25;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:25;;;518:2;490:31;486:40;474:53;;;542:18;;;562:22;;;539:46;536:72;;;588:18;;:::i;:::-;628:10;624:2;617:22;663:2;655:6;648:18;685:4;675:14;;730:3;725:2;720;712:6;708:15;704:24;701:33;698:53;;;747:1;744;737:12;698:53;769:1;760:10;;779:133;793:2;790:1;787:9;779:133;;;881:14;;;877:23;;871:30;850:14;;;846:23;;839:63;804:10;;;;779:133;;;954:1;932:15;;;928:24;;;921:35;;;;936:6;146:840;-1:-1:-1;;;;146:840:25:o;991:177::-;1070:13;;-1:-1:-1;;;;;1112:31:25;;1102:42;;1092:70;;1158:1;1155;1148:12;1092:70;991:177;;;:::o;1173:164::-;1249:13;;1298;;1291:21;1281:32;;1271:60;;1327:1;1324;1317:12;1342:1204;1511:6;1519;1527;1535;1543;1551;1559;1567;1575;1628:3;1616:9;1607:7;1603:23;1599:33;1596:53;;;1645:1;1642;1635:12;1596:53;1672:16;;-1:-1:-1;;;;;1737:14:25;;;1734:34;;;1764:1;1761;1754:12;1734:34;1787:61;1840:7;1831:6;1820:9;1816:22;1787:61;:::i;:::-;1777:71;;1894:2;1883:9;1879:18;1873:25;1857:41;;1923:2;1913:8;1910:16;1907:36;;;1939:1;1936;1929:12;1907:36;1962:63;2017:7;2006:8;1995:9;1991:24;1962:63;:::i;:::-;1952:73;;2071:2;2060:9;2056:18;2050:25;2034:41;;2100:2;2090:8;2087:16;2084:36;;;2116:1;2113;2106:12;2084:36;;2139:63;2194:7;2183:8;2172:9;2168:24;2139:63;:::i;:::-;2129:73;;;2242:2;2231:9;2227:18;2221:25;2211:35;;2286:3;2275:9;2271:19;2265:26;2255:36;;2310:50;2355:3;2344:9;2340:19;2310:50;:::i;:::-;2300:60;;2400:3;2389:9;2385:19;2379:26;2369:36;;2424:47;2466:3;2455:9;2451:19;2424:47;:::i;:::-;2414:57;;2490:50;2535:3;2524:9;2520:19;2490:50;:::i;:::-;2480:60;;1342:1204;;;;;;;;;;;:::o;2551:380::-;2630:1;2626:12;;;;2673;;;2694:61;;2748:4;2740:6;2736:17;2726:27;;2694:61;2801:2;2793:6;2790:14;2770:18;2767:38;2764:161;;2847:10;2842:3;2838:20;2835:1;2828:31;2882:4;2879:1;2872:15;2910:4;2907:1;2900:15;2764:161;;2551:380;;;:::o;3062:545::-;3164:2;3159:3;3156:11;3153:448;;;3200:1;3225:5;3221:2;3214:17;3270:4;3266:2;3256:19;3340:2;3328:10;3324:19;3321:1;3317:27;3311:4;3307:38;3376:4;3364:10;3361:20;3358:47;;;-1:-1:-1;3399:4:25;3358:47;3454:2;3449:3;3445:12;3442:1;3438:20;3432:4;3428:31;3418:41;;3509:82;3527:2;3520:5;3517:13;3509:82;;;3572:17;;;3553:1;3542:13;3509:82;;;3513:3;;;3153:448;3062:545;;;:::o;3783:1352::-;3903:10;;-1:-1:-1;;;;;3925:30:25;;3922:56;;;3958:18;;:::i;:::-;3987:97;4077:6;4037:38;4069:4;4063:11;4037:38;:::i;:::-;4031:4;3987:97;:::i;:::-;4139:4;;4203:2;4192:14;;4220:1;4215:663;;;;4922:1;4939:6;4936:89;;;-1:-1:-1;4991:19:25;;;4985:26;4936:89;-1:-1:-1;;3740:1:25;3736:11;;;3732:24;3728:29;3718:40;3764:1;3760:11;;;3715:57;5038:81;;4185:944;;4215:663;3009:1;3002:14;;;3046:4;3033:18;;-1:-1:-1;;4251:20:25;;;4369:236;4383:7;4380:1;4377:14;4369:236;;;4472:19;;;4466:26;4451:42;;4564:27;;;;4532:1;4520:14;;;;4399:19;;4369:236;;;4373:3;4633:6;4624:7;4621:19;4618:201;;;4694:19;;;4688:26;-1:-1:-1;;4777:1:25;4773:14;;;4789:3;4769:24;4765:37;4761:42;4746:58;4731:74;;4618:201;-1:-1:-1;;;;;4865:1:25;4849:14;;;4845:22;4832:36;;-1:-1:-1;3783:1352:25:o;:::-;498:6155:23;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_2517":{"entryPoint":null,"id":2517,"parameterSlots":4,"returnSlots":0},"@_approve_2383":{"entryPoint":4649,"id":2383,"parameterSlots":2,"returnSlots":0},"@_baseURI_5771":{"entryPoint":6596,"id":5771,"parameterSlots":0,"returnSlots":1},"@_beforeTokenTransfer_2504":{"entryPoint":null,"id":2504,"parameterSlots":4,"returnSlots":0},"@_checkOnERC721Received_2491":{"entryPoint":6339,"id":2491,"parameterSlots":4,"returnSlots":1},"@_checkOwner_54":{"entryPoint":5210,"id":54,"parameterSlots":0,"returnSlots":0},"@_exists_2052":{"entryPoint":null,"id":2052,"parameterSlots":1,"returnSlots":1},"@_isApprovedOrOwner_2086":{"entryPoint":4759,"id":2086,"parameterSlots":2,"returnSlots":1},"@_mint_2207":{"entryPoint":6714,"id":2207,"parameterSlots":2,"returnSlots":0},"@_msgSender_3192":{"entryPoint":null,"id":3192,"parameterSlots":0,"returnSlots":1},"@_nonReentrantAfter_193":{"entryPoint":null,"id":193,"parameterSlots":0,"returnSlots":0},"@_nonReentrantBefore_185":{"entryPoint":5300,"id":185,"parameterSlots":0,"returnSlots":0},"@_ownerOf_2034":{"entryPoint":null,"id":2034,"parameterSlots":1,"returnSlots":1},"@_requireMinted_2429":{"entryPoint":4554,"id":2429,"parameterSlots":1,"returnSlots":0},"@_safeMint_2101":{"entryPoint":5389,"id":2101,"parameterSlots":2,"returnSlots":0},"@_safeMint_2130":{"entryPoint":6288,"id":2130,"parameterSlots":3,"returnSlots":0},"@_safeTransfer_2021":{"entryPoint":5906,"id":2021,"parameterSlots":4,"returnSlots":0},"@_setApprovalForAll_2415":{"entryPoint":5700,"id":2415,"parameterSlots":3,"returnSlots":0},"@_setTokenURI_2792":{"entryPoint":5415,"id":2792,"parameterSlots":2,"returnSlots":0},"@_transferOwnership_111":{"entryPoint":5618,"id":111,"parameterSlots":1,"returnSlots":0},"@_transfer_2359":{"entryPoint":4854,"id":2359,"parameterSlots":3,"returnSlots":0},"@addToWhitelist_5645":{"entryPoint":3435,"id":5645,"parameterSlots":1,"returnSlots":0},"@approve_1863":{"entryPoint":1768,"id":1863,"parameterSlots":2,"returnSlots":0},"@balanceOf_1724":{"entryPoint":3283,"id":1724,"parameterSlots":1,"returnSlots":1},"@baseTokenURI_5292":{"entryPoint":3725,"id":5292,"parameterSlots":0,"returnSlots":0},"@batchMint_5563":{"entryPoint":2832,"id":5563,"parameterSlots":2,"returnSlots":0},"@current_3228":{"entryPoint":null,"id":3228,"parameterSlots":1,"returnSlots":1},"@getApproved_1881":{"entryPoint":1729,"id":1881,"parameterSlots":1,"returnSlots":1},"@increment_3242":{"entryPoint":null,"id":3242,"parameterSlots":1,"returnSlots":0},"@isApprovedForAll_1916":{"entryPoint":4289,"id":1916,"parameterSlots":2,"returnSlots":1},"@isContract_2868":{"entryPoint":null,"id":2868,"parameterSlots":1,"returnSlots":1},"@isPublicMintEnabled_5302":{"entryPoint":null,"id":5302,"parameterSlots":0,"returnSlots":0},"@log10_4252":{"entryPoint":7256,"id":4252,"parameterSlots":1,"returnSlots":1},"@maxSupply_5294":{"entryPoint":null,"id":5294,"parameterSlots":0,"returnSlots":0},"@mintPrice_5296":{"entryPoint":null,"id":5296,"parameterSlots":0,"returnSlots":0},"@mint_5475":{"entryPoint":3867,"id":5475,"parameterSlots":1,"returnSlots":1},"@name_1762":{"entryPoint":1583,"id":1762,"parameterSlots":0,"returnSlots":1},"@ownerOf_1752":{"entryPoint":2736,"id":1752,"parameterSlots":1,"returnSlots":1},"@owner_40":{"entryPoint":null,"id":40,"parameterSlots":0,"returnSlots":1},"@removeFromWhitelist_5676":{"entryPoint":2541,"id":5676,"parameterSlots":1,"returnSlots":0},"@renounceOwnership_68":{"entryPoint":3417,"id":68,"parameterSlots":0,"returnSlots":0},"@royaltyInfo_5761":{"entryPoint":2115,"id":5761,"parameterSlots":2,"returnSlots":2},"@royaltyPercentage_5298":{"entryPoint":null,"id":5298,"parameterSlots":0,"returnSlots":0},"@royaltyRecipient_5300":{"entryPoint":null,"id":5300,"parameterSlots":0,"returnSlots":0},"@safeTransferFrom_1962":{"entryPoint":2514,"id":1962,"parameterSlots":3,"returnSlots":0},"@safeTransferFrom_1992":{"entryPoint":3658,"id":1992,"parameterSlots":4,"returnSlots":0},"@setApprovalForAll_1898":{"entryPoint":3647,"id":1898,"parameterSlots":2,"returnSlots":0},"@setBaseURI_5580":{"entryPoint":2657,"id":5580,"parameterSlots":1,"returnSlots":0},"@setMintPrice_5597":{"entryPoint":4456,"id":5597,"parameterSlots":1,"returnSlots":0},"@supportsInterface_1700":{"entryPoint":6208,"id":1700,"parameterSlots":1,"returnSlots":1},"@supportsInterface_2707":{"entryPoint":4517,"id":2707,"parameterSlots":1,"returnSlots":1},"@supportsInterface_3536":{"entryPoint":null,"id":3536,"parameterSlots":1,"returnSlots":1},"@supportsInterface_5821":{"entryPoint":1566,"id":5821,"parameterSlots":1,"returnSlots":1},"@symbol_1772":{"entryPoint":3547,"id":1772,"parameterSlots":0,"returnSlots":1},"@toString_3343":{"entryPoint":7109,"id":3343,"parameterSlots":1,"returnSlots":1},"@togglePublicMint_5614":{"entryPoint":3562,"id":5614,"parameterSlots":1,"returnSlots":0},"@tokenURI_1811":{"entryPoint":6611,"id":1811,"parameterSlots":1,"returnSlots":1},"@tokenURI_2766":{"entryPoint":5957,"id":2766,"parameterSlots":1,"returnSlots":1},"@tokenURI_5788":{"entryPoint":3714,"id":5788,"parameterSlots":1,"returnSlots":1},"@totalSupply_5687":{"entryPoint":2050,"id":5687,"parameterSlots":0,"returnSlots":1},"@transferFrom_1943":{"entryPoint":2066,"id":1943,"parameterSlots":3,"returnSlots":0},"@transferOwnership_91":{"entryPoint":4335,"id":91,"parameterSlots":1,"returnSlots":0},"@whitelist_5306":{"entryPoint":null,"id":5306,"parameterSlots":0,"returnSlots":0},"@withdraw_5735":{"entryPoint":2167,"id":5735,"parameterSlots":0,"returnSlots":0},"abi_decode_address":{"entryPoint":7647,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_address_dyn":{"entryPoint":7913,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_available_length_string":{"entryPoint":8080,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bool":{"entryPoint":8493,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_string":{"entryPoint":8168,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":8466,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":8711,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":7712,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr":{"entryPoint":8587,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":8536,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":7670,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr":{"entryPoint":8027,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptr":{"entryPoint":8253,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool":{"entryPoint":8509,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":7494,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":9562,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptr":{"entryPoint":8200,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":7622,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_uint256":{"entryPoint":7772,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_string":{"entryPoint":7559,"id":null,"parameterSlots":2,"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":9454,"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_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":9501,"id":null,"parameterSlots":5,"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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":7603,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":8811,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":9372,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":9303,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cf40cb9708e1320ee04bc59cb2f8b4ce47ba0c93638609957810c412abce51a7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3__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},"allocate_memory":{"entryPoint":7828,"id":null,"parameterSlots":1,"returnSlots":1},"array_allocation_size_array_address_dyn":{"entryPoint":7877,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":9284,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":8933,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":8910,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":9014,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":9092,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":7523,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":8753,"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_uint256":{"entryPoint":8989,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":8888,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":8967,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":7806,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":7472,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:22321:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"109:92:25","statements":[{"nodeType":"YulAssignment","src":"119:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"131:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"142:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"127:3:25"},"nodeType":"YulFunctionCall","src":"127:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"119:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"161:9:25"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"186:6:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"179:6:25"},"nodeType":"YulFunctionCall","src":"179:14:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"172:6:25"},"nodeType":"YulFunctionCall","src":"172:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"154:6:25"},"nodeType":"YulFunctionCall","src":"154:41:25"},"nodeType":"YulExpressionStatement","src":"154:41:25"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"78:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"89:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"100:4:25","type":""}],"src":"14:187:25"},{"body":{"nodeType":"YulBlock","src":"250:87:25","statements":[{"body":{"nodeType":"YulBlock","src":"315:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"324:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"327:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"317:6:25"},"nodeType":"YulFunctionCall","src":"317:12:25"},"nodeType":"YulExpressionStatement","src":"317:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"273:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"284:5:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"295:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"300:10:25","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"291:3:25"},"nodeType":"YulFunctionCall","src":"291:20:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"280:3:25"},"nodeType":"YulFunctionCall","src":"280:32:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"270:2:25"},"nodeType":"YulFunctionCall","src":"270:43:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"263:6:25"},"nodeType":"YulFunctionCall","src":"263:51:25"},"nodeType":"YulIf","src":"260:71:25"}]},"name":"validator_revert_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"239:5:25","type":""}],"src":"206:131:25"},{"body":{"nodeType":"YulBlock","src":"411:176:25","statements":[{"body":{"nodeType":"YulBlock","src":"457:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"466:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"469:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"459:6:25"},"nodeType":"YulFunctionCall","src":"459:12:25"},"nodeType":"YulExpressionStatement","src":"459:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"432:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"441:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"428:3:25"},"nodeType":"YulFunctionCall","src":"428:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"453:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"424:3:25"},"nodeType":"YulFunctionCall","src":"424:32:25"},"nodeType":"YulIf","src":"421:52:25"},{"nodeType":"YulVariableDeclaration","src":"482:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"508:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"495:12:25"},"nodeType":"YulFunctionCall","src":"495:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"486:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"551:5:25"}],"functionName":{"name":"validator_revert_bytes4","nodeType":"YulIdentifier","src":"527:23:25"},"nodeType":"YulFunctionCall","src":"527:30:25"},"nodeType":"YulExpressionStatement","src":"527:30:25"},{"nodeType":"YulAssignment","src":"566:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"576:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"566:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"377:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"388:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"400:6:25","type":""}],"src":"342:245:25"},{"body":{"nodeType":"YulBlock","src":"658:184:25","statements":[{"nodeType":"YulVariableDeclaration","src":"668:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"677:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"672:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"737:63:25","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"762:3:25"},{"name":"i","nodeType":"YulIdentifier","src":"767:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"758:3:25"},"nodeType":"YulFunctionCall","src":"758:11:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"781:3:25"},{"name":"i","nodeType":"YulIdentifier","src":"786:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"777:3:25"},"nodeType":"YulFunctionCall","src":"777:11:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"771:5:25"},"nodeType":"YulFunctionCall","src":"771:18:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"751:6:25"},"nodeType":"YulFunctionCall","src":"751:39:25"},"nodeType":"YulExpressionStatement","src":"751:39:25"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"698:1:25"},{"name":"length","nodeType":"YulIdentifier","src":"701:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"695:2:25"},"nodeType":"YulFunctionCall","src":"695:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"709:19:25","statements":[{"nodeType":"YulAssignment","src":"711:15:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"720:1:25"},{"kind":"number","nodeType":"YulLiteral","src":"723:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"716:3:25"},"nodeType":"YulFunctionCall","src":"716:10:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"711:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"691:3:25","statements":[]},"src":"687:113:25"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"820:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"825:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"816:3:25"},"nodeType":"YulFunctionCall","src":"816:16:25"},{"kind":"number","nodeType":"YulLiteral","src":"834:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"809:6:25"},"nodeType":"YulFunctionCall","src":"809:27:25"},"nodeType":"YulExpressionStatement","src":"809:27:25"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"636:3:25","type":""},{"name":"dst","nodeType":"YulTypedName","src":"641:3:25","type":""},{"name":"length","nodeType":"YulTypedName","src":"646:6:25","type":""}],"src":"592:250:25"},{"body":{"nodeType":"YulBlock","src":"897:221:25","statements":[{"nodeType":"YulVariableDeclaration","src":"907:26:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"927:5:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"921:5:25"},"nodeType":"YulFunctionCall","src":"921:12:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"911:6:25","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"949:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"954:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"942:6:25"},"nodeType":"YulFunctionCall","src":"942:19:25"},"nodeType":"YulExpressionStatement","src":"942:19:25"},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1009:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"1016:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1005:3:25"},"nodeType":"YulFunctionCall","src":"1005:16:25"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1027:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"1032:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1023:3:25"},"nodeType":"YulFunctionCall","src":"1023:14:25"},{"name":"length","nodeType":"YulIdentifier","src":"1039:6:25"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"970:34:25"},"nodeType":"YulFunctionCall","src":"970:76:25"},"nodeType":"YulExpressionStatement","src":"970:76:25"},{"nodeType":"YulAssignment","src":"1055:57:25","value":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1070:3:25"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1083:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"1091:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1079:3:25"},"nodeType":"YulFunctionCall","src":"1079:15:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1100:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1096:3:25"},"nodeType":"YulFunctionCall","src":"1096:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1075:3:25"},"nodeType":"YulFunctionCall","src":"1075:29:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1066:3:25"},"nodeType":"YulFunctionCall","src":"1066:39:25"},{"kind":"number","nodeType":"YulLiteral","src":"1107:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1062:3:25"},"nodeType":"YulFunctionCall","src":"1062:50:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"1055:3:25"}]}]},"name":"abi_encode_string","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"874:5:25","type":""},{"name":"pos","nodeType":"YulTypedName","src":"881:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"889:3:25","type":""}],"src":"847:271:25"},{"body":{"nodeType":"YulBlock","src":"1244:99:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1261:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1272:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1254:6:25"},"nodeType":"YulFunctionCall","src":"1254:21:25"},"nodeType":"YulExpressionStatement","src":"1254:21:25"},{"nodeType":"YulAssignment","src":"1284:53:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1310:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1322:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1333:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1318:3:25"},"nodeType":"YulFunctionCall","src":"1318:18:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"1292:17:25"},"nodeType":"YulFunctionCall","src":"1292:45:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1284:4:25"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1213:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1224:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1235:4:25","type":""}],"src":"1123:220:25"},{"body":{"nodeType":"YulBlock","src":"1418:110:25","statements":[{"body":{"nodeType":"YulBlock","src":"1464:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1473:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1476:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1466:6:25"},"nodeType":"YulFunctionCall","src":"1466:12:25"},"nodeType":"YulExpressionStatement","src":"1466:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1439:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1448:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1435:3:25"},"nodeType":"YulFunctionCall","src":"1435:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1460:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1431:3:25"},"nodeType":"YulFunctionCall","src":"1431:32:25"},"nodeType":"YulIf","src":"1428:52:25"},{"nodeType":"YulAssignment","src":"1489:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1512:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1499:12:25"},"nodeType":"YulFunctionCall","src":"1499:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1489:6:25"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1384:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1395:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1407:6:25","type":""}],"src":"1348:180:25"},{"body":{"nodeType":"YulBlock","src":"1634:102:25","statements":[{"nodeType":"YulAssignment","src":"1644:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1656:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1667:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1652:3:25"},"nodeType":"YulFunctionCall","src":"1652:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1644:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1686:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1701:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1717:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1722:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1713:3:25"},"nodeType":"YulFunctionCall","src":"1713:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"1726:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1709:3:25"},"nodeType":"YulFunctionCall","src":"1709:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1697:3:25"},"nodeType":"YulFunctionCall","src":"1697:32:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1679:6:25"},"nodeType":"YulFunctionCall","src":"1679:51:25"},"nodeType":"YulExpressionStatement","src":"1679:51:25"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1603:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1614:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1625:4:25","type":""}],"src":"1533:203:25"},{"body":{"nodeType":"YulBlock","src":"1790:124:25","statements":[{"nodeType":"YulAssignment","src":"1800:29:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1822:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1809:12:25"},"nodeType":"YulFunctionCall","src":"1809:20:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1800:5:25"}]},{"body":{"nodeType":"YulBlock","src":"1892:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1901:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1904:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1894:6:25"},"nodeType":"YulFunctionCall","src":"1894:12:25"},"nodeType":"YulExpressionStatement","src":"1894:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1851:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1862:5:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1877:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1882:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1873:3:25"},"nodeType":"YulFunctionCall","src":"1873:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"1886:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1869:3:25"},"nodeType":"YulFunctionCall","src":"1869:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1858:3:25"},"nodeType":"YulFunctionCall","src":"1858:31:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1848:2:25"},"nodeType":"YulFunctionCall","src":"1848:42:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1841:6:25"},"nodeType":"YulFunctionCall","src":"1841:50:25"},"nodeType":"YulIf","src":"1838:70:25"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1769:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1780:5:25","type":""}],"src":"1741:173:25"},{"body":{"nodeType":"YulBlock","src":"2006:167:25","statements":[{"body":{"nodeType":"YulBlock","src":"2052:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2061:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2064:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2054:6:25"},"nodeType":"YulFunctionCall","src":"2054:12:25"},"nodeType":"YulExpressionStatement","src":"2054:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2027:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"2036:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2023:3:25"},"nodeType":"YulFunctionCall","src":"2023:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"2048:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2019:3:25"},"nodeType":"YulFunctionCall","src":"2019:32:25"},"nodeType":"YulIf","src":"2016:52:25"},{"nodeType":"YulAssignment","src":"2077:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2106:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2087:18:25"},"nodeType":"YulFunctionCall","src":"2087:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2077:6:25"}]},{"nodeType":"YulAssignment","src":"2125:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2152:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2163:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2148:3:25"},"nodeType":"YulFunctionCall","src":"2148:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2135:12:25"},"nodeType":"YulFunctionCall","src":"2135:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2125:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1964:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1975:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1987:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1995:6:25","type":""}],"src":"1919:254:25"},{"body":{"nodeType":"YulBlock","src":"2279:76:25","statements":[{"nodeType":"YulAssignment","src":"2289:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2301:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2312:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2297:3:25"},"nodeType":"YulFunctionCall","src":"2297:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2289:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2331:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"2342:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2324:6:25"},"nodeType":"YulFunctionCall","src":"2324:25:25"},"nodeType":"YulExpressionStatement","src":"2324:25:25"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2248:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2259:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2270:4:25","type":""}],"src":"2178:177:25"},{"body":{"nodeType":"YulBlock","src":"2464:224:25","statements":[{"body":{"nodeType":"YulBlock","src":"2510:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2519:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2522:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2512:6:25"},"nodeType":"YulFunctionCall","src":"2512:12:25"},"nodeType":"YulExpressionStatement","src":"2512:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2485:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"2494:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2481:3:25"},"nodeType":"YulFunctionCall","src":"2481:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"2506:2:25","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2477:3:25"},"nodeType":"YulFunctionCall","src":"2477:32:25"},"nodeType":"YulIf","src":"2474:52:25"},{"nodeType":"YulAssignment","src":"2535:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2564:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2545:18:25"},"nodeType":"YulFunctionCall","src":"2545:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2535:6:25"}]},{"nodeType":"YulAssignment","src":"2583:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2616:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2627:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2612:3:25"},"nodeType":"YulFunctionCall","src":"2612:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2593:18:25"},"nodeType":"YulFunctionCall","src":"2593:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2583:6:25"}]},{"nodeType":"YulAssignment","src":"2640:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2667:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2678:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2663:3:25"},"nodeType":"YulFunctionCall","src":"2663:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2650:12:25"},"nodeType":"YulFunctionCall","src":"2650:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2640:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2414:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2425:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2437:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2445:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"2453:6:25","type":""}],"src":"2360:328:25"},{"body":{"nodeType":"YulBlock","src":"2780:161:25","statements":[{"body":{"nodeType":"YulBlock","src":"2826:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2835:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2838:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2828:6:25"},"nodeType":"YulFunctionCall","src":"2828:12:25"},"nodeType":"YulExpressionStatement","src":"2828:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2801:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"2810:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2797:3:25"},"nodeType":"YulFunctionCall","src":"2797:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"2822:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2793:3:25"},"nodeType":"YulFunctionCall","src":"2793:32:25"},"nodeType":"YulIf","src":"2790:52:25"},{"nodeType":"YulAssignment","src":"2851:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2874:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2861:12:25"},"nodeType":"YulFunctionCall","src":"2861:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2851:6:25"}]},{"nodeType":"YulAssignment","src":"2893:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2920:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2931:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2916:3:25"},"nodeType":"YulFunctionCall","src":"2916:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2903:12:25"},"nodeType":"YulFunctionCall","src":"2903:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2893:6:25"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2738:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2749:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2761:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2769:6:25","type":""}],"src":"2693:248:25"},{"body":{"nodeType":"YulBlock","src":"3075:145:25","statements":[{"nodeType":"YulAssignment","src":"3085:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3097:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3108:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3093:3:25"},"nodeType":"YulFunctionCall","src":"3093:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3085:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3127:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3142:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3158:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"3163:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3154:3:25"},"nodeType":"YulFunctionCall","src":"3154:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"3167:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3150:3:25"},"nodeType":"YulFunctionCall","src":"3150:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3138:3:25"},"nodeType":"YulFunctionCall","src":"3138:32:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3120:6:25"},"nodeType":"YulFunctionCall","src":"3120:51:25"},"nodeType":"YulExpressionStatement","src":"3120:51:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3191:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3202:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3187:3:25"},"nodeType":"YulFunctionCall","src":"3187:18:25"},{"name":"value1","nodeType":"YulIdentifier","src":"3207:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3180:6:25"},"nodeType":"YulFunctionCall","src":"3180:34:25"},"nodeType":"YulExpressionStatement","src":"3180:34:25"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3036:9:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3047:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3055:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3066:4:25","type":""}],"src":"2946:274:25"},{"body":{"nodeType":"YulBlock","src":"3257:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3274:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3281:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"3286:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3277:3:25"},"nodeType":"YulFunctionCall","src":"3277:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3267:6:25"},"nodeType":"YulFunctionCall","src":"3267:31:25"},"nodeType":"YulExpressionStatement","src":"3267:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3314:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3317:4:25","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3307:6:25"},"nodeType":"YulFunctionCall","src":"3307:15:25"},"nodeType":"YulExpressionStatement","src":"3307:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3338:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3341:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3331:6:25"},"nodeType":"YulFunctionCall","src":"3331:15:25"},"nodeType":"YulExpressionStatement","src":"3331:15:25"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"3225:127:25"},{"body":{"nodeType":"YulBlock","src":"3402:230:25","statements":[{"nodeType":"YulAssignment","src":"3412:19:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3428:2:25","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3422:5:25"},"nodeType":"YulFunctionCall","src":"3422:9:25"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"3412:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"3440:58:25","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"3462:6:25"},{"arguments":[{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"3478:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"3484:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3474:3:25"},"nodeType":"YulFunctionCall","src":"3474:13:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3493:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3489:3:25"},"nodeType":"YulFunctionCall","src":"3489:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3470:3:25"},"nodeType":"YulFunctionCall","src":"3470:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3458:3:25"},"nodeType":"YulFunctionCall","src":"3458:40:25"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"3444:10:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"3573:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"3575:16:25"},"nodeType":"YulFunctionCall","src":"3575:18:25"},"nodeType":"YulExpressionStatement","src":"3575:18:25"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"3516:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"3528:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3513:2:25"},"nodeType":"YulFunctionCall","src":"3513:34:25"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"3552:10:25"},{"name":"memPtr","nodeType":"YulIdentifier","src":"3564:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3549:2:25"},"nodeType":"YulFunctionCall","src":"3549:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"3510:2:25"},"nodeType":"YulFunctionCall","src":"3510:62:25"},"nodeType":"YulIf","src":"3507:88:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3611:2:25","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"3615:10:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3604:6:25"},"nodeType":"YulFunctionCall","src":"3604:22:25"},"nodeType":"YulExpressionStatement","src":"3604:22:25"}]},"name":"allocate_memory","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nodeType":"YulTypedName","src":"3382:4:25","type":""}],"returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"3391:6:25","type":""}],"src":"3357:275:25"},{"body":{"nodeType":"YulBlock","src":"3706:114:25","statements":[{"body":{"nodeType":"YulBlock","src":"3750:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"3752:16:25"},"nodeType":"YulFunctionCall","src":"3752:18:25"},"nodeType":"YulExpressionStatement","src":"3752:18:25"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"3722:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3730:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3719:2:25"},"nodeType":"YulFunctionCall","src":"3719:30:25"},"nodeType":"YulIf","src":"3716:56:25"},{"nodeType":"YulAssignment","src":"3781:33:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3797:1:25","type":"","value":"5"},{"name":"length","nodeType":"YulIdentifier","src":"3800:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3793:3:25"},"nodeType":"YulFunctionCall","src":"3793:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"3809:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3789:3:25"},"nodeType":"YulFunctionCall","src":"3789:25:25"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"3781:4:25"}]}]},"name":"array_allocation_size_array_address_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nodeType":"YulTypedName","src":"3686:6:25","type":""}],"returnVariables":[{"name":"size","nodeType":"YulTypedName","src":"3697:4:25","type":""}],"src":"3637:183:25"},{"body":{"nodeType":"YulBlock","src":"3889:604:25","statements":[{"body":{"nodeType":"YulBlock","src":"3938:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3947:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3950:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3940:6:25"},"nodeType":"YulFunctionCall","src":"3940:12:25"},"nodeType":"YulExpressionStatement","src":"3940:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3917:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"3925:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3913:3:25"},"nodeType":"YulFunctionCall","src":"3913:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"3932:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3909:3:25"},"nodeType":"YulFunctionCall","src":"3909:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3902:6:25"},"nodeType":"YulFunctionCall","src":"3902:35:25"},"nodeType":"YulIf","src":"3899:55:25"},{"nodeType":"YulVariableDeclaration","src":"3963:30:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3986:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3973:12:25"},"nodeType":"YulFunctionCall","src":"3973:20:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3967:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4002:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"4012:4:25","type":"","value":"0x20"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"4006:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4025:71:25","value":{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"4092:2:25"}],"functionName":{"name":"array_allocation_size_array_address_dyn","nodeType":"YulIdentifier","src":"4052:39:25"},"nodeType":"YulFunctionCall","src":"4052:43:25"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"4036:15:25"},"nodeType":"YulFunctionCall","src":"4036:60:25"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"4029:3:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4105:16:25","value":{"name":"dst","nodeType":"YulIdentifier","src":"4118:3:25"},"variables":[{"name":"dst_1","nodeType":"YulTypedName","src":"4109:5:25","type":""}]},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4137:3:25"},{"name":"_1","nodeType":"YulIdentifier","src":"4142:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4130:6:25"},"nodeType":"YulFunctionCall","src":"4130:15:25"},"nodeType":"YulExpressionStatement","src":"4130:15:25"},{"nodeType":"YulAssignment","src":"4154:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4165:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4170:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4161:3:25"},"nodeType":"YulFunctionCall","src":"4161:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"4154:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"4182:46:25","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4204:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4216:1:25","type":"","value":"5"},{"name":"_1","nodeType":"YulIdentifier","src":"4219:2:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4212:3:25"},"nodeType":"YulFunctionCall","src":"4212:10:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4200:3:25"},"nodeType":"YulFunctionCall","src":"4200:23:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4225:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4196:3:25"},"nodeType":"YulFunctionCall","src":"4196:32:25"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"4186:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4256:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4265:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4268:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4258:6:25"},"nodeType":"YulFunctionCall","src":"4258:12:25"},"nodeType":"YulExpressionStatement","src":"4258:12:25"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"4243:6:25"},{"name":"end","nodeType":"YulIdentifier","src":"4251:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4240:2:25"},"nodeType":"YulFunctionCall","src":"4240:15:25"},"nodeType":"YulIf","src":"4237:35:25"},{"nodeType":"YulVariableDeclaration","src":"4281:26:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4296:6:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4304:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4292:3:25"},"nodeType":"YulFunctionCall","src":"4292:15:25"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"4285:3:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4372:92:25","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4393:3:25"},{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4417:3:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"4398:18:25"},"nodeType":"YulFunctionCall","src":"4398:23:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4386:6:25"},"nodeType":"YulFunctionCall","src":"4386:36:25"},"nodeType":"YulExpressionStatement","src":"4386:36:25"},{"nodeType":"YulAssignment","src":"4435:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"4446:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4451:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4442:3:25"},"nodeType":"YulFunctionCall","src":"4442:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"4435:3:25"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4327:3:25"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"4332:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4324:2:25"},"nodeType":"YulFunctionCall","src":"4324:15:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"4340:23:25","statements":[{"nodeType":"YulAssignment","src":"4342:19:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4353:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"4358:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4349:3:25"},"nodeType":"YulFunctionCall","src":"4349:12:25"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"4342:3:25"}]}]},"pre":{"nodeType":"YulBlock","src":"4320:3:25","statements":[]},"src":"4316:148:25"},{"nodeType":"YulAssignment","src":"4473:14:25","value":{"name":"dst_1","nodeType":"YulIdentifier","src":"4482:5:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"4473:5:25"}]}]},"name":"abi_decode_array_address_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"3863:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"3871:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"3879:5:25","type":""}],"src":"3825:668:25"},{"body":{"nodeType":"YulBlock","src":"4593:253:25","statements":[{"body":{"nodeType":"YulBlock","src":"4639:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4648:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4651:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4641:6:25"},"nodeType":"YulFunctionCall","src":"4641:12:25"},"nodeType":"YulExpressionStatement","src":"4641:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4614:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"4623:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4610:3:25"},"nodeType":"YulFunctionCall","src":"4610:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"4635:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4606:3:25"},"nodeType":"YulFunctionCall","src":"4606:32:25"},"nodeType":"YulIf","src":"4603:52:25"},{"nodeType":"YulVariableDeclaration","src":"4664:37:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4691:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4678:12:25"},"nodeType":"YulFunctionCall","src":"4678:23:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4668:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"4744:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4753:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4756:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4746:6:25"},"nodeType":"YulFunctionCall","src":"4746:12:25"},"nodeType":"YulExpressionStatement","src":"4746:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4716:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4724:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4713:2:25"},"nodeType":"YulFunctionCall","src":"4713:30:25"},"nodeType":"YulIf","src":"4710:50:25"},{"nodeType":"YulAssignment","src":"4769:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4812:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"4823:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4808:3:25"},"nodeType":"YulFunctionCall","src":"4808:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4832:7:25"}],"functionName":{"name":"abi_decode_array_address_dyn","nodeType":"YulIdentifier","src":"4779:28:25"},"nodeType":"YulFunctionCall","src":"4779:61:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4769:6:25"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4559:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4570:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4582:6:25","type":""}],"src":"4498:348:25"},{"body":{"nodeType":"YulBlock","src":"4926:332:25","statements":[{"body":{"nodeType":"YulBlock","src":"4970:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"4972:16:25"},"nodeType":"YulFunctionCall","src":"4972:18:25"},"nodeType":"YulExpressionStatement","src":"4972:18:25"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4942:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"4950:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4939:2:25"},"nodeType":"YulFunctionCall","src":"4939:30:25"},"nodeType":"YulIf","src":"4936:56:25"},{"nodeType":"YulAssignment","src":"5001:66:25","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"5038:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"5046:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5034:3:25"},"nodeType":"YulFunctionCall","src":"5034:15:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5055:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"5051:3:25"},"nodeType":"YulFunctionCall","src":"5051:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5030:3:25"},"nodeType":"YulFunctionCall","src":"5030:29:25"},{"kind":"number","nodeType":"YulLiteral","src":"5061:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5026:3:25"},"nodeType":"YulFunctionCall","src":"5026:40:25"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"5010:15:25"},"nodeType":"YulFunctionCall","src":"5010:57:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"5001:5:25"}]},{"expression":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"5083:5:25"},{"name":"length","nodeType":"YulIdentifier","src":"5090:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5076:6:25"},"nodeType":"YulFunctionCall","src":"5076:21:25"},"nodeType":"YulExpressionStatement","src":"5076:21:25"},{"body":{"nodeType":"YulBlock","src":"5135:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5144:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5147:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5137:6:25"},"nodeType":"YulFunctionCall","src":"5137:12:25"},"nodeType":"YulExpressionStatement","src":"5137:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"5116:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"5121:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5112:3:25"},"nodeType":"YulFunctionCall","src":"5112:16:25"},{"name":"end","nodeType":"YulIdentifier","src":"5130:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5109:2:25"},"nodeType":"YulFunctionCall","src":"5109:25:25"},"nodeType":"YulIf","src":"5106:45:25"},{"expression":{"arguments":[{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"5177:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"5184:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5173:3:25"},"nodeType":"YulFunctionCall","src":"5173:16:25"},{"name":"src","nodeType":"YulIdentifier","src":"5191:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"5196:6:25"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"5160:12:25"},"nodeType":"YulFunctionCall","src":"5160:43:25"},"nodeType":"YulExpressionStatement","src":"5160:43:25"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"5227:5:25"},{"name":"length","nodeType":"YulIdentifier","src":"5234:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5223:3:25"},"nodeType":"YulFunctionCall","src":"5223:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"5243:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5219:3:25"},"nodeType":"YulFunctionCall","src":"5219:29:25"},{"kind":"number","nodeType":"YulLiteral","src":"5250:1:25","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5212:6:25"},"nodeType":"YulFunctionCall","src":"5212:40:25"},"nodeType":"YulExpressionStatement","src":"5212:40:25"}]},"name":"abi_decode_available_length_string","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"4895:3:25","type":""},{"name":"length","nodeType":"YulTypedName","src":"4900:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"4908:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"4916:5:25","type":""}],"src":"4851:407:25"},{"body":{"nodeType":"YulBlock","src":"5316:169:25","statements":[{"body":{"nodeType":"YulBlock","src":"5365:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5374:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5377:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5367:6:25"},"nodeType":"YulFunctionCall","src":"5367:12:25"},"nodeType":"YulExpressionStatement","src":"5367:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5344:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"5352:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5340:3:25"},"nodeType":"YulFunctionCall","src":"5340:17:25"},{"name":"end","nodeType":"YulIdentifier","src":"5359:3:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5336:3:25"},"nodeType":"YulFunctionCall","src":"5336:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"5329:6:25"},"nodeType":"YulFunctionCall","src":"5329:35:25"},"nodeType":"YulIf","src":"5326:55:25"},{"nodeType":"YulAssignment","src":"5390:89:25","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5438:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"5446:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5434:3:25"},"nodeType":"YulFunctionCall","src":"5434:17:25"},{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5466:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5453:12:25"},"nodeType":"YulFunctionCall","src":"5453:20:25"},{"name":"end","nodeType":"YulIdentifier","src":"5475:3:25"}],"functionName":{"name":"abi_decode_available_length_string","nodeType":"YulIdentifier","src":"5399:34:25"},"nodeType":"YulFunctionCall","src":"5399:80:25"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"5390:5:25"}]}]},"name":"abi_decode_string","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"5290:6:25","type":""},{"name":"end","nodeType":"YulTypedName","src":"5298:3:25","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"5306:5:25","type":""}],"src":"5263:222:25"},{"body":{"nodeType":"YulBlock","src":"5570:242:25","statements":[{"body":{"nodeType":"YulBlock","src":"5616:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5625:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5628:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5618:6:25"},"nodeType":"YulFunctionCall","src":"5618:12:25"},"nodeType":"YulExpressionStatement","src":"5618:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5591:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"5600:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5587:3:25"},"nodeType":"YulFunctionCall","src":"5587:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"5612:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5583:3:25"},"nodeType":"YulFunctionCall","src":"5583:32:25"},"nodeType":"YulIf","src":"5580:52:25"},{"nodeType":"YulVariableDeclaration","src":"5641:37:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5668:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5655:12:25"},"nodeType":"YulFunctionCall","src":"5655:23:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5645:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"5721:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5730:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5733:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5723:6:25"},"nodeType":"YulFunctionCall","src":"5723:12:25"},"nodeType":"YulExpressionStatement","src":"5723:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5693:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"5701:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5690:2:25"},"nodeType":"YulFunctionCall","src":"5690:30:25"},"nodeType":"YulIf","src":"5687:50:25"},{"nodeType":"YulAssignment","src":"5746:60:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5778:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"5789:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5774:3:25"},"nodeType":"YulFunctionCall","src":"5774:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5798:7:25"}],"functionName":{"name":"abi_decode_string","nodeType":"YulIdentifier","src":"5756:17:25"},"nodeType":"YulFunctionCall","src":"5756:50:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5746:6:25"}]}]},"name":"abi_decode_tuple_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5536:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5547:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5559:6:25","type":""}],"src":"5490:322:25"},{"body":{"nodeType":"YulBlock","src":"5964:1212:25","statements":[{"body":{"nodeType":"YulBlock","src":"6010:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6019:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6022:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6012:6:25"},"nodeType":"YulFunctionCall","src":"6012:12:25"},"nodeType":"YulExpressionStatement","src":"6012:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5985:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"5994:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5981:3:25"},"nodeType":"YulFunctionCall","src":"5981:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"6006:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5977:3:25"},"nodeType":"YulFunctionCall","src":"5977:32:25"},"nodeType":"YulIf","src":"5974:52:25"},{"nodeType":"YulVariableDeclaration","src":"6035:37:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6062:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6049:12:25"},"nodeType":"YulFunctionCall","src":"6049:23:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"6039:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6081:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"6091:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"6085:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6136:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6145:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6148:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6138:6:25"},"nodeType":"YulFunctionCall","src":"6138:12:25"},"nodeType":"YulExpressionStatement","src":"6138:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6124:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"6132:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6121:2:25"},"nodeType":"YulFunctionCall","src":"6121:14:25"},"nodeType":"YulIf","src":"6118:34:25"},{"nodeType":"YulAssignment","src":"6161:71:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6204:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"6215:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6200:3:25"},"nodeType":"YulFunctionCall","src":"6200:22:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"6224:7:25"}],"functionName":{"name":"abi_decode_array_address_dyn","nodeType":"YulIdentifier","src":"6171:28:25"},"nodeType":"YulFunctionCall","src":"6171:61:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6161:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"6241:12:25","value":{"kind":"number","nodeType":"YulLiteral","src":"6251:2:25","type":"","value":"32"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"6245:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6262:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6295:9:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6306:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6291:3:25"},"nodeType":"YulFunctionCall","src":"6291:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6278:12:25"},"nodeType":"YulFunctionCall","src":"6278:32:25"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"6266:8:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6339:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6348:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6351:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6341:6:25"},"nodeType":"YulFunctionCall","src":"6341:12:25"},"nodeType":"YulExpressionStatement","src":"6341:12:25"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"6325:8:25"},{"name":"_1","nodeType":"YulIdentifier","src":"6335:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6322:2:25"},"nodeType":"YulFunctionCall","src":"6322:16:25"},"nodeType":"YulIf","src":"6319:36:25"},{"nodeType":"YulVariableDeclaration","src":"6364:34:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6378:9:25"},{"name":"offset_1","nodeType":"YulIdentifier","src":"6389:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6374:3:25"},"nodeType":"YulFunctionCall","src":"6374:24:25"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"6368:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6446:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6455:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6458:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6448:6:25"},"nodeType":"YulFunctionCall","src":"6448:12:25"},"nodeType":"YulExpressionStatement","src":"6448:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"6425:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"6429:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6421:3:25"},"nodeType":"YulFunctionCall","src":"6421:13:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"6436:7:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6417:3:25"},"nodeType":"YulFunctionCall","src":"6417:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6410:6:25"},"nodeType":"YulFunctionCall","src":"6410:35:25"},"nodeType":"YulIf","src":"6407:55:25"},{"nodeType":"YulVariableDeclaration","src":"6471:26:25","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"6494:2:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6481:12:25"},"nodeType":"YulFunctionCall","src":"6481:16:25"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"6475:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6506:71:25","value":{"arguments":[{"arguments":[{"name":"_4","nodeType":"YulIdentifier","src":"6573:2:25"}],"functionName":{"name":"array_allocation_size_array_address_dyn","nodeType":"YulIdentifier","src":"6533:39:25"},"nodeType":"YulFunctionCall","src":"6533:43:25"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"6517:15:25"},"nodeType":"YulFunctionCall","src":"6517:60:25"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"6510:3:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6586:16:25","value":{"name":"dst","nodeType":"YulIdentifier","src":"6599:3:25"},"variables":[{"name":"dst_1","nodeType":"YulTypedName","src":"6590:5:25","type":""}]},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"6618:3:25"},{"name":"_4","nodeType":"YulIdentifier","src":"6623:2:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6611:6:25"},"nodeType":"YulFunctionCall","src":"6611:15:25"},"nodeType":"YulExpressionStatement","src":"6611:15:25"},{"nodeType":"YulAssignment","src":"6635:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"6646:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6651:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6642:3:25"},"nodeType":"YulFunctionCall","src":"6642:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"6635:3:25"}]},{"nodeType":"YulVariableDeclaration","src":"6663:42:25","value":{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"6685:2:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6693:1:25","type":"","value":"5"},{"name":"_4","nodeType":"YulIdentifier","src":"6696:2:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"6689:3:25"},"nodeType":"YulFunctionCall","src":"6689:10:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6681:3:25"},"nodeType":"YulFunctionCall","src":"6681:19:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6702:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6677:3:25"},"nodeType":"YulFunctionCall","src":"6677:28:25"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"6667:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6737:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6746:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6749:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6739:6:25"},"nodeType":"YulFunctionCall","src":"6739:12:25"},"nodeType":"YulExpressionStatement","src":"6739:12:25"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"6720:6:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"6728:7:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6717:2:25"},"nodeType":"YulFunctionCall","src":"6717:19:25"},"nodeType":"YulIf","src":"6714:39:25"},{"nodeType":"YulVariableDeclaration","src":"6762:22:25","value":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"6777:2:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6781:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6773:3:25"},"nodeType":"YulFunctionCall","src":"6773:11:25"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"6766:3:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6849:297:25","statements":[{"nodeType":"YulVariableDeclaration","src":"6863:36:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"6895:3:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6882:12:25"},"nodeType":"YulFunctionCall","src":"6882:17:25"},"variables":[{"name":"innerOffset","nodeType":"YulTypedName","src":"6867:11:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"6947:74:25","statements":[{"nodeType":"YulVariableDeclaration","src":"6965:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"6975:1:25","type":"","value":"0"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"6969:2:25","type":""}]},{"expression":{"arguments":[{"name":"_5","nodeType":"YulIdentifier","src":"7000:2:25"},{"name":"_5","nodeType":"YulIdentifier","src":"7004:2:25"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6993:6:25"},"nodeType":"YulFunctionCall","src":"6993:14:25"},"nodeType":"YulExpressionStatement","src":"6993:14:25"}]},"condition":{"arguments":[{"name":"innerOffset","nodeType":"YulIdentifier","src":"6918:11:25"},{"name":"_1","nodeType":"YulIdentifier","src":"6931:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6915:2:25"},"nodeType":"YulFunctionCall","src":"6915:19:25"},"nodeType":"YulIf","src":"6912:109:25"},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"7041:3:25"},{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"7072:2:25"},{"name":"innerOffset","nodeType":"YulIdentifier","src":"7076:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7068:3:25"},"nodeType":"YulFunctionCall","src":"7068:20:25"},{"name":"_2","nodeType":"YulIdentifier","src":"7090:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7064:3:25"},"nodeType":"YulFunctionCall","src":"7064:29:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7095:7:25"}],"functionName":{"name":"abi_decode_string","nodeType":"YulIdentifier","src":"7046:17:25"},"nodeType":"YulFunctionCall","src":"7046:57:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7034:6:25"},"nodeType":"YulFunctionCall","src":"7034:70:25"},"nodeType":"YulExpressionStatement","src":"7034:70:25"},{"nodeType":"YulAssignment","src":"7117:19:25","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"7128:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"7133:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7124:3:25"},"nodeType":"YulFunctionCall","src":"7124:12:25"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"7117:3:25"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"6804:3:25"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"6809:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6801:2:25"},"nodeType":"YulFunctionCall","src":"6801:15:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"6817:23:25","statements":[{"nodeType":"YulAssignment","src":"6819:19:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"6830:3:25"},{"name":"_2","nodeType":"YulIdentifier","src":"6835:2:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6826:3:25"},"nodeType":"YulFunctionCall","src":"6826:12:25"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"6819:3:25"}]}]},"pre":{"nodeType":"YulBlock","src":"6797:3:25","statements":[]},"src":"6793:353:25"},{"nodeType":"YulAssignment","src":"7155:15:25","value":{"name":"dst_1","nodeType":"YulIdentifier","src":"7165:5:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7155:6:25"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5922:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5933:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5945:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5953:6:25","type":""}],"src":"5817:1359:25"},{"body":{"nodeType":"YulBlock","src":"7251:116:25","statements":[{"body":{"nodeType":"YulBlock","src":"7297:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7306:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7309:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7299:6:25"},"nodeType":"YulFunctionCall","src":"7299:12:25"},"nodeType":"YulExpressionStatement","src":"7299:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7272:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"7281:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7268:3:25"},"nodeType":"YulFunctionCall","src":"7268:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"7293:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7264:3:25"},"nodeType":"YulFunctionCall","src":"7264:32:25"},"nodeType":"YulIf","src":"7261:52:25"},{"nodeType":"YulAssignment","src":"7322:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7351:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7332:18:25"},"nodeType":"YulFunctionCall","src":"7332:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7322:6:25"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7217:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7228:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7240:6:25","type":""}],"src":"7181:186:25"},{"body":{"nodeType":"YulBlock","src":"7418:114:25","statements":[{"nodeType":"YulAssignment","src":"7428:29:25","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7450:6:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7437:12:25"},"nodeType":"YulFunctionCall","src":"7437:20:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"7428:5:25"}]},{"body":{"nodeType":"YulBlock","src":"7510:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7519:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7522:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7512:6:25"},"nodeType":"YulFunctionCall","src":"7512:12:25"},"nodeType":"YulExpressionStatement","src":"7512:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7479:5:25"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7500:5:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7493:6:25"},"nodeType":"YulFunctionCall","src":"7493:13:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7486:6:25"},"nodeType":"YulFunctionCall","src":"7486:21:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"7476:2:25"},"nodeType":"YulFunctionCall","src":"7476:32:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7469:6:25"},"nodeType":"YulFunctionCall","src":"7469:40:25"},"nodeType":"YulIf","src":"7466:60:25"}]},"name":"abi_decode_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"7397:6:25","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"7408:5:25","type":""}],"src":"7372:160:25"},{"body":{"nodeType":"YulBlock","src":"7604:113:25","statements":[{"body":{"nodeType":"YulBlock","src":"7650:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7659:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7662:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7652:6:25"},"nodeType":"YulFunctionCall","src":"7652:12:25"},"nodeType":"YulExpressionStatement","src":"7652:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7625:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"7634:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7621:3:25"},"nodeType":"YulFunctionCall","src":"7621:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"7646:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7617:3:25"},"nodeType":"YulFunctionCall","src":"7617:32:25"},"nodeType":"YulIf","src":"7614:52:25"},{"nodeType":"YulAssignment","src":"7675:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7701:9:25"}],"functionName":{"name":"abi_decode_bool","nodeType":"YulIdentifier","src":"7685:15:25"},"nodeType":"YulFunctionCall","src":"7685:26:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7675:6:25"}]}]},"name":"abi_decode_tuple_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7570:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7581:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7593:6:25","type":""}],"src":"7537:180:25"},{"body":{"nodeType":"YulBlock","src":"7806:170:25","statements":[{"body":{"nodeType":"YulBlock","src":"7852:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7861:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7864:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7854:6:25"},"nodeType":"YulFunctionCall","src":"7854:12:25"},"nodeType":"YulExpressionStatement","src":"7854:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7827:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"7836:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7823:3:25"},"nodeType":"YulFunctionCall","src":"7823:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"7848:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7819:3:25"},"nodeType":"YulFunctionCall","src":"7819:32:25"},"nodeType":"YulIf","src":"7816:52:25"},{"nodeType":"YulAssignment","src":"7877:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7906:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7887:18:25"},"nodeType":"YulFunctionCall","src":"7887:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7877:6:25"}]},{"nodeType":"YulAssignment","src":"7925:45:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7955:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7966:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7951:3:25"},"nodeType":"YulFunctionCall","src":"7951:18:25"}],"functionName":{"name":"abi_decode_bool","nodeType":"YulIdentifier","src":"7935:15:25"},"nodeType":"YulFunctionCall","src":"7935:35:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7925:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7764:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7775:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7787:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7795:6:25","type":""}],"src":"7722:254:25"},{"body":{"nodeType":"YulBlock","src":"8111:537:25","statements":[{"body":{"nodeType":"YulBlock","src":"8158:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8167:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8170:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8160:6:25"},"nodeType":"YulFunctionCall","src":"8160:12:25"},"nodeType":"YulExpressionStatement","src":"8160:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"8132:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"8141:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8128:3:25"},"nodeType":"YulFunctionCall","src":"8128:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"8153:3:25","type":"","value":"128"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8124:3:25"},"nodeType":"YulFunctionCall","src":"8124:33:25"},"nodeType":"YulIf","src":"8121:53:25"},{"nodeType":"YulAssignment","src":"8183:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8212:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"8193:18:25"},"nodeType":"YulFunctionCall","src":"8193:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8183:6:25"}]},{"nodeType":"YulAssignment","src":"8231:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8264:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8275:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8260:3:25"},"nodeType":"YulFunctionCall","src":"8260:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"8241:18:25"},"nodeType":"YulFunctionCall","src":"8241:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"8231:6:25"}]},{"nodeType":"YulAssignment","src":"8288:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8315:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8326:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8311:3:25"},"nodeType":"YulFunctionCall","src":"8311:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8298:12:25"},"nodeType":"YulFunctionCall","src":"8298:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"8288:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"8339:46:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8370:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8381:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8366:3:25"},"nodeType":"YulFunctionCall","src":"8366:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8353:12:25"},"nodeType":"YulFunctionCall","src":"8353:32:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8343:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"8428:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8437:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8440:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8430:6:25"},"nodeType":"YulFunctionCall","src":"8430:12:25"},"nodeType":"YulExpressionStatement","src":"8430:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"8400:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"8408:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"8397:2:25"},"nodeType":"YulFunctionCall","src":"8397:30:25"},"nodeType":"YulIf","src":"8394:50:25"},{"nodeType":"YulVariableDeclaration","src":"8453:32:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8467:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"8478:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8463:3:25"},"nodeType":"YulFunctionCall","src":"8463:22:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"8457:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"8533:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8542:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8545:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8535:6:25"},"nodeType":"YulFunctionCall","src":"8535:12:25"},"nodeType":"YulExpressionStatement","src":"8535:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"8512:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"8516:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8508:3:25"},"nodeType":"YulFunctionCall","src":"8508:13:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8523:7:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8504:3:25"},"nodeType":"YulFunctionCall","src":"8504:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"8497:6:25"},"nodeType":"YulFunctionCall","src":"8497:35:25"},"nodeType":"YulIf","src":"8494:55:25"},{"nodeType":"YulAssignment","src":"8558:84:25","value":{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"8607:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"8611:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8603:3:25"},"nodeType":"YulFunctionCall","src":"8603:11:25"},{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"8629:2:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8616:12:25"},"nodeType":"YulFunctionCall","src":"8616:16:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8634:7:25"}],"functionName":{"name":"abi_decode_available_length_string","nodeType":"YulIdentifier","src":"8568:34:25"},"nodeType":"YulFunctionCall","src":"8568:74:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"8558:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8053:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"8064:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"8076:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"8084:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"8092:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"8100:6:25","type":""}],"src":"7981:667:25"},{"body":{"nodeType":"YulBlock","src":"8740:173:25","statements":[{"body":{"nodeType":"YulBlock","src":"8786:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8795:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8798:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8788:6:25"},"nodeType":"YulFunctionCall","src":"8788:12:25"},"nodeType":"YulExpressionStatement","src":"8788:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"8761:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"8770:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8757:3:25"},"nodeType":"YulFunctionCall","src":"8757:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"8782:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8753:3:25"},"nodeType":"YulFunctionCall","src":"8753:32:25"},"nodeType":"YulIf","src":"8750:52:25"},{"nodeType":"YulAssignment","src":"8811:39:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8840:9:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"8821:18:25"},"nodeType":"YulFunctionCall","src":"8821:29:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8811:6:25"}]},{"nodeType":"YulAssignment","src":"8859:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8892:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8903:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8888:3:25"},"nodeType":"YulFunctionCall","src":"8888:18:25"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"8869:18:25"},"nodeType":"YulFunctionCall","src":"8869:38:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"8859:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8698:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"8709:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"8721:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"8729:6:25","type":""}],"src":"8653:260:25"},{"body":{"nodeType":"YulBlock","src":"8973:325:25","statements":[{"nodeType":"YulAssignment","src":"8983:22:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8997:1:25","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"9000:4:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"8993:3:25"},"nodeType":"YulFunctionCall","src":"8993:12:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"8983:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"9014:38:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"9044:4:25"},{"kind":"number","nodeType":"YulLiteral","src":"9050:1:25","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9040:3:25"},"nodeType":"YulFunctionCall","src":"9040:12:25"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"9018:18:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"9091:31:25","statements":[{"nodeType":"YulAssignment","src":"9093:27:25","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"9107:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"9115:4:25","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9103:3:25"},"nodeType":"YulFunctionCall","src":"9103:17:25"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"9093:6:25"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"9071:18:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"9064:6:25"},"nodeType":"YulFunctionCall","src":"9064:26:25"},"nodeType":"YulIf","src":"9061:61:25"},{"body":{"nodeType":"YulBlock","src":"9181:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9202:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9209:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"9214:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9205:3:25"},"nodeType":"YulFunctionCall","src":"9205:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9195:6:25"},"nodeType":"YulFunctionCall","src":"9195:31:25"},"nodeType":"YulExpressionStatement","src":"9195:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9246:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"9249:4:25","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9239:6:25"},"nodeType":"YulFunctionCall","src":"9239:15:25"},"nodeType":"YulExpressionStatement","src":"9239:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9274:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9277:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9267:6:25"},"nodeType":"YulFunctionCall","src":"9267:15:25"},"nodeType":"YulExpressionStatement","src":"9267:15:25"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"9137:18:25"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"9160:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"9168:2:25","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"9157:2:25"},"nodeType":"YulFunctionCall","src":"9157:14:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"9134:2:25"},"nodeType":"YulFunctionCall","src":"9134:38:25"},"nodeType":"YulIf","src":"9131:161:25"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"8953:4:25","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"8962:6:25","type":""}],"src":"8918:380:25"},{"body":{"nodeType":"YulBlock","src":"9477:223:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9494:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9505:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9487:6:25"},"nodeType":"YulFunctionCall","src":"9487:21:25"},"nodeType":"YulExpressionStatement","src":"9487:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9528:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9539:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9524:3:25"},"nodeType":"YulFunctionCall","src":"9524:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9544:2:25","type":"","value":"33"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9517:6:25"},"nodeType":"YulFunctionCall","src":"9517:30:25"},"nodeType":"YulExpressionStatement","src":"9517:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9567:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9578:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9563:3:25"},"nodeType":"YulFunctionCall","src":"9563:18:25"},{"hexValue":"4552433732313a20617070726f76616c20746f2063757272656e74206f776e65","kind":"string","nodeType":"YulLiteral","src":"9583:34:25","type":"","value":"ERC721: approval to current owne"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9556:6:25"},"nodeType":"YulFunctionCall","src":"9556:62:25"},"nodeType":"YulExpressionStatement","src":"9556:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9638:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9649:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9634:3:25"},"nodeType":"YulFunctionCall","src":"9634:18:25"},{"hexValue":"72","kind":"string","nodeType":"YulLiteral","src":"9654:3:25","type":"","value":"r"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9627:6:25"},"nodeType":"YulFunctionCall","src":"9627:31:25"},"nodeType":"YulExpressionStatement","src":"9627:31:25"},{"nodeType":"YulAssignment","src":"9667:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9679:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9690:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9675:3:25"},"nodeType":"YulFunctionCall","src":"9675:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9667:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9454:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9468:4:25","type":""}],"src":"9303:397:25"},{"body":{"nodeType":"YulBlock","src":"9879:251:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9896:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9907:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9889:6:25"},"nodeType":"YulFunctionCall","src":"9889:21:25"},"nodeType":"YulExpressionStatement","src":"9889:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9930:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9941:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9926:3:25"},"nodeType":"YulFunctionCall","src":"9926:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9946:2:25","type":"","value":"61"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9919:6:25"},"nodeType":"YulFunctionCall","src":"9919:30:25"},"nodeType":"YulExpressionStatement","src":"9919:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9969:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9980:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9965:3:25"},"nodeType":"YulFunctionCall","src":"9965:18:25"},{"hexValue":"4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f","kind":"string","nodeType":"YulLiteral","src":"9985:34:25","type":"","value":"ERC721: approve caller is not to"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9958:6:25"},"nodeType":"YulFunctionCall","src":"9958:62:25"},"nodeType":"YulExpressionStatement","src":"9958:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10040:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10051:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10036:3:25"},"nodeType":"YulFunctionCall","src":"10036:18:25"},{"hexValue":"6b656e206f776e6572206f7220617070726f76656420666f7220616c6c","kind":"string","nodeType":"YulLiteral","src":"10056:31:25","type":"","value":"ken owner or approved for all"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10029:6:25"},"nodeType":"YulFunctionCall","src":"10029:59:25"},"nodeType":"YulExpressionStatement","src":"10029:59:25"},{"nodeType":"YulAssignment","src":"10097:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10109:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10120:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10105:3:25"},"nodeType":"YulFunctionCall","src":"10105:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10097:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9856:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9870:4:25","type":""}],"src":"9705:425:25"},{"body":{"nodeType":"YulBlock","src":"10309:235:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10326:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10337:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10319:6:25"},"nodeType":"YulFunctionCall","src":"10319:21:25"},"nodeType":"YulExpressionStatement","src":"10319:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10360:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10371:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10356:3:25"},"nodeType":"YulFunctionCall","src":"10356:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"10376:2:25","type":"","value":"45"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10349:6:25"},"nodeType":"YulFunctionCall","src":"10349:30:25"},"nodeType":"YulExpressionStatement","src":"10349:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10399:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10410:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10395:3:25"},"nodeType":"YulFunctionCall","src":"10395:18:25"},{"hexValue":"4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65","kind":"string","nodeType":"YulLiteral","src":"10415:34:25","type":"","value":"ERC721: caller is not token owne"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10388:6:25"},"nodeType":"YulFunctionCall","src":"10388:62:25"},"nodeType":"YulExpressionStatement","src":"10388:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10470:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10481:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10466:3:25"},"nodeType":"YulFunctionCall","src":"10466:18:25"},{"hexValue":"72206f7220617070726f766564","kind":"string","nodeType":"YulLiteral","src":"10486:15:25","type":"","value":"r or approved"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10459:6:25"},"nodeType":"YulFunctionCall","src":"10459:43:25"},"nodeType":"YulExpressionStatement","src":"10459:43:25"},{"nodeType":"YulAssignment","src":"10511:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10523:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10534:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10519:3:25"},"nodeType":"YulFunctionCall","src":"10519:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10511:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10286:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10300:4:25","type":""}],"src":"10135:409:25"},{"body":{"nodeType":"YulBlock","src":"10581:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10598:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10605:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"10610:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10601:3:25"},"nodeType":"YulFunctionCall","src":"10601:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10591:6:25"},"nodeType":"YulFunctionCall","src":"10591:31:25"},"nodeType":"YulExpressionStatement","src":"10591:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10638:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"10641:4:25","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10631:6:25"},"nodeType":"YulFunctionCall","src":"10631:15:25"},"nodeType":"YulExpressionStatement","src":"10631:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10662:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10665:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10655:6:25"},"nodeType":"YulFunctionCall","src":"10655:15:25"},"nodeType":"YulExpressionStatement","src":"10655:15:25"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"10549:127:25"},{"body":{"nodeType":"YulBlock","src":"10733:116:25","statements":[{"nodeType":"YulAssignment","src":"10743:20:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"10758:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"10761:1:25"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"10754:3:25"},"nodeType":"YulFunctionCall","src":"10754:9:25"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"10743:7:25"}]},{"body":{"nodeType":"YulBlock","src":"10821:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"10823:16:25"},"nodeType":"YulFunctionCall","src":"10823:18:25"},"nodeType":"YulExpressionStatement","src":"10823:18:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"10792:1:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10785:6:25"},"nodeType":"YulFunctionCall","src":"10785:9:25"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"10799:1:25"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"10806:7:25"},{"name":"x","nodeType":"YulIdentifier","src":"10815:1:25"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"10802:3:25"},"nodeType":"YulFunctionCall","src":"10802:15:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"10796:2:25"},"nodeType":"YulFunctionCall","src":"10796:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"10782:2:25"},"nodeType":"YulFunctionCall","src":"10782:37:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10775:6:25"},"nodeType":"YulFunctionCall","src":"10775:45:25"},"nodeType":"YulIf","src":"10772:71:25"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"10712:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"10715:1:25","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"10721:7:25","type":""}],"src":"10681:168:25"},{"body":{"nodeType":"YulBlock","src":"10886:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10903:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10910:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"10915:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10906:3:25"},"nodeType":"YulFunctionCall","src":"10906:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10896:6:25"},"nodeType":"YulFunctionCall","src":"10896:31:25"},"nodeType":"YulExpressionStatement","src":"10896:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10943:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"10946:4:25","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10936:6:25"},"nodeType":"YulFunctionCall","src":"10936:15:25"},"nodeType":"YulExpressionStatement","src":"10936:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10967:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10970:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10960:6:25"},"nodeType":"YulFunctionCall","src":"10960:15:25"},"nodeType":"YulExpressionStatement","src":"10960:15:25"}]},"name":"panic_error_0x12","nodeType":"YulFunctionDefinition","src":"10854:127:25"},{"body":{"nodeType":"YulBlock","src":"11032:171:25","statements":[{"body":{"nodeType":"YulBlock","src":"11063:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11084:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11091:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"11096:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"11087:3:25"},"nodeType":"YulFunctionCall","src":"11087:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11077:6:25"},"nodeType":"YulFunctionCall","src":"11077:31:25"},"nodeType":"YulExpressionStatement","src":"11077:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11128:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"11131:4:25","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11121:6:25"},"nodeType":"YulFunctionCall","src":"11121:15:25"},"nodeType":"YulExpressionStatement","src":"11121:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11156:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"11159:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"11149:6:25"},"nodeType":"YulFunctionCall","src":"11149:15:25"},"nodeType":"YulExpressionStatement","src":"11149:15:25"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"11052:1:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"11045:6:25"},"nodeType":"YulFunctionCall","src":"11045:9:25"},"nodeType":"YulIf","src":"11042:132:25"},{"nodeType":"YulAssignment","src":"11183:14:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"11192:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"11195:1:25"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"11188:3:25"},"nodeType":"YulFunctionCall","src":"11188:9:25"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"11183:1:25"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"11017:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"11020:1:25","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"11026:1:25","type":""}],"src":"10986:217:25"},{"body":{"nodeType":"YulBlock","src":"11382:172:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11399:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11410:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11392:6:25"},"nodeType":"YulFunctionCall","src":"11392:21:25"},"nodeType":"YulExpressionStatement","src":"11392:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11433:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11444:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11429:3:25"},"nodeType":"YulFunctionCall","src":"11429:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"11449:2:25","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11422:6:25"},"nodeType":"YulFunctionCall","src":"11422:30:25"},"nodeType":"YulExpressionStatement","src":"11422:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11472:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11483:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11468:3:25"},"nodeType":"YulFunctionCall","src":"11468:18:25"},{"hexValue":"4e6f2062616c616e636520746f207769746864726177","kind":"string","nodeType":"YulLiteral","src":"11488:24:25","type":"","value":"No balance to withdraw"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11461:6:25"},"nodeType":"YulFunctionCall","src":"11461:52:25"},"nodeType":"YulExpressionStatement","src":"11461:52:25"},{"nodeType":"YulAssignment","src":"11522:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11534:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11545:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11530:3:25"},"nodeType":"YulFunctionCall","src":"11530:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11522:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11359:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11373:4:25","type":""}],"src":"11208:346:25"},{"body":{"nodeType":"YulBlock","src":"11750:14:25","statements":[{"nodeType":"YulAssignment","src":"11752:10:25","value":{"name":"pos","nodeType":"YulIdentifier","src":"11759:3:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"11752:3:25"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"11734:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"11742:3:25","type":""}],"src":"11559:205:25"},{"body":{"nodeType":"YulBlock","src":"11943:167:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11960:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11971:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11953:6:25"},"nodeType":"YulFunctionCall","src":"11953:21:25"},"nodeType":"YulExpressionStatement","src":"11953:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11994:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12005:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11990:3:25"},"nodeType":"YulFunctionCall","src":"11990:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"12010:2:25","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11983:6:25"},"nodeType":"YulFunctionCall","src":"11983:30:25"},"nodeType":"YulExpressionStatement","src":"11983:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12033:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12044:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12029:3:25"},"nodeType":"YulFunctionCall","src":"12029:18:25"},{"hexValue":"5769746864726177616c206661696c6564","kind":"string","nodeType":"YulLiteral","src":"12049:19:25","type":"","value":"Withdrawal failed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12022:6:25"},"nodeType":"YulFunctionCall","src":"12022:47:25"},"nodeType":"YulExpressionStatement","src":"12022:47:25"},{"nodeType":"YulAssignment","src":"12078:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12090:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12101:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12086:3:25"},"nodeType":"YulFunctionCall","src":"12086:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12078:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11920:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11934:4:25","type":""}],"src":"11769:341:25"},{"body":{"nodeType":"YulBlock","src":"12147:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12164:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12171:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"12176:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"12167:3:25"},"nodeType":"YulFunctionCall","src":"12167:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12157:6:25"},"nodeType":"YulFunctionCall","src":"12157:31:25"},"nodeType":"YulExpressionStatement","src":"12157:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12204:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"12207:4:25","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12197:6:25"},"nodeType":"YulFunctionCall","src":"12197:15:25"},"nodeType":"YulExpressionStatement","src":"12197:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12228:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"12231:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"12221:6:25"},"nodeType":"YulFunctionCall","src":"12221:15:25"},"nodeType":"YulExpressionStatement","src":"12221:15:25"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"12115:127:25"},{"body":{"nodeType":"YulBlock","src":"12294:88:25","statements":[{"body":{"nodeType":"YulBlock","src":"12325:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"12327:16:25"},"nodeType":"YulFunctionCall","src":"12327:18:25"},"nodeType":"YulExpressionStatement","src":"12327:18:25"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12310:5:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12321:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"12317:3:25"},"nodeType":"YulFunctionCall","src":"12317:6:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"12307:2:25"},"nodeType":"YulFunctionCall","src":"12307:17:25"},"nodeType":"YulIf","src":"12304:43:25"},{"nodeType":"YulAssignment","src":"12356:20:25","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12367:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"12374:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12363:3:25"},"nodeType":"YulFunctionCall","src":"12363:13:25"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"12356:3:25"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12276:5:25","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"12286:3:25","type":""}],"src":"12247:135:25"},{"body":{"nodeType":"YulBlock","src":"12443:65:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12460:1:25","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"12463:3:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12453:6:25"},"nodeType":"YulFunctionCall","src":"12453:14:25"},"nodeType":"YulExpressionStatement","src":"12453:14:25"},{"nodeType":"YulAssignment","src":"12476:26:25","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12494:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"12497:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"12484:9:25"},"nodeType":"YulFunctionCall","src":"12484:18:25"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"12476:4:25"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"12426:3:25","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"12434:4:25","type":""}],"src":"12387:121:25"},{"body":{"nodeType":"YulBlock","src":"12594:464:25","statements":[{"body":{"nodeType":"YulBlock","src":"12627:425:25","statements":[{"nodeType":"YulVariableDeclaration","src":"12641:11:25","value":{"kind":"number","nodeType":"YulLiteral","src":"12651:1:25","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"12645:2:25","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"12672:2:25"},{"name":"array","nodeType":"YulIdentifier","src":"12676:5:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12665:6:25"},"nodeType":"YulFunctionCall","src":"12665:17:25"},"nodeType":"YulExpressionStatement","src":"12665:17:25"},{"nodeType":"YulVariableDeclaration","src":"12695:31:25","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"12717:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"12721:4:25","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"12707:9:25"},"nodeType":"YulFunctionCall","src":"12707:19:25"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"12699:4:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"12739:57:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"12762:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12772:1:25","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"12779:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"12791:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12775:3:25"},"nodeType":"YulFunctionCall","src":"12775:19:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"12768:3:25"},"nodeType":"YulFunctionCall","src":"12768:27:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12758:3:25"},"nodeType":"YulFunctionCall","src":"12758:38:25"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"12743:11:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"12833:23:25","statements":[{"nodeType":"YulAssignment","src":"12835:19:25","value":{"name":"data","nodeType":"YulIdentifier","src":"12850:4:25"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"12835:11:25"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"12815:10:25"},{"kind":"number","nodeType":"YulLiteral","src":"12827:4:25","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"12812:2:25"},"nodeType":"YulFunctionCall","src":"12812:20:25"},"nodeType":"YulIf","src":"12809:47:25"},{"nodeType":"YulVariableDeclaration","src":"12869:41:25","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"12883:4:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12893:1:25","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"12900:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"12905:2:25","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12896:3:25"},"nodeType":"YulFunctionCall","src":"12896:12:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"12889:3:25"},"nodeType":"YulFunctionCall","src":"12889:20:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12879:3:25"},"nodeType":"YulFunctionCall","src":"12879:31:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"12873:2:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"12923:24:25","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"12936:11:25"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"12927:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"13021:21:25","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"13030:5:25"},{"name":"_1","nodeType":"YulIdentifier","src":"13037:2:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"13023:6:25"},"nodeType":"YulFunctionCall","src":"13023:17:25"},"nodeType":"YulExpressionStatement","src":"13023:17:25"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"12971:5:25"},{"name":"_2","nodeType":"YulIdentifier","src":"12978:2:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"12968:2:25"},"nodeType":"YulFunctionCall","src":"12968:13:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"12982:26:25","statements":[{"nodeType":"YulAssignment","src":"12984:22:25","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"12997:5:25"},{"kind":"number","nodeType":"YulLiteral","src":"13004:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12993:3:25"},"nodeType":"YulFunctionCall","src":"12993:13:25"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"12984:5:25"}]}]},"pre":{"nodeType":"YulBlock","src":"12964:3:25","statements":[]},"src":"12960:82:25"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"12610:3:25"},{"kind":"number","nodeType":"YulLiteral","src":"12615:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"12607:2:25"},"nodeType":"YulFunctionCall","src":"12607:11:25"},"nodeType":"YulIf","src":"12604:448:25"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"12566:5:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"12573:3:25","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"12578:10:25","type":""}],"src":"12513:545:25"},{"body":{"nodeType":"YulBlock","src":"13148:81:25","statements":[{"nodeType":"YulAssignment","src":"13158:65:25","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"13173:4:25"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13191:1:25","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"13194:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"13187:3:25"},"nodeType":"YulFunctionCall","src":"13187:11:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13204:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"13200:3:25"},"nodeType":"YulFunctionCall","src":"13200:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"13183:3:25"},"nodeType":"YulFunctionCall","src":"13183:24:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"13179:3:25"},"nodeType":"YulFunctionCall","src":"13179:29:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13169:3:25"},"nodeType":"YulFunctionCall","src":"13169:40:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13215:1:25","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"13218:3:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"13211:3:25"},"nodeType":"YulFunctionCall","src":"13211:11:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"13166:2:25"},"nodeType":"YulFunctionCall","src":"13166:57:25"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"13158:4:25"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"13125:4:25","type":""},{"name":"len","nodeType":"YulTypedName","src":"13131:3:25","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"13139:4:25","type":""}],"src":"13063:166:25"},{"body":{"nodeType":"YulBlock","src":"13330:1256:25","statements":[{"nodeType":"YulVariableDeclaration","src":"13340:24:25","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"13360:3:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13354:5:25"},"nodeType":"YulFunctionCall","src":"13354:10:25"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"13344:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"13407:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"13409:16:25"},"nodeType":"YulFunctionCall","src":"13409:18:25"},"nodeType":"YulExpressionStatement","src":"13409:18:25"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"13379:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"13387:18:25","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"13376:2:25"},"nodeType":"YulFunctionCall","src":"13376:30:25"},"nodeType":"YulIf","src":"13373:56:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"13482:4:25"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"13520:4:25"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"13514:5:25"},"nodeType":"YulFunctionCall","src":"13514:11:25"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"13488:25:25"},"nodeType":"YulFunctionCall","src":"13488:38:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"13528:6:25"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"13438:43:25"},"nodeType":"YulFunctionCall","src":"13438:97:25"},"nodeType":"YulExpressionStatement","src":"13438:97:25"},{"nodeType":"YulVariableDeclaration","src":"13544:18:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13561:1:25","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"13548:9:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13571:23:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13590:4:25","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"13575:11:25","type":""}]},{"nodeType":"YulAssignment","src":"13603:24:25","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"13616:11:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"13603:9:25"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"13673:656:25","statements":[{"nodeType":"YulVariableDeclaration","src":"13687:35:25","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"13706:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13718:2:25","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"13714:3:25"},"nodeType":"YulFunctionCall","src":"13714:7:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13702:3:25"},"nodeType":"YulFunctionCall","src":"13702:20:25"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"13691:7:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13735:49:25","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"13779:4:25"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"13749:29:25"},"nodeType":"YulFunctionCall","src":"13749:35:25"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"13739:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"13797:10:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13806:1:25","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"13801:1:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"13884:172:25","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"13909:6:25"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"13927:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"13932:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13923:3:25"},"nodeType":"YulFunctionCall","src":"13923:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13917:5:25"},"nodeType":"YulFunctionCall","src":"13917:26:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"13902:6:25"},"nodeType":"YulFunctionCall","src":"13902:42:25"},"nodeType":"YulExpressionStatement","src":"13902:42:25"},{"nodeType":"YulAssignment","src":"13961:24:25","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"13975:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"13983:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13971:3:25"},"nodeType":"YulFunctionCall","src":"13971:14:25"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"13961:6:25"}]},{"nodeType":"YulAssignment","src":"14002:40:25","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"14019:9:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"14030:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14015:3:25"},"nodeType":"YulFunctionCall","src":"14015:27:25"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"14002:9:25"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"13831:1:25"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"13834:7:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"13828:2:25"},"nodeType":"YulFunctionCall","src":"13828:14:25"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"13843:28:25","statements":[{"nodeType":"YulAssignment","src":"13845:24:25","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"13854:1:25"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"13857:11:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13850:3:25"},"nodeType":"YulFunctionCall","src":"13850:19:25"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"13845:1:25"}]}]},"pre":{"nodeType":"YulBlock","src":"13824:3:25","statements":[]},"src":"13820:236:25"},{"body":{"nodeType":"YulBlock","src":"14104:166:25","statements":[{"nodeType":"YulVariableDeclaration","src":"14122:43:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"14149:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"14154:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14145:3:25"},"nodeType":"YulFunctionCall","src":"14145:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14139:5:25"},"nodeType":"YulFunctionCall","src":"14139:26:25"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"14126:9:25","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"14189:6:25"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"14201:9:25"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14228:1:25","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"14231:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"14224:3:25"},"nodeType":"YulFunctionCall","src":"14224:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"14240:3:25","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"14220:3:25"},"nodeType":"YulFunctionCall","src":"14220:24:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14250:1:25","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"14246:3:25"},"nodeType":"YulFunctionCall","src":"14246:6:25"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"14216:3:25"},"nodeType":"YulFunctionCall","src":"14216:37:25"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"14212:3:25"},"nodeType":"YulFunctionCall","src":"14212:42:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"14197:3:25"},"nodeType":"YulFunctionCall","src":"14197:58:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"14182:6:25"},"nodeType":"YulFunctionCall","src":"14182:74:25"},"nodeType":"YulExpressionStatement","src":"14182:74:25"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"14075:7:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"14084:6:25"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"14072:2:25"},"nodeType":"YulFunctionCall","src":"14072:19:25"},"nodeType":"YulIf","src":"14069:201:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"14290:4:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14304:1:25","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"14307:6:25"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"14300:3:25"},"nodeType":"YulFunctionCall","src":"14300:14:25"},{"kind":"number","nodeType":"YulLiteral","src":"14316:1:25","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14296:3:25"},"nodeType":"YulFunctionCall","src":"14296:22:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"14283:6:25"},"nodeType":"YulFunctionCall","src":"14283:36:25"},"nodeType":"YulExpressionStatement","src":"14283:36:25"}]},"nodeType":"YulCase","src":"13666:663:25","value":{"kind":"number","nodeType":"YulLiteral","src":"13671:1:25","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"14346:234:25","statements":[{"nodeType":"YulVariableDeclaration","src":"14360:14:25","value":{"kind":"number","nodeType":"YulLiteral","src":"14373:1:25","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"14364:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"14409:67:25","statements":[{"nodeType":"YulAssignment","src":"14427:35:25","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"14446:3:25"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"14451:9:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14442:3:25"},"nodeType":"YulFunctionCall","src":"14442:19:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14436:5:25"},"nodeType":"YulFunctionCall","src":"14436:26:25"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"14427:5:25"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"14390:6:25"},"nodeType":"YulIf","src":"14387:89:25"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"14496:4:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"14555:5:25"},{"name":"newLen","nodeType":"YulIdentifier","src":"14562:6:25"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"14502:52:25"},"nodeType":"YulFunctionCall","src":"14502:67:25"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"14489:6:25"},"nodeType":"YulFunctionCall","src":"14489:81:25"},"nodeType":"YulExpressionStatement","src":"14489:81:25"}]},"nodeType":"YulCase","src":"14338:242:25","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"13646:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"13654:2:25","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"13643:2:25"},"nodeType":"YulFunctionCall","src":"13643:14:25"},"nodeType":"YulSwitch","src":"13636:944:25"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"13315:4:25","type":""},{"name":"src","nodeType":"YulTypedName","src":"13321:3:25","type":""}],"src":"13234:1352:25"},{"body":{"nodeType":"YulBlock","src":"14765:174:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14782:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14793:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14775:6:25"},"nodeType":"YulFunctionCall","src":"14775:21:25"},"nodeType":"YulExpressionStatement","src":"14775:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14816:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14827:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14812:3:25"},"nodeType":"YulFunctionCall","src":"14812:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"14832:2:25","type":"","value":"24"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14805:6:25"},"nodeType":"YulFunctionCall","src":"14805:30:25"},"nodeType":"YulExpressionStatement","src":"14805:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14855:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14866:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14851:3:25"},"nodeType":"YulFunctionCall","src":"14851:18:25"},{"hexValue":"4552433732313a20696e76616c696420746f6b656e204944","kind":"string","nodeType":"YulLiteral","src":"14871:26:25","type":"","value":"ERC721: invalid token ID"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14844:6:25"},"nodeType":"YulFunctionCall","src":"14844:54:25"},"nodeType":"YulExpressionStatement","src":"14844:54:25"},{"nodeType":"YulAssignment","src":"14907:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14919:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14930:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14915:3:25"},"nodeType":"YulFunctionCall","src":"14915:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14907:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14742:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14756:4:25","type":""}],"src":"14591:348:25"},{"body":{"nodeType":"YulBlock","src":"15118:171:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15135:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15146:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15128:6:25"},"nodeType":"YulFunctionCall","src":"15128:21:25"},"nodeType":"YulExpressionStatement","src":"15128:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15169:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15180:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15165:3:25"},"nodeType":"YulFunctionCall","src":"15165:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"15185:2:25","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15158:6:25"},"nodeType":"YulFunctionCall","src":"15158:30:25"},"nodeType":"YulExpressionStatement","src":"15158:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15208:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15219:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15204:3:25"},"nodeType":"YulFunctionCall","src":"15204:18:25"},{"hexValue":"4172726179206c656e677468206d69736d61746368","kind":"string","nodeType":"YulLiteral","src":"15224:23:25","type":"","value":"Array length mismatch"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15197:6:25"},"nodeType":"YulFunctionCall","src":"15197:51:25"},"nodeType":"YulExpressionStatement","src":"15197:51:25"},{"nodeType":"YulAssignment","src":"15257:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15269:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15280:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15265:3:25"},"nodeType":"YulFunctionCall","src":"15265:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15257:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15095:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15109:4:25","type":""}],"src":"14944:345:25"},{"body":{"nodeType":"YulBlock","src":"15342:77:25","statements":[{"nodeType":"YulAssignment","src":"15352:16:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"15363:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"15366:1:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15359:3:25"},"nodeType":"YulFunctionCall","src":"15359:9:25"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"15352:3:25"}]},{"body":{"nodeType":"YulBlock","src":"15391:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"15393:16:25"},"nodeType":"YulFunctionCall","src":"15393:18:25"},"nodeType":"YulExpressionStatement","src":"15393:18:25"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"15383:1:25"},{"name":"sum","nodeType":"YulIdentifier","src":"15386:3:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"15380:2:25"},"nodeType":"YulFunctionCall","src":"15380:10:25"},"nodeType":"YulIf","src":"15377:36:25"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"15325:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"15328:1:25","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"15334:3:25","type":""}],"src":"15294:125:25"},{"body":{"nodeType":"YulBlock","src":"15598:173:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15615:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15626:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15608:6:25"},"nodeType":"YulFunctionCall","src":"15608:21:25"},"nodeType":"YulExpressionStatement","src":"15608:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15649:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15660:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15645:3:25"},"nodeType":"YulFunctionCall","src":"15645:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"15665:2:25","type":"","value":"23"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15638:6:25"},"nodeType":"YulFunctionCall","src":"15638:30:25"},"nodeType":"YulExpressionStatement","src":"15638:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15688:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15699:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15684:3:25"},"nodeType":"YulFunctionCall","src":"15684:18:25"},{"hexValue":"576f756c6420657863656564206d617820737570706c79","kind":"string","nodeType":"YulLiteral","src":"15704:25:25","type":"","value":"Would exceed max supply"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15677:6:25"},"nodeType":"YulFunctionCall","src":"15677:53:25"},"nodeType":"YulExpressionStatement","src":"15677:53:25"},{"nodeType":"YulAssignment","src":"15739:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15751:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15762:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15747:3:25"},"nodeType":"YulFunctionCall","src":"15747:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15739:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15575:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15589:4:25","type":""}],"src":"15424:347:25"},{"body":{"nodeType":"YulBlock","src":"15950:231:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15967:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15978:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15960:6:25"},"nodeType":"YulFunctionCall","src":"15960:21:25"},"nodeType":"YulExpressionStatement","src":"15960:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16001:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16012:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15997:3:25"},"nodeType":"YulFunctionCall","src":"15997:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"16017:2:25","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15990:6:25"},"nodeType":"YulFunctionCall","src":"15990:30:25"},"nodeType":"YulExpressionStatement","src":"15990:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16040:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16051:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16036:3:25"},"nodeType":"YulFunctionCall","src":"16036:18:25"},{"hexValue":"4552433732313a2061646472657373207a65726f206973206e6f742061207661","kind":"string","nodeType":"YulLiteral","src":"16056:34:25","type":"","value":"ERC721: address zero is not a va"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16029:6:25"},"nodeType":"YulFunctionCall","src":"16029:62:25"},"nodeType":"YulExpressionStatement","src":"16029:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16111:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16122:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16107:3:25"},"nodeType":"YulFunctionCall","src":"16107:18:25"},{"hexValue":"6c6964206f776e6572","kind":"string","nodeType":"YulLiteral","src":"16127:11:25","type":"","value":"lid owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16100:6:25"},"nodeType":"YulFunctionCall","src":"16100:39:25"},"nodeType":"YulExpressionStatement","src":"16100:39:25"},{"nodeType":"YulAssignment","src":"16148:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16160:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16171:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16156:3:25"},"nodeType":"YulFunctionCall","src":"16156:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16148:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15927:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15941:4:25","type":""}],"src":"15776:405:25"},{"body":{"nodeType":"YulBlock","src":"16360:169:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16377:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16388:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16370:6:25"},"nodeType":"YulFunctionCall","src":"16370:21:25"},"nodeType":"YulExpressionStatement","src":"16370:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16411:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16422:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16407:3:25"},"nodeType":"YulFunctionCall","src":"16407:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"16427:2:25","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16400:6:25"},"nodeType":"YulFunctionCall","src":"16400:30:25"},"nodeType":"YulExpressionStatement","src":"16400:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16450:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16461:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16446:3:25"},"nodeType":"YulFunctionCall","src":"16446:18:25"},{"hexValue":"4d696e74696e67206e6f7420616c6c6f776564","kind":"string","nodeType":"YulLiteral","src":"16466:21:25","type":"","value":"Minting not allowed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16439:6:25"},"nodeType":"YulFunctionCall","src":"16439:49:25"},"nodeType":"YulExpressionStatement","src":"16439:49:25"},{"nodeType":"YulAssignment","src":"16497:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16509:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16520:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16505:3:25"},"nodeType":"YulFunctionCall","src":"16505:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16497:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16337:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16351:4:25","type":""}],"src":"16186:343:25"},{"body":{"nodeType":"YulBlock","src":"16708:168:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16725:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16736:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16718:6:25"},"nodeType":"YulFunctionCall","src":"16718:21:25"},"nodeType":"YulExpressionStatement","src":"16718:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16759:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16770:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16755:3:25"},"nodeType":"YulFunctionCall","src":"16755:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"16775:2:25","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16748:6:25"},"nodeType":"YulFunctionCall","src":"16748:30:25"},"nodeType":"YulExpressionStatement","src":"16748:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16798:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16809:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16794:3:25"},"nodeType":"YulFunctionCall","src":"16794:18:25"},{"hexValue":"4d617820737570706c792072656163686564","kind":"string","nodeType":"YulLiteral","src":"16814:20:25","type":"","value":"Max supply reached"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16787:6:25"},"nodeType":"YulFunctionCall","src":"16787:48:25"},"nodeType":"YulExpressionStatement","src":"16787:48:25"},{"nodeType":"YulAssignment","src":"16844:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16856:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"16867:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16852:3:25"},"nodeType":"YulFunctionCall","src":"16852:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16844:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_cf40cb9708e1320ee04bc59cb2f8b4ce47ba0c93638609957810c412abce51a7__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16685:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16699:4:25","type":""}],"src":"16534:342:25"},{"body":{"nodeType":"YulBlock","src":"17055:170:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17072:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17083:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17065:6:25"},"nodeType":"YulFunctionCall","src":"17065:21:25"},"nodeType":"YulExpressionStatement","src":"17065:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17106:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17117:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17102:3:25"},"nodeType":"YulFunctionCall","src":"17102:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"17122:2:25","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17095:6:25"},"nodeType":"YulFunctionCall","src":"17095:30:25"},"nodeType":"YulExpressionStatement","src":"17095:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17145:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17156:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17141:3:25"},"nodeType":"YulFunctionCall","src":"17141:18:25"},{"hexValue":"496e73756666696369656e74207061796d656e74","kind":"string","nodeType":"YulLiteral","src":"17161:22:25","type":"","value":"Insufficient payment"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17134:6:25"},"nodeType":"YulFunctionCall","src":"17134:50:25"},"nodeType":"YulExpressionStatement","src":"17134:50:25"},{"nodeType":"YulAssignment","src":"17193:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17205:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17216:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17201:3:25"},"nodeType":"YulFunctionCall","src":"17201:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17193:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17032:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17046:4:25","type":""}],"src":"16881:344:25"},{"body":{"nodeType":"YulBlock","src":"17404:228:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17421:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17432:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17414:6:25"},"nodeType":"YulFunctionCall","src":"17414:21:25"},"nodeType":"YulExpressionStatement","src":"17414:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17455:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17466:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17451:3:25"},"nodeType":"YulFunctionCall","src":"17451:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"17471:2:25","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17444:6:25"},"nodeType":"YulFunctionCall","src":"17444:30:25"},"nodeType":"YulExpressionStatement","src":"17444:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17494:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17505:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17490:3:25"},"nodeType":"YulFunctionCall","src":"17490:18:25"},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061","kind":"string","nodeType":"YulLiteral","src":"17510:34:25","type":"","value":"Ownable: new owner is the zero a"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17483:6:25"},"nodeType":"YulFunctionCall","src":"17483:62:25"},"nodeType":"YulExpressionStatement","src":"17483:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17565:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17576:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17561:3:25"},"nodeType":"YulFunctionCall","src":"17561:18:25"},{"hexValue":"646472657373","kind":"string","nodeType":"YulLiteral","src":"17581:8:25","type":"","value":"ddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17554:6:25"},"nodeType":"YulFunctionCall","src":"17554:36:25"},"nodeType":"YulExpressionStatement","src":"17554:36:25"},{"nodeType":"YulAssignment","src":"17599:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17611:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17622:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17607:3:25"},"nodeType":"YulFunctionCall","src":"17607:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17599:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17381:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17395:4:25","type":""}],"src":"17230:402:25"},{"body":{"nodeType":"YulBlock","src":"17811:227:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17828:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17839:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17821:6:25"},"nodeType":"YulFunctionCall","src":"17821:21:25"},"nodeType":"YulExpressionStatement","src":"17821:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17862:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17873:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17858:3:25"},"nodeType":"YulFunctionCall","src":"17858:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"17878:2:25","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17851:6:25"},"nodeType":"YulFunctionCall","src":"17851:30:25"},"nodeType":"YulExpressionStatement","src":"17851:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17901:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17912:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17897:3:25"},"nodeType":"YulFunctionCall","src":"17897:18:25"},{"hexValue":"4552433732313a207472616e736665722066726f6d20696e636f727265637420","kind":"string","nodeType":"YulLiteral","src":"17917:34:25","type":"","value":"ERC721: transfer from incorrect "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17890:6:25"},"nodeType":"YulFunctionCall","src":"17890:62:25"},"nodeType":"YulExpressionStatement","src":"17890:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17972:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"17983:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17968:3:25"},"nodeType":"YulFunctionCall","src":"17968:18:25"},{"hexValue":"6f776e6572","kind":"string","nodeType":"YulLiteral","src":"17988:7:25","type":"","value":"owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17961:6:25"},"nodeType":"YulFunctionCall","src":"17961:35:25"},"nodeType":"YulExpressionStatement","src":"17961:35:25"},{"nodeType":"YulAssignment","src":"18005:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18017:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18028:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18013:3:25"},"nodeType":"YulFunctionCall","src":"18013:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18005:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17788:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17802:4:25","type":""}],"src":"17637:401:25"},{"body":{"nodeType":"YulBlock","src":"18217:226:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18234:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18245:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18227:6:25"},"nodeType":"YulFunctionCall","src":"18227:21:25"},"nodeType":"YulExpressionStatement","src":"18227:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18268:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18279:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18264:3:25"},"nodeType":"YulFunctionCall","src":"18264:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"18284:2:25","type":"","value":"36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18257:6:25"},"nodeType":"YulFunctionCall","src":"18257:30:25"},"nodeType":"YulExpressionStatement","src":"18257:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18307:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18318:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18303:3:25"},"nodeType":"YulFunctionCall","src":"18303:18:25"},{"hexValue":"4552433732313a207472616e7366657220746f20746865207a65726f20616464","kind":"string","nodeType":"YulLiteral","src":"18323:34:25","type":"","value":"ERC721: transfer to the zero add"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18296:6:25"},"nodeType":"YulFunctionCall","src":"18296:62:25"},"nodeType":"YulExpressionStatement","src":"18296:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18378:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18389:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18374:3:25"},"nodeType":"YulFunctionCall","src":"18374:18:25"},{"hexValue":"72657373","kind":"string","nodeType":"YulLiteral","src":"18394:6:25","type":"","value":"ress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18367:6:25"},"nodeType":"YulFunctionCall","src":"18367:34:25"},"nodeType":"YulExpressionStatement","src":"18367:34:25"},{"nodeType":"YulAssignment","src":"18410:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18422:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18433:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18418:3:25"},"nodeType":"YulFunctionCall","src":"18418:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18410:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18194:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18208:4:25","type":""}],"src":"18043:400:25"},{"body":{"nodeType":"YulBlock","src":"18622:182:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18639:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18650:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18632:6:25"},"nodeType":"YulFunctionCall","src":"18632:21:25"},"nodeType":"YulExpressionStatement","src":"18632:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18673:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18684:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18669:3:25"},"nodeType":"YulFunctionCall","src":"18669:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"18689:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18662:6:25"},"nodeType":"YulFunctionCall","src":"18662:30:25"},"nodeType":"YulExpressionStatement","src":"18662:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18712:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18723:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18708:3:25"},"nodeType":"YulFunctionCall","src":"18708:18:25"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"18728:34:25","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18701:6:25"},"nodeType":"YulFunctionCall","src":"18701:62:25"},"nodeType":"YulExpressionStatement","src":"18701:62:25"},{"nodeType":"YulAssignment","src":"18772:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18784:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"18795:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18780:3:25"},"nodeType":"YulFunctionCall","src":"18780:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18772:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18599:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18613:4:25","type":""}],"src":"18448:356:25"},{"body":{"nodeType":"YulBlock","src":"18983:181:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19000:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19011:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18993:6:25"},"nodeType":"YulFunctionCall","src":"18993:21:25"},"nodeType":"YulExpressionStatement","src":"18993:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19034:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19045:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19030:3:25"},"nodeType":"YulFunctionCall","src":"19030:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"19050:2:25","type":"","value":"31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19023:6:25"},"nodeType":"YulFunctionCall","src":"19023:30:25"},"nodeType":"YulExpressionStatement","src":"19023:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19073:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19084:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19069:3:25"},"nodeType":"YulFunctionCall","src":"19069:18:25"},{"hexValue":"5265656e7472616e637947756172643a207265656e7472616e742063616c6c","kind":"string","nodeType":"YulLiteral","src":"19089:33:25","type":"","value":"ReentrancyGuard: reentrant call"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19062:6:25"},"nodeType":"YulFunctionCall","src":"19062:61:25"},"nodeType":"YulExpressionStatement","src":"19062:61:25"},{"nodeType":"YulAssignment","src":"19132:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19144:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19155:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19140:3:25"},"nodeType":"YulFunctionCall","src":"19140:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19132:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18960:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18974:4:25","type":""}],"src":"18809:355:25"},{"body":{"nodeType":"YulBlock","src":"19343:236:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19360:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19371:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19353:6:25"},"nodeType":"YulFunctionCall","src":"19353:21:25"},"nodeType":"YulExpressionStatement","src":"19353:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19394:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19405:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19390:3:25"},"nodeType":"YulFunctionCall","src":"19390:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"19410:2:25","type":"","value":"46"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19383:6:25"},"nodeType":"YulFunctionCall","src":"19383:30:25"},"nodeType":"YulExpressionStatement","src":"19383:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19433:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19444:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19429:3:25"},"nodeType":"YulFunctionCall","src":"19429:18:25"},{"hexValue":"45524337323155524953746f726167653a2055524920736574206f66206e6f6e","kind":"string","nodeType":"YulLiteral","src":"19449:34:25","type":"","value":"ERC721URIStorage: URI set of non"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19422:6:25"},"nodeType":"YulFunctionCall","src":"19422:62:25"},"nodeType":"YulExpressionStatement","src":"19422:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19504:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19515:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19500:3:25"},"nodeType":"YulFunctionCall","src":"19500:18:25"},{"hexValue":"6578697374656e7420746f6b656e","kind":"string","nodeType":"YulLiteral","src":"19520:16:25","type":"","value":"existent token"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19493:6:25"},"nodeType":"YulFunctionCall","src":"19493:44:25"},"nodeType":"YulExpressionStatement","src":"19493:44:25"},{"nodeType":"YulAssignment","src":"19546:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19558:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19569:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19554:3:25"},"nodeType":"YulFunctionCall","src":"19554:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19546:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19320:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19334:4:25","type":""}],"src":"19169:410:25"},{"body":{"nodeType":"YulBlock","src":"19758:175:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19775:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19786:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19768:6:25"},"nodeType":"YulFunctionCall","src":"19768:21:25"},"nodeType":"YulExpressionStatement","src":"19768:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19809:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19820:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19805:3:25"},"nodeType":"YulFunctionCall","src":"19805:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"19825:2:25","type":"","value":"25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19798:6:25"},"nodeType":"YulFunctionCall","src":"19798:30:25"},"nodeType":"YulExpressionStatement","src":"19798:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19848:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19859:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19844:3:25"},"nodeType":"YulFunctionCall","src":"19844:18:25"},{"hexValue":"4552433732313a20617070726f766520746f2063616c6c6572","kind":"string","nodeType":"YulLiteral","src":"19864:27:25","type":"","value":"ERC721: approve to caller"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19837:6:25"},"nodeType":"YulFunctionCall","src":"19837:55:25"},"nodeType":"YulExpressionStatement","src":"19837:55:25"},{"nodeType":"YulAssignment","src":"19901:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19913:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"19924:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19909:3:25"},"nodeType":"YulFunctionCall","src":"19909:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19901:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19735:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19749:4:25","type":""}],"src":"19584:349:25"},{"body":{"nodeType":"YulBlock","src":"20112:240:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20129:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20140:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20122:6:25"},"nodeType":"YulFunctionCall","src":"20122:21:25"},"nodeType":"YulExpressionStatement","src":"20122:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20163:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20174:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20159:3:25"},"nodeType":"YulFunctionCall","src":"20159:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"20179:2:25","type":"","value":"50"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20152:6:25"},"nodeType":"YulFunctionCall","src":"20152:30:25"},"nodeType":"YulExpressionStatement","src":"20152:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20202:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20213:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20198:3:25"},"nodeType":"YulFunctionCall","src":"20198:18:25"},{"hexValue":"4552433732313a207472616e7366657220746f206e6f6e204552433732315265","kind":"string","nodeType":"YulLiteral","src":"20218:34:25","type":"","value":"ERC721: transfer to non ERC721Re"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20191:6:25"},"nodeType":"YulFunctionCall","src":"20191:62:25"},"nodeType":"YulExpressionStatement","src":"20191:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20273:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20284:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20269:3:25"},"nodeType":"YulFunctionCall","src":"20269:18:25"},{"hexValue":"63656976657220696d706c656d656e746572","kind":"string","nodeType":"YulLiteral","src":"20289:20:25","type":"","value":"ceiver implementer"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20262:6:25"},"nodeType":"YulFunctionCall","src":"20262:48:25"},"nodeType":"YulExpressionStatement","src":"20262:48:25"},{"nodeType":"YulAssignment","src":"20319:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20331:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"20342:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20327:3:25"},"nodeType":"YulFunctionCall","src":"20327:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20319:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20089:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20103:4:25","type":""}],"src":"19938:414:25"},{"body":{"nodeType":"YulBlock","src":"20544:309:25","statements":[{"nodeType":"YulVariableDeclaration","src":"20554:27:25","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"20574:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"20568:5:25"},"nodeType":"YulFunctionCall","src":"20568:13:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"20558:6:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"20629:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"20637:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20625:3:25"},"nodeType":"YulFunctionCall","src":"20625:17:25"},{"name":"pos","nodeType":"YulIdentifier","src":"20644:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"20649:6:25"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"20590:34:25"},"nodeType":"YulFunctionCall","src":"20590:66:25"},"nodeType":"YulExpressionStatement","src":"20590:66:25"},{"nodeType":"YulVariableDeclaration","src":"20665:29:25","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20682:3:25"},{"name":"length","nodeType":"YulIdentifier","src":"20687:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20678:3:25"},"nodeType":"YulFunctionCall","src":"20678:16:25"},"variables":[{"name":"end_1","nodeType":"YulTypedName","src":"20669:5:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"20703:29:25","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"20725:6:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"20719:5:25"},"nodeType":"YulFunctionCall","src":"20719:13:25"},"variables":[{"name":"length_1","nodeType":"YulTypedName","src":"20707:8:25","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"20780:6:25"},{"kind":"number","nodeType":"YulLiteral","src":"20788:4:25","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20776:3:25"},"nodeType":"YulFunctionCall","src":"20776:17:25"},{"name":"end_1","nodeType":"YulIdentifier","src":"20795:5:25"},{"name":"length_1","nodeType":"YulIdentifier","src":"20802:8:25"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"20741:34:25"},"nodeType":"YulFunctionCall","src":"20741:70:25"},"nodeType":"YulExpressionStatement","src":"20741:70:25"},{"nodeType":"YulAssignment","src":"20820:27:25","value":{"arguments":[{"name":"end_1","nodeType":"YulIdentifier","src":"20831:5:25"},{"name":"length_1","nodeType":"YulIdentifier","src":"20838:8:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20827:3:25"},"nodeType":"YulFunctionCall","src":"20827:20:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"20820:3:25"}]}]},"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","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"20512:3:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"20517:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"20525:6:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"20536:3:25","type":""}],"src":"20357:496:25"},{"body":{"nodeType":"YulBlock","src":"21061:286:25","statements":[{"nodeType":"YulVariableDeclaration","src":"21071:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21089:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"21094:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"21085:3:25"},"nodeType":"YulFunctionCall","src":"21085:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"21098:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"21081:3:25"},"nodeType":"YulFunctionCall","src":"21081:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"21075:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21116:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"21131:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"21139:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"21127:3:25"},"nodeType":"YulFunctionCall","src":"21127:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21109:6:25"},"nodeType":"YulFunctionCall","src":"21109:34:25"},"nodeType":"YulExpressionStatement","src":"21109:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21163:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21174:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21159:3:25"},"nodeType":"YulFunctionCall","src":"21159:18:25"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"21183:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"21191:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"21179:3:25"},"nodeType":"YulFunctionCall","src":"21179:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21152:6:25"},"nodeType":"YulFunctionCall","src":"21152:43:25"},"nodeType":"YulExpressionStatement","src":"21152:43:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21215:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21226:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21211:3:25"},"nodeType":"YulFunctionCall","src":"21211:18:25"},{"name":"value2","nodeType":"YulIdentifier","src":"21231:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21204:6:25"},"nodeType":"YulFunctionCall","src":"21204:34:25"},"nodeType":"YulExpressionStatement","src":"21204:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21258:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21269:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21254:3:25"},"nodeType":"YulFunctionCall","src":"21254:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"21274:3:25","type":"","value":"128"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21247:6:25"},"nodeType":"YulFunctionCall","src":"21247:31:25"},"nodeType":"YulExpressionStatement","src":"21247:31:25"},{"nodeType":"YulAssignment","src":"21287:54:25","value":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"21313:6:25"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21325:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21336:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21321:3:25"},"nodeType":"YulFunctionCall","src":"21321:19:25"}],"functionName":{"name":"abi_encode_string","nodeType":"YulIdentifier","src":"21295:17:25"},"nodeType":"YulFunctionCall","src":"21295:46:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21287:4:25"}]}]},"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","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21006:9:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"21017:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"21025:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"21033:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"21041:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21052:4:25","type":""}],"src":"20858:489:25"},{"body":{"nodeType":"YulBlock","src":"21432:169:25","statements":[{"body":{"nodeType":"YulBlock","src":"21478:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21487:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21490:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"21480:6:25"},"nodeType":"YulFunctionCall","src":"21480:12:25"},"nodeType":"YulExpressionStatement","src":"21480:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"21453:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"21462:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"21449:3:25"},"nodeType":"YulFunctionCall","src":"21449:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"21474:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"21445:3:25"},"nodeType":"YulFunctionCall","src":"21445:32:25"},"nodeType":"YulIf","src":"21442:52:25"},{"nodeType":"YulVariableDeclaration","src":"21503:29:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21522:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"21516:5:25"},"nodeType":"YulFunctionCall","src":"21516:16:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"21507:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21565:5:25"}],"functionName":{"name":"validator_revert_bytes4","nodeType":"YulIdentifier","src":"21541:23:25"},"nodeType":"YulFunctionCall","src":"21541:30:25"},"nodeType":"YulExpressionStatement","src":"21541:30:25"},{"nodeType":"YulAssignment","src":"21580:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"21590:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"21580:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21398:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"21409:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"21421:6:25","type":""}],"src":"21352:249:25"},{"body":{"nodeType":"YulBlock","src":"21780:182:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21797:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21808:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21790:6:25"},"nodeType":"YulFunctionCall","src":"21790:21:25"},"nodeType":"YulExpressionStatement","src":"21790:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21831:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21842:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21827:3:25"},"nodeType":"YulFunctionCall","src":"21827:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"21847:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21820:6:25"},"nodeType":"YulFunctionCall","src":"21820:30:25"},"nodeType":"YulExpressionStatement","src":"21820:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21870:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21881:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21866:3:25"},"nodeType":"YulFunctionCall","src":"21866:18:25"},{"hexValue":"4552433732313a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"21886:34:25","type":"","value":"ERC721: mint to the zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21859:6:25"},"nodeType":"YulFunctionCall","src":"21859:62:25"},"nodeType":"YulExpressionStatement","src":"21859:62:25"},{"nodeType":"YulAssignment","src":"21930:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21942:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"21953:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21938:3:25"},"nodeType":"YulFunctionCall","src":"21938:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21930:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21757:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21771:4:25","type":""}],"src":"21606:356:25"},{"body":{"nodeType":"YulBlock","src":"22141:178:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22158:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22169:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22151:6:25"},"nodeType":"YulFunctionCall","src":"22151:21:25"},"nodeType":"YulExpressionStatement","src":"22151:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22192:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22203:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22188:3:25"},"nodeType":"YulFunctionCall","src":"22188:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"22208:2:25","type":"","value":"28"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22181:6:25"},"nodeType":"YulFunctionCall","src":"22181:30:25"},"nodeType":"YulExpressionStatement","src":"22181:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22231:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22242:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22227:3:25"},"nodeType":"YulFunctionCall","src":"22227:18:25"},{"hexValue":"4552433732313a20746f6b656e20616c7265616479206d696e746564","kind":"string","nodeType":"YulLiteral","src":"22247:30:25","type":"","value":"ERC721: token already minted"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22220:6:25"},"nodeType":"YulFunctionCall","src":"22220:58:25"},"nodeType":"YulExpressionStatement","src":"22220:58:25"},{"nodeType":"YulAssignment","src":"22287:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22299:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"22310:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22295:3:25"},"nodeType":"YulFunctionCall","src":"22295:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22287:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22118:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22132:4:25","type":""}],"src":"21967:352:25"}]},"contents":"{\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_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 copy_memory_to_memory_with_cleanup(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        mstore(add(dst, length), 0)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory_with_cleanup(add(value, 0x20), add(pos, 0x20), length)\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 abi_decode_tuple_t_uint256(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_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_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        value1 := calldataload(add(headStart, 32))\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        value2 := calldataload(add(headStart, 64))\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        value0 := calldataload(headStart)\n        value1 := calldataload(add(headStart, 32))\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 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, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_array_address_dyn(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(shl(5, length), 0x20)\n    }\n    function abi_decode_array_address_dyn(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := calldataload(offset)\n        let _2 := 0x20\n        let dst := allocate_memory(array_allocation_size_array_address_dyn(_1))\n        let dst_1 := dst\n        mstore(dst, _1)\n        dst := add(dst, _2)\n        let srcEnd := add(add(offset, shl(5, _1)), _2)\n        if gt(srcEnd, end) { revert(0, 0) }\n        let src := add(offset, _2)\n        for { } lt(src, srcEnd) { src := add(src, _2) }\n        {\n            mstore(dst, abi_decode_address(src))\n            dst := add(dst, _2)\n        }\n        array := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_memory_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        value0 := abi_decode_array_address_dyn(add(headStart, offset), dataEnd)\n    }\n    function abi_decode_available_length_string(src, length, end) -> array\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        array := allocate_memory(add(and(add(length, 31), not(31)), 0x20))\n        mstore(array, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(array, 0x20), src, length)\n        mstore(add(add(array, 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 abi_decode_tuple_t_string_memory_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        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_array_address_dyn(add(headStart, offset), dataEnd)\n        let _2 := 32\n        let offset_1 := calldataload(add(headStart, _2))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let _3 := add(headStart, offset_1)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        let dst := allocate_memory(array_allocation_size_array_address_dyn(_4))\n        let dst_1 := dst\n        mstore(dst, _4)\n        dst := add(dst, _2)\n        let srcEnd := add(add(_3, shl(5, _4)), _2)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_3, _2)\n        for { } lt(src, srcEnd) { src := add(src, _2) }\n        {\n            let innerOffset := calldataload(src)\n            if gt(innerOffset, _1)\n            {\n                let _5 := 0\n                revert(_5, _5)\n            }\n            mstore(dst, abi_decode_string(add(add(_3, innerOffset), _2), dataEnd))\n            dst := add(dst, _2)\n        }\n        value1 := dst_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_bool(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_bool(headStart)\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        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_bool(add(headStart, 32))\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        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\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        value3 := abi_decode_available_length_string(add(_1, 32), calldataload(_1), dataEnd)\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_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC721: approval to current owne\")\n        mstore(add(headStart, 96), \"r\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 61)\n        mstore(add(headStart, 64), \"ERC721: approve caller is not to\")\n        mstore(add(headStart, 96), \"ken owner or approved for all\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 45)\n        mstore(add(headStart, 64), \"ERC721: caller is not token owne\")\n        mstore(add(headStart, 96), \"r or approved\")\n        tail := add(headStart, 128)\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_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 abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 22)\n        mstore(add(headStart, 64), \"No balance to withdraw\")\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_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__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), \"Withdrawal failed\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\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 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            let _1 := 0\n            mstore(_1, array)\n            let data := keccak256(_1, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _2 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _2) { start := add(start, 1) }\n            { sstore(start, _1) }\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        let srcOffset_1 := 0x20\n        srcOffset := srcOffset_1\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, srcOffset_1) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, srcOffset_1)\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_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__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), \"ERC721: invalid token ID\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__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), \"Array length mismatch\")\n        tail := add(headStart, 96)\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_edfdbdb070f8bfa102b3416a252027d98b6cad70d789fec6845fbd27764d5ae3__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), \"Would exceed max supply\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"ERC721: address zero is not a va\")\n        mstore(add(headStart, 96), \"lid owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_70bfa3fefabc3eae2644b753a1b90bd31efded05b23dbea6581ca3d8b2ab635a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 19)\n        mstore(add(headStart, 64), \"Minting not allowed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cf40cb9708e1320ee04bc59cb2f8b4ce47ba0c93638609957810c412abce51a7__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), \"Max supply reached\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__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), \"Insufficient payment\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Ownable: new owner is the zero a\")\n        mstore(add(headStart, 96), \"ddress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC721: transfer from incorrect \")\n        mstore(add(headStart, 96), \"owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC721: transfer to the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__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), \"ReentrancyGuard: reentrant call\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"ERC721URIStorage: URI set of non\")\n        mstore(add(headStart, 96), \"existent token\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__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), \"ERC721: approve to caller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 50)\n        mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n        mstore(add(headStart, 96), \"ceiver implementer\")\n        tail := add(headStart, 128)\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        let length := mload(value0)\n        copy_memory_to_memory_with_cleanup(add(value0, 0x20), pos, length)\n        let end_1 := add(pos, length)\n        let length_1 := mload(value1)\n        copy_memory_to_memory_with_cleanup(add(value1, 0x20), end_1, length_1)\n        end := add(end_1, length_1)\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        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _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_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_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"ERC721: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__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), \"ERC721: token already minted\")\n        tail := add(headStart, 96)\n    }\n}","id":25,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610595578063d85d3d27146105ab578063e985e9c5146105be578063f2fde38b146105de578063f4a0a528146105fe57600080fd5b8063a22cb46514610520578063b88d4fde14610540578063c87b56dd14610560578063d547cfb71461058057600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049d57806395d89b41146104bb5780639b19251a146104d05780639b7c1c831461050057600080fd5b806370a0823114610432578063715018a6146104525780637f649783146104675780638a71bb2d1461048757600080fd5b80633ccfd60b1161018557806355f804b31161015457806355f804b3146103bc5780636352211e146103dc57806364ba144e146103fc5780636817c76c1461041c57600080fd5b80633ccfd60b1461034757806342842e0e1461035c5780634c00de821461037c578063548db1741461039c57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a357806318160ddd146102c557806323b872dd146102e85780632a55205a1461030857600080fd5b80630116bc2d146101f357806301ffc9a71461022957806306fdde0314610249578063081812fc1461026b575b600080fd5b3480156101ff57600080fd5b50600e5461021490600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b34801561023557600080fd5b50610214610244366004611d46565b61061e565b34801561025557600080fd5b5061025e61062f565b6040516102209190611db3565b34801561027757600080fd5b5061028b610286366004611dc6565b6106c1565b6040516001600160a01b039091168152602001610220565b3480156102af57600080fd5b506102c36102be366004611df6565b6106e8565b005b3480156102d157600080fd5b506102da610802565b604051908152602001610220565b3480156102f457600080fd5b506102c3610303366004611e20565b610812565b34801561031457600080fd5b50610328610323366004611e5c565b610843565b604080516001600160a01b039093168352602083019190915201610220565b34801561035357600080fd5b506102c3610877565b34801561036857600080fd5b506102c3610377366004611e20565b6109d2565b34801561038857600080fd5b50600e5461028b906001600160a01b031681565b3480156103a857600080fd5b506102c36103b7366004611f5b565b6109ed565b3480156103c857600080fd5b506102c36103d7366004612008565b610a61565b3480156103e857600080fd5b5061028b6103f7366004611dc6565b610ab0565b34801561040857600080fd5b506102c361041736600461203d565b610b10565b34801561042857600080fd5b506102da600c5481565b34801561043e57600080fd5b506102da61044d366004612112565b610cd3565b34801561045e57600080fd5b506102c3610d59565b34801561047357600080fd5b506102c3610482366004611f5b565b610d6b565b34801561049357600080fd5b506102da600d5481565b3480156104a957600080fd5b506007546001600160a01b031661028b565b3480156104c757600080fd5b5061025e610ddb565b3480156104dc57600080fd5b506102146104eb366004612112565b600f6020526000908152604090205460ff1681565b34801561050c57600080fd5b506102c361051b36600461213d565b610dea565b34801561052c57600080fd5b506102c361053b366004612158565b610e3f565b34801561054c57600080fd5b506102c361055b36600461218b565b610e4a565b34801561056c57600080fd5b5061025e61057b366004611dc6565b610e82565b34801561058c57600080fd5b5061025e610e8d565b3480156105a157600080fd5b506102da600b5481565b6102da6105b9366004612008565b610f1b565b3480156105ca57600080fd5b506102146105d9366004612207565b6110c1565b3480156105ea57600080fd5b506102c36105f9366004612112565b6110ef565b34801561060a57600080fd5b506102c3610619366004611dc6565b611168565b6000610629826111a5565b92915050565b60606000805461063e90612231565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90612231565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106cc826111ca565b506000908152600460205260409020546001600160a01b031690565b60006106f382610ab0565b9050806001600160a01b0316836001600160a01b0316036107655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610781575061078181336110c1565b6107f35760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161075c565b6107fd8383611229565b505050565b600061080d60095490565b905090565b61081c3382611297565b6108385760405162461bcd60e51b815260040161075c9061226b565b6107fd8383836112f6565b600080612710600d548461085791906122ce565b61086191906122e5565b600e546001600160a01b03169590945092505050565b61087f61145a565b6108876114b4565b47806108ce5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b604482015260640161075c565b60006108e26007546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d806000811461092c576040519150601f19603f3d011682016040523d82523d6000602084013e610931565b606091505b50509050806109765760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b604482015260640161075c565b6007546001600160a01b03166001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040516109bc91815260200190565b60405180910390a250506109d06001600855565b565b6107fd83838360405180602001604052806000815250610e4a565b6109f561145a565b60005b8151811015610a5d576000600f6000848481518110610a1957610a19612307565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a558161231d565b9150506109f8565b5050565b610a6961145a565b600a610a758282612384565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad81604051610aa59190611db3565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806106295760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075c565b610b1861145a565b610b206114b4565b8051825114610b695760405162461bcd60e51b8152602060048201526015602482015274082e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b604482015260640161075c565b600b541580610b885750600b548251600954610b859190612444565b11155b610bd45760405162461bcd60e51b815260206004820152601760248201527f576f756c6420657863656564206d617820737570706c79000000000000000000604482015260640161075c565b60005b8251811015610cc857610bee600980546001019055565b6000610bf960095490565b9050610c1e848381518110610c1057610c10612307565b60200260200101518261150d565b610c4181848481518110610c3457610c34612307565b6020026020010151611527565b80848381518110610c5457610c54612307565b60200260200101516001600160a01b03167fd35bb95e09c04b219e35047ce7b7b300e3384264ef84a40456943dbc0fc17c14858581518110610c9857610c98612307565b6020026020010151604051610cad9190611db3565b60405180910390a35080610cc08161231d565b915050610bd7565b50610a5d6001600855565b60006001600160a01b038216610d3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161075c565b506001600160a01b031660009081526003602052604090205490565b610d6161145a565b6109d060006115f2565b610d7361145a565b60005b8151811015610a5d576001600f6000848481518110610d9757610d97612307565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610dd38161231d565b915050610d76565b60606001805461063e90612231565b610df261145a565b600e8054821515600160a01b0260ff60a01b199091161790556040517fa81e445dac2343503dc87e4663774817434721db7d985310a6959766e6d4480e90610aa590831515815260200190565b610a5d338383611644565b610e543383611297565b610e705760405162461bcd60e51b815260040161075c9061226b565b610e7c84848484611712565b50505050565b606061062982611745565b600a8054610e9a90612231565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec690612231565b8015610f135780601f10610ee857610100808354040283529160200191610f13565b820191906000526020600020905b815481529060010190602001808311610ef657829003601f168201915b505050505081565b6000610f256114b4565b600e54600160a01b900460ff1680610f4c5750336000908152600f602052604090205460ff165b80610f6157506007546001600160a01b031633145b610fa35760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08185b1b1bddd959606a1b604482015260640161075c565b600b541580610fb55750600b54600954105b610ff65760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015260640161075c565b600c5434101561103f5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b604482015260640161075c565b61104d600980546001019055565b600061105860095490565b9050611064338261150d565b61106e8184611527565b80336001600160a01b03167fd35bb95e09c04b219e35047ce7b7b300e3384264ef84a40456943dbc0fc17c14856040516110a89190611db3565b60405180910390a390506110bc6001600855565b919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6110f761145a565b6001600160a01b03811661115c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075c565b611165816115f2565b50565b61117061145a565b600c8190556040518181527f525b762709cc2a983aec5ccdfd807a061f993c91090b5bcd7da92ca254976aaa90602001610aa5565b60006001600160e01b03198216632483248360e11b1480610629575061062982611840565b6000818152600260205260409020546001600160a01b03166111655760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061125e82610ab0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112a383610ab0565b9050806001600160a01b0316846001600160a01b031614806112ca57506112ca81856110c1565b806112ee5750836001600160a01b03166112e3846106c1565b6001600160a01b0316145b949350505050565b826001600160a01b031661130982610ab0565b6001600160a01b03161461132f5760405162461bcd60e51b815260040161075c90612457565b6001600160a01b0382166113915760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161075c565b826001600160a01b03166113a482610ab0565b6001600160a01b0316146113ca5760405162461bcd60e51b815260040161075c90612457565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6007546001600160a01b031633146109d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075c565b6002600854036115065760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600855565b610a5d828260405180602001604052806000815250611890565b6000828152600260205260409020546001600160a01b03166115a25760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161075c565b60008281526006602052604090206115ba8282612384565b506040518281527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a15050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036116a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161075c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61171d8484846112f6565b611729848484846118c3565b610e7c5760405162461bcd60e51b815260040161075c9061249c565b6060611750826111ca565b6000828152600660205260408120805461176990612231565b80601f016020809104026020016040519081016040528092919081815260200182805461179590612231565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b5050505050905060006117f36119c4565b90508051600003611805575092915050565b81511561183757808260405160200161181f9291906124ee565b60405160208183030381529060405292505050919050565b6112ee846119d3565b60006001600160e01b031982166380ac58cd60e01b148061187157506001600160e01b03198216635b5e139f60e01b145b8061062957506301ffc9a760e01b6001600160e01b0319831614610629565b61189a8383611a3a565b6118a760008484846118c3565b6107fd5760405162461bcd60e51b815260040161075c9061249c565b60006001600160a01b0384163b156119b957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190790339089908890889060040161251d565b6020604051808303816000875af1925050508015611942575060408051601f3d908101601f1916820190925261193f9181019061255a565b60015b61199f573d808015611970576040519150601f19603f3d011682016040523d82523d6000602084013e611975565b606091505b5080516000036119975760405162461bcd60e51b815260040161075c9061249c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ee565b506001949350505050565b6060600a805461063e90612231565b60606119de826111ca565b60006119e86119c4565b90506000815111611a085760405180602001604052806000815250611a33565b80611a1284611bc5565b604051602001611a239291906124ee565b6040516020818303038152906040525b9392505050565b6001600160a01b038216611a905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161075c565b6000818152600260205260409020546001600160a01b031615611af55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075c565b6000818152600260205260409020546001600160a01b031615611b5a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075c565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606000611bd283611c58565b600101905060008167ffffffffffffffff811115611bf257611bf2611e7e565b6040519080825280601f01601f191660200182016040528015611c1c576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611c2657509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c975772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611cc3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611ce157662386f26fc10000830492506010015b6305f5e1008310611cf9576305f5e100830492506008015b6127108310611d0d57612710830492506004015b60648310611d1f576064830492506002015b600a83106106295760010192915050565b6001600160e01b03198116811461116557600080fd5b600060208284031215611d5857600080fd5b8135611a3381611d30565b60005b83811015611d7e578181015183820152602001611d66565b50506000910152565b60008151808452611d9f816020860160208601611d63565b601f01601f19169290920160200192915050565b602081526000611a336020830184611d87565b600060208284031215611dd857600080fd5b5035919050565b80356001600160a01b03811681146110bc57600080fd5b60008060408385031215611e0957600080fd5b611e1283611ddf565b946020939093013593505050565b600080600060608486031215611e3557600080fd5b611e3e84611ddf565b9250611e4c60208501611ddf565b9150604084013590509250925092565b60008060408385031215611e6f57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611ebd57611ebd611e7e565b604052919050565b600067ffffffffffffffff821115611edf57611edf611e7e565b5060051b60200190565b600082601f830112611efa57600080fd5b81356020611f0f611f0a83611ec5565b611e94565b82815260059290921b84018101918181019086841115611f2e57600080fd5b8286015b84811015611f5057611f4381611ddf565b8352918301918301611f32565b509695505050505050565b600060208284031215611f6d57600080fd5b813567ffffffffffffffff811115611f8457600080fd5b6112ee84828501611ee9565b600067ffffffffffffffff831115611faa57611faa611e7e565b611fbd601f8401601f1916602001611e94565b9050828152838383011115611fd157600080fd5b828260208301376000602084830101529392505050565b600082601f830112611ff957600080fd5b611a3383833560208501611f90565b60006020828403121561201a57600080fd5b813567ffffffffffffffff81111561203157600080fd5b6112ee84828501611fe8565b6000806040838503121561205057600080fd5b823567ffffffffffffffff8082111561206857600080fd5b61207486838701611ee9565b935060209150818501358181111561208b57600080fd5b8501601f8101871361209c57600080fd5b80356120aa611f0a82611ec5565b81815260059190911b820184019084810190898311156120c957600080fd5b8584015b83811015612101578035868111156120e55760008081fd5b6120f38c8983890101611fe8565b8452509186019186016120cd565b508096505050505050509250929050565b60006020828403121561212457600080fd5b611a3382611ddf565b803580151581146110bc57600080fd5b60006020828403121561214f57600080fd5b611a338261212d565b6000806040838503121561216b57600080fd5b61217483611ddf565b91506121826020840161212d565b90509250929050565b600080600080608085870312156121a157600080fd5b6121aa85611ddf565b93506121b860208601611ddf565b925060408501359150606085013567ffffffffffffffff8111156121db57600080fd5b8501601f810187136121ec57600080fd5b6121fb87823560208401611f90565b91505092959194509250565b6000806040838503121561221a57600080fd5b61222383611ddf565b915061218260208401611ddf565b600181811c9082168061224557607f821691505b60208210810361226557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610629576106296122b8565b60008261230257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161232f5761232f6122b8565b5060010190565b601f8211156107fd57600081815260208120601f850160051c8101602086101561235d5750805b601f850160051c820191505b8181101561237c57828155600101612369565b505050505050565b815167ffffffffffffffff81111561239e5761239e611e7e565b6123b2816123ac8454612231565b84612336565b602080601f8311600181146123e757600084156123cf5750858301515b600019600386901b1c1916600185901b17855561237c565b600085815260208120601f198616915b82811015612416578886015182559484019460019091019084016123f7565b50858210156124345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610629576106296122b8565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612500818460208801611d63565b835190830190612514818360208801611d63565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255090830184611d87565b9695505050505050565b60006020828403121561256c57600080fd5b8151611a3381611d3056fea26469706673582212204bcaf546e33761f13d9086cfb7b803fd0a7ee2f411dcb8a4cfe4cf2929a3345564736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1EE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x10D JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x595 JUMPI DUP1 PUSH4 0xD85D3D27 EQ PUSH2 0x5AB JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x5BE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x5DE JUMPI DUP1 PUSH4 0xF4A0A528 EQ PUSH2 0x5FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x520 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x540 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x560 JUMPI DUP1 PUSH4 0xD547CFB7 EQ PUSH2 0x580 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x49D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4BB JUMPI DUP1 PUSH4 0x9B19251A EQ PUSH2 0x4D0 JUMPI DUP1 PUSH4 0x9B7C1C83 EQ PUSH2 0x500 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x432 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x452 JUMPI DUP1 PUSH4 0x7F649783 EQ PUSH2 0x467 JUMPI DUP1 PUSH4 0x8A71BB2D EQ PUSH2 0x487 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3CCFD60B GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x55F804B3 GT PUSH2 0x154 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x3BC JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x3DC JUMPI DUP1 PUSH4 0x64BA144E EQ PUSH2 0x3FC JUMPI DUP1 PUSH4 0x6817C76C EQ PUSH2 0x41C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x347 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x4C00DE82 EQ PUSH2 0x37C JUMPI DUP1 PUSH4 0x548DB174 EQ PUSH2 0x39C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1C1 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2A3 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x2E8 JUMPI DUP1 PUSH4 0x2A55205A EQ PUSH2 0x308 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x116BC2D EQ PUSH2 0x1F3 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x229 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x26B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xE SLOAD PUSH2 0x214 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 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 0x235 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x214 PUSH2 0x244 CALLDATASIZE PUSH1 0x4 PUSH2 0x1D46 JUMP JUMPDEST PUSH2 0x61E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x255 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25E PUSH2 0x62F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x1DB3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x277 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x286 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC6 JUMP JUMPDEST PUSH2 0x6C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x220 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x2BE CALLDATASIZE PUSH1 0x4 PUSH2 0x1DF6 JUMP JUMPDEST PUSH2 0x6E8 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH2 0x802 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x220 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x303 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x812 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x328 PUSH2 0x323 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E5C JUMP JUMPDEST PUSH2 0x843 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x220 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x353 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x877 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x368 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x377 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x9D2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x388 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xE SLOAD PUSH2 0x28B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x3B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F5B JUMP JUMPDEST PUSH2 0x9ED JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x3D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x2008 JUMP JUMPDEST PUSH2 0xA61 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x3F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC6 JUMP JUMPDEST PUSH2 0xAB0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x408 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x417 CALLDATASIZE PUSH1 0x4 PUSH2 0x203D JUMP JUMPDEST PUSH2 0xB10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x428 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH1 0xC SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x43E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH2 0x44D CALLDATASIZE PUSH1 0x4 PUSH2 0x2112 JUMP JUMPDEST PUSH2 0xCD3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0xD59 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x473 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x482 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F5B JUMP JUMPDEST PUSH2 0xD6B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x493 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x28B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25E PUSH2 0xDDB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x214 PUSH2 0x4EB CALLDATASIZE PUSH1 0x4 PUSH2 0x2112 JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x213D JUMP JUMPDEST PUSH2 0xDEA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x52C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x53B CALLDATASIZE PUSH1 0x4 PUSH2 0x2158 JUMP JUMPDEST PUSH2 0xE3F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x54C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x55B CALLDATASIZE PUSH1 0x4 PUSH2 0x218B JUMP JUMPDEST PUSH2 0xE4A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x56C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25E PUSH2 0x57B CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC6 JUMP JUMPDEST PUSH2 0xE82 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25E PUSH2 0xE8D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DA PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH2 0x2DA PUSH2 0x5B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2008 JUMP JUMPDEST PUSH2 0xF1B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x214 PUSH2 0x5D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2207 JUMP JUMPDEST PUSH2 0x10C1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x5F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2112 JUMP JUMPDEST PUSH2 0x10EF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C3 PUSH2 0x619 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC6 JUMP JUMPDEST PUSH2 0x1168 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x629 DUP3 PUSH2 0x11A5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x63E SWAP1 PUSH2 0x2231 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 0x66A SWAP1 PUSH2 0x2231 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6B7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x68C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6B7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x69A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CC DUP3 PUSH2 0x11CA JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6F3 DUP3 PUSH2 0xAB0 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x765 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x781 JUMPI POP PUSH2 0x781 DUP2 CALLER PUSH2 0x10C1 JUMP JUMPDEST PUSH2 0x7F3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST PUSH2 0x7FD DUP4 DUP4 PUSH2 0x1229 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x80D PUSH1 0x9 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x81C CALLER DUP3 PUSH2 0x1297 JUMP JUMPDEST PUSH2 0x838 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x226B JUMP JUMPDEST PUSH2 0x7FD DUP4 DUP4 DUP4 PUSH2 0x12F6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2710 PUSH1 0xD SLOAD DUP5 PUSH2 0x857 SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST PUSH2 0x861 SWAP2 SWAP1 PUSH2 0x22E5 JUMP JUMPDEST PUSH1 0xE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x87F PUSH2 0x145A JUMP JUMPDEST PUSH2 0x887 PUSH2 0x14B4 JUMP JUMPDEST SELFBALANCE DUP1 PUSH2 0x8CE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x4E6F2062616C616E636520746F207769746864726177 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8E2 PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x92C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x931 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x976 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 0x15DA5D1A191C985DD85B0819985A5B1959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP4 PUSH1 0x40 MLOAD PUSH2 0x9BC SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH2 0x9D0 PUSH1 0x1 PUSH1 0x8 SSTORE JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x7FD DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xE4A JUMP JUMPDEST PUSH2 0x9F5 PUSH2 0x145A JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA5D JUMPI PUSH1 0x0 PUSH1 0xF PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xA19 JUMPI PUSH2 0xA19 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xA55 DUP2 PUSH2 0x231D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9F8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xA69 PUSH2 0x145A JUMP JUMPDEST PUSH1 0xA PUSH2 0xA75 DUP3 DUP3 PUSH2 0x2384 JUMP JUMPDEST POP PUSH32 0x6741B2FC379FAD678116FE3D4D4B9A1A184AB53BA36B86AD0FA66340B1AB41AD DUP2 PUSH1 0x40 MLOAD PUSH2 0xAA5 SWAP2 SWAP1 PUSH2 0x1DB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x629 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 PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH2 0xB18 PUSH2 0x145A JUMP JUMPDEST PUSH2 0xB20 PUSH2 0x14B4 JUMP JUMPDEST DUP1 MLOAD DUP3 MLOAD EQ PUSH2 0xB69 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 0x82E4E4C2F240D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0xB SLOAD ISZERO DUP1 PUSH2 0xB88 JUMPI POP PUSH1 0xB SLOAD DUP3 MLOAD PUSH1 0x9 SLOAD PUSH2 0xB85 SWAP2 SWAP1 PUSH2 0x2444 JUMP JUMPDEST GT ISZERO JUMPDEST PUSH2 0xBD4 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 0x576F756C6420657863656564206D617820737570706C79000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xCC8 JUMPI PUSH2 0xBEE PUSH1 0x9 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBF9 PUSH1 0x9 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0xC1E DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xC10 JUMPI PUSH2 0xC10 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 PUSH2 0x150D JUMP JUMPDEST PUSH2 0xC41 DUP2 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xC34 JUMPI PUSH2 0xC34 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1527 JUMP JUMPDEST DUP1 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xC54 JUMPI PUSH2 0xC54 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xD35BB95E09C04B219E35047CE7B7B300E3384264EF84A40456943DBC0FC17C14 DUP6 DUP6 DUP2 MLOAD DUP2 LT PUSH2 0xC98 JUMPI PUSH2 0xC98 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0xCAD SWAP2 SWAP1 PUSH2 0x1DB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP DUP1 PUSH2 0xCC0 DUP2 PUSH2 0x231D JUMP JUMPDEST SWAP2 POP POP PUSH2 0xBD7 JUMP JUMPDEST POP PUSH2 0xA5D PUSH1 0x1 PUSH1 0x8 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xD3D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3634B21037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD61 PUSH2 0x145A JUMP JUMPDEST PUSH2 0x9D0 PUSH1 0x0 PUSH2 0x15F2 JUMP JUMPDEST PUSH2 0xD73 PUSH2 0x145A JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA5D JUMPI PUSH1 0x1 PUSH1 0xF PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xD97 JUMPI PUSH2 0xD97 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xDD3 DUP2 PUSH2 0x231D JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD76 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x63E SWAP1 PUSH2 0x2231 JUMP JUMPDEST PUSH2 0xDF2 PUSH2 0x145A JUMP JUMPDEST PUSH1 0xE DUP1 SLOAD DUP3 ISZERO ISZERO PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH1 0xFF PUSH1 0xA0 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH32 0xA81E445DAC2343503DC87E4663774817434721DB7D985310A6959766E6D4480E SWAP1 PUSH2 0xAA5 SWAP1 DUP4 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0xA5D CALLER DUP4 DUP4 PUSH2 0x1644 JUMP JUMPDEST PUSH2 0xE54 CALLER DUP4 PUSH2 0x1297 JUMP JUMPDEST PUSH2 0xE70 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x226B JUMP JUMPDEST PUSH2 0xE7C DUP5 DUP5 DUP5 DUP5 PUSH2 0x1712 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x629 DUP3 PUSH2 0x1745 JUMP JUMPDEST PUSH1 0xA DUP1 SLOAD PUSH2 0xE9A SWAP1 PUSH2 0x2231 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 0xEC6 SWAP1 PUSH2 0x2231 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xF13 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xEE8 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xF13 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xEF6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF25 PUSH2 0x14B4 JUMP JUMPDEST PUSH1 0xE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND DUP1 PUSH2 0xF4C JUMPI POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST DUP1 PUSH2 0xF61 JUMPI POP PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST PUSH2 0xFA3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x135A5B9D1A5B99C81B9BDD08185B1B1BDDD959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0xB SLOAD ISZERO DUP1 PUSH2 0xFB5 JUMPI POP PUSH1 0xB SLOAD PUSH1 0x9 SLOAD LT JUMPDEST PUSH2 0xFF6 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 0x13585E081CDD5C1C1B1E481C995858DA1959 PUSH1 0x72 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0xC SLOAD CALLVALUE LT ISZERO PUSH2 0x103F 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 0x125B9CDD59999A58DA595B9D081C185E5B595B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH2 0x104D PUSH1 0x9 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1058 PUSH1 0x9 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x1064 CALLER DUP3 PUSH2 0x150D JUMP JUMPDEST PUSH2 0x106E DUP2 DUP5 PUSH2 0x1527 JUMP JUMPDEST DUP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xD35BB95E09C04B219E35047CE7B7B300E3384264EF84A40456943DBC0FC17C14 DUP6 PUSH1 0x40 MLOAD PUSH2 0x10A8 SWAP2 SWAP1 PUSH2 0x1DB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 SWAP1 POP PUSH2 0x10BC PUSH1 0x1 PUSH1 0x8 SSTORE JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 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 0x10F7 PUSH2 0x145A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x115C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST PUSH2 0x1165 DUP2 PUSH2 0x15F2 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1170 PUSH2 0x145A JUMP JUMPDEST PUSH1 0xC DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x525B762709CC2A983AEC5CCDFD807A061F993C91090B5BCD7DA92CA254976AAA SWAP1 PUSH1 0x20 ADD PUSH2 0xAA5 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x24832483 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x629 JUMPI POP PUSH2 0x629 DUP3 PUSH2 0x1840 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1165 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 PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x125E DUP3 PUSH2 0xAB0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x12A3 DUP4 PUSH2 0xAB0 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x12CA JUMPI POP PUSH2 0x12CA DUP2 DUP6 PUSH2 0x10C1 JUMP JUMPDEST DUP1 PUSH2 0x12EE JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x12E3 DUP5 PUSH2 0x6C1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1309 DUP3 PUSH2 0xAB0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x132F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x2457 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1391 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13A4 DUP3 PUSH2 0xAB0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13CA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x2457 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND DUP1 DUP7 MSTORE PUSH1 0x3 DUP6 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x0 NOT ADD SWAP1 SSTORE SWAP1 DUP8 AND DUP1 DUP7 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP7 DUP7 MSTORE PUSH1 0x2 SWAP1 SWAP5 MSTORE DUP3 DUP6 KECCAK256 DUP1 SLOAD SWAP1 SWAP3 AND DUP5 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP5 SWAP4 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x9D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SLOAD SUB PUSH2 0x1506 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 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SSTORE JUMP JUMPDEST PUSH2 0xA5D DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1890 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x15A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x32BC34B9BA32B73A103A37B5B2B7 PUSH1 0x91 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x15BA DUP3 DUP3 PUSH2 0x2384 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH32 0xF8E1A15ABA9398E019F0B49DF1A4FDE98EE17AE345CB5F6B5E2C27F5033E8CE7 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x7 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x16A5 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 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 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 JUMP JUMPDEST PUSH2 0x171D DUP5 DUP5 DUP5 PUSH2 0x12F6 JUMP JUMPDEST PUSH2 0x1729 DUP5 DUP5 DUP5 DUP5 PUSH2 0x18C3 JUMP JUMPDEST PUSH2 0xE7C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x249C JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1750 DUP3 PUSH2 0x11CA JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH2 0x1769 SWAP1 PUSH2 0x2231 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 0x1795 SWAP1 PUSH2 0x2231 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x17E2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x17B7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x17E2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x17C5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x17F3 PUSH2 0x19C4 JUMP JUMPDEST SWAP1 POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0x1805 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x1837 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x181F SWAP3 SWAP2 SWAP1 PUSH2 0x24EE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12EE DUP5 PUSH2 0x19D3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x1871 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x629 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x629 JUMP JUMPDEST PUSH2 0x189A DUP4 DUP4 PUSH2 0x1A3A JUMP JUMPDEST PUSH2 0x18A7 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x18C3 JUMP JUMPDEST PUSH2 0x7FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x249C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x19B9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1907 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x251D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1942 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x193F SWAP2 DUP2 ADD SWAP1 PUSH2 0x255A JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x199F JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1970 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1975 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0x1997 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75C SWAP1 PUSH2 0x249C JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x12EE JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xA DUP1 SLOAD PUSH2 0x63E SWAP1 PUSH2 0x2231 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x19DE DUP3 PUSH2 0x11CA JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19E8 PUSH2 0x19C4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1A08 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1A33 JUMP JUMPDEST DUP1 PUSH2 0x1A12 DUP5 PUSH2 0x1BC5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1A23 SWAP3 SWAP2 SWAP1 PUSH2 0x24EE 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1A90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1AF5 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 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1B5A 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 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x75C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP5 DUP4 MSTORE PUSH1 0x2 SWAP1 SWAP2 MSTORE DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP5 OR SWAP1 SSTORE MLOAD DUP4 SWAP3 SWAP2 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1BD2 DUP4 PUSH2 0x1C58 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1BF2 JUMPI PUSH2 0x1BF2 PUSH2 0x1E7E 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 0x1C1C JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH1 0x0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x1C26 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x1C97 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x1CC3 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x1CE1 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x1CF9 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x1D0D JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x1D1F JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x629 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1165 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1A33 DUP2 PUSH2 0x1D30 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D7E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1D66 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x1D9F DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1D63 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1A33 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1D87 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DD8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1E09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E12 DUP4 PUSH2 0x1DDF JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E35 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E3E DUP5 PUSH2 0x1DDF JUMP JUMPDEST SWAP3 POP PUSH2 0x1E4C PUSH1 0x20 DUP6 ADD PUSH2 0x1DDF JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1E6F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1EBD JUMPI PUSH2 0x1EBD PUSH2 0x1E7E JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1EDF JUMPI PUSH2 0x1EDF PUSH2 0x1E7E JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1EFA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x1F0F PUSH2 0x1F0A DUP4 PUSH2 0x1EC5 JUMP JUMPDEST PUSH2 0x1E94 JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x5 SWAP3 SWAP1 SWAP3 SHL DUP5 ADD DUP2 ADD SWAP2 DUP2 DUP2 ADD SWAP1 DUP7 DUP5 GT ISZERO PUSH2 0x1F2E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1F50 JUMPI PUSH2 0x1F43 DUP2 PUSH2 0x1DDF JUMP JUMPDEST DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0x1F32 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F6D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1F84 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12EE DUP5 DUP3 DUP6 ADD PUSH2 0x1EE9 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 GT ISZERO PUSH2 0x1FAA JUMPI PUSH2 0x1FAA PUSH2 0x1E7E JUMP JUMPDEST PUSH2 0x1FBD PUSH1 0x1F DUP5 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x1E94 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE DUP4 DUP4 DUP4 ADD GT ISZERO PUSH2 0x1FD1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP3 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1FF9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1A33 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x1F90 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x201A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2031 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12EE DUP5 DUP3 DUP6 ADD PUSH2 0x1FE8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2050 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2068 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2074 DUP7 DUP4 DUP8 ADD PUSH2 0x1EE9 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 SWAP2 POP DUP2 DUP6 ADD CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x208B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x209C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x20AA PUSH2 0x1F0A DUP3 PUSH2 0x1EC5 JUMP JUMPDEST DUP2 DUP2 MSTORE PUSH1 0x5 SWAP2 SWAP1 SWAP2 SHL DUP3 ADD DUP5 ADD SWAP1 DUP5 DUP2 ADD SWAP1 DUP10 DUP4 GT ISZERO PUSH2 0x20C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP5 ADD JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2101 JUMPI DUP1 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x20E5 JUMPI PUSH1 0x0 DUP1 DUP2 REVERT JUMPDEST PUSH2 0x20F3 DUP13 DUP10 DUP4 DUP10 ADD ADD PUSH2 0x1FE8 JUMP JUMPDEST DUP5 MSTORE POP SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x20CD JUMP JUMPDEST POP DUP1 SWAP7 POP POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2124 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1A33 DUP3 PUSH2 0x1DDF JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x10BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x214F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1A33 DUP3 PUSH2 0x212D JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x216B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2174 DUP4 PUSH2 0x1DDF JUMP JUMPDEST SWAP2 POP PUSH2 0x2182 PUSH1 0x20 DUP5 ADD PUSH2 0x212D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x21A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21AA DUP6 PUSH2 0x1DDF JUMP JUMPDEST SWAP4 POP PUSH2 0x21B8 PUSH1 0x20 DUP7 ADD PUSH2 0x1DDF JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x21DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x21EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21FB DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1F90 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x221A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2223 DUP4 PUSH2 0x1DDF JUMP JUMPDEST SWAP2 POP PUSH2 0x2182 PUSH1 0x20 DUP5 ADD PUSH2 0x1DDF JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2245 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2265 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2D SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH13 0x1C881BDC88185C1C1C9BDD9959 PUSH1 0x9A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x629 JUMPI PUSH2 0x629 PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2302 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x232F JUMPI PUSH2 0x232F PUSH2 0x22B8 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x7FD JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH2 0x235D JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x237C JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x2369 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x239E JUMPI PUSH2 0x239E PUSH2 0x1E7E JUMP JUMPDEST PUSH2 0x23B2 DUP2 PUSH2 0x23AC DUP5 SLOAD PUSH2 0x2231 JUMP JUMPDEST DUP5 PUSH2 0x2336 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x23E7 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x23CF JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH2 0x237C JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2416 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH2 0x23F7 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH2 0x2434 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x629 JUMPI PUSH2 0x629 PUSH2 0x22B8 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x37BBB732B9 PUSH1 0xD9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x2500 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1D63 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x2514 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1D63 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP 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 PUSH1 0x0 SWAP1 PUSH2 0x2550 SWAP1 DUP4 ADD DUP5 PUSH2 0x1D87 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x256C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1A33 DUP2 PUSH2 0x1D30 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B 0xCA CREATE2 CHAINID 0xE3 CALLDATACOPY PUSH2 0xF13D SWAP1 DUP7 0xCF 0xB7 0xB8 SUB REVERT EXP PUSH31 0xE2F411DCB8A4CFE4CF2929A3345564736F6C63430008130033000000000000 ","sourceMap":"498:6155:23:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866:31;;;;;;;;;;-1:-1:-1;866:31:23;;;;-1:-1:-1;;;866:31:23;;;;;;;;;179:14:25;;172:22;154:41;;142:2;127:18;866:31:23;;;;;;;;6421:229;;;;;;;;;;-1:-1:-1;6421:229:23;;;;;:::i;:::-;;:::i;2471:98:9:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3935:167::-;;;;;;;;;;-1:-1:-1;3935:167:9;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:25;;;1679:51;;1667:2;1652:18;3935:167:9;1533:203:25;3468:406:9;;;;;;;;;;-1:-1:-1;3468:406:9;;;;;:::i;:::-;;:::i;:::-;;4864:100:23;;;;;;;;;;;;;:::i;:::-;;;2324:25:25;;;2312:2;2297:18;4864:100:23;2178:177:25;4612:296:9;;;;;;;;;;-1:-1:-1;4612:296:9;;;;;:::i;:::-;;:::i;5423:258:23:-;;;;;;;;;;-1:-1:-1;5423:258:23;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3138:32:25;;;3120:51;;3202:2;3187:18;;3180:34;;;;3093:18;5423:258:23;2946:274:25;5029:333:23;;;;;;;;;;;;;:::i;4974:149:9:-;;;;;;;;;;-1:-1:-1;4974:149:9;;;;;:::i;:::-;;:::i;828:31:23:-;;;;;;;;;;-1:-1:-1;828:31:23;;;;-1:-1:-1;;;;;828:31:23;;;4609:199;;;;;;;;;;-1:-1:-1;4609:199:23;;;;;:::i;:::-;;:::i;3703:160::-;;;;;;;;;;-1:-1:-1;3703:160:23;;;;;:::i;:::-;;:::i;2190:219:9:-;;;;;;;;;;-1:-1:-1;2190:219:9;;;;;:::i;:::-;;:::i;2912:724:23:-;;;;;;;;;;-1:-1:-1;2912:724:23;;;;;:::i;:::-;;:::i;729:24::-;;;;;;;;;;;;;;;;1929:204:9;;;;;;;;;;-1:-1:-1;1929:204:9;;;;;:::i;:::-;;:::i;1824:101:0:-;;;;;;;;;;;;;:::i;4345:193:23:-;;;;;;;;;;-1:-1:-1;4345:193:23;;;;;:::i;:::-;;:::i;760:32::-;;;;;;;;;;;;;;;;1201:85:0;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;2633:102:9;;;;;;;;;;;;;:::i;906:41:23:-;;;;;;;;;;-1:-1:-1;906:41:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;4127:152;;;;;;;;;;-1:-1:-1;4127:152:23;;;;;:::i;:::-;;:::i;4169:153:9:-;;;;;;;;;;-1:-1:-1;4169:153:9;;;;;:::i;:::-;;:::i;5189:276::-;;;;;;;;;;-1:-1:-1;5189:276:9;;;;;:::i;:::-;;:::i;5936:213:23:-;;;;;;;;;;-1:-1:-1;5936:213:23;;;;;:::i;:::-;;:::i;665:26::-;;;;;;;;;;;;;:::i;698:24::-;;;;;;;;;;;;;;;;2099:745;;;;;;:::i;:::-;;:::i;4388:162:9:-;;;;;;;;;;-1:-1:-1;4388:162:9;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;;;;;-1:-1:-1;2074:198:0;;;;;:::i;:::-;;:::i;3920:146:23:-;;;;;;;;;;-1:-1:-1;3920:146:23;;;;;:::i;:::-;;:::i;6421:229::-;6577:4;6606:36;6630:11;6606:23;:36::i;:::-;6599:43;6421:229;-1:-1:-1;;6421:229:23:o;2471:98:9:-;2525:13;2557:5;2550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:9;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:9;;3935:167::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;-1:-1:-1;;;;;3605:11:9;:2;-1:-1:-1;;;;;3605:11:9;;3597:57;;;;-1:-1:-1;;;3597:57:9;;9505:2:25;3597:57:9;;;9487:21:25;9544:2;9524:18;;;9517:30;9583:34;9563:18;;;9556:62;-1:-1:-1;;;9634:18:25;;;9627:31;9675:19;;3597:57:9;;;;;;;;;734:10:15;-1:-1:-1;;;;;3686:21:9;;;;:62;;-1:-1:-1;3711:37:9;3728:5;734:10:15;4388:162:9;:::i;3711:37::-;3665:170;;;;-1:-1:-1;;;3665:170:9;;9907:2:25;3665:170:9;;;9889:21:25;9946:2;9926:18;;;9919:30;9985:34;9965:18;;;9958:62;10056:31;10036:18;;;10029:59;10105:19;;3665:170:9;9705:425:25;3665:170:9;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;4864:100:23:-;4910:7;4937:19;:9;918:14:16;;827:112;4937:19:23;4930:26;;4864:100;:::o;4612:296:9:-;4771:41;734:10:15;4804:7:9;4771:18;:41::i;:::-;4763:99;;;;-1:-1:-1;;;4763:99:9;;;;;;;:::i;:::-;4873:28;4883:4;4889:2;4893:7;4873:9;:28::i;5423:258:23:-;5523:16;5541:21;5630:5;5609:17;;5597:9;:29;;;;:::i;:::-;5596:39;;;;:::i;:::-;5657:16;;-1:-1:-1;;;;;5657:16:23;;5580:55;;-1:-1:-1;5423:258:23;-1:-1:-1;;;5423:258:23:o;5029:333::-;1094:13:0;:11;:13::i;:::-;2261:21:4::1;:19;:21::i;:::-;5110::23::2;5150:11:::0;5142:46:::2;;;::::0;-1:-1:-1;;;5142:46:23;;11410:2:25;5142:46:23::2;::::0;::::2;11392:21:25::0;11449:2;11429:18;;;11422:30;-1:-1:-1;;;11468:18:25;;;11461:52;11530:18;;5142:46:23::2;11208:346:25::0;5142:46:23::2;5202:12;5228:7;1273:6:0::0;;-1:-1:-1;;;;;1273:6:0;;1201:85;5228:7:23::2;-1:-1:-1::0;;;;;5220:21:23::2;5249:7;5220:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5201:60;;;5280:7;5272:37;;;::::0;-1:-1:-1;;;5272:37:23;;11971:2:25;5272:37:23::2;::::0;::::2;11953:21:25::0;12010:2;11990:18;;;11983:30;-1:-1:-1;;;12029:18:25;;;12022:47;12086:18;;5272:37:23::2;11769:341:25::0;5272:37:23::2;1273:6:0::0;;-1:-1:-1;;;;;1273:6:0;-1:-1:-1;;;;;5327:27:23::2;;5346:7;5327:27;;;;2324:25:25::0;;2312:2;2297:18;;2178:177;5327:27:23::2;;;;;;;;5081:281;;2303:20:4::1;1716:1:::0;2809:7;:22;2629:209;2303:20:::1;5029:333:23:o:0;4974:149:9:-;5077:39;5094:4;5100:2;5104:7;5077:39;;;;;;;;;;;;:16;:39::i;4609:199:23:-;1094:13:0;:11;:13::i;:::-;4701:9:23::1;4696:105;4720:9;:16;4716:1;:20;4696:105;;;4784:5;4758:9;:23;4768:9;4778:1;4768:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;4758:23:23::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;4758:23:23;:31;;-1:-1:-1;;4758:31:23::1;::::0;::::1;;::::0;;;::::1;::::0;;4738:3;::::1;::::0;::::1;:::i;:::-;;;;4696:105;;;;4609:199:::0;:::o;3703:160::-;1094:13:0;:11;:13::i;:::-;3782:12:23::1;:28;3797:13:::0;3782:12;:28:::1;:::i;:::-;;3826:29;3841:13;3826:29;;;;;;:::i;:::-;;;;;;;;3703:160:::0;:::o;2190:219:9:-;2262:7;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:9;;2324:56;;;;-1:-1:-1;;;2324:56:9;;14793:2:25;2324:56:9;;;14775:21:25;14832:2;14812:18;;;14805:30;-1:-1:-1;;;14851:18:25;;;14844:54;14915:18;;2324:56:9;14591:348:25;2912:724:23;1094:13:0;:11;:13::i;:::-;2261:21:4::1;:19;:21::i;:::-;3091:9:23::2;:16;3070:10;:17;:37;3062:71;;;::::0;-1:-1:-1;;;3062:71:23;;15146:2:25;3062:71:23::2;::::0;::::2;15128:21:25::0;15185:2;15165:18;;;15158:30;-1:-1:-1;;;15204:18:25;;;15197:51;15265:18;;3062:71:23::2;14944:345:25::0;3062:71:23::2;3166:9;::::0;:14;;:70:::2;;-1:-1:-1::0;3227:9:23::2;::::0;3206:17;;3184:9:::2;918:14:16::0;3184:39:23::2;;;;:::i;:::-;:52;;3166:70;3144:143;;;::::0;-1:-1:-1;;;3144:143:23;;15626:2:25;3144:143:23::2;::::0;::::2;15608:21:25::0;15665:2;15645:18;;;15638:30;15704:25;15684:18;;;15677:53;15747:18;;3144:143:23::2;15424:347:25::0;3144:143:23::2;3305:9;3300:329;3324:10;:17;3320:1;:21;3300:329;;;3363:21;:9;1032:19:16::0;;1050:1;1032:19;;;945:123;3363:21:23::2;3399:18;3420:19;:9;918:14:16::0;;827:112;3420:19:23::2;3399:40;;3456:36;3466:10;3477:1;3466:13;;;;;;;;:::i;:::-;;;;;;;3481:10;3456:9;:36::i;:::-;3507:38;3520:10;3532:9;3542:1;3532:12;;;;;;;;:::i;:::-;;;;;;;3507;:38::i;:::-;3592:10;3577;3588:1;3577:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3567:50:23::2;;3604:9;3614:1;3604:12;;;;;;;;:::i;:::-;;;;;;;3567:50;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;3343:3:23;::::2;::::0;::::2;:::i;:::-;;;;3300:329;;;;2303:20:4::1;1716:1:::0;2809:7;:22;2629:209;1929:204:9;2001:7;-1:-1:-1;;;;;2028:19:9;;2020:73;;;;-1:-1:-1;;;2020:73:9;;15978:2:25;2020:73:9;;;15960:21:25;16017:2;15997:18;;;15990:30;16056:34;16036:18;;;16029:62;-1:-1:-1;;;16107:18:25;;;16100:39;16156:19;;2020:73:9;15776:405:25;2020:73:9;-1:-1:-1;;;;;;2110:16:9;;;;;:9;:16;;;;;;;1929:204::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;4345:193:23:-:0;1094:13:0;:11;:13::i;:::-;4432:9:23::1;4427:104;4451:9;:16;4447:1;:20;4427:104;;;4515:4;4489:9;:23;4499:9;4509:1;4499:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;4489:23:23::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;4489:23:23;:30;;-1:-1:-1;;4489:30:23::1;::::0;::::1;;::::0;;;::::1;::::0;;4469:3;::::1;::::0;::::1;:::i;:::-;;;;4427:104;;2633:102:9::0;2689:13;2721:7;2714:14;;;;;:::i;4127:152:23:-;1094:13:0;:11;:13::i;:::-;4198:19:23::1;:30:::0;;;::::1;;-1:-1:-1::0;;;4198:30:23::1;-1:-1:-1::0;;;;4198:30:23;;::::1;;::::0;;4244:27:::1;::::0;::::1;::::0;::::1;::::0;4220:8;179:14:25;172:22;154:41;;142:2;127:18;;14:187;4169:153:9;4263:52;734:10:15;4296:8:9;4306;4263:18;:52::i;5189:276::-;5319:41;734:10:15;5352:7:9;5319:18;:41::i;:::-;5311:99;;;;-1:-1:-1;;;5311:99:9;;;;;;;:::i;:::-;5420:38;5434:4;5440:2;5444:7;5453:4;5420:13;:38::i;:::-;5189:276;;;;:::o;5936:213:23:-;6080:13;6118:23;6133:7;6118:14;:23::i;665:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2099:745::-;2212:7;2261:21:4;:19;:21::i;:::-;2259:19:23::1;::::0;-1:-1:-1;;;2259:19:23;::::1;;;::::0;:44:::1;;-1:-1:-1::0;2292:10:23::1;2282:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;2259:44;:69;;;-1:-1:-1::0;1273:6:0;;-1:-1:-1;;;;;1273:6:0;2307:10:23::1;:21;2259:69;2237:138;;;::::0;-1:-1:-1;;;2237:138:23;;16388:2:25;2237:138:23::1;::::0;::::1;16370:21:25::0;16427:2;16407:18;;;16400:30;-1:-1:-1;;;16446:18:25;;;16439:49;16505:18;;2237:138:23::1;16186:343:25::0;2237:138:23::1;2408:9;::::0;:14;;:49:::1;;-1:-1:-1::0;2448:9:23::1;::::0;2426::::1;918:14:16::0;2426:31:23::1;2408:49;2386:117;;;::::0;-1:-1:-1;;;2386:117:23;;16736:2:25;2386:117:23::1;::::0;::::1;16718:21:25::0;16775:2;16755:18;;;16748:30;-1:-1:-1;;;16794:18:25;;;16787:48;16852:18;;2386:117:23::1;16534:342:25::0;2386:117:23::1;2535:9;;2522;:22;;2514:55;;;::::0;-1:-1:-1;;;2514:55:23;;17083:2:25;2514:55:23::1;::::0;::::1;17065:21:25::0;17122:2;17102:18;;;17095:30;-1:-1:-1;;;17141:18:25;;;17134:50;17201:18;;2514:55:23::1;16881:344:25::0;2514:55:23::1;2582:21;:9;1032:19:16::0;;1050:1;1032:19;;;945:123;2582:21:23::1;2614:18;2635:19;:9;918:14:16::0;;827:112;2635:19:23::1;2614:40;;2667:33;2677:10;2689;2667:9;:33::i;:::-;2711:34;2724:10;2736:8;2711:12;:34::i;:::-;2785:10;2773;-1:-1:-1::0;;;;;2763:43:23::1;;2797:8;2763:43;;;;;;:::i;:::-;;;;;;;;2826:10:::0;-1:-1:-1;2303:20:4;1716:1;2809:7;:22;2629:209;2303:20;2099:745:23;;;:::o;4388:162:9:-;-1:-1:-1;;;;;4508:25:9;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;17432:2:25;2154:73:0::1;::::0;::::1;17414:21:25::0;17471:2;17451:18;;;17444:30;17510:34;17490:18;;;17483:62;-1:-1:-1;;;17561:18:25;;;17554:36;17607:19;;2154:73:0::1;17230:402:25::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;3920:146:23:-;1094:13:0;:11;:13::i;:::-;3992:9:23::1;:22:::0;;;4030:28:::1;::::0;2324:25:25;;;4030:28:23::1;::::0;2312:2:25;2297:18;4030:28:23::1;2178:177:25::0;535:205:12;637:4;-1:-1:-1;;;;;;660:33:12;;-1:-1:-1;;;660:33:12;;:73;;;697:36;721:11;697:23;:36::i;13240:133:9:-;7185:4;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:9;13313:53;;;;-1:-1:-1;;;13313:53:9;;14793:2:25;13313:53:9;;;14775:21:25;14832:2;14812:18;;;14805:30;-1:-1:-1;;;14851:18:25;;;14844:54;14915:18;;13313:53:9;14591:348:25;12572:171:9;12646:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12646:29:9;-1:-1:-1;;;;;12646:29:9;;;;;;;;:24;;12699:23;12646:24;12699:14;:23::i;:::-;-1:-1:-1;;;;;12690:46:9;;;;;;;;;;;12572:171;;:::o;7404:261::-;7497:4;7513:13;7529:23;7544:7;7529:14;:23::i;:::-;7513:39;;7581:5;-1:-1:-1;;;;;7570:16:9;:7;-1:-1:-1;;;;;7570:16:9;;:52;;;;7590:32;7607:5;7614:7;7590:16;:32::i;:::-;7570:87;;;;7650:7;-1:-1:-1;;;;;7626:31:9;:20;7638:7;7626:11;:20::i;:::-;-1:-1:-1;;;;;7626:31:9;;7570:87;7562:96;7404:261;-1:-1:-1;;;;7404:261:9:o;11257:1203::-;11381:4;-1:-1:-1;;;;;11354:31:9;:23;11369:7;11354:14;:23::i;:::-;-1:-1:-1;;;;;11354:31:9;;11346:81;;;;-1:-1:-1;;;11346:81:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;11445:16:9;;11437:65;;;;-1:-1:-1;;;11437:65:9;;18245:2:25;11437:65:9;;;18227:21:25;18284:2;18264:18;;;18257:30;18323:34;18303:18;;;18296:62;-1:-1:-1;;;18374:18:25;;;18367:34;18418:19;;11437:65:9;18043:400:25;11437:65:9;11682:4;-1:-1:-1;;;;;11655:31:9;:23;11670:7;11655:14;:23::i;:::-;-1:-1:-1;;;;;11655:31:9;;11647:81;;;;-1:-1:-1;;;11647:81:9;;;;;;;:::i;:::-;11797:24;;;;:15;:24;;;;;;;;11790:31;;-1:-1:-1;;;;;;11790:31:9;;;;;;-1:-1:-1;;;;;12265:15:9;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;12265:20:9;;;12299:13;;;;;;;;;:18;;11790:31;12299:18;;;12337:16;;;:7;:16;;;;;;:21;;;;;;;;;;12374:27;;11813:7;;12374:27;;;3538:336;3468:406;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;734:10:15;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;18650:2:25;1414:68:0;;;18632:21:25;;;18669:18;;;18662:30;18728:34;18708:18;;;18701:62;18780:18;;1414:68:0;18448:356:25;2336:287:4;1759:1;2468:7;;:19;2460:63;;;;-1:-1:-1;;;2460:63:4;;19011:2:25;2460:63:4;;;18993:21:25;19050:2;19030:18;;;19023:30;19089:33;19069:18;;;19062:61;19140:18;;2460:63:4;18809:355:25;2460:63:4;1759:1;2598:7;:18;2336:287::o;7995:108:9:-;8070:26;8080:2;8084:7;8070:26;;;;;;;;;;;;:9;:26::i;1599:253:12:-;7185:4:9;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:9;1690:75:12;;;;-1:-1:-1;;;1690:75:12;;19371:2:25;1690:75:12;;;19353:21:25;19410:2;19390:18;;;19383:30;19449:34;19429:18;;;19422:62;-1:-1:-1;;;19500:18:25;;;19493:44;19554:19;;1690:75:12;19169:410:25;1690:75:12;1775:19;;;;:10;:19;;;;;:31;1797:9;1775:19;:31;:::i;:::-;-1:-1:-1;1822:23:12;;2324:25:25;;;1822:23:12;;2312:2:25;2297:18;1822:23:12;;;;;;;1599:253;;:::o;2426:187:0:-;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;12879:277:9:-;12999:8;-1:-1:-1;;;;;12990:17:9;:5;-1:-1:-1;;;;;12990:17:9;;12982:55;;;;-1:-1:-1;;;12982:55:9;;19786:2:25;12982:55:9;;;19768:21:25;19825:2;19805:18;;;19798:30;19864:27;19844:18;;;19837:55;19909:18;;12982:55:9;19584:349:25;12982:55:9;-1:-1:-1;;;;;13047:25:9;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13047:46:9;;;;;;;;;;13108:41;;154::25;;;13108::9;;127:18:25;13108:41:9;;;;;;;12879:277;;;:::o;6326:267::-;6438:28;6448:4;6454:2;6458:7;6438:9;:28::i;:::-;6484:47;6507:4;6513:2;6517:7;6526:4;6484:22;:47::i;:::-;6476:110;;;;-1:-1:-1;;;6476:110:9;;;;;;;:::i;806:608:12:-;879:13;904:23;919:7;904:14;:23::i;:::-;938;964:19;;;:10;:19;;;;;938:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;993:18;1014:10;:8;:10::i;:::-;993:31;;1103:4;1097:18;1119:1;1097:23;1093:70;;-1:-1:-1;1143:9:12;806:608;-1:-1:-1;;806:608:12:o;1093:70::-;1265:23;;:27;1261:106;;1339:4;1345:9;1322:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1308:48;;;;806:608;;;:::o;1261:106::-;1384:23;1399:7;1384:14;:23::i;1570:300:9:-;1672:4;-1:-1:-1;;;;;;1707:40:9;;-1:-1:-1;;;1707:40:9;;:104;;-1:-1:-1;;;;;;;1763:48:9;;-1:-1:-1;;;1763:48:9;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:18;;;1827:36:9;829:155:18;8324:279:9;8418:18;8424:2;8428:7;8418:5;:18::i;:::-;8467:53;8498:1;8502:2;8506:7;8515:4;8467:22;:53::i;:::-;8446:150;;;;-1:-1:-1;;;8446:150:9;;;;;;;:::i;13925:831::-;14074:4;-1:-1:-1;;;;;14094:13:9;;1702:19:14;:23;14090:660:9;;14129:71;;-1:-1:-1;;;14129:71:9;;-1:-1:-1;;;;;14129:36:9;;;;;:71;;734:10:15;;14180:4:9;;14186:7;;14195:4;;14129:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14129:71:9;;;;;;;;-1:-1:-1;;14129:71:9;;;;;;;;;;;;:::i;:::-;;;14125:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14367:6;:13;14384:1;14367:18;14363:321;;14409:60;;-1:-1:-1;;;14409:60:9;;;;;;;:::i;14363:321::-;14636:6;14630:13;14621:6;14617:2;14613:15;14606:38;14125:573;-1:-1:-1;;;;;;14250:51:9;-1:-1:-1;;;14250:51:9;;-1:-1:-1;14243:58:9;;14090:660;-1:-1:-1;14735:4:9;13925:831;;;;;;:::o;5738:113:23:-;5798:13;5831:12;5824:19;;;;;:::i;2801:276:9:-;2874:13;2899:23;2914:7;2899:14;:23::i;:::-;2933:21;2957:10;:8;:10::i;:::-;2933:34;;3008:1;2990:7;2984:21;:25;:86;;;;;;;;;;;;;;;;;3036:7;3045:18;:7;:16;:18::i;:::-;3019:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2984:86;2977:93;2801:276;-1:-1:-1;;;2801:276:9:o;8925:920::-;-1:-1:-1;;;;;9004:16:9;;8996:61;;;;-1:-1:-1;;;8996:61:9;;21808:2:25;8996:61:9;;;21790:21:25;;;21827:18;;;21820:30;21886:34;21866:18;;;21859:62;21938:18;;8996:61:9;21606:356:25;8996:61:9;7185:4;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:9;7208:31;9067:58;;;;-1:-1:-1;;;9067:58:9;;22169:2:25;9067:58:9;;;22151:21:25;22208:2;22188:18;;;22181:30;22247;22227:18;;;22220:58;22295:18;;9067:58:9;21967:352:25;9067:58:9;7185:4;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:9;7208:31;9271:58;;;;-1:-1:-1;;;9271:58:9;;22169:2:25;9271:58:9;;;22151:21:25;22208:2;22188:18;;;22181:30;22247;22227:18;;;22220:58;22295:18;;9271:58:9;21967:352:25;9271:58:9;-1:-1:-1;;;;;9671:13:9;;;;;;:9;:13;;;;;;;;:18;;9688:1;9671:18;;;9710:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9710:21:9;;;;;9747:33;9718:7;;9671:13;;9747:33;;9671:13;;9747:33;4696:105:23::1;4609:199:::0;:::o;447:696:17:-;503:13;552:14;569:17;580:5;569:10;:17::i;:::-;589:1;569:21;552:38;;604:20;638:6;627:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;627:18:17;-1:-1:-1;604:41:17;-1:-1:-1;765:28:17;;;781:2;765:28;820:280;-1:-1:-1;;851:5:17;-1:-1:-1;;;985:2:17;974:14;;969:30;851:5;956:44;1044:2;1035:11;;;-1:-1:-1;1064:21:17;820:280;1064:21;-1:-1:-1;1120:6:17;447:696;-1:-1:-1;;;447:696:17:o;10139:916:20:-;10192:7;;-1:-1:-1;;;10267:17:20;;10263:103;;-1:-1:-1;;;10304:17:20;;;-1:-1:-1;10349:2:20;10339:12;10263:103;10392:8;10383:5;:17;10379:103;;10429:8;10420:17;;;-1:-1:-1;10465:2:20;10455:12;10379:103;10508:8;10499:5;:17;10495:103;;10545:8;10536:17;;;-1:-1:-1;10581:2:20;10571:12;10495:103;10624:7;10615:5;:16;10611:100;;10660:7;10651:16;;;-1:-1:-1;10695:1:20;10685:11;10611:100;10737:7;10728:5;:16;10724:100;;10773:7;10764:16;;;-1:-1:-1;10808:1:20;10798:11;10724:100;10850:7;10841:5;:16;10837:100;;10886:7;10877:16;;;-1:-1:-1;10921:1:20;10911:11;10837:100;10963:7;10954:5;:16;10950:66;;11000:1;10990:11;11042:6;10139:916;-1:-1:-1;;10139:916:20:o;206:131:25:-;-1:-1:-1;;;;;;280:32:25;;270:43;;260:71;;327:1;324;317:12;342:245;400:6;453:2;441:9;432:7;428:23;424:32;421:52;;;469:1;466;459:12;421:52;508:9;495:23;527:30;551:5;527:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:25;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:25;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:25:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:25;;1348:180;-1:-1:-1;1348:180:25:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:25;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:25:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:248::-;2761:6;2769;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;-1:-1:-1;;2861:23:25;;;2931:2;2916:18;;;2903:32;;-1:-1:-1;2693:248:25:o;3225:127::-;3286:10;3281:3;3277:20;3274:1;3267:31;3317:4;3314:1;3307:15;3341:4;3338:1;3331:15;3357:275;3428:2;3422:9;3493:2;3474:13;;-1:-1:-1;;3470:27:25;3458:40;;3528:18;3513:34;;3549:22;;;3510:62;3507:88;;;3575:18;;:::i;:::-;3611:2;3604:22;3357:275;;-1:-1:-1;3357:275:25:o;3637:183::-;3697:4;3730:18;3722:6;3719:30;3716:56;;;3752:18;;:::i;:::-;-1:-1:-1;3797:1:25;3793:14;3809:4;3789:25;;3637:183::o;3825:668::-;3879:5;3932:3;3925:4;3917:6;3913:17;3909:27;3899:55;;3950:1;3947;3940:12;3899:55;3986:6;3973:20;4012:4;4036:60;4052:43;4092:2;4052:43;:::i;:::-;4036:60;:::i;:::-;4130:15;;;4216:1;4212:10;;;;4200:23;;4196:32;;;4161:12;;;;4240:15;;;4237:35;;;4268:1;4265;4258:12;4237:35;4304:2;4296:6;4292:15;4316:148;4332:6;4327:3;4324:15;4316:148;;;4398:23;4417:3;4398:23;:::i;:::-;4386:36;;4442:12;;;;4349;;4316:148;;;-1:-1:-1;4482:5:25;3825:668;-1:-1:-1;;;;;;3825:668:25:o;4498:348::-;4582:6;4635:2;4623:9;4614:7;4610:23;4606:32;4603:52;;;4651:1;4648;4641:12;4603:52;4691:9;4678:23;4724:18;4716:6;4713:30;4710:50;;;4756:1;4753;4746:12;4710:50;4779:61;4832:7;4823:6;4812:9;4808:22;4779:61;:::i;4851:407::-;4916:5;4950:18;4942:6;4939:30;4936:56;;;4972:18;;:::i;:::-;5010:57;5055:2;5034:15;;-1:-1:-1;;5030:29:25;5061:4;5026:40;5010:57;:::i;:::-;5001:66;;5090:6;5083:5;5076:21;5130:3;5121:6;5116:3;5112:16;5109:25;5106:45;;;5147:1;5144;5137:12;5106:45;5196:6;5191:3;5184:4;5177:5;5173:16;5160:43;5250:1;5243:4;5234:6;5227:5;5223:18;5219:29;5212:40;4851:407;;;;;:::o;5263:222::-;5306:5;5359:3;5352:4;5344:6;5340:17;5336:27;5326:55;;5377:1;5374;5367:12;5326:55;5399:80;5475:3;5466:6;5453:20;5446:4;5438:6;5434:17;5399:80;:::i;5490:322::-;5559:6;5612:2;5600:9;5591:7;5587:23;5583:32;5580:52;;;5628:1;5625;5618:12;5580:52;5668:9;5655:23;5701:18;5693:6;5690:30;5687:50;;;5733:1;5730;5723:12;5687:50;5756;5798:7;5789:6;5778:9;5774:22;5756:50;:::i;5817:1359::-;5945:6;5953;6006:2;5994:9;5985:7;5981:23;5977:32;5974:52;;;6022:1;6019;6012:12;5974:52;6062:9;6049:23;6091:18;6132:2;6124:6;6121:14;6118:34;;;6148:1;6145;6138:12;6118:34;6171:61;6224:7;6215:6;6204:9;6200:22;6171:61;:::i;:::-;6161:71;;6251:2;6241:12;;6306:2;6295:9;6291:18;6278:32;6335:2;6325:8;6322:16;6319:36;;;6351:1;6348;6341:12;6319:36;6374:24;;6429:4;6421:13;;6417:27;-1:-1:-1;6407:55:25;;6458:1;6455;6448:12;6407:55;6494:2;6481:16;6517:60;6533:43;6573:2;6533:43;:::i;6517:60::-;6611:15;;;6693:1;6689:10;;;;6681:19;;6677:28;;;6642:12;;;;6717:19;;;6714:39;;;6749:1;6746;6739:12;6714:39;6781:2;6777;6773:11;6793:353;6809:6;6804:3;6801:15;6793:353;;;6895:3;6882:17;6931:2;6918:11;6915:19;6912:109;;;6975:1;7004:2;7000;6993:14;6912:109;7046:57;7095:7;7090:2;7076:11;7072:2;7068:20;7064:29;7046:57;:::i;:::-;7034:70;;-1:-1:-1;7124:12:25;;;;6826;;6793:353;;;6797:3;7165:5;7155:15;;;;;;;;5817:1359;;;;;:::o;7181:186::-;7240:6;7293:2;7281:9;7272:7;7268:23;7264:32;7261:52;;;7309:1;7306;7299:12;7261:52;7332:29;7351:9;7332:29;:::i;7372:160::-;7437:20;;7493:13;;7486:21;7476:32;;7466:60;;7522:1;7519;7512:12;7537:180;7593:6;7646:2;7634:9;7625:7;7621:23;7617:32;7614:52;;;7662:1;7659;7652:12;7614:52;7685:26;7701:9;7685:26;:::i;7722:254::-;7787:6;7795;7848:2;7836:9;7827:7;7823:23;7819:32;7816:52;;;7864:1;7861;7854:12;7816:52;7887:29;7906:9;7887:29;:::i;:::-;7877:39;;7935:35;7966:2;7955:9;7951:18;7935:35;:::i;:::-;7925:45;;7722:254;;;;;:::o;7981:667::-;8076:6;8084;8092;8100;8153:3;8141:9;8132:7;8128:23;8124:33;8121:53;;;8170:1;8167;8160:12;8121:53;8193:29;8212:9;8193:29;:::i;:::-;8183:39;;8241:38;8275:2;8264:9;8260:18;8241:38;:::i;:::-;8231:48;;8326:2;8315:9;8311:18;8298:32;8288:42;;8381:2;8370:9;8366:18;8353:32;8408:18;8400:6;8397:30;8394:50;;;8440:1;8437;8430:12;8394:50;8463:22;;8516:4;8508:13;;8504:27;-1:-1:-1;8494:55:25;;8545:1;8542;8535:12;8494:55;8568:74;8634:7;8629:2;8616:16;8611:2;8607;8603:11;8568:74;:::i;:::-;8558:84;;;7981:667;;;;;;;:::o;8653:260::-;8721:6;8729;8782:2;8770:9;8761:7;8757:23;8753:32;8750:52;;;8798:1;8795;8788:12;8750:52;8821:29;8840:9;8821:29;:::i;:::-;8811:39;;8869:38;8903:2;8892:9;8888:18;8869:38;:::i;8918:380::-;8997:1;8993:12;;;;9040;;;9061:61;;9115:4;9107:6;9103:17;9093:27;;9061:61;9168:2;9160:6;9157:14;9137:18;9134:38;9131:161;;9214:10;9209:3;9205:20;9202:1;9195:31;9249:4;9246:1;9239:15;9277:4;9274:1;9267:15;9131:161;;8918:380;;;:::o;10135:409::-;10337:2;10319:21;;;10376:2;10356:18;;;10349:30;10415:34;10410:2;10395:18;;10388:62;-1:-1:-1;;;10481:2:25;10466:18;;10459:43;10534:3;10519:19;;10135:409::o;10549:127::-;10610:10;10605:3;10601:20;10598:1;10591:31;10641:4;10638:1;10631:15;10665:4;10662:1;10655:15;10681:168;10754:9;;;10785;;10802:15;;;10796:22;;10782:37;10772:71;;10823:18;;:::i;10986:217::-;11026:1;11052;11042:132;;11096:10;11091:3;11087:20;11084:1;11077:31;11131:4;11128:1;11121:15;11159:4;11156:1;11149:15;11042:132;-1:-1:-1;11188:9:25;;10986:217::o;12115:127::-;12176:10;12171:3;12167:20;12164:1;12157:31;12207:4;12204:1;12197:15;12231:4;12228:1;12221:15;12247:135;12286:3;12307:17;;;12304:43;;12327:18;;:::i;:::-;-1:-1:-1;12374:1:25;12363:13;;12247:135::o;12513:545::-;12615:2;12610:3;12607:11;12604:448;;;12651:1;12676:5;12672:2;12665:17;12721:4;12717:2;12707:19;12791:2;12779:10;12775:19;12772:1;12768:27;12762:4;12758:38;12827:4;12815:10;12812:20;12809:47;;;-1:-1:-1;12850:4:25;12809:47;12905:2;12900:3;12896:12;12893:1;12889:20;12883:4;12879:31;12869:41;;12960:82;12978:2;12971:5;12968:13;12960:82;;;13023:17;;;13004:1;12993:13;12960:82;;;12964:3;;;12513:545;;;:::o;13234:1352::-;13360:3;13354:10;13387:18;13379:6;13376:30;13373:56;;;13409:18;;:::i;:::-;13438:97;13528:6;13488:38;13520:4;13514:11;13488:38;:::i;:::-;13482:4;13438:97;:::i;:::-;13590:4;;13654:2;13643:14;;13671:1;13666:663;;;;14373:1;14390:6;14387:89;;;-1:-1:-1;14442:19:25;;;14436:26;14387:89;-1:-1:-1;;13191:1:25;13187:11;;;13183:24;13179:29;13169:40;13215:1;13211:11;;;13166:57;14489:81;;13636:944;;13666:663;12460:1;12453:14;;;12497:4;12484:18;;-1:-1:-1;;13702:20:25;;;13820:236;13834:7;13831:1;13828:14;13820:236;;;13923:19;;;13917:26;13902:42;;14015:27;;;;13983:1;13971:14;;;;13850:19;;13820:236;;;13824:3;14084:6;14075:7;14072:19;14069:201;;;14145:19;;;14139:26;-1:-1:-1;;14228:1:25;14224:14;;;14240:3;14220:24;14216:37;14212:42;14197:58;14182:74;;14069:201;-1:-1:-1;;;;;14316:1:25;14300:14;;;14296:22;14283:36;;-1:-1:-1;13234:1352:25:o;15294:125::-;15359:9;;;15380:10;;;15377:36;;;15393:18;;:::i;17637:401::-;17839:2;17821:21;;;17878:2;17858:18;;;17851:30;17917:34;17912:2;17897:18;;17890:62;-1:-1:-1;;;17983:2:25;17968:18;;17961:35;18028:3;18013:19;;17637:401::o;19938:414::-;20140:2;20122:21;;;20179:2;20159:18;;;20152:30;20218:34;20213:2;20198:18;;20191:62;-1:-1:-1;;;20284:2:25;20269:18;;20262:48;20342:3;20327:19;;19938:414::o;20357:496::-;20536:3;20574:6;20568:13;20590:66;20649:6;20644:3;20637:4;20629:6;20625:17;20590:66;:::i;:::-;20719:13;;20678:16;;;;20741:70;20719:13;20678:16;20788:4;20776:17;;20741:70;:::i;:::-;20827:20;;20357:496;-1:-1:-1;;;;20357:496:25:o;20858:489::-;-1:-1:-1;;;;;21127:15:25;;;21109:34;;21179:15;;21174:2;21159:18;;21152:43;21226:2;21211:18;;21204:34;;;21274:3;21269:2;21254:18;;21247:31;;;21052:4;;21295:46;;21321:19;;21313:6;21295:46;:::i;:::-;21287:54;20858:489;-1:-1:-1;;;;;;20858:489:25:o;21352:249::-;21421:6;21474:2;21462:9;21453:7;21449:23;21445:32;21442:52;;;21490:1;21487;21480:12;21442:52;21522:9;21516:16;21541:30;21565:5;21541:30;:::i"},"methodIdentifiers":{"addToWhitelist(address[])":"7f649783","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","baseTokenURI()":"d547cfb7","batchMint(address[],string[])":"64ba144e","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","isPublicMintEnabled()":"0116bc2d","maxSupply()":"d5abeb01","mint(string)":"d85d3d27","mintPrice()":"6817c76c","name()":"06fdde03","owner()":"8da5cb5b","ownerOf(uint256)":"6352211e","removeFromWhitelist(address[])":"548db174","renounceOwnership()":"715018a6","royaltyInfo(uint256,uint256)":"2a55205a","royaltyPercentage()":"8a71bb2d","royaltyRecipient()":"4c00de82","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","setBaseURI(string)":"55f804b3","setMintPrice(uint256)":"f4a0a528","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","togglePublicMint(bool)":"9b7c1c83","tokenURI(uint256)":"c87b56dd","totalSupply()":"18160ddd","transferFrom(address,address,uint256)":"23b872dd","transferOwnership(address)":"f2fde38b","whitelist(address)":"9b19251a","withdraw()":"3ccfd60b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_baseTokenURI\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"_maxSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_royaltyPercentage\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_royaltyRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_mintPrice\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"_isPublicMint\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"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\":\"newBaseURI\",\"type\":\"string\"}],\"name\":\"BaseURIUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_fromTokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_toTokenId\",\"type\":\"uint256\"}],\"name\":\"BatchMetadataUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"_tokenId\",\"type\":\"uint256\"}],\"name\":\"MetadataUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newPrice\",\"type\":\"uint256\"}],\"name\":\"MintPriceUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"minter\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"tokenURI\",\"type\":\"string\"}],\"name\":\"NFTMinted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"enabled\",\"type\":\"bool\"}],\"name\":\"PublicMintToggled\",\"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\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"addresses\",\"type\":\"address[]\"}],\"name\":\"addToWhitelist\",\"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\":[],\"name\":\"baseTokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"recipients\",\"type\":\"address[]\"},{\"internalType\":\"string[]\",\"name\":\"tokenURIs\",\"type\":\"string[]\"}],\"name\":\"batchMint\",\"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\":\"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\":\"isPublicMintEnabled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"tokenURI\",\"type\":\"string\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"mintPrice\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"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\":\"addresses\",\"type\":\"address[]\"}],\"name\":\"removeFromWhitelist\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"salePrice\",\"type\":\"uint256\"}],\"name\":\"royaltyInfo\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"royaltyAmount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"royaltyPercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"royaltyRecipient\",\"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\":\"string\",\"name\":\"_baseTokenURI\",\"type\":\"string\"}],\"name\":\"setBaseURI\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_mintPrice\",\"type\":\"uint256\"}],\"name\":\"setMintPrice\",\"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\":\"bool\",\"name\":\"_enabled\",\"type\":\"bool\"}],\"name\":\"togglePublicMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"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\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"whitelist\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"withdraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Complete ERC721 NFT Collection Contract with Minting, Royalties, and Access Control\",\"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.\"},\"BatchMetadataUpdate(uint256,uint256)\":{\"details\":\"This event emits when the metadata of a range of tokens is changed. So that the third-party platforms such as NFT market could timely update the images and related attributes of the NFTs.\"},\"MetadataUpdate(uint256)\":{\"details\":\"This event emits when the metadata of a token is changed. So that the third-party platforms such as NFT market could timely update the images and related attributes of the NFT.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"addToWhitelist(address[])\":{\"details\":\"Add addresses to whitelist\"},\"approve(address,uint256)\":{\"details\":\"See {IERC721-approve}.\"},\"balanceOf(address)\":{\"details\":\"See {IERC721-balanceOf}.\"},\"batchMint(address[],string[])\":{\"details\":\"Batch mint NFTs (only owner)\"},\"getApproved(uint256)\":{\"details\":\"See {IERC721-getApproved}.\"},\"isApprovedForAll(address,address)\":{\"details\":\"See {IERC721-isApprovedForAll}.\"},\"mint(string)\":{\"details\":\"Mint a new NFT\"},\"name()\":{\"details\":\"See {IERC721Metadata-name}.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"ownerOf(uint256)\":{\"details\":\"See {IERC721-ownerOf}.\"},\"removeFromWhitelist(address[])\":{\"details\":\"Remove addresses from whitelist\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"royaltyInfo(uint256,uint256)\":{\"details\":\"EIP-2981 royalty info\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"See {IERC721-safeTransferFrom}.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"See {IERC721-setApprovalForAll}.\"},\"setBaseURI(string)\":{\"details\":\"Set base URI for all tokens\"},\"setMintPrice(uint256)\":{\"details\":\"Update mint price\"},\"supportsInterface(bytes4)\":{\"details\":\"Check interface support\"},\"symbol()\":{\"details\":\"See {IERC721Metadata-symbol}.\"},\"togglePublicMint(bool)\":{\"details\":\"Toggle public minting\"},\"tokenURI(uint256)\":{\"details\":\"Override tokenURI to return custom URI if set\"},\"totalSupply()\":{\"details\":\"Get total supply\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC721-transferFrom}.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"},\"withdraw()\":{\"details\":\"Withdraw contract balance\"}},\"title\":\"ERC721NFT\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/ERC721NFT.sol\":\"ERC721NFT\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xd04b0f06e0666f29cf7cccc82894de541e19bb30a765b107b1e40bb7fe5f7d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7b652499d098e88d8d878374616bb58434301061cae2253298b3f374044e0ddb\",\"dweb:/ipfs/QmbhAzctqo5jrSKU6idHdVyqfmzCcDbNUPvmx4GiXxfA6q\"]},\"@openzeppelin/contracts/interfaces/IERC4906.sol\":{\"keccak256\":\"0x2a9dadb806be80dd451821f1f1190eb9aa6f6edae85b185db29d60767cc0c5f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c25cac8dbe5bd96320053d23c3dacdb875e629d7c53ac00892eb7aa8500bde6\",\"dweb:/ipfs/Qmaf2oqbxxdJA9DphAoH4UCb8aXEAVM8fnu6qMxHJ5ta4A\"]},\"@openzeppelin/contracts/interfaces/IERC721.sol\":{\"keccak256\":\"0xaf297d12d8d4a57fe01a70f0ef38908f208e3faedc577056d0b728fa2f3ccf0c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fbfaf37123958822a2720a4ea29651be00edab787540b770f73d3e025d286ff8\",\"dweb:/ipfs/QmbzgWeTm8hJVUqWrNAwFjshqbYVyeGpQA8D1huzxQdmw6\"]},\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41319e7f621f2dc3733511332c4fd032f8e32ad2aa7fd6f665c19741d9941a34\",\"dweb:/ipfs/QmcYR3bd862GD1Bc7jwrU9bGxrhUu5na1oP964bDCu2id1\"]},\"@openzeppelin/contracts/token/ERC721/ERC721.sol\":{\"keccak256\":\"0x2c309e7df9e05e6ce15bedfe74f3c61b467fc37e0fae9eab496acf5ea0bbd7ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7063b5c98711a98018ba4635ac74cee1c1cfa2ea01099498e062699ed9530005\",\"dweb:/ipfs/QmeJ8rGXkcv7RrqLdAW8PCXPAykxVsddfYY6g5NaTwmRFE\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5bce51e11f7d194b79ea59fe00c9e8de9fa2c5530124960f29a24d4c740a3266\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e66dfde185df46104c11bc89d08fa0760737aa59a2b8546a656473d810a8ea4\",\"dweb:/ipfs/QmXvyqtXPaPss2PD7eqPoSao5Szm2n6UMoiG8TZZDjmChR\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708\",\"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV\"]},\"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\":{\"keccak256\":\"0x7942989e3525aec1672469e4c65fb33fbd19c785c9cadbcb70fcbe1fe8bfdd37\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c9f260258c2be0e3b75f8ca285872c4bfa3a8fc97fdc2e62366c78abf22b54f\",\"dweb:/ipfs/QmTg1DMNwCDj8NVi6i1noqx7cxuRdPP4VyW4fzDkKAKmH2\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"@openzeppelin/contracts/utils/Counters.sol\":{\"keccak256\":\"0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://59e1c62884d55b70f3ae5432b44bb3166ad71ae3acd19c57ab6ddc3c87c325ee\",\"dweb:/ipfs/QmezuXg5GK5oeA4F91EZhozBFekhq5TD966bHPH18cCqhu\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f\",\"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]},\"contracts/ERC721NFT.sol\":{\"keccak256\":\"0x8ae71d1b0603a9c56c8d950b9b5b1abc663c9135ea88f1cca3269dac4bcd9085\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://af7b1265426c0dfa33340b267d0c5c9652cba22dd8755246f960e24e0633814f\",\"dweb:/ipfs/QmYBEz3QceFAJsyWqLm5x2szDYUmKVPqkgL6XWb2V39evh\"]}},\"version\":1}"}},"contracts/NFTMarketplace.sol":{"NFTMarketplace":{"abi":[{"inputs":[{"internalType":"address payable","name":"_feeRecipient","type":"address"},{"internalType":"uint256","name":"_feePercentage","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nftContract","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"seller","type":"address"}],"name":"ItemCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nftContract","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"ItemListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nftContract","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketplaceFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"royaltyFee","type":"uint256"}],"name":"ItemSold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buyItem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"royaltyPercentage","type":"uint256"}],"name":"calculateFees","outputs":[{"internalType":"uint256","name":"marketplaceFee","type":"uint256"},{"internalType":"uint256","name":"royaltyFee","type":"uint256"},{"internalType":"uint256","name":"sellerAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"cancelListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getListing","outputs":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"uint256","name":"royaltyPercentage","type":"uint256"},{"internalType":"address","name":"royaltyRecipient","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"royaltyPercentage","type":"uint256"},{"internalType":"address","name":"royaltyRecipient","type":"address"}],"name":"listItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"listings","outputs":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"uint256","name":"royaltyPercentage","type":"uint256"},{"internalType":"address","name":"royaltyRecipient","type":"address"}],"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":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supportedTokenStandards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFeePercentage","type":"uint256"}],"name":"updateFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newFeeRecipient","type":"address"}],"name":"updateFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"bool","name":"supported","type":"bool"}],"name":"updateSupportedTokenStandard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_159":{"entryPoint":null,"id":159,"parameterSlots":0,"returnSlots":0},"@_23":{"entryPoint":null,"id":23,"parameterSlots":0,"returnSlots":0},"@_5926":{"entryPoint":null,"id":5926,"parameterSlots":2,"returnSlots":0},"@_msgSender_3192":{"entryPoint":null,"id":3192,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_111":{"entryPoint":269,"id":111,"parameterSlots":1,"returnSlots":0},"abi_decode_tuple_t_address_payablet_uint256_fromMemory":{"entryPoint":351,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e561266971c3ecd1d998191dab88f5e768ba5a3b9f18aaca1641faa64bcf4361__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:1066:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"120:253:25","statements":[{"body":{"nodeType":"YulBlock","src":"166:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"175:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"178:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"168:6:25"},"nodeType":"YulFunctionCall","src":"168:12:25"},"nodeType":"YulExpressionStatement","src":"168:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"141:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"150:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"137:3:25"},"nodeType":"YulFunctionCall","src":"137:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"162:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"133:3:25"},"nodeType":"YulFunctionCall","src":"133:32:25"},"nodeType":"YulIf","src":"130:52:25"},{"nodeType":"YulVariableDeclaration","src":"191:29:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"210:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"204:5:25"},"nodeType":"YulFunctionCall","src":"204:16:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"195:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"283:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"292:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"295:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"285:6:25"},"nodeType":"YulFunctionCall","src":"285:12:25"},"nodeType":"YulExpressionStatement","src":"285:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"242:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"253:5:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"268:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"273:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"264:3:25"},"nodeType":"YulFunctionCall","src":"264:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"277:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"260:3:25"},"nodeType":"YulFunctionCall","src":"260:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"249:3:25"},"nodeType":"YulFunctionCall","src":"249:31:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"239:2:25"},"nodeType":"YulFunctionCall","src":"239:42:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"232:6:25"},"nodeType":"YulFunctionCall","src":"232:50:25"},"nodeType":"YulIf","src":"229:70:25"},{"nodeType":"YulAssignment","src":"308:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"318:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"308:6:25"}]},{"nodeType":"YulAssignment","src":"332:35:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"352:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"363:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"348:3:25"},"nodeType":"YulFunctionCall","src":"348:18:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"342:5:25"},"nodeType":"YulFunctionCall","src":"342:25:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"332:6:25"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"78:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"89:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"101:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"109:6:25","type":""}],"src":"14:359:25"},{"body":{"nodeType":"YulBlock","src":"552:171:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"569:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"580:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"562:6:25"},"nodeType":"YulFunctionCall","src":"562:21:25"},"nodeType":"YulExpressionStatement","src":"562:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"603:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"614:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"599:3:25"},"nodeType":"YulFunctionCall","src":"599:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"619:2:25","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"592:6:25"},"nodeType":"YulFunctionCall","src":"592:30:25"},"nodeType":"YulExpressionStatement","src":"592:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"642:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"653:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"638:3:25"},"nodeType":"YulFunctionCall","src":"638:18:25"},{"hexValue":"496e76616c69642066656520726563697069656e74","kind":"string","nodeType":"YulLiteral","src":"658:23:25","type":"","value":"Invalid fee recipient"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"631:6:25"},"nodeType":"YulFunctionCall","src":"631:51:25"},"nodeType":"YulExpressionStatement","src":"631:51:25"},{"nodeType":"YulAssignment","src":"691:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"703:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"714:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"699:3:25"},"nodeType":"YulFunctionCall","src":"699:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"691:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_e561266971c3ecd1d998191dab88f5e768ba5a3b9f18aaca1641faa64bcf4361__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"529:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"543:4:25","type":""}],"src":"378:345:25"},{"body":{"nodeType":"YulBlock","src":"902:162:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"919:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"930:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"912:6:25"},"nodeType":"YulFunctionCall","src":"912:21:25"},"nodeType":"YulExpressionStatement","src":"912:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"953:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"964:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"949:3:25"},"nodeType":"YulFunctionCall","src":"949:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"969:2:25","type":"","value":"12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"942:6:25"},"nodeType":"YulFunctionCall","src":"942:30:25"},"nodeType":"YulExpressionStatement","src":"942:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"992:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1003:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"988:3:25"},"nodeType":"YulFunctionCall","src":"988:18:25"},{"hexValue":"46656520746f6f2068696768","kind":"string","nodeType":"YulLiteral","src":"1008:14:25","type":"","value":"Fee too high"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"981:6:25"},"nodeType":"YulFunctionCall","src":"981:42:25"},"nodeType":"YulExpressionStatement","src":"981:42:25"},{"nodeType":"YulAssignment","src":"1032:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1044:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1055:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1040:3:25"},"nodeType":"YulFunctionCall","src":"1040:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1032:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"879:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"893:4:25","type":""}],"src":"728:336:25"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_address_payablet_uint256_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        value1 := mload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_e561266971c3ecd1d998191dab88f5e768ba5a3b9f18aaca1641faa64bcf4361__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), \"Invalid fee recipient\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 12)\n        mstore(add(headStart, 64), \"Fee too high\")\n        tail := add(headStart, 96)\n    }\n}","id":25,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b5060405162001afe38038062001afe83398101604081905262000034916200015f565b600160005562000044336200010d565b6001600160a01b038216620000a05760405162461bcd60e51b815260206004820152601560248201527f496e76616c69642066656520726563697069656e74000000000000000000000060448201526064015b60405180910390fd5b6103e8811115620000e35760405162461bcd60e51b815260206004820152600c60248201526b08ccaca40e8dede40d0d2ced60a31b604482015260640162000097565b600280546001600160a01b0319166001600160a01b0393909316929092179091556003556200019b565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080604083850312156200017357600080fd5b82516001600160a01b03811681146200018b57600080fd5b6020939093015192949293505050565b61195380620001ab6000396000f3fe60806040526004361061012d5760003560e01c80638da5cb5b116100ab578063cdb3cd251161006f578063cdb3cd2514610460578063db2e21bc146104a9578063e57d6fb7146104be578063f160d369146104de578063f2fde38b146104fe578063f3fee54a1461051e57600080fd5b80638da5cb5b146103bb5780639f37092a146103d9578063a001ecdd146103ec578063b2ddee0614610410578063cbdb7b8d1461043057600080fd5b80635fd8c710116100f25780635fd8c710146102a75780636cad3fb0146102bc5780637096335b146102dc578063715018a61461031757806388700d1c1461032c57600080fd5b806207df301461013957806301ffc9a7146101d8578063150b7a0214610208578063469048401461024d57806358a72ad01461028557600080fd5b3661013457005b600080fd5b34801561014557600080fd5b5061019b61015436600461165b565b60046020818152600093845260408085209091529183529120805460018201546002830154600384015493909401546001600160a01b0392831694919360ff909216921685565b604080516001600160a01b0396871681526020810195909552921515928401929092526060830152909116608082015260a0015b60405180910390f35b3480156101e457600080fd5b506101f86101f3366004611687565b61053e565b60405190151581526020016101cf565b34801561021457600080fd5b506102346102233660046116b8565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016101cf565b34801561025957600080fd5b5060025461026d906001600160a01b031681565b6040516001600160a01b0390911681526020016101cf565b34801561029157600080fd5b506102a56102a0366004611765565b610575565b005b3480156102b357600080fd5b506102a56105a8565b3480156102c857600080fd5b506102a56102d736600461179e565b610697565b3480156102e857600080fd5b506102fc6102f73660046117b7565b6106e5565b604080519384526020840192909252908201526060016101cf565b34801561032357600080fd5b506102a561073e565b34801561033857600080fd5b5061019b61034736600461165b565b6001600160a01b03918216600090815260046020818152604080842094845293815291839020835160a081018552815486168082526001830154948201859052600283015460ff16151595820186905260038301546060830181905292909301549095166080909501859052909491939091565b3480156103c757600080fd5b506001546001600160a01b031661026d565b6102a56103e736600461165b565b610752565b3480156103f857600080fd5b5061040260035481565b6040519081526020016101cf565b34801561041c57600080fd5b506102a561042b36600461165b565b610c63565b34801561043c57600080fd5b506101f861044b3660046117d9565b60056020526000908152604090205460ff1681565b34801561046c57600080fd5b506101f861047b36600461165b565b6001600160a01b03919091166000908152600460209081526040808320938352929052206002015460ff1690565b3480156104b557600080fd5b506102a5610e2f565b3480156104ca57600080fd5b506102a56104d93660046117f6565b610eec565b3480156104ea57600080fd5b506102a56104f93660046117d9565b610fff565b34801561050a57600080fd5b506102a56105193660046117d9565b611073565b34801561052a57600080fd5b506102a561053936600461182b565b6110ec565b60006301ffc9a760e01b6001600160e01b03198316148061056f5750630a85bd0160e11b6001600160e01b03198316145b92915050565b61057d611541565b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6105b0611541565b47806105fc5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064015b60405180910390fd5b6002546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610649576040519150601f19603f3d011682016040523d82523d6000602084013e61064e565b606091505b50509050806106935760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b60448201526064016105f3565b5050565b61069f611541565b6103e88111156106e05760405162461bcd60e51b815260206004820152600c60248201526b08ccaca40e8dede40d0d2ced60a31b60448201526064016105f3565b600355565b6000806000612710600354866106fb9190611897565b61070591906118ae565b92506127106107148587611897565b61071e91906118ae565b91508161072b84876118d0565b61073591906118d0565b90509250925092565b610746611541565b610750600061159b565b565b61075a6115ed565b6001600160a01b038083166000908152600460208181526040808420868552825292839020835160a081018552815486168152600182015492810192909252600281015460ff161515938201849052600381015460608301529091015490921660808301526107ff5760405162461bcd60e51b81526020600482015260116024820152704974656d206e6f7420666f722073616c6560781b60448201526064016105f3565b806020015134101561084a5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016105f3565b6001600160a01b038316600090815260046020908152604080832085845282528220600201805460ff19169055600354908301516127109161088b91611897565b61089591906118ae565b60808301519091506000906001600160a01b0316158015906108bb575060008360600151115b156108e457612710836060015184602001516108d79190611897565b6108e191906118ae565b90505b6000818385602001516108f791906118d0565b61090191906118d0565b6040516323b872dd60e01b8152306004820152336024820152604481018790529091506001600160a01b038716906323b872dd90606401600060405180830381600087803b15801561095257600080fd5b505af1158015610966573d6000803e3d6000fd5b5050600254604051600093506001600160a01b03909116915085908381818185875af1925050503d80600081146109b9576040519150601f19603f3d011682016040523d82523d6000602084013e6109be565b606091505b5050905080610a055760405162461bcd60e51b8152602060048201526013602482015272119959481d1c985b9cd9995c8819985a5b1959606a1b60448201526064016105f3565b8215610ab457600085608001516001600160a01b03168460405160006040518083038185875af1925050503d8060008114610a5c576040519150601f19603f3d011682016040523d82523d6000602084013e610a61565b606091505b5050905080610ab25760405162461bcd60e51b815260206004820152601760248201527f526f79616c7479207472616e73666572206661696c656400000000000000000060448201526064016105f3565b505b84516040516000916001600160a01b03169084908381818185875af1925050503d8060008114610b00576040519150601f19603f3d011682016040523d82523d6000602084013e610b05565b606091505b5050905080610b4e5760405162461bcd60e51b815260206004820152601560248201527414d95b1b195c881c185e5b595b9d0819985a5b1959605a1b60448201526064016105f3565b8560200151341115610bf25760208601516000903390610b6e90346118d0565b604051600081818185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b5050905080610bf05760405162461bcd60e51b815260206004820152600d60248201526c1499599d5b990819985a5b1959609a1b60448201526064016105f3565b505b8551602080880151604080516001600160a01b0394851681529283019190915281018790526060810186905233918991908b16907f5478ad3f04f76c56cdccdbf76c58bc9a46a20205d5264da270a05e23ca683ac09060800160405180910390a45050505050506106936001600055565b610c6b6115ed565b6001600160a01b038083166000908152600460208181526040808420868552825292839020835160a081018552815486168152600182015492810192909252600281015460ff16151593820184905260038101546060830152909101549092166080830152610d0e5760405162461bcd60e51b815260206004820152600f60248201526e125d195b481b9bdd081b1a5cdd1959608a1b60448201526064016105f3565b80516001600160a01b03163314610d605760405162461bcd60e51b815260206004820152601660248201527513db9b1e481cd95b1b195c8818d85b8818d85b98d95b60521b60448201526064016105f3565b6001600160a01b038316600081815260046020818152604080842087855290915291829020600201805460ff1916905590516323b872dd60e01b81523091810191909152336024820152604481018490526323b872dd90606401600060405180830381600087803b158015610dd457600080fd5b505af1158015610de8573d6000803e3d6000fd5b50506040513392508491506001600160a01b038616907fc448b641f9d136b2082a1543ddddd8b6f8b86576bc444a187505ea3934bac2f890600090a4506106936001600055565b610e37611541565b476000610e4c6001546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e96576040519150601f19603f3d011682016040523d82523d6000602084013e610e9b565b606091505b50509050806106935760405162461bcd60e51b815260206004820152601b60248201527f456d657267656e6379207769746864726177616c206661696c6564000000000060448201526064016105f3565b6001600160a01b03831660009081526004602090815260408083208584529091529020600281015460ff16610f555760405162461bcd60e51b815260206004820152600f60248201526e125d195b481b9bdd081b1a5cdd1959608a1b60448201526064016105f3565b80546001600160a01b03163314610fa75760405162461bcd60e51b81526020600482015260166024820152754f6e6c792073656c6c65722063616e2075706461746560501b60448201526064016105f3565b60008211610ff75760405162461bcd60e51b815260206004820152601f60248201527f5072696365206d7573742062652067726561746572207468616e207a65726f0060448201526064016105f3565b600101555050565b611007611541565b6001600160a01b0381166110515760405162461bcd60e51b8152602060048201526011602482015270125b9d985b1a59081c9958da5c1a595b9d607a1b60448201526064016105f3565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61107b611541565b6001600160a01b0381166110e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f3565b6110e98161159b565b50565b6110f46115ed565b600083116111445760405162461bcd60e51b815260206004820152601f60248201527f5072696365206d7573742062652067726561746572207468616e207a65726f0060448201526064016105f3565b61012c8211156111965760405162461bcd60e51b815260206004820152601860248201527f526f79616c74792070657263656e7420746f6f2068696768000000000000000060448201526064016105f3565b6040516331a9108f60e11b815260048101859052859033906001600160a01b03831690636352211e90602401602060405180830381865afa1580156111df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120391906118e3565b6001600160a01b03161461124b5760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b60448201526064016105f3565b60405163020604bf60e21b81526004810186905230906001600160a01b0383169063081812fc90602401602060405180830381865afa158015611292573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b691906118e3565b6001600160a01b03161480611334575060405163e985e9c560e01b81523360048201523060248201526001600160a01b0382169063e985e9c590604401602060405180830381865afa158015611310573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113349190611900565b6113785760405162461bcd60e51b815260206004820152601560248201527410dbdb9d1c9858dd081b9bdd08185c1c1c9bdd9959605a1b60448201526064016105f3565b6040516323b872dd60e01b8152336004820152306024820152604481018690526001600160a01b038216906323b872dd90606401600060405180830381600087803b1580156113c657600080fd5b505af11580156113da573d6000803e3d6000fd5b505050506040518060a00160405280336001600160a01b03168152602001858152602001600115158152602001848152602001836001600160a01b031681525060046000886001600160a01b03166001600160a01b03168152602001908152602001600020600087815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055506060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550905050336001600160a01b031685876001600160a01b03167fb29a3c5d9c9eb8230bd277c54293a0a15e98cd5592a3e0d470fe9ce59fed54f18760405161152791815260200190565b60405180910390a45061153a6001600055565b5050505050565b6001546001600160a01b031633146107505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f3565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60026000540361163f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105f3565b6002600055565b6001600160a01b03811681146110e957600080fd5b6000806040838503121561166e57600080fd5b823561167981611646565b946020939093013593505050565b60006020828403121561169957600080fd5b81356001600160e01b0319811681146116b157600080fd5b9392505050565b6000806000806000608086880312156116d057600080fd5b85356116db81611646565b945060208601356116eb81611646565b935060408601359250606086013567ffffffffffffffff8082111561170f57600080fd5b818801915088601f83011261172357600080fd5b81358181111561173257600080fd5b89602082850101111561174457600080fd5b9699959850939650602001949392505050565b80151581146110e957600080fd5b6000806040838503121561177857600080fd5b823561178381611646565b9150602083013561179381611757565b809150509250929050565b6000602082840312156117b057600080fd5b5035919050565b600080604083850312156117ca57600080fd5b50508035926020909101359150565b6000602082840312156117eb57600080fd5b81356116b181611646565b60008060006060848603121561180b57600080fd5b833561181681611646565b95602085013595506040909401359392505050565b600080600080600060a0868803121561184357600080fd5b853561184e81611646565b9450602086013593506040860135925060608601359150608086013561187381611646565b809150509295509295909350565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761056f5761056f611881565b6000826118cb57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561056f5761056f611881565b6000602082840312156118f557600080fd5b81516116b181611646565b60006020828403121561191257600080fd5b81516116b18161175756fea2646970667358221220645f72b3c4810c3296d07297e886e89fab60e273384bde7b791759fb7a32718564736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1AFE CODESIZE SUB DUP1 PUSH3 0x1AFE DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x15F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SSTORE PUSH3 0x44 CALLER PUSH3 0x10D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0xA0 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 PUSH32 0x496E76616C69642066656520726563697069656E740000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3E8 DUP2 GT ISZERO PUSH3 0xE3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x8CCACA40E8DEDE40D0D2CED PUSH1 0xA3 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x97 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH1 0x3 SSTORE PUSH3 0x19B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x173 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x18B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD MLOAD SWAP3 SWAP5 SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH2 0x1953 DUP1 PUSH3 0x1AB PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x12D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xAB JUMPI DUP1 PUSH4 0xCDB3CD25 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xCDB3CD25 EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0xDB2E21BC EQ PUSH2 0x4A9 JUMPI DUP1 PUSH4 0xE57D6FB7 EQ PUSH2 0x4BE JUMPI DUP1 PUSH4 0xF160D369 EQ PUSH2 0x4DE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x4FE JUMPI DUP1 PUSH4 0xF3FEE54A EQ PUSH2 0x51E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x3BB JUMPI DUP1 PUSH4 0x9F37092A EQ PUSH2 0x3D9 JUMPI DUP1 PUSH4 0xA001ECDD EQ PUSH2 0x3EC JUMPI DUP1 PUSH4 0xB2DDEE06 EQ PUSH2 0x410 JUMPI DUP1 PUSH4 0xCBDB7B8D EQ PUSH2 0x430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5FD8C710 GT PUSH2 0xF2 JUMPI DUP1 PUSH4 0x5FD8C710 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0x6CAD3FB0 EQ PUSH2 0x2BC JUMPI DUP1 PUSH4 0x7096335B EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x317 JUMPI DUP1 PUSH4 0x88700D1C EQ PUSH2 0x32C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0x7DF30 EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x1D8 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x208 JUMPI DUP1 PUSH4 0x46904840 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x58A72AD0 EQ PUSH2 0x285 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLDATASIZE PUSH2 0x134 JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x145 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x19B PUSH2 0x154 CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0x40 DUP1 DUP6 KECCAK256 SWAP1 SWAP2 MSTORE SWAP2 DUP4 MSTORE SWAP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 DUP5 ADD SLOAD SWAP4 SWAP1 SWAP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND SWAP5 SWAP2 SWAP4 PUSH1 0xFF SWAP1 SWAP3 AND SWAP3 AND DUP6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE SWAP3 ISZERO ISZERO SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD MSTORE SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F8 PUSH2 0x1F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1687 JUMP JUMPDEST PUSH2 0x53E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH2 0x223 CALLDATASIZE PUSH1 0x4 PUSH2 0x16B8 JUMP JUMPDEST PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x259 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x2 SLOAD PUSH2 0x26D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x291 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x2A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1765 JUMP JUMPDEST PUSH2 0x575 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x5A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x2D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x179E JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2FC PUSH2 0x2F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x17B7 JUMP JUMPDEST PUSH2 0x6E5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x323 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x73E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x338 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x19B PUSH2 0x347 CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP5 DUP5 MSTORE SWAP4 DUP2 MSTORE SWAP2 DUP4 SWAP1 KECCAK256 DUP4 MLOAD PUSH1 0xA0 DUP2 ADD DUP6 MSTORE DUP2 SLOAD DUP7 AND DUP1 DUP3 MSTORE PUSH1 0x1 DUP4 ADD SLOAD SWAP5 DUP3 ADD DUP6 SWAP1 MSTORE PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0xFF AND ISZERO ISZERO SWAP6 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x60 DUP4 ADD DUP2 SWAP1 MSTORE SWAP3 SWAP1 SWAP4 ADD SLOAD SWAP1 SWAP6 AND PUSH1 0x80 SWAP1 SWAP6 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP5 SWAP2 SWAP4 SWAP1 SWAP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x26D JUMP JUMPDEST PUSH2 0x2A5 PUSH2 0x3E7 CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH2 0x752 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x402 PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x42B CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH2 0xC63 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x43C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F8 PUSH2 0x44B CALLDATASIZE PUSH1 0x4 PUSH2 0x17D9 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x46C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F8 PUSH2 0x47B CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 PUSH1 0x2 ADD SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0xE2F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x4D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x17F6 JUMP JUMPDEST PUSH2 0xEEC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x4F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x17D9 JUMP JUMPDEST PUSH2 0xFFF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x519 CALLDATASIZE PUSH1 0x4 PUSH2 0x17D9 JUMP JUMPDEST PUSH2 0x1073 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x52A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x539 CALLDATASIZE PUSH1 0x4 PUSH2 0x182B JUMP JUMPDEST PUSH2 0x10EC JUMP JUMPDEST PUSH1 0x0 PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ DUP1 PUSH2 0x56F JUMPI POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x57D PUSH2 0x1541 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x5B0 PUSH2 0x1541 JUMP JUMPDEST SELFBALANCE DUP1 PUSH2 0x5FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x4E6F2062616C616E636520746F207769746864726177 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP4 SWAP1 DUP4 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x649 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x64E JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x693 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 0x15DA5D1A191C985DD85B0819985A5B1959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x69F PUSH2 0x1541 JUMP JUMPDEST PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x6E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x8CCACA40E8DEDE40D0D2CED PUSH1 0xA3 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x3 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x2710 PUSH1 0x3 SLOAD DUP7 PUSH2 0x6FB SWAP2 SWAP1 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x705 SWAP2 SWAP1 PUSH2 0x18AE JUMP JUMPDEST SWAP3 POP PUSH2 0x2710 PUSH2 0x714 DUP6 DUP8 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x71E SWAP2 SWAP1 PUSH2 0x18AE JUMP JUMPDEST SWAP2 POP DUP2 PUSH2 0x72B DUP5 DUP8 PUSH2 0x18D0 JUMP JUMPDEST PUSH2 0x735 SWAP2 SWAP1 PUSH2 0x18D0 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH2 0x746 PUSH2 0x1541 JUMP JUMPDEST PUSH2 0x750 PUSH1 0x0 PUSH2 0x159B JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x75A PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP7 DUP6 MSTORE DUP3 MSTORE SWAP3 DUP4 SWAP1 KECCAK256 DUP4 MLOAD PUSH1 0xA0 DUP2 ADD DUP6 MSTORE DUP2 SLOAD DUP7 AND DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0xFF AND ISZERO ISZERO SWAP4 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x3 DUP2 ADD SLOAD PUSH1 0x60 DUP4 ADD MSTORE SWAP1 SWAP2 ADD SLOAD SWAP1 SWAP3 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x7FF 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 0x4974656D206E6F7420666F722073616C65 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP1 PUSH1 0x20 ADD MLOAD CALLVALUE LT ISZERO PUSH2 0x84A 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 0x125B9CDD59999A58DA595B9D081C185E5B595B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP3 KECCAK256 PUSH1 0x2 ADD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE PUSH1 0x3 SLOAD SWAP1 DUP4 ADD MLOAD PUSH2 0x2710 SWAP2 PUSH2 0x88B SWAP2 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x895 SWAP2 SWAP1 PUSH2 0x18AE JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MLOAD SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x8BB JUMPI POP PUSH1 0x0 DUP4 PUSH1 0x60 ADD MLOAD GT JUMPDEST ISZERO PUSH2 0x8E4 JUMPI PUSH2 0x2710 DUP4 PUSH1 0x60 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD PUSH2 0x8D7 SWAP2 SWAP1 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x8E1 SWAP2 SWAP1 PUSH2 0x18AE JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x0 DUP2 DUP4 DUP6 PUSH1 0x20 ADD MLOAD PUSH2 0x8F7 SWAP2 SWAP1 PUSH2 0x18D0 JUMP JUMPDEST PUSH2 0x901 SWAP2 SWAP1 PUSH2 0x18D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE CALLER PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x952 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x966 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD PUSH1 0x0 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 POP DUP6 SWAP1 DUP4 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x9B9 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x9BE JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xA05 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x119959481D1C985B9CD9995C8819985A5B1959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP3 ISZERO PUSH2 0xAB4 JUMPI PUSH1 0x0 DUP6 PUSH1 0x80 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xA5C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xA61 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xAB2 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 0x526F79616C7479207472616E73666572206661696C6564000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST POP JUMPDEST DUP5 MLOAD PUSH1 0x40 MLOAD PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP5 SWAP1 DUP4 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xB00 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xB05 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB4E 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 0x14D95B1B195C881C185E5B595B9D0819985A5B1959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP6 PUSH1 0x20 ADD MLOAD CALLVALUE GT ISZERO PUSH2 0xBF2 JUMPI PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x0 SWAP1 CALLER SWAP1 PUSH2 0xB6E SWAP1 CALLVALUE PUSH2 0x18D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xBAA JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xBF0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x1499599D5B990819985A5B1959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST POP JUMPDEST DUP6 MLOAD PUSH1 0x20 DUP1 DUP9 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND DUP2 MSTORE SWAP3 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE CALLER SWAP2 DUP10 SWAP2 SWAP1 DUP12 AND SWAP1 PUSH32 0x5478AD3F04F76C56CDCCDBF76C58BC9A46A20205D5264DA270A05E23CA683AC0 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP POP PUSH2 0x693 PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH2 0xC6B PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP7 DUP6 MSTORE DUP3 MSTORE SWAP3 DUP4 SWAP1 KECCAK256 DUP4 MLOAD PUSH1 0xA0 DUP2 ADD DUP6 MSTORE DUP2 SLOAD DUP7 AND DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0xFF AND ISZERO ISZERO SWAP4 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x3 DUP2 ADD SLOAD PUSH1 0x60 DUP4 ADD MSTORE SWAP1 SWAP2 ADD SLOAD SWAP1 SWAP3 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0xD0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x125D195B481B9BDD081B1A5CDD1959 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD60 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x13DB9B1E481CD95B1B195C8818D85B8818D85B98D95B PUSH1 0x52 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP8 DUP6 MSTORE SWAP1 SWAP2 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x2 ADD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE SWAP1 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE CALLER PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP5 SWAP1 MSTORE PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xDD4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xDE8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD CALLER SWAP3 POP DUP5 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 PUSH32 0xC448B641F9D136B2082A1543DDDDD8B6F8B86576BC444A187505EA3934BAC2F8 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP PUSH2 0x693 PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH2 0xE37 PUSH2 0x1541 JUMP JUMPDEST SELFBALANCE PUSH1 0x0 PUSH2 0xE4C PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xE96 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xE9B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x693 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 0x456D657267656E6379207769746864726177616C206661696C65640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0xFF AND PUSH2 0xF55 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x125D195B481B9BDD081B1A5CDD1959 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xFA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x4F6E6C792073656C6C65722063616E20757064617465 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xFF7 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 0x5072696365206D7573742062652067726561746572207468616E207A65726F00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 ADD SSTORE POP POP JUMP JUMPDEST PUSH2 0x1007 PUSH2 0x1541 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1051 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 0x125B9D985B1A59081C9958DA5C1A595B9D PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x2 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 0x107B PUSH2 0x1541 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x10E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH2 0x10E9 DUP2 PUSH2 0x159B JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x10F4 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x0 DUP4 GT PUSH2 0x1144 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 0x5072696365206D7573742062652067726561746572207468616E207A65726F00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH2 0x12C DUP3 GT ISZERO PUSH2 0x1196 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 0x526F79616C74792070657263656E7420746F6F20686967680000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE DUP6 SWAP1 CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x11DF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1203 SWAP2 SWAP1 PUSH2 0x18E3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x124B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x2737BA103A37B5B2B71037BBB732B9 PUSH1 0x89 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x20604BF PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x81812FC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1292 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x12B6 SWAP2 SWAP1 PUSH2 0x18E3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x1334 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0xE985E9C5 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xE985E9C5 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1310 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1334 SWAP2 SWAP1 PUSH2 0x1900 JUMP JUMPDEST PUSH2 0x1378 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 0x10DBDB9D1C9858DD081B9BDD08185C1C1C9BDD9959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13DA JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP PUSH1 0x4 PUSH1 0x0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB29A3C5D9C9EB8230BD277C54293A0A15E98CD5592A3E0D470FE9CE59FED54F1 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1527 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH2 0x153A PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x750 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SLOAD SUB PUSH2 0x163F 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 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x166E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1679 DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1699 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x16B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x16D0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x16DB DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x16EB DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x170F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1723 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1732 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x1744 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x10E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1778 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1783 DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1793 DUP2 PUSH2 0x1757 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x17B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x17EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x16B1 DUP2 PUSH2 0x1646 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x180B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1816 DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1843 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x184E DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x1873 DUP2 PUSH2 0x1646 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x56F JUMPI PUSH2 0x56F PUSH2 0x1881 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x18CB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x56F JUMPI PUSH2 0x56F PUSH2 0x1881 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x16B1 DUP2 PUSH2 0x1646 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1912 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x16B1 DUP2 PUSH2 0x1757 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0x5F72B3C481 0xC ORIGIN SWAP7 0xD0 PUSH19 0x97E886E89FAB60E273384BDE7B791759FB7A32 PUSH18 0x8564736F6C63430008130033000000000000 ","sourceMap":"413:7858:24:-:0;;;1476:287;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1716:1:4;1821:7;:22;936:32:0;734:10:15;936:18:0;:32::i;:::-;-1:-1:-1;;;;;1562:27:24;;1554:61;;;;-1:-1:-1;;;1554:61:24;;580:2:25;1554:61:24;;;562:21:25;619:2;599:18;;;592:30;658:23;638:18;;;631:51;699:18;;1554:61:24;;;;;;;;;1652:4;1634:14;:22;;1626:47;;;;-1:-1:-1;;;1626:47:24;;930:2:25;1626:47:24;;;912:21:25;969:2;949:18;;;942:30;-1:-1:-1;;;988:18:25;;;981:42;1040:18;;1626:47:24;728:336:25;1626:47:24;1686:12;:28;;-1:-1:-1;;;;;;1686:28:24;-1:-1:-1;;;;;1686:28:24;;;;;;;;;;;1725:13;:30;413:7858;;2426:187:0;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;14:359:25:-;101:6;109;162:2;150:9;141:7;137:23;133:32;130:52;;;178:1;175;168:12;130:52;204:16;;-1:-1:-1;;;;;249:31:25;;239:42;;229:70;;295:1;292;285:12;229:70;363:2;348:18;;;;342:25;318:5;;342:25;;-1:-1:-1;;;14:359:25:o;728:336::-;413:7858:24;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_6601":{"entryPoint":null,"id":6601,"parameterSlots":0,"returnSlots":0},"@_checkOwner_54":{"entryPoint":5441,"id":54,"parameterSlots":0,"returnSlots":0},"@_msgSender_3192":{"entryPoint":null,"id":3192,"parameterSlots":0,"returnSlots":1},"@_nonReentrantAfter_193":{"entryPoint":null,"id":193,"parameterSlots":0,"returnSlots":0},"@_nonReentrantBefore_185":{"entryPoint":5613,"id":185,"parameterSlots":0,"returnSlots":0},"@_transferOwnership_111":{"entryPoint":5531,"id":111,"parameterSlots":1,"returnSlots":0},"@buyItem_6233":{"entryPoint":1874,"id":6233,"parameterSlots":2,"returnSlots":0},"@calculateFees_6496":{"entryPoint":1765,"id":6496,"parameterSlots":2,"returnSlots":3},"@cancelListing_6296":{"entryPoint":3171,"id":6296,"parameterSlots":2,"returnSlots":0},"@emergencyWithdraw_6563":{"entryPoint":3631,"id":6563,"parameterSlots":0,"returnSlots":0},"@feePercentage_5837":{"entryPoint":null,"id":5837,"parameterSlots":0,"returnSlots":0},"@feeRecipient_5835":{"entryPoint":null,"id":5835,"parameterSlots":0,"returnSlots":0},"@getListing_6382":{"entryPoint":null,"id":6382,"parameterSlots":2,"returnSlots":5},"@isListed_6456":{"entryPoint":null,"id":6456,"parameterSlots":2,"returnSlots":1},"@listItem_6032":{"entryPoint":4332,"id":6032,"parameterSlots":5,"returnSlots":0},"@listings_5855":{"entryPoint":null,"id":5855,"parameterSlots":0,"returnSlots":0},"@onERC721Received_6581":{"entryPoint":null,"id":6581,"parameterSlots":5,"returnSlots":1},"@owner_40":{"entryPoint":null,"id":40,"parameterSlots":0,"returnSlots":1},"@renounceOwnership_68":{"entryPoint":1854,"id":68,"parameterSlots":0,"returnSlots":0},"@supportedTokenStandards_5859":{"entryPoint":null,"id":5859,"parameterSlots":0,"returnSlots":0},"@supportsInterface_6597":{"entryPoint":1342,"id":6597,"parameterSlots":1,"returnSlots":1},"@transferOwnership_91":{"entryPoint":4211,"id":91,"parameterSlots":1,"returnSlots":0},"@updateFeePercentage_6401":{"entryPoint":1687,"id":6401,"parameterSlots":1,"returnSlots":0},"@updateFeeRecipient_6423":{"entryPoint":4095,"id":6423,"parameterSlots":1,"returnSlots":0},"@updatePrice_6343":{"entryPoint":3820,"id":6343,"parameterSlots":3,"returnSlots":0},"@updateSupportedTokenStandard_6439":{"entryPoint":1397,"id":6439,"parameterSlots":2,"returnSlots":0},"@withdrawBalance_6531":{"entryPoint":1448,"id":6531,"parameterSlots":0,"returnSlots":0},"abi_decode_tuple_t_address":{"entryPoint":6105,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":6371,"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_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":5816,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_bool":{"entryPoint":5989,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":5723,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_uint256":{"entryPoint":6134,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_address":{"entryPoint":6187,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":6400,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":5767,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":6046,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_uint256":{"entryPoint":6071,"id":null,"parameterSlots":2,"returnSlots":2},"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__to_t_address_payable__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_t_bool_t_uint256_t_address__to_t_address_t_uint256_t_bool_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"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_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_03592254f20c1e571c20974e0a202e4f32ff240f9031cc76366a9779f9801089__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1e47b80dba3e3bff087af44930a3e1a0b5fb80034194db87f9ae87a93f0935b0__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_48504bdc46a29744a363aedaf51364aebc3fc115cf42488dedd2700397181af0__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_5ce83e457e48ac9624285a3c527b5c2f9ccbef788eaf8b73a2271dc0a760bc56__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_5e4a507e79cd285244aadd216028336554767faff3586a0451e029f521318f35__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_7b42647f74e4cb5939c692a4c0c6e7992d661537782c60e0e0a213c2070bd5d2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_940ea0545bf4a4779ef86217d18a28c86bb09c07d43dd7635f3da6878953d25e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9509050604c3a74715ca112dddf3487cff571d02db3b9229d47e970030e89bc4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9635f3464cad837f2a6ae077d6c01cb08304647c39c592628c0a527a9f0ef88e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9ffd2686e0054b69ad2df63f5ff39f9f50fb71300163e64ba79e47cfa51996a9__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a6664b97aef19c137d44ec81dfc0c0cc28a2c3470357b125208345a2c048425d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_bebce1acbd721ba064bed4bcb96d237355e9f4d6213d2899b887808ad9a9e358__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d58db187d6deadaa7dbc96faf8140765b1136bc840a29b45b0b313938ad871a9__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df16b7349c0253f6fb9f4484e9e154e83d51fd52f2fb4123d23e27c0f5581980__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__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_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":6318,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":6295,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":6352,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":6273,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":5702,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bool":{"entryPoint":5975,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:15912:25","statements":[{"nodeType":"YulBlock","src":"6:3:25","statements":[]},{"body":{"nodeType":"YulBlock","src":"59:86:25","statements":[{"body":{"nodeType":"YulBlock","src":"123:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"132:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"135:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"125:6:25"},"nodeType":"YulFunctionCall","src":"125:12:25"},"nodeType":"YulExpressionStatement","src":"125:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"82:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"93:5:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"108:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"113:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"104:3:25"},"nodeType":"YulFunctionCall","src":"104:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"117:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"100:3:25"},"nodeType":"YulFunctionCall","src":"100:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"89:3:25"},"nodeType":"YulFunctionCall","src":"89:31:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"79:2:25"},"nodeType":"YulFunctionCall","src":"79:42:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"72:6:25"},"nodeType":"YulFunctionCall","src":"72:50:25"},"nodeType":"YulIf","src":"69:70:25"}]},"name":"validator_revert_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"48:5:25","type":""}],"src":"14:131:25"},{"body":{"nodeType":"YulBlock","src":"237:228:25","statements":[{"body":{"nodeType":"YulBlock","src":"283:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"292:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"295:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"285:6:25"},"nodeType":"YulFunctionCall","src":"285:12:25"},"nodeType":"YulExpressionStatement","src":"285:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"258:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"267:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"254:3:25"},"nodeType":"YulFunctionCall","src":"254:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"279:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"250:3:25"},"nodeType":"YulFunctionCall","src":"250:32:25"},"nodeType":"YulIf","src":"247:52:25"},{"nodeType":"YulVariableDeclaration","src":"308:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"334:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"321:12:25"},"nodeType":"YulFunctionCall","src":"321:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"312:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"378:5:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"353:24:25"},"nodeType":"YulFunctionCall","src":"353:31:25"},"nodeType":"YulExpressionStatement","src":"353:31:25"},{"nodeType":"YulAssignment","src":"393:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"403:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"393:6:25"}]},{"nodeType":"YulAssignment","src":"417:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"444:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"455:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"440:3:25"},"nodeType":"YulFunctionCall","src":"440:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"427:12:25"},"nodeType":"YulFunctionCall","src":"427:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"417:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"195:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"206:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"218:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"226:6:25","type":""}],"src":"150:315:25"},{"body":{"nodeType":"YulBlock","src":"677:322:25","statements":[{"nodeType":"YulAssignment","src":"687:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"699:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"710:3:25","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"695:3:25"},"nodeType":"YulFunctionCall","src":"695:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"687:4:25"}]},{"nodeType":"YulVariableDeclaration","src":"723:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"741:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"746:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"737:3:25"},"nodeType":"YulFunctionCall","src":"737:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"750:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"733:3:25"},"nodeType":"YulFunctionCall","src":"733:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"727:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"768:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"783:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"791:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"779:3:25"},"nodeType":"YulFunctionCall","src":"779:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"761:6:25"},"nodeType":"YulFunctionCall","src":"761:34:25"},"nodeType":"YulExpressionStatement","src":"761:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"815:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"826:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"811:3:25"},"nodeType":"YulFunctionCall","src":"811:18:25"},{"name":"value1","nodeType":"YulIdentifier","src":"831:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"804:6:25"},"nodeType":"YulFunctionCall","src":"804:34:25"},"nodeType":"YulExpressionStatement","src":"804:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"858:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"869:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"854:3:25"},"nodeType":"YulFunctionCall","src":"854:18:25"},{"arguments":[{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"888:6:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"881:6:25"},"nodeType":"YulFunctionCall","src":"881:14:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"874:6:25"},"nodeType":"YulFunctionCall","src":"874:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"847:6:25"},"nodeType":"YulFunctionCall","src":"847:50:25"},"nodeType":"YulExpressionStatement","src":"847:50:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"917:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"928:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"913:3:25"},"nodeType":"YulFunctionCall","src":"913:18:25"},{"name":"value3","nodeType":"YulIdentifier","src":"933:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"906:6:25"},"nodeType":"YulFunctionCall","src":"906:34:25"},"nodeType":"YulExpressionStatement","src":"906:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"960:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"971:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"956:3:25"},"nodeType":"YulFunctionCall","src":"956:19:25"},{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"981:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"989:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"977:3:25"},"nodeType":"YulFunctionCall","src":"977:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"949:6:25"},"nodeType":"YulFunctionCall","src":"949:44:25"},"nodeType":"YulExpressionStatement","src":"949:44:25"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_bool_t_uint256_t_address__to_t_address_t_uint256_t_bool_t_uint256_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"614:9:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"625:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"633:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"641:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"649:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"657:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"668:4:25","type":""}],"src":"470:529:25"},{"body":{"nodeType":"YulBlock","src":"1073:217:25","statements":[{"body":{"nodeType":"YulBlock","src":"1119:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1128:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1131:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1121:6:25"},"nodeType":"YulFunctionCall","src":"1121:12:25"},"nodeType":"YulExpressionStatement","src":"1121:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1094:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1103:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1090:3:25"},"nodeType":"YulFunctionCall","src":"1090:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1115:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1086:3:25"},"nodeType":"YulFunctionCall","src":"1086:32:25"},"nodeType":"YulIf","src":"1083:52:25"},{"nodeType":"YulVariableDeclaration","src":"1144:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1170:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1157:12:25"},"nodeType":"YulFunctionCall","src":"1157:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"1148:5:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"1244:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1253:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1256:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1246:6:25"},"nodeType":"YulFunctionCall","src":"1246:12:25"},"nodeType":"YulExpressionStatement","src":"1246:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1202:5:25"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1213:5:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1224:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1229:10:25","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1220:3:25"},"nodeType":"YulFunctionCall","src":"1220:20:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1209:3:25"},"nodeType":"YulFunctionCall","src":"1209:32:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1199:2:25"},"nodeType":"YulFunctionCall","src":"1199:43:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1192:6:25"},"nodeType":"YulFunctionCall","src":"1192:51:25"},"nodeType":"YulIf","src":"1189:71:25"},{"nodeType":"YulAssignment","src":"1269:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"1279:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1269:6:25"}]}]},"name":"abi_decode_tuple_t_bytes4","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1039:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1050:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1062:6:25","type":""}],"src":"1004:286:25"},{"body":{"nodeType":"YulBlock","src":"1390:92:25","statements":[{"nodeType":"YulAssignment","src":"1400:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1412:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1423:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1408:3:25"},"nodeType":"YulFunctionCall","src":"1408:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1400:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1442:9:25"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1467:6:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1460:6:25"},"nodeType":"YulFunctionCall","src":"1460:14:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1453:6:25"},"nodeType":"YulFunctionCall","src":"1453:22:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1435:6:25"},"nodeType":"YulFunctionCall","src":"1435:41:25"},"nodeType":"YulExpressionStatement","src":"1435:41:25"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1359:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1370:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1381:4:25","type":""}],"src":"1295:187:25"},{"body":{"nodeType":"YulBlock","src":"1627:796:25","statements":[{"body":{"nodeType":"YulBlock","src":"1674:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1683:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1686:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1676:6:25"},"nodeType":"YulFunctionCall","src":"1676:12:25"},"nodeType":"YulExpressionStatement","src":"1676:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1648:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"1657:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1644:3:25"},"nodeType":"YulFunctionCall","src":"1644:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"1669:3:25","type":"","value":"128"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1640:3:25"},"nodeType":"YulFunctionCall","src":"1640:33:25"},"nodeType":"YulIf","src":"1637:53:25"},{"nodeType":"YulVariableDeclaration","src":"1699:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1725:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1712:12:25"},"nodeType":"YulFunctionCall","src":"1712:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"1703:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1769:5:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"1744:24:25"},"nodeType":"YulFunctionCall","src":"1744:31:25"},"nodeType":"YulExpressionStatement","src":"1744:31:25"},{"nodeType":"YulAssignment","src":"1784:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"1794:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1784:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"1808:47:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1840:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1851:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1836:3:25"},"nodeType":"YulFunctionCall","src":"1836:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1823:12:25"},"nodeType":"YulFunctionCall","src":"1823:32:25"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"1812:7:25","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"1889:7:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"1864:24:25"},"nodeType":"YulFunctionCall","src":"1864:33:25"},"nodeType":"YulExpressionStatement","src":"1864:33:25"},{"nodeType":"YulAssignment","src":"1906:17:25","value":{"name":"value_1","nodeType":"YulIdentifier","src":"1916:7:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1906:6:25"}]},{"nodeType":"YulAssignment","src":"1932:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1959:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"1970:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1955:3:25"},"nodeType":"YulFunctionCall","src":"1955:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1942:12:25"},"nodeType":"YulFunctionCall","src":"1942:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1932:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"1983:46:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2014:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2025:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2010:3:25"},"nodeType":"YulFunctionCall","src":"2010:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1997:12:25"},"nodeType":"YulFunctionCall","src":"1997:32:25"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1987:6:25","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2038:28:25","value":{"kind":"number","nodeType":"YulLiteral","src":"2048:18:25","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2042:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2093:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2102:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2105:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2095:6:25"},"nodeType":"YulFunctionCall","src":"2095:12:25"},"nodeType":"YulExpressionStatement","src":"2095:12:25"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2081:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2089:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2078:2:25"},"nodeType":"YulFunctionCall","src":"2078:14:25"},"nodeType":"YulIf","src":"2075:34:25"},{"nodeType":"YulVariableDeclaration","src":"2118:32:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2132:9:25"},{"name":"offset","nodeType":"YulIdentifier","src":"2143:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2128:3:25"},"nodeType":"YulFunctionCall","src":"2128:22:25"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"2122:2:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2198:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2207:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2210:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2200:6:25"},"nodeType":"YulFunctionCall","src":"2200:12:25"},"nodeType":"YulExpressionStatement","src":"2200:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2177:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"2181:4:25","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2173:3:25"},"nodeType":"YulFunctionCall","src":"2173:13:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2188:7:25"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2169:3:25"},"nodeType":"YulFunctionCall","src":"2169:27:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2162:6:25"},"nodeType":"YulFunctionCall","src":"2162:35:25"},"nodeType":"YulIf","src":"2159:55:25"},{"nodeType":"YulVariableDeclaration","src":"2223:30:25","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2250:2:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2237:12:25"},"nodeType":"YulFunctionCall","src":"2237:16:25"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2227:6:25","type":""}]},{"body":{"nodeType":"YulBlock","src":"2280:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2289:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2292:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2282:6:25"},"nodeType":"YulFunctionCall","src":"2282:12:25"},"nodeType":"YulExpressionStatement","src":"2282:12:25"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2268:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"2276:2:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2265:2:25"},"nodeType":"YulFunctionCall","src":"2265:14:25"},"nodeType":"YulIf","src":"2262:34:25"},{"body":{"nodeType":"YulBlock","src":"2346:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2355:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2358:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2348:6:25"},"nodeType":"YulFunctionCall","src":"2348:12:25"},"nodeType":"YulExpressionStatement","src":"2348:12:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2319:2:25"},{"name":"length","nodeType":"YulIdentifier","src":"2323:6:25"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2315:3:25"},"nodeType":"YulFunctionCall","src":"2315:15:25"},{"kind":"number","nodeType":"YulLiteral","src":"2332:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2311:3:25"},"nodeType":"YulFunctionCall","src":"2311:24:25"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2337:7:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2308:2:25"},"nodeType":"YulFunctionCall","src":"2308:37:25"},"nodeType":"YulIf","src":"2305:57:25"},{"nodeType":"YulAssignment","src":"2371:21:25","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2385:2:25"},{"kind":"number","nodeType":"YulLiteral","src":"2389:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2381:3:25"},"nodeType":"YulFunctionCall","src":"2381:11:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"2371:6:25"}]},{"nodeType":"YulAssignment","src":"2401:16:25","value":{"name":"length","nodeType":"YulIdentifier","src":"2411:6:25"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"2401:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1561:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1572:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1584:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1592:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1600:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"1608:6:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"1616:6:25","type":""}],"src":"1487:936:25"},{"body":{"nodeType":"YulBlock","src":"2527:103:25","statements":[{"nodeType":"YulAssignment","src":"2537:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2549:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2560:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2545:3:25"},"nodeType":"YulFunctionCall","src":"2545:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2537:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2579:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2594:6:25"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2606:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2611:10:25","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2602:3:25"},"nodeType":"YulFunctionCall","src":"2602:20:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2590:3:25"},"nodeType":"YulFunctionCall","src":"2590:33:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2572:6:25"},"nodeType":"YulFunctionCall","src":"2572:52:25"},"nodeType":"YulExpressionStatement","src":"2572:52:25"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2496:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2507:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2518:4:25","type":""}],"src":"2428:202:25"},{"body":{"nodeType":"YulBlock","src":"2752:102:25","statements":[{"nodeType":"YulAssignment","src":"2762:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2774:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"2785:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2770:3:25"},"nodeType":"YulFunctionCall","src":"2770:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2762:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2804:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2819:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2835:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2840:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2831:3:25"},"nodeType":"YulFunctionCall","src":"2831:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"2844:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2827:3:25"},"nodeType":"YulFunctionCall","src":"2827:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2815:3:25"},"nodeType":"YulFunctionCall","src":"2815:32:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2797:6:25"},"nodeType":"YulFunctionCall","src":"2797:51:25"},"nodeType":"YulExpressionStatement","src":"2797:51:25"}]},"name":"abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2721:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2732:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2743:4:25","type":""}],"src":"2635:219:25"},{"body":{"nodeType":"YulBlock","src":"2901:76:25","statements":[{"body":{"nodeType":"YulBlock","src":"2955:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2964:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2967:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2957:6:25"},"nodeType":"YulFunctionCall","src":"2957:12:25"},"nodeType":"YulExpressionStatement","src":"2957:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2924:5:25"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2945:5:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2938:6:25"},"nodeType":"YulFunctionCall","src":"2938:13:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2931:6:25"},"nodeType":"YulFunctionCall","src":"2931:21:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2921:2:25"},"nodeType":"YulFunctionCall","src":"2921:32:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2914:6:25"},"nodeType":"YulFunctionCall","src":"2914:40:25"},"nodeType":"YulIf","src":"2911:60:25"}]},"name":"validator_revert_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2890:5:25","type":""}],"src":"2859:118:25"},{"body":{"nodeType":"YulBlock","src":"3066:298:25","statements":[{"body":{"nodeType":"YulBlock","src":"3112:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3121:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3124:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3114:6:25"},"nodeType":"YulFunctionCall","src":"3114:12:25"},"nodeType":"YulExpressionStatement","src":"3114:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3087:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"3096:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3083:3:25"},"nodeType":"YulFunctionCall","src":"3083:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"3108:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3079:3:25"},"nodeType":"YulFunctionCall","src":"3079:32:25"},"nodeType":"YulIf","src":"3076:52:25"},{"nodeType":"YulVariableDeclaration","src":"3137:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3163:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3150:12:25"},"nodeType":"YulFunctionCall","src":"3150:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3141:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3207:5:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"3182:24:25"},"nodeType":"YulFunctionCall","src":"3182:31:25"},"nodeType":"YulExpressionStatement","src":"3182:31:25"},{"nodeType":"YulAssignment","src":"3222:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"3232:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3222:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"3246:47:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3278:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3289:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3274:3:25"},"nodeType":"YulFunctionCall","src":"3274:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3261:12:25"},"nodeType":"YulFunctionCall","src":"3261:32:25"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"3250:7:25","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"3324:7:25"}],"functionName":{"name":"validator_revert_bool","nodeType":"YulIdentifier","src":"3302:21:25"},"nodeType":"YulFunctionCall","src":"3302:30:25"},"nodeType":"YulExpressionStatement","src":"3302:30:25"},{"nodeType":"YulAssignment","src":"3341:17:25","value":{"name":"value_1","nodeType":"YulIdentifier","src":"3351:7:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"3341:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3024:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3035:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3047:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3055:6:25","type":""}],"src":"2982:382:25"},{"body":{"nodeType":"YulBlock","src":"3439:110:25","statements":[{"body":{"nodeType":"YulBlock","src":"3485:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3494:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3497:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3487:6:25"},"nodeType":"YulFunctionCall","src":"3487:12:25"},"nodeType":"YulExpressionStatement","src":"3487:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3460:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"3469:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3456:3:25"},"nodeType":"YulFunctionCall","src":"3456:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"3481:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3452:3:25"},"nodeType":"YulFunctionCall","src":"3452:32:25"},"nodeType":"YulIf","src":"3449:52:25"},{"nodeType":"YulAssignment","src":"3510:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3533:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3520:12:25"},"nodeType":"YulFunctionCall","src":"3520:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3510:6:25"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3405:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3416:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3428:6:25","type":""}],"src":"3369:180:25"},{"body":{"nodeType":"YulBlock","src":"3641:161:25","statements":[{"body":{"nodeType":"YulBlock","src":"3687:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3696:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3699:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3689:6:25"},"nodeType":"YulFunctionCall","src":"3689:12:25"},"nodeType":"YulExpressionStatement","src":"3689:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3662:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"3671:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3658:3:25"},"nodeType":"YulFunctionCall","src":"3658:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"3683:2:25","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3654:3:25"},"nodeType":"YulFunctionCall","src":"3654:32:25"},"nodeType":"YulIf","src":"3651:52:25"},{"nodeType":"YulAssignment","src":"3712:33:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3735:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3722:12:25"},"nodeType":"YulFunctionCall","src":"3722:23:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3712:6:25"}]},{"nodeType":"YulAssignment","src":"3754:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3781:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3792:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3777:3:25"},"nodeType":"YulFunctionCall","src":"3777:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3764:12:25"},"nodeType":"YulFunctionCall","src":"3764:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"3754:6:25"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3599:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3610:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3622:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3630:6:25","type":""}],"src":"3554:248:25"},{"body":{"nodeType":"YulBlock","src":"3964:162:25","statements":[{"nodeType":"YulAssignment","src":"3974:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3986:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"3997:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3982:3:25"},"nodeType":"YulFunctionCall","src":"3982:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3974:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4016:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"4027:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4009:6:25"},"nodeType":"YulFunctionCall","src":"4009:25:25"},"nodeType":"YulExpressionStatement","src":"4009:25:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4054:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4065:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4050:3:25"},"nodeType":"YulFunctionCall","src":"4050:18:25"},{"name":"value1","nodeType":"YulIdentifier","src":"4070:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4043:6:25"},"nodeType":"YulFunctionCall","src":"4043:34:25"},"nodeType":"YulExpressionStatement","src":"4043:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4097:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4108:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4093:3:25"},"nodeType":"YulFunctionCall","src":"4093:18:25"},{"name":"value2","nodeType":"YulIdentifier","src":"4113:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4086:6:25"},"nodeType":"YulFunctionCall","src":"4086:34:25"},"nodeType":"YulExpressionStatement","src":"4086:34:25"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3917:9:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3928:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3936:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3944:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3955:4:25","type":""}],"src":"3807:319:25"},{"body":{"nodeType":"YulBlock","src":"4232:102:25","statements":[{"nodeType":"YulAssignment","src":"4242:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4254:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4265:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4250:3:25"},"nodeType":"YulFunctionCall","src":"4250:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4242:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4284:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4299:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4315:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"4320:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4311:3:25"},"nodeType":"YulFunctionCall","src":"4311:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"4324:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4307:3:25"},"nodeType":"YulFunctionCall","src":"4307:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4295:3:25"},"nodeType":"YulFunctionCall","src":"4295:32:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4277:6:25"},"nodeType":"YulFunctionCall","src":"4277:51:25"},"nodeType":"YulExpressionStatement","src":"4277:51:25"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4201:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4212:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4223:4:25","type":""}],"src":"4131:203:25"},{"body":{"nodeType":"YulBlock","src":"4440:76:25","statements":[{"nodeType":"YulAssignment","src":"4450:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4462:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"4473:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4458:3:25"},"nodeType":"YulFunctionCall","src":"4458:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4450:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4492:9:25"},{"name":"value0","nodeType":"YulIdentifier","src":"4503:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4485:6:25"},"nodeType":"YulFunctionCall","src":"4485:25:25"},"nodeType":"YulExpressionStatement","src":"4485:25:25"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4409:9:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4420:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4431:4:25","type":""}],"src":"4339:177:25"},{"body":{"nodeType":"YulBlock","src":"4591:177:25","statements":[{"body":{"nodeType":"YulBlock","src":"4637:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4646:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4649:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4639:6:25"},"nodeType":"YulFunctionCall","src":"4639:12:25"},"nodeType":"YulExpressionStatement","src":"4639:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4612:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"4621:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4608:3:25"},"nodeType":"YulFunctionCall","src":"4608:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"4633:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4604:3:25"},"nodeType":"YulFunctionCall","src":"4604:32:25"},"nodeType":"YulIf","src":"4601:52:25"},{"nodeType":"YulVariableDeclaration","src":"4662:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4688:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4675:12:25"},"nodeType":"YulFunctionCall","src":"4675:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"4666:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4732:5:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"4707:24:25"},"nodeType":"YulFunctionCall","src":"4707:31:25"},"nodeType":"YulExpressionStatement","src":"4707:31:25"},{"nodeType":"YulAssignment","src":"4747:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"4757:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4747:6:25"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4557:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4568:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4580:6:25","type":""}],"src":"4521:247:25"},{"body":{"nodeType":"YulBlock","src":"4877:279:25","statements":[{"body":{"nodeType":"YulBlock","src":"4923:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4932:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4935:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4925:6:25"},"nodeType":"YulFunctionCall","src":"4925:12:25"},"nodeType":"YulExpressionStatement","src":"4925:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4898:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"4907:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4894:3:25"},"nodeType":"YulFunctionCall","src":"4894:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"4919:2:25","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4890:3:25"},"nodeType":"YulFunctionCall","src":"4890:32:25"},"nodeType":"YulIf","src":"4887:52:25"},{"nodeType":"YulVariableDeclaration","src":"4948:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4974:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4961:12:25"},"nodeType":"YulFunctionCall","src":"4961:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"4952:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5018:5:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"4993:24:25"},"nodeType":"YulFunctionCall","src":"4993:31:25"},"nodeType":"YulExpressionStatement","src":"4993:31:25"},{"nodeType":"YulAssignment","src":"5033:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"5043:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5033:6:25"}]},{"nodeType":"YulAssignment","src":"5057:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5084:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5095:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5080:3:25"},"nodeType":"YulFunctionCall","src":"5080:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5067:12:25"},"nodeType":"YulFunctionCall","src":"5067:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5057:6:25"}]},{"nodeType":"YulAssignment","src":"5108:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5135:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5146:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5131:3:25"},"nodeType":"YulFunctionCall","src":"5131:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5118:12:25"},"nodeType":"YulFunctionCall","src":"5118:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"5108:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4827:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4838:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4850:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4858:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"4866:6:25","type":""}],"src":"4773:383:25"},{"body":{"nodeType":"YulBlock","src":"5239:177:25","statements":[{"body":{"nodeType":"YulBlock","src":"5285:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5294:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5297:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5287:6:25"},"nodeType":"YulFunctionCall","src":"5287:12:25"},"nodeType":"YulExpressionStatement","src":"5287:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5260:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"5269:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5256:3:25"},"nodeType":"YulFunctionCall","src":"5256:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"5281:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5252:3:25"},"nodeType":"YulFunctionCall","src":"5252:32:25"},"nodeType":"YulIf","src":"5249:52:25"},{"nodeType":"YulVariableDeclaration","src":"5310:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5336:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5323:12:25"},"nodeType":"YulFunctionCall","src":"5323:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"5314:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5380:5:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"5355:24:25"},"nodeType":"YulFunctionCall","src":"5355:31:25"},"nodeType":"YulExpressionStatement","src":"5355:31:25"},{"nodeType":"YulAssignment","src":"5395:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"5405:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5395:6:25"}]}]},"name":"abi_decode_tuple_t_address_payable","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5205:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5216:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5228:6:25","type":""}],"src":"5161:255:25"},{"body":{"nodeType":"YulBlock","src":"5559:456:25","statements":[{"body":{"nodeType":"YulBlock","src":"5606:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5615:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5618:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5608:6:25"},"nodeType":"YulFunctionCall","src":"5608:12:25"},"nodeType":"YulExpressionStatement","src":"5608:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5580:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"5589:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5576:3:25"},"nodeType":"YulFunctionCall","src":"5576:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"5601:3:25","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5572:3:25"},"nodeType":"YulFunctionCall","src":"5572:33:25"},"nodeType":"YulIf","src":"5569:53:25"},{"nodeType":"YulVariableDeclaration","src":"5631:36:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5657:9:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5644:12:25"},"nodeType":"YulFunctionCall","src":"5644:23:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"5635:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5701:5:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"5676:24:25"},"nodeType":"YulFunctionCall","src":"5676:31:25"},"nodeType":"YulExpressionStatement","src":"5676:31:25"},{"nodeType":"YulAssignment","src":"5716:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"5726:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5716:6:25"}]},{"nodeType":"YulAssignment","src":"5740:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5767:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5778:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5763:3:25"},"nodeType":"YulFunctionCall","src":"5763:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5750:12:25"},"nodeType":"YulFunctionCall","src":"5750:32:25"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5740:6:25"}]},{"nodeType":"YulAssignment","src":"5791:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5818:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5829:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5814:3:25"},"nodeType":"YulFunctionCall","src":"5814:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5801:12:25"},"nodeType":"YulFunctionCall","src":"5801:32:25"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"5791:6:25"}]},{"nodeType":"YulAssignment","src":"5842:42:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5869:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5880:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5865:3:25"},"nodeType":"YulFunctionCall","src":"5865:18:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5852:12:25"},"nodeType":"YulFunctionCall","src":"5852:32:25"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"5842:6:25"}]},{"nodeType":"YulVariableDeclaration","src":"5893:48:25","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5925:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"5936:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5921:3:25"},"nodeType":"YulFunctionCall","src":"5921:19:25"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5908:12:25"},"nodeType":"YulFunctionCall","src":"5908:33:25"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"5897:7:25","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"5975:7:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"5950:24:25"},"nodeType":"YulFunctionCall","src":"5950:33:25"},"nodeType":"YulExpressionStatement","src":"5950:33:25"},{"nodeType":"YulAssignment","src":"5992:17:25","value":{"name":"value_1","nodeType":"YulIdentifier","src":"6002:7:25"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"5992:6:25"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5493:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5504:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5516:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5524:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"5532:6:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"5540:6:25","type":""},{"name":"value4","nodeType":"YulTypedName","src":"5548:6:25","type":""}],"src":"5421:594:25"},{"body":{"nodeType":"YulBlock","src":"6194:172:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6211:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6222:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6204:6:25"},"nodeType":"YulFunctionCall","src":"6204:21:25"},"nodeType":"YulExpressionStatement","src":"6204:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6245:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6256:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6241:3:25"},"nodeType":"YulFunctionCall","src":"6241:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"6261:2:25","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6234:6:25"},"nodeType":"YulFunctionCall","src":"6234:30:25"},"nodeType":"YulExpressionStatement","src":"6234:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6284:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6295:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6280:3:25"},"nodeType":"YulFunctionCall","src":"6280:18:25"},{"hexValue":"4e6f2062616c616e636520746f207769746864726177","kind":"string","nodeType":"YulLiteral","src":"6300:24:25","type":"","value":"No balance to withdraw"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6273:6:25"},"nodeType":"YulFunctionCall","src":"6273:52:25"},"nodeType":"YulExpressionStatement","src":"6273:52:25"},{"nodeType":"YulAssignment","src":"6334:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6346:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6357:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6342:3:25"},"nodeType":"YulFunctionCall","src":"6342:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6334:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6171:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6185:4:25","type":""}],"src":"6020:346:25"},{"body":{"nodeType":"YulBlock","src":"6562:14:25","statements":[{"nodeType":"YulAssignment","src":"6564:10:25","value":{"name":"pos","nodeType":"YulIdentifier","src":"6571:3:25"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"6564:3:25"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"6546:3:25","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"6554:3:25","type":""}],"src":"6371:205:25"},{"body":{"nodeType":"YulBlock","src":"6755:167:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6772:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6783:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6765:6:25"},"nodeType":"YulFunctionCall","src":"6765:21:25"},"nodeType":"YulExpressionStatement","src":"6765:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6806:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6817:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6802:3:25"},"nodeType":"YulFunctionCall","src":"6802:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"6822:2:25","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6795:6:25"},"nodeType":"YulFunctionCall","src":"6795:30:25"},"nodeType":"YulExpressionStatement","src":"6795:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6845:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6856:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6841:3:25"},"nodeType":"YulFunctionCall","src":"6841:18:25"},{"hexValue":"5769746864726177616c206661696c6564","kind":"string","nodeType":"YulLiteral","src":"6861:19:25","type":"","value":"Withdrawal failed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6834:6:25"},"nodeType":"YulFunctionCall","src":"6834:47:25"},"nodeType":"YulExpressionStatement","src":"6834:47:25"},{"nodeType":"YulAssignment","src":"6890:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6902:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"6913:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6898:3:25"},"nodeType":"YulFunctionCall","src":"6898:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6890:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6732:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6746:4:25","type":""}],"src":"6581:341:25"},{"body":{"nodeType":"YulBlock","src":"7101:162:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7118:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7129:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7111:6:25"},"nodeType":"YulFunctionCall","src":"7111:21:25"},"nodeType":"YulExpressionStatement","src":"7111:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7152:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7163:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7148:3:25"},"nodeType":"YulFunctionCall","src":"7148:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"7168:2:25","type":"","value":"12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7141:6:25"},"nodeType":"YulFunctionCall","src":"7141:30:25"},"nodeType":"YulExpressionStatement","src":"7141:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7191:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7202:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7187:3:25"},"nodeType":"YulFunctionCall","src":"7187:18:25"},{"hexValue":"46656520746f6f2068696768","kind":"string","nodeType":"YulLiteral","src":"7207:14:25","type":"","value":"Fee too high"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7180:6:25"},"nodeType":"YulFunctionCall","src":"7180:42:25"},"nodeType":"YulExpressionStatement","src":"7180:42:25"},{"nodeType":"YulAssignment","src":"7231:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7243:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"7254:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7239:3:25"},"nodeType":"YulFunctionCall","src":"7239:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7231:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7078:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7092:4:25","type":""}],"src":"6927:336:25"},{"body":{"nodeType":"YulBlock","src":"7300:95:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7317:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7324:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"7329:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"7320:3:25"},"nodeType":"YulFunctionCall","src":"7320:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7310:6:25"},"nodeType":"YulFunctionCall","src":"7310:31:25"},"nodeType":"YulExpressionStatement","src":"7310:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7357:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"7360:4:25","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7350:6:25"},"nodeType":"YulFunctionCall","src":"7350:15:25"},"nodeType":"YulExpressionStatement","src":"7350:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7381:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7384:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7374:6:25"},"nodeType":"YulFunctionCall","src":"7374:15:25"},"nodeType":"YulExpressionStatement","src":"7374:15:25"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"7268:127:25"},{"body":{"nodeType":"YulBlock","src":"7452:116:25","statements":[{"nodeType":"YulAssignment","src":"7462:20:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"7477:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"7480:1:25"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"7473:3:25"},"nodeType":"YulFunctionCall","src":"7473:9:25"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"7462:7:25"}]},{"body":{"nodeType":"YulBlock","src":"7540:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"7542:16:25"},"nodeType":"YulFunctionCall","src":"7542:18:25"},"nodeType":"YulExpressionStatement","src":"7542:18:25"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"7511:1:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7504:6:25"},"nodeType":"YulFunctionCall","src":"7504:9:25"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"7518:1:25"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"7525:7:25"},{"name":"x","nodeType":"YulIdentifier","src":"7534:1:25"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"7521:3:25"},"nodeType":"YulFunctionCall","src":"7521:15:25"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"7515:2:25"},"nodeType":"YulFunctionCall","src":"7515:22:25"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"7501:2:25"},"nodeType":"YulFunctionCall","src":"7501:37:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7494:6:25"},"nodeType":"YulFunctionCall","src":"7494:45:25"},"nodeType":"YulIf","src":"7491:71:25"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"7431:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"7434:1:25","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"7440:7:25","type":""}],"src":"7400:168:25"},{"body":{"nodeType":"YulBlock","src":"7619:171:25","statements":[{"body":{"nodeType":"YulBlock","src":"7650:111:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7671:1:25","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7678:3:25","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"7683:10:25","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"7674:3:25"},"nodeType":"YulFunctionCall","src":"7674:20:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7664:6:25"},"nodeType":"YulFunctionCall","src":"7664:31:25"},"nodeType":"YulExpressionStatement","src":"7664:31:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7715:1:25","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"7718:4:25","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7708:6:25"},"nodeType":"YulFunctionCall","src":"7708:15:25"},"nodeType":"YulExpressionStatement","src":"7708:15:25"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7743:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7746:4:25","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7736:6:25"},"nodeType":"YulFunctionCall","src":"7736:15:25"},"nodeType":"YulExpressionStatement","src":"7736:15:25"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"7639:1:25"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7632:6:25"},"nodeType":"YulFunctionCall","src":"7632:9:25"},"nodeType":"YulIf","src":"7629:132:25"},{"nodeType":"YulAssignment","src":"7770:14:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"7779:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"7782:1:25"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"7775:3:25"},"nodeType":"YulFunctionCall","src":"7775:9:25"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"7770:1:25"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"7604:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"7607:1:25","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"7613:1:25","type":""}],"src":"7573:217:25"},{"body":{"nodeType":"YulBlock","src":"7844:79:25","statements":[{"nodeType":"YulAssignment","src":"7854:17:25","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"7866:1:25"},{"name":"y","nodeType":"YulIdentifier","src":"7869:1:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7862:3:25"},"nodeType":"YulFunctionCall","src":"7862:9:25"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"7854:4:25"}]},{"body":{"nodeType":"YulBlock","src":"7895:22:25","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"7897:16:25"},"nodeType":"YulFunctionCall","src":"7897:18:25"},"nodeType":"YulExpressionStatement","src":"7897:18:25"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"7886:4:25"},{"name":"x","nodeType":"YulIdentifier","src":"7892:1:25"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7883:2:25"},"nodeType":"YulFunctionCall","src":"7883:11:25"},"nodeType":"YulIf","src":"7880:37:25"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"7826:1:25","type":""},{"name":"y","nodeType":"YulTypedName","src":"7829:1:25","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"7835:4:25","type":""}],"src":"7795:128:25"},{"body":{"nodeType":"YulBlock","src":"8102:167:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8119:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8130:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8112:6:25"},"nodeType":"YulFunctionCall","src":"8112:21:25"},"nodeType":"YulExpressionStatement","src":"8112:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8153:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8164:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8149:3:25"},"nodeType":"YulFunctionCall","src":"8149:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"8169:2:25","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8142:6:25"},"nodeType":"YulFunctionCall","src":"8142:30:25"},"nodeType":"YulExpressionStatement","src":"8142:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8192:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8203:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8188:3:25"},"nodeType":"YulFunctionCall","src":"8188:18:25"},{"hexValue":"4974656d206e6f7420666f722073616c65","kind":"string","nodeType":"YulLiteral","src":"8208:19:25","type":"","value":"Item not for sale"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8181:6:25"},"nodeType":"YulFunctionCall","src":"8181:47:25"},"nodeType":"YulExpressionStatement","src":"8181:47:25"},{"nodeType":"YulAssignment","src":"8237:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8249:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8260:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8245:3:25"},"nodeType":"YulFunctionCall","src":"8245:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8237:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_df16b7349c0253f6fb9f4484e9e154e83d51fd52f2fb4123d23e27c0f5581980__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8079:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8093:4:25","type":""}],"src":"7928:341:25"},{"body":{"nodeType":"YulBlock","src":"8448:170:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8465:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8476:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8458:6:25"},"nodeType":"YulFunctionCall","src":"8458:21:25"},"nodeType":"YulExpressionStatement","src":"8458:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8499:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8510:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8495:3:25"},"nodeType":"YulFunctionCall","src":"8495:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"8515:2:25","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8488:6:25"},"nodeType":"YulFunctionCall","src":"8488:30:25"},"nodeType":"YulExpressionStatement","src":"8488:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8538:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8549:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8534:3:25"},"nodeType":"YulFunctionCall","src":"8534:18:25"},{"hexValue":"496e73756666696369656e74207061796d656e74","kind":"string","nodeType":"YulLiteral","src":"8554:22:25","type":"","value":"Insufficient payment"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8527:6:25"},"nodeType":"YulFunctionCall","src":"8527:50:25"},"nodeType":"YulExpressionStatement","src":"8527:50:25"},{"nodeType":"YulAssignment","src":"8586:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8598:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8609:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8594:3:25"},"nodeType":"YulFunctionCall","src":"8594:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8586:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8425:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8439:4:25","type":""}],"src":"8274:344:25"},{"body":{"nodeType":"YulBlock","src":"8780:218:25","statements":[{"nodeType":"YulAssignment","src":"8790:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8802:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8813:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8798:3:25"},"nodeType":"YulFunctionCall","src":"8798:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8790:4:25"}]},{"nodeType":"YulVariableDeclaration","src":"8825:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8843:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"8848:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"8839:3:25"},"nodeType":"YulFunctionCall","src":"8839:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"8852:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8835:3:25"},"nodeType":"YulFunctionCall","src":"8835:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"8829:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8870:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"8885:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"8893:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8881:3:25"},"nodeType":"YulFunctionCall","src":"8881:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8863:6:25"},"nodeType":"YulFunctionCall","src":"8863:34:25"},"nodeType":"YulExpressionStatement","src":"8863:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8917:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8928:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8913:3:25"},"nodeType":"YulFunctionCall","src":"8913:18:25"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"8937:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"8945:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8933:3:25"},"nodeType":"YulFunctionCall","src":"8933:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8906:6:25"},"nodeType":"YulFunctionCall","src":"8906:43:25"},"nodeType":"YulExpressionStatement","src":"8906:43:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8969:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"8980:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8965:3:25"},"nodeType":"YulFunctionCall","src":"8965:18:25"},{"name":"value2","nodeType":"YulIdentifier","src":"8985:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8958:6:25"},"nodeType":"YulFunctionCall","src":"8958:34:25"},"nodeType":"YulExpressionStatement","src":"8958:34:25"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8733:9:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"8744:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"8752:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"8760:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8771:4:25","type":""}],"src":"8623:375:25"},{"body":{"nodeType":"YulBlock","src":"9177:169:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9194:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9205:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9187:6:25"},"nodeType":"YulFunctionCall","src":"9187:21:25"},"nodeType":"YulExpressionStatement","src":"9187:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9228:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9239:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9224:3:25"},"nodeType":"YulFunctionCall","src":"9224:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9244:2:25","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9217:6:25"},"nodeType":"YulFunctionCall","src":"9217:30:25"},"nodeType":"YulExpressionStatement","src":"9217:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9267:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9278:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9263:3:25"},"nodeType":"YulFunctionCall","src":"9263:18:25"},{"hexValue":"466565207472616e73666572206661696c6564","kind":"string","nodeType":"YulLiteral","src":"9283:21:25","type":"","value":"Fee transfer failed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9256:6:25"},"nodeType":"YulFunctionCall","src":"9256:49:25"},"nodeType":"YulExpressionStatement","src":"9256:49:25"},{"nodeType":"YulAssignment","src":"9314:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9326:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9337:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9322:3:25"},"nodeType":"YulFunctionCall","src":"9322:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9314:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_5ce83e457e48ac9624285a3c527b5c2f9ccbef788eaf8b73a2271dc0a760bc56__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9154:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9168:4:25","type":""}],"src":"9003:343:25"},{"body":{"nodeType":"YulBlock","src":"9525:173:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9542:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9553:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9535:6:25"},"nodeType":"YulFunctionCall","src":"9535:21:25"},"nodeType":"YulExpressionStatement","src":"9535:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9576:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9587:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9572:3:25"},"nodeType":"YulFunctionCall","src":"9572:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9592:2:25","type":"","value":"23"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9565:6:25"},"nodeType":"YulFunctionCall","src":"9565:30:25"},"nodeType":"YulExpressionStatement","src":"9565:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9615:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9626:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9611:3:25"},"nodeType":"YulFunctionCall","src":"9611:18:25"},{"hexValue":"526f79616c7479207472616e73666572206661696c6564","kind":"string","nodeType":"YulLiteral","src":"9631:25:25","type":"","value":"Royalty transfer failed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9604:6:25"},"nodeType":"YulFunctionCall","src":"9604:53:25"},"nodeType":"YulExpressionStatement","src":"9604:53:25"},{"nodeType":"YulAssignment","src":"9666:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9678:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9689:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9674:3:25"},"nodeType":"YulFunctionCall","src":"9674:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9666:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_5e4a507e79cd285244aadd216028336554767faff3586a0451e029f521318f35__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9502:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9516:4:25","type":""}],"src":"9351:347:25"},{"body":{"nodeType":"YulBlock","src":"9877:171:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9894:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9905:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9887:6:25"},"nodeType":"YulFunctionCall","src":"9887:21:25"},"nodeType":"YulExpressionStatement","src":"9887:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9928:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9939:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9924:3:25"},"nodeType":"YulFunctionCall","src":"9924:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"9944:2:25","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9917:6:25"},"nodeType":"YulFunctionCall","src":"9917:30:25"},"nodeType":"YulExpressionStatement","src":"9917:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9967:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"9978:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9963:3:25"},"nodeType":"YulFunctionCall","src":"9963:18:25"},{"hexValue":"53656c6c6572207061796d656e74206661696c6564","kind":"string","nodeType":"YulLiteral","src":"9983:23:25","type":"","value":"Seller payment failed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9956:6:25"},"nodeType":"YulFunctionCall","src":"9956:51:25"},"nodeType":"YulExpressionStatement","src":"9956:51:25"},{"nodeType":"YulAssignment","src":"10016:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10028:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10039:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10024:3:25"},"nodeType":"YulFunctionCall","src":"10024:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10016:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_9635f3464cad837f2a6ae077d6c01cb08304647c39c592628c0a527a9f0ef88e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9854:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9868:4:25","type":""}],"src":"9703:345:25"},{"body":{"nodeType":"YulBlock","src":"10227:163:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10244:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10255:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10237:6:25"},"nodeType":"YulFunctionCall","src":"10237:21:25"},"nodeType":"YulExpressionStatement","src":"10237:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10278:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10289:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10274:3:25"},"nodeType":"YulFunctionCall","src":"10274:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"10294:2:25","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10267:6:25"},"nodeType":"YulFunctionCall","src":"10267:30:25"},"nodeType":"YulExpressionStatement","src":"10267:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10317:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10328:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10313:3:25"},"nodeType":"YulFunctionCall","src":"10313:18:25"},{"hexValue":"526566756e64206661696c6564","kind":"string","nodeType":"YulLiteral","src":"10333:15:25","type":"","value":"Refund failed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10306:6:25"},"nodeType":"YulFunctionCall","src":"10306:43:25"},"nodeType":"YulExpressionStatement","src":"10306:43:25"},{"nodeType":"YulAssignment","src":"10358:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10370:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10381:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10366:3:25"},"nodeType":"YulFunctionCall","src":"10366:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10358:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_940ea0545bf4a4779ef86217d18a28c86bb09c07d43dd7635f3da6878953d25e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10204:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10218:4:25","type":""}],"src":"10053:337:25"},{"body":{"nodeType":"YulBlock","src":"10580:232:25","statements":[{"nodeType":"YulAssignment","src":"10590:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10602:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10613:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10598:3:25"},"nodeType":"YulFunctionCall","src":"10598:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10590:4:25"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10633:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10648:6:25"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10664:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"10669:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10660:3:25"},"nodeType":"YulFunctionCall","src":"10660:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"10673:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10656:3:25"},"nodeType":"YulFunctionCall","src":"10656:19:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10644:3:25"},"nodeType":"YulFunctionCall","src":"10644:32:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10626:6:25"},"nodeType":"YulFunctionCall","src":"10626:51:25"},"nodeType":"YulExpressionStatement","src":"10626:51:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10697:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10708:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10693:3:25"},"nodeType":"YulFunctionCall","src":"10693:18:25"},{"name":"value1","nodeType":"YulIdentifier","src":"10713:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10686:6:25"},"nodeType":"YulFunctionCall","src":"10686:34:25"},"nodeType":"YulExpressionStatement","src":"10686:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10740:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10751:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10736:3:25"},"nodeType":"YulFunctionCall","src":"10736:18:25"},{"name":"value2","nodeType":"YulIdentifier","src":"10756:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10729:6:25"},"nodeType":"YulFunctionCall","src":"10729:34:25"},"nodeType":"YulExpressionStatement","src":"10729:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10783:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"10794:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10779:3:25"},"nodeType":"YulFunctionCall","src":"10779:18:25"},{"name":"value3","nodeType":"YulIdentifier","src":"10799:6:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10772:6:25"},"nodeType":"YulFunctionCall","src":"10772:34:25"},"nodeType":"YulExpressionStatement","src":"10772:34:25"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10525:9:25","type":""},{"name":"value3","nodeType":"YulTypedName","src":"10536:6:25","type":""},{"name":"value2","nodeType":"YulTypedName","src":"10544:6:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10552:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"10560:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10571:4:25","type":""}],"src":"10395:417:25"},{"body":{"nodeType":"YulBlock","src":"10991:165:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11008:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11019:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11001:6:25"},"nodeType":"YulFunctionCall","src":"11001:21:25"},"nodeType":"YulExpressionStatement","src":"11001:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11042:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11053:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11038:3:25"},"nodeType":"YulFunctionCall","src":"11038:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"11058:2:25","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11031:6:25"},"nodeType":"YulFunctionCall","src":"11031:30:25"},"nodeType":"YulExpressionStatement","src":"11031:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11081:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11092:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11077:3:25"},"nodeType":"YulFunctionCall","src":"11077:18:25"},{"hexValue":"4974656d206e6f74206c6973746564","kind":"string","nodeType":"YulLiteral","src":"11097:17:25","type":"","value":"Item not listed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11070:6:25"},"nodeType":"YulFunctionCall","src":"11070:45:25"},"nodeType":"YulExpressionStatement","src":"11070:45:25"},{"nodeType":"YulAssignment","src":"11124:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11136:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11147:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11132:3:25"},"nodeType":"YulFunctionCall","src":"11132:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11124:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_9ffd2686e0054b69ad2df63f5ff39f9f50fb71300163e64ba79e47cfa51996a9__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10968:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10982:4:25","type":""}],"src":"10817:339:25"},{"body":{"nodeType":"YulBlock","src":"11335:172:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11352:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11363:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11345:6:25"},"nodeType":"YulFunctionCall","src":"11345:21:25"},"nodeType":"YulExpressionStatement","src":"11345:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11386:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11397:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11382:3:25"},"nodeType":"YulFunctionCall","src":"11382:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"11402:2:25","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11375:6:25"},"nodeType":"YulFunctionCall","src":"11375:30:25"},"nodeType":"YulExpressionStatement","src":"11375:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11425:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11436:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11421:3:25"},"nodeType":"YulFunctionCall","src":"11421:18:25"},{"hexValue":"4f6e6c792073656c6c65722063616e2063616e63656c","kind":"string","nodeType":"YulLiteral","src":"11441:24:25","type":"","value":"Only seller can cancel"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11414:6:25"},"nodeType":"YulFunctionCall","src":"11414:52:25"},"nodeType":"YulExpressionStatement","src":"11414:52:25"},{"nodeType":"YulAssignment","src":"11475:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11487:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11498:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11483:3:25"},"nodeType":"YulFunctionCall","src":"11483:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11475:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_7b42647f74e4cb5939c692a4c0c6e7992d661537782c60e0e0a213c2070bd5d2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11312:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11326:4:25","type":""}],"src":"11161:346:25"},{"body":{"nodeType":"YulBlock","src":"11686:177:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11703:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11714:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11696:6:25"},"nodeType":"YulFunctionCall","src":"11696:21:25"},"nodeType":"YulExpressionStatement","src":"11696:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11737:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11748:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11733:3:25"},"nodeType":"YulFunctionCall","src":"11733:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"11753:2:25","type":"","value":"27"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11726:6:25"},"nodeType":"YulFunctionCall","src":"11726:30:25"},"nodeType":"YulExpressionStatement","src":"11726:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11776:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11787:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11772:3:25"},"nodeType":"YulFunctionCall","src":"11772:18:25"},{"hexValue":"456d657267656e6379207769746864726177616c206661696c6564","kind":"string","nodeType":"YulLiteral","src":"11792:29:25","type":"","value":"Emergency withdrawal failed"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11765:6:25"},"nodeType":"YulFunctionCall","src":"11765:57:25"},"nodeType":"YulExpressionStatement","src":"11765:57:25"},{"nodeType":"YulAssignment","src":"11831:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11843:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"11854:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11839:3:25"},"nodeType":"YulFunctionCall","src":"11839:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11831:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_bebce1acbd721ba064bed4bcb96d237355e9f4d6213d2899b887808ad9a9e358__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11663:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11677:4:25","type":""}],"src":"11512:351:25"},{"body":{"nodeType":"YulBlock","src":"12042:172:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12059:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12070:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12052:6:25"},"nodeType":"YulFunctionCall","src":"12052:21:25"},"nodeType":"YulExpressionStatement","src":"12052:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12093:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12104:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12089:3:25"},"nodeType":"YulFunctionCall","src":"12089:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"12109:2:25","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12082:6:25"},"nodeType":"YulFunctionCall","src":"12082:30:25"},"nodeType":"YulExpressionStatement","src":"12082:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12132:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12143:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12128:3:25"},"nodeType":"YulFunctionCall","src":"12128:18:25"},{"hexValue":"4f6e6c792073656c6c65722063616e20757064617465","kind":"string","nodeType":"YulLiteral","src":"12148:24:25","type":"","value":"Only seller can update"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12121:6:25"},"nodeType":"YulFunctionCall","src":"12121:52:25"},"nodeType":"YulExpressionStatement","src":"12121:52:25"},{"nodeType":"YulAssignment","src":"12182:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12194:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12205:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12190:3:25"},"nodeType":"YulFunctionCall","src":"12190:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12182:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_03592254f20c1e571c20974e0a202e4f32ff240f9031cc76366a9779f9801089__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12019:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12033:4:25","type":""}],"src":"11868:346:25"},{"body":{"nodeType":"YulBlock","src":"12393:181:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12410:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12421:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12403:6:25"},"nodeType":"YulFunctionCall","src":"12403:21:25"},"nodeType":"YulExpressionStatement","src":"12403:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12444:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12455:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12440:3:25"},"nodeType":"YulFunctionCall","src":"12440:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"12460:2:25","type":"","value":"31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12433:6:25"},"nodeType":"YulFunctionCall","src":"12433:30:25"},"nodeType":"YulExpressionStatement","src":"12433:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12483:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12494:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12479:3:25"},"nodeType":"YulFunctionCall","src":"12479:18:25"},{"hexValue":"5072696365206d7573742062652067726561746572207468616e207a65726f","kind":"string","nodeType":"YulLiteral","src":"12499:33:25","type":"","value":"Price must be greater than zero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12472:6:25"},"nodeType":"YulFunctionCall","src":"12472:61:25"},"nodeType":"YulExpressionStatement","src":"12472:61:25"},{"nodeType":"YulAssignment","src":"12542:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12554:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12565:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12550:3:25"},"nodeType":"YulFunctionCall","src":"12550:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12542:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_1e47b80dba3e3bff087af44930a3e1a0b5fb80034194db87f9ae87a93f0935b0__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12370:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12384:4:25","type":""}],"src":"12219:355:25"},{"body":{"nodeType":"YulBlock","src":"12753:167:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12770:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12781:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12763:6:25"},"nodeType":"YulFunctionCall","src":"12763:21:25"},"nodeType":"YulExpressionStatement","src":"12763:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12804:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12815:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12800:3:25"},"nodeType":"YulFunctionCall","src":"12800:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"12820:2:25","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12793:6:25"},"nodeType":"YulFunctionCall","src":"12793:30:25"},"nodeType":"YulExpressionStatement","src":"12793:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12843:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12854:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12839:3:25"},"nodeType":"YulFunctionCall","src":"12839:18:25"},{"hexValue":"496e76616c696420726563697069656e74","kind":"string","nodeType":"YulLiteral","src":"12859:19:25","type":"","value":"Invalid recipient"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12832:6:25"},"nodeType":"YulFunctionCall","src":"12832:47:25"},"nodeType":"YulExpressionStatement","src":"12832:47:25"},{"nodeType":"YulAssignment","src":"12888:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12900:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"12911:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12896:3:25"},"nodeType":"YulFunctionCall","src":"12896:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12888:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_a6664b97aef19c137d44ec81dfc0c0cc28a2c3470357b125208345a2c048425d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12730:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12744:4:25","type":""}],"src":"12579:341:25"},{"body":{"nodeType":"YulBlock","src":"13099:228:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13116:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13127:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13109:6:25"},"nodeType":"YulFunctionCall","src":"13109:21:25"},"nodeType":"YulExpressionStatement","src":"13109:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13150:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13161:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13146:3:25"},"nodeType":"YulFunctionCall","src":"13146:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"13166:2:25","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13139:6:25"},"nodeType":"YulFunctionCall","src":"13139:30:25"},"nodeType":"YulExpressionStatement","src":"13139:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13189:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13200:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13185:3:25"},"nodeType":"YulFunctionCall","src":"13185:18:25"},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061","kind":"string","nodeType":"YulLiteral","src":"13205:34:25","type":"","value":"Ownable: new owner is the zero a"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13178:6:25"},"nodeType":"YulFunctionCall","src":"13178:62:25"},"nodeType":"YulExpressionStatement","src":"13178:62:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13260:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13271:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13256:3:25"},"nodeType":"YulFunctionCall","src":"13256:18:25"},{"hexValue":"646472657373","kind":"string","nodeType":"YulLiteral","src":"13276:8:25","type":"","value":"ddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13249:6:25"},"nodeType":"YulFunctionCall","src":"13249:36:25"},"nodeType":"YulExpressionStatement","src":"13249:36:25"},{"nodeType":"YulAssignment","src":"13294:27:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13306:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13317:3:25","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13302:3:25"},"nodeType":"YulFunctionCall","src":"13302:19:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13294:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13076:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13090:4:25","type":""}],"src":"12925:402:25"},{"body":{"nodeType":"YulBlock","src":"13506:174:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13523:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13534:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13516:6:25"},"nodeType":"YulFunctionCall","src":"13516:21:25"},"nodeType":"YulExpressionStatement","src":"13516:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13557:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13568:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13553:3:25"},"nodeType":"YulFunctionCall","src":"13553:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"13573:2:25","type":"","value":"24"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13546:6:25"},"nodeType":"YulFunctionCall","src":"13546:30:25"},"nodeType":"YulExpressionStatement","src":"13546:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13596:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13607:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13592:3:25"},"nodeType":"YulFunctionCall","src":"13592:18:25"},{"hexValue":"526f79616c74792070657263656e7420746f6f2068696768","kind":"string","nodeType":"YulLiteral","src":"13612:26:25","type":"","value":"Royalty percent too high"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13585:6:25"},"nodeType":"YulFunctionCall","src":"13585:54:25"},"nodeType":"YulExpressionStatement","src":"13585:54:25"},{"nodeType":"YulAssignment","src":"13648:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13660:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"13671:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13656:3:25"},"nodeType":"YulFunctionCall","src":"13656:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13648:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_9509050604c3a74715ca112dddf3487cff571d02db3b9229d47e970030e89bc4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13483:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13497:4:25","type":""}],"src":"13332:348:25"},{"body":{"nodeType":"YulBlock","src":"13766:170:25","statements":[{"body":{"nodeType":"YulBlock","src":"13812:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13821:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13824:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"13814:6:25"},"nodeType":"YulFunctionCall","src":"13814:12:25"},"nodeType":"YulExpressionStatement","src":"13814:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"13787:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"13796:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13783:3:25"},"nodeType":"YulFunctionCall","src":"13783:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"13808:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"13779:3:25"},"nodeType":"YulFunctionCall","src":"13779:32:25"},"nodeType":"YulIf","src":"13776:52:25"},{"nodeType":"YulVariableDeclaration","src":"13837:29:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13856:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13850:5:25"},"nodeType":"YulFunctionCall","src":"13850:16:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"13841:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13900:5:25"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"13875:24:25"},"nodeType":"YulFunctionCall","src":"13875:31:25"},"nodeType":"YulExpressionStatement","src":"13875:31:25"},{"nodeType":"YulAssignment","src":"13915:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"13925:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"13915:6:25"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13732:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"13743:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"13755:6:25","type":""}],"src":"13685:251:25"},{"body":{"nodeType":"YulBlock","src":"14115:165:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14132:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14143:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14125:6:25"},"nodeType":"YulFunctionCall","src":"14125:21:25"},"nodeType":"YulExpressionStatement","src":"14125:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14166:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14177:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14162:3:25"},"nodeType":"YulFunctionCall","src":"14162:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"14182:2:25","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14155:6:25"},"nodeType":"YulFunctionCall","src":"14155:30:25"},"nodeType":"YulExpressionStatement","src":"14155:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14205:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14216:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14201:3:25"},"nodeType":"YulFunctionCall","src":"14201:18:25"},{"hexValue":"4e6f7420746f6b656e206f776e6572","kind":"string","nodeType":"YulLiteral","src":"14221:17:25","type":"","value":"Not token owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14194:6:25"},"nodeType":"YulFunctionCall","src":"14194:45:25"},"nodeType":"YulExpressionStatement","src":"14194:45:25"},{"nodeType":"YulAssignment","src":"14248:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14260:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14271:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14256:3:25"},"nodeType":"YulFunctionCall","src":"14256:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14248:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_d58db187d6deadaa7dbc96faf8140765b1136bc840a29b45b0b313938ad871a9__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14092:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14106:4:25","type":""}],"src":"13941:339:25"},{"body":{"nodeType":"YulBlock","src":"14414:175:25","statements":[{"nodeType":"YulAssignment","src":"14424:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14436:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14447:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14432:3:25"},"nodeType":"YulFunctionCall","src":"14432:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14424:4:25"}]},{"nodeType":"YulVariableDeclaration","src":"14459:29:25","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14477:3:25","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"14482:1:25","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"14473:3:25"},"nodeType":"YulFunctionCall","src":"14473:11:25"},{"kind":"number","nodeType":"YulLiteral","src":"14486:1:25","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14469:3:25"},"nodeType":"YulFunctionCall","src":"14469:19:25"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"14463:2:25","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14504:9:25"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"14519:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"14527:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"14515:3:25"},"nodeType":"YulFunctionCall","src":"14515:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14497:6:25"},"nodeType":"YulFunctionCall","src":"14497:34:25"},"nodeType":"YulExpressionStatement","src":"14497:34:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14551:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"14562:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14547:3:25"},"nodeType":"YulFunctionCall","src":"14547:18:25"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"14571:6:25"},{"name":"_1","nodeType":"YulIdentifier","src":"14579:2:25"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"14567:3:25"},"nodeType":"YulFunctionCall","src":"14567:15:25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14540:6:25"},"nodeType":"YulFunctionCall","src":"14540:43:25"},"nodeType":"YulExpressionStatement","src":"14540:43:25"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14375:9:25","type":""},{"name":"value1","nodeType":"YulTypedName","src":"14386:6:25","type":""},{"name":"value0","nodeType":"YulTypedName","src":"14394:6:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14405:4:25","type":""}],"src":"14285:304:25"},{"body":{"nodeType":"YulBlock","src":"14672:167:25","statements":[{"body":{"nodeType":"YulBlock","src":"14718:16:25","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14727:1:25","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"14730:1:25","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"14720:6:25"},"nodeType":"YulFunctionCall","src":"14720:12:25"},"nodeType":"YulExpressionStatement","src":"14720:12:25"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"14693:7:25"},{"name":"headStart","nodeType":"YulIdentifier","src":"14702:9:25"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14689:3:25"},"nodeType":"YulFunctionCall","src":"14689:23:25"},{"kind":"number","nodeType":"YulLiteral","src":"14714:2:25","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"14685:3:25"},"nodeType":"YulFunctionCall","src":"14685:32:25"},"nodeType":"YulIf","src":"14682:52:25"},{"nodeType":"YulVariableDeclaration","src":"14743:29:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14762:9:25"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14756:5:25"},"nodeType":"YulFunctionCall","src":"14756:16:25"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"14747:5:25","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"14803:5:25"}],"functionName":{"name":"validator_revert_bool","nodeType":"YulIdentifier","src":"14781:21:25"},"nodeType":"YulFunctionCall","src":"14781:28:25"},"nodeType":"YulExpressionStatement","src":"14781:28:25"},{"nodeType":"YulAssignment","src":"14818:15:25","value":{"name":"value","nodeType":"YulIdentifier","src":"14828:5:25"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"14818:6:25"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14638:9:25","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"14649:7:25","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"14661:6:25","type":""}],"src":"14594:245:25"},{"body":{"nodeType":"YulBlock","src":"15018:171:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15035:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15046:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15028:6:25"},"nodeType":"YulFunctionCall","src":"15028:21:25"},"nodeType":"YulExpressionStatement","src":"15028:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15069:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15080:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15065:3:25"},"nodeType":"YulFunctionCall","src":"15065:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"15085:2:25","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15058:6:25"},"nodeType":"YulFunctionCall","src":"15058:30:25"},"nodeType":"YulExpressionStatement","src":"15058:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15108:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15119:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15104:3:25"},"nodeType":"YulFunctionCall","src":"15104:18:25"},{"hexValue":"436f6e7472616374206e6f7420617070726f766564","kind":"string","nodeType":"YulLiteral","src":"15124:23:25","type":"","value":"Contract not approved"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15097:6:25"},"nodeType":"YulFunctionCall","src":"15097:51:25"},"nodeType":"YulExpressionStatement","src":"15097:51:25"},{"nodeType":"YulAssignment","src":"15157:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15169:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15180:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15165:3:25"},"nodeType":"YulFunctionCall","src":"15165:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15157:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_48504bdc46a29744a363aedaf51364aebc3fc115cf42488dedd2700397181af0__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14995:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15009:4:25","type":""}],"src":"14844:345:25"},{"body":{"nodeType":"YulBlock","src":"15368:182:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15385:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15396:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15378:6:25"},"nodeType":"YulFunctionCall","src":"15378:21:25"},"nodeType":"YulExpressionStatement","src":"15378:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15419:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15430:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15415:3:25"},"nodeType":"YulFunctionCall","src":"15415:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"15435:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15408:6:25"},"nodeType":"YulFunctionCall","src":"15408:30:25"},"nodeType":"YulExpressionStatement","src":"15408:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15458:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15469:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15454:3:25"},"nodeType":"YulFunctionCall","src":"15454:18:25"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"15474:34:25","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15447:6:25"},"nodeType":"YulFunctionCall","src":"15447:62:25"},"nodeType":"YulExpressionStatement","src":"15447:62:25"},{"nodeType":"YulAssignment","src":"15518:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15530:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15541:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15526:3:25"},"nodeType":"YulFunctionCall","src":"15526:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15518:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15345:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15359:4:25","type":""}],"src":"15194:356:25"},{"body":{"nodeType":"YulBlock","src":"15729:181:25","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15746:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15757:2:25","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15739:6:25"},"nodeType":"YulFunctionCall","src":"15739:21:25"},"nodeType":"YulExpressionStatement","src":"15739:21:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15780:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15791:2:25","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15776:3:25"},"nodeType":"YulFunctionCall","src":"15776:18:25"},{"kind":"number","nodeType":"YulLiteral","src":"15796:2:25","type":"","value":"31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15769:6:25"},"nodeType":"YulFunctionCall","src":"15769:30:25"},"nodeType":"YulExpressionStatement","src":"15769:30:25"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15819:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15830:2:25","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15815:3:25"},"nodeType":"YulFunctionCall","src":"15815:18:25"},{"hexValue":"5265656e7472616e637947756172643a207265656e7472616e742063616c6c","kind":"string","nodeType":"YulLiteral","src":"15835:33:25","type":"","value":"ReentrancyGuard: reentrant call"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15808:6:25"},"nodeType":"YulFunctionCall","src":"15808:61:25"},"nodeType":"YulExpressionStatement","src":"15808:61:25"},{"nodeType":"YulAssignment","src":"15878:26:25","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15890:9:25"},{"kind":"number","nodeType":"YulLiteral","src":"15901:2:25","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15886:3:25"},"nodeType":"YulFunctionCall","src":"15886:18:25"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15878:4:25"}]}]},"name":"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15706:9:25","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15720:4:25","type":""}],"src":"15555:355:25"}]},"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_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        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_bool_t_uint256_t_address__to_t_address_t_uint256_t_bool_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, _1))\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_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_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\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_uint256(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_uint256t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := calldataload(add(headStart, 32))\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_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_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_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_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_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\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_addresst_uint256t_uint256t_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_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        let value_1 := calldataload(add(headStart, 128))\n        validator_revert_address(value_1)\n        value4 := value_1\n    }\n    function abi_encode_tuple_t_stringliteral_af08831b689a6e21ff2a1d61127eae3e817b5eace5682b882b19cef960f308a5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 22)\n        mstore(add(headStart, 64), \"No balance to withdraw\")\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_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88__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), \"Withdrawal failed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_48d9dea795d8d010580a5b191d0fe7c1ee70cd850707a0d7e7aba7c702de6be1__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 12)\n        mstore(add(headStart, 64), \"Fee too high\")\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_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_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_stringliteral_df16b7349c0253f6fb9f4484e9e154e83d51fd52f2fb4123d23e27c0f5581980__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), \"Item not for sale\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8d1b93b434e468e73514a2449ae955e822f73dcdf924bb4553be247ebca8755e__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), \"Insufficient payment\")\n        tail := add(headStart, 96)\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        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_stringliteral_5ce83e457e48ac9624285a3c527b5c2f9ccbef788eaf8b73a2271dc0a760bc56__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 19)\n        mstore(add(headStart, 64), \"Fee transfer failed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_5e4a507e79cd285244aadd216028336554767faff3586a0451e029f521318f35__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), \"Royalty transfer failed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9635f3464cad837f2a6ae077d6c01cb08304647c39c592628c0a527a9f0ef88e__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), \"Seller payment failed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_940ea0545bf4a4779ef86217d18a28c86bb09c07d43dd7635f3da6878953d25e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 13)\n        mstore(add(headStart, 64), \"Refund failed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256_t_uint256__to_t_address_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, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_stringliteral_9ffd2686e0054b69ad2df63f5ff39f9f50fb71300163e64ba79e47cfa51996a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"Item not listed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7b42647f74e4cb5939c692a4c0c6e7992d661537782c60e0e0a213c2070bd5d2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 22)\n        mstore(add(headStart, 64), \"Only seller can cancel\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_bebce1acbd721ba064bed4bcb96d237355e9f4d6213d2899b887808ad9a9e358__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), \"Emergency withdrawal failed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_03592254f20c1e571c20974e0a202e4f32ff240f9031cc76366a9779f9801089__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 22)\n        mstore(add(headStart, 64), \"Only seller can update\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_1e47b80dba3e3bff087af44930a3e1a0b5fb80034194db87f9ae87a93f0935b0__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), \"Price must be greater than zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_a6664b97aef19c137d44ec81dfc0c0cc28a2c3470357b125208345a2c048425d__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), \"Invalid recipient\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Ownable: new owner is the zero a\")\n        mstore(add(headStart, 96), \"ddress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_9509050604c3a74715ca112dddf3487cff571d02db3b9229d47e970030e89bc4__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), \"Royalty percent too high\")\n        tail := add(headStart, 96)\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_stringliteral_d58db187d6deadaa7dbc96faf8140765b1136bc840a29b45b0b313938ad871a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"Not token owner\")\n        tail := add(headStart, 96)\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        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _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_stringliteral_48504bdc46a29744a363aedaf51364aebc3fc115cf42488dedd2700397181af0__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), \"Contract not approved\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__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), \"ReentrancyGuard: reentrant call\")\n        tail := add(headStart, 96)\n    }\n}","id":25,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"60806040526004361061012d5760003560e01c80638da5cb5b116100ab578063cdb3cd251161006f578063cdb3cd2514610460578063db2e21bc146104a9578063e57d6fb7146104be578063f160d369146104de578063f2fde38b146104fe578063f3fee54a1461051e57600080fd5b80638da5cb5b146103bb5780639f37092a146103d9578063a001ecdd146103ec578063b2ddee0614610410578063cbdb7b8d1461043057600080fd5b80635fd8c710116100f25780635fd8c710146102a75780636cad3fb0146102bc5780637096335b146102dc578063715018a61461031757806388700d1c1461032c57600080fd5b806207df301461013957806301ffc9a7146101d8578063150b7a0214610208578063469048401461024d57806358a72ad01461028557600080fd5b3661013457005b600080fd5b34801561014557600080fd5b5061019b61015436600461165b565b60046020818152600093845260408085209091529183529120805460018201546002830154600384015493909401546001600160a01b0392831694919360ff909216921685565b604080516001600160a01b0396871681526020810195909552921515928401929092526060830152909116608082015260a0015b60405180910390f35b3480156101e457600080fd5b506101f86101f3366004611687565b61053e565b60405190151581526020016101cf565b34801561021457600080fd5b506102346102233660046116b8565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016101cf565b34801561025957600080fd5b5060025461026d906001600160a01b031681565b6040516001600160a01b0390911681526020016101cf565b34801561029157600080fd5b506102a56102a0366004611765565b610575565b005b3480156102b357600080fd5b506102a56105a8565b3480156102c857600080fd5b506102a56102d736600461179e565b610697565b3480156102e857600080fd5b506102fc6102f73660046117b7565b6106e5565b604080519384526020840192909252908201526060016101cf565b34801561032357600080fd5b506102a561073e565b34801561033857600080fd5b5061019b61034736600461165b565b6001600160a01b03918216600090815260046020818152604080842094845293815291839020835160a081018552815486168082526001830154948201859052600283015460ff16151595820186905260038301546060830181905292909301549095166080909501859052909491939091565b3480156103c757600080fd5b506001546001600160a01b031661026d565b6102a56103e736600461165b565b610752565b3480156103f857600080fd5b5061040260035481565b6040519081526020016101cf565b34801561041c57600080fd5b506102a561042b36600461165b565b610c63565b34801561043c57600080fd5b506101f861044b3660046117d9565b60056020526000908152604090205460ff1681565b34801561046c57600080fd5b506101f861047b36600461165b565b6001600160a01b03919091166000908152600460209081526040808320938352929052206002015460ff1690565b3480156104b557600080fd5b506102a5610e2f565b3480156104ca57600080fd5b506102a56104d93660046117f6565b610eec565b3480156104ea57600080fd5b506102a56104f93660046117d9565b610fff565b34801561050a57600080fd5b506102a56105193660046117d9565b611073565b34801561052a57600080fd5b506102a561053936600461182b565b6110ec565b60006301ffc9a760e01b6001600160e01b03198316148061056f5750630a85bd0160e11b6001600160e01b03198316145b92915050565b61057d611541565b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6105b0611541565b47806105fc5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064015b60405180910390fd5b6002546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610649576040519150601f19603f3d011682016040523d82523d6000602084013e61064e565b606091505b50509050806106935760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b60448201526064016105f3565b5050565b61069f611541565b6103e88111156106e05760405162461bcd60e51b815260206004820152600c60248201526b08ccaca40e8dede40d0d2ced60a31b60448201526064016105f3565b600355565b6000806000612710600354866106fb9190611897565b61070591906118ae565b92506127106107148587611897565b61071e91906118ae565b91508161072b84876118d0565b61073591906118d0565b90509250925092565b610746611541565b610750600061159b565b565b61075a6115ed565b6001600160a01b038083166000908152600460208181526040808420868552825292839020835160a081018552815486168152600182015492810192909252600281015460ff161515938201849052600381015460608301529091015490921660808301526107ff5760405162461bcd60e51b81526020600482015260116024820152704974656d206e6f7420666f722073616c6560781b60448201526064016105f3565b806020015134101561084a5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016105f3565b6001600160a01b038316600090815260046020908152604080832085845282528220600201805460ff19169055600354908301516127109161088b91611897565b61089591906118ae565b60808301519091506000906001600160a01b0316158015906108bb575060008360600151115b156108e457612710836060015184602001516108d79190611897565b6108e191906118ae565b90505b6000818385602001516108f791906118d0565b61090191906118d0565b6040516323b872dd60e01b8152306004820152336024820152604481018790529091506001600160a01b038716906323b872dd90606401600060405180830381600087803b15801561095257600080fd5b505af1158015610966573d6000803e3d6000fd5b5050600254604051600093506001600160a01b03909116915085908381818185875af1925050503d80600081146109b9576040519150601f19603f3d011682016040523d82523d6000602084013e6109be565b606091505b5050905080610a055760405162461bcd60e51b8152602060048201526013602482015272119959481d1c985b9cd9995c8819985a5b1959606a1b60448201526064016105f3565b8215610ab457600085608001516001600160a01b03168460405160006040518083038185875af1925050503d8060008114610a5c576040519150601f19603f3d011682016040523d82523d6000602084013e610a61565b606091505b5050905080610ab25760405162461bcd60e51b815260206004820152601760248201527f526f79616c7479207472616e73666572206661696c656400000000000000000060448201526064016105f3565b505b84516040516000916001600160a01b03169084908381818185875af1925050503d8060008114610b00576040519150601f19603f3d011682016040523d82523d6000602084013e610b05565b606091505b5050905080610b4e5760405162461bcd60e51b815260206004820152601560248201527414d95b1b195c881c185e5b595b9d0819985a5b1959605a1b60448201526064016105f3565b8560200151341115610bf25760208601516000903390610b6e90346118d0565b604051600081818185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b5050905080610bf05760405162461bcd60e51b815260206004820152600d60248201526c1499599d5b990819985a5b1959609a1b60448201526064016105f3565b505b8551602080880151604080516001600160a01b0394851681529283019190915281018790526060810186905233918991908b16907f5478ad3f04f76c56cdccdbf76c58bc9a46a20205d5264da270a05e23ca683ac09060800160405180910390a45050505050506106936001600055565b610c6b6115ed565b6001600160a01b038083166000908152600460208181526040808420868552825292839020835160a081018552815486168152600182015492810192909252600281015460ff16151593820184905260038101546060830152909101549092166080830152610d0e5760405162461bcd60e51b815260206004820152600f60248201526e125d195b481b9bdd081b1a5cdd1959608a1b60448201526064016105f3565b80516001600160a01b03163314610d605760405162461bcd60e51b815260206004820152601660248201527513db9b1e481cd95b1b195c8818d85b8818d85b98d95b60521b60448201526064016105f3565b6001600160a01b038316600081815260046020818152604080842087855290915291829020600201805460ff1916905590516323b872dd60e01b81523091810191909152336024820152604481018490526323b872dd90606401600060405180830381600087803b158015610dd457600080fd5b505af1158015610de8573d6000803e3d6000fd5b50506040513392508491506001600160a01b038616907fc448b641f9d136b2082a1543ddddd8b6f8b86576bc444a187505ea3934bac2f890600090a4506106936001600055565b610e37611541565b476000610e4c6001546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e96576040519150601f19603f3d011682016040523d82523d6000602084013e610e9b565b606091505b50509050806106935760405162461bcd60e51b815260206004820152601b60248201527f456d657267656e6379207769746864726177616c206661696c6564000000000060448201526064016105f3565b6001600160a01b03831660009081526004602090815260408083208584529091529020600281015460ff16610f555760405162461bcd60e51b815260206004820152600f60248201526e125d195b481b9bdd081b1a5cdd1959608a1b60448201526064016105f3565b80546001600160a01b03163314610fa75760405162461bcd60e51b81526020600482015260166024820152754f6e6c792073656c6c65722063616e2075706461746560501b60448201526064016105f3565b60008211610ff75760405162461bcd60e51b815260206004820152601f60248201527f5072696365206d7573742062652067726561746572207468616e207a65726f0060448201526064016105f3565b600101555050565b611007611541565b6001600160a01b0381166110515760405162461bcd60e51b8152602060048201526011602482015270125b9d985b1a59081c9958da5c1a595b9d607a1b60448201526064016105f3565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61107b611541565b6001600160a01b0381166110e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f3565b6110e98161159b565b50565b6110f46115ed565b600083116111445760405162461bcd60e51b815260206004820152601f60248201527f5072696365206d7573742062652067726561746572207468616e207a65726f0060448201526064016105f3565b61012c8211156111965760405162461bcd60e51b815260206004820152601860248201527f526f79616c74792070657263656e7420746f6f2068696768000000000000000060448201526064016105f3565b6040516331a9108f60e11b815260048101859052859033906001600160a01b03831690636352211e90602401602060405180830381865afa1580156111df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120391906118e3565b6001600160a01b03161461124b5760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b60448201526064016105f3565b60405163020604bf60e21b81526004810186905230906001600160a01b0383169063081812fc90602401602060405180830381865afa158015611292573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b691906118e3565b6001600160a01b03161480611334575060405163e985e9c560e01b81523360048201523060248201526001600160a01b0382169063e985e9c590604401602060405180830381865afa158015611310573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113349190611900565b6113785760405162461bcd60e51b815260206004820152601560248201527410dbdb9d1c9858dd081b9bdd08185c1c1c9bdd9959605a1b60448201526064016105f3565b6040516323b872dd60e01b8152336004820152306024820152604481018690526001600160a01b038216906323b872dd90606401600060405180830381600087803b1580156113c657600080fd5b505af11580156113da573d6000803e3d6000fd5b505050506040518060a00160405280336001600160a01b03168152602001858152602001600115158152602001848152602001836001600160a01b031681525060046000886001600160a01b03166001600160a01b03168152602001908152602001600020600087815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055506060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550905050336001600160a01b031685876001600160a01b03167fb29a3c5d9c9eb8230bd277c54293a0a15e98cd5592a3e0d470fe9ce59fed54f18760405161152791815260200190565b60405180910390a45061153a6001600055565b5050505050565b6001546001600160a01b031633146107505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f3565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60026000540361163f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105f3565b6002600055565b6001600160a01b03811681146110e957600080fd5b6000806040838503121561166e57600080fd5b823561167981611646565b946020939093013593505050565b60006020828403121561169957600080fd5b81356001600160e01b0319811681146116b157600080fd5b9392505050565b6000806000806000608086880312156116d057600080fd5b85356116db81611646565b945060208601356116eb81611646565b935060408601359250606086013567ffffffffffffffff8082111561170f57600080fd5b818801915088601f83011261172357600080fd5b81358181111561173257600080fd5b89602082850101111561174457600080fd5b9699959850939650602001949392505050565b80151581146110e957600080fd5b6000806040838503121561177857600080fd5b823561178381611646565b9150602083013561179381611757565b809150509250929050565b6000602082840312156117b057600080fd5b5035919050565b600080604083850312156117ca57600080fd5b50508035926020909101359150565b6000602082840312156117eb57600080fd5b81356116b181611646565b60008060006060848603121561180b57600080fd5b833561181681611646565b95602085013595506040909401359392505050565b600080600080600060a0868803121561184357600080fd5b853561184e81611646565b9450602086013593506040860135925060608601359150608086013561187381611646565b809150509295509295909350565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761056f5761056f611881565b6000826118cb57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561056f5761056f611881565b6000602082840312156118f557600080fd5b81516116b181611646565b60006020828403121561191257600080fd5b81516116b18161175756fea2646970667358221220645f72b3c4810c3296d07297e886e89fab60e273384bde7b791759fb7a32718564736f6c63430008130033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x12D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xAB JUMPI DUP1 PUSH4 0xCDB3CD25 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xCDB3CD25 EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0xDB2E21BC EQ PUSH2 0x4A9 JUMPI DUP1 PUSH4 0xE57D6FB7 EQ PUSH2 0x4BE JUMPI DUP1 PUSH4 0xF160D369 EQ PUSH2 0x4DE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x4FE JUMPI DUP1 PUSH4 0xF3FEE54A EQ PUSH2 0x51E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x3BB JUMPI DUP1 PUSH4 0x9F37092A EQ PUSH2 0x3D9 JUMPI DUP1 PUSH4 0xA001ECDD EQ PUSH2 0x3EC JUMPI DUP1 PUSH4 0xB2DDEE06 EQ PUSH2 0x410 JUMPI DUP1 PUSH4 0xCBDB7B8D EQ PUSH2 0x430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5FD8C710 GT PUSH2 0xF2 JUMPI DUP1 PUSH4 0x5FD8C710 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0x6CAD3FB0 EQ PUSH2 0x2BC JUMPI DUP1 PUSH4 0x7096335B EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x317 JUMPI DUP1 PUSH4 0x88700D1C EQ PUSH2 0x32C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0x7DF30 EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x1D8 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x208 JUMPI DUP1 PUSH4 0x46904840 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x58A72AD0 EQ PUSH2 0x285 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLDATASIZE PUSH2 0x134 JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x145 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x19B PUSH2 0x154 CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0x40 DUP1 DUP6 KECCAK256 SWAP1 SWAP2 MSTORE SWAP2 DUP4 MSTORE SWAP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 DUP5 ADD SLOAD SWAP4 SWAP1 SWAP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND SWAP5 SWAP2 SWAP4 PUSH1 0xFF SWAP1 SWAP3 AND SWAP3 AND DUP6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE SWAP3 ISZERO ISZERO SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD MSTORE SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F8 PUSH2 0x1F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1687 JUMP JUMPDEST PUSH2 0x53E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH2 0x223 CALLDATASIZE PUSH1 0x4 PUSH2 0x16B8 JUMP JUMPDEST PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x259 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x2 SLOAD PUSH2 0x26D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x291 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x2A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1765 JUMP JUMPDEST PUSH2 0x575 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x5A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x2D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x179E JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2FC PUSH2 0x2F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x17B7 JUMP JUMPDEST PUSH2 0x6E5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x323 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x73E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x338 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x19B PUSH2 0x347 CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP5 DUP5 MSTORE SWAP4 DUP2 MSTORE SWAP2 DUP4 SWAP1 KECCAK256 DUP4 MLOAD PUSH1 0xA0 DUP2 ADD DUP6 MSTORE DUP2 SLOAD DUP7 AND DUP1 DUP3 MSTORE PUSH1 0x1 DUP4 ADD SLOAD SWAP5 DUP3 ADD DUP6 SWAP1 MSTORE PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0xFF AND ISZERO ISZERO SWAP6 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x60 DUP4 ADD DUP2 SWAP1 MSTORE SWAP3 SWAP1 SWAP4 ADD SLOAD SWAP1 SWAP6 AND PUSH1 0x80 SWAP1 SWAP6 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP5 SWAP2 SWAP4 SWAP1 SWAP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x26D JUMP JUMPDEST PUSH2 0x2A5 PUSH2 0x3E7 CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH2 0x752 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x402 PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x42B CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH2 0xC63 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x43C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F8 PUSH2 0x44B CALLDATASIZE PUSH1 0x4 PUSH2 0x17D9 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x46C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F8 PUSH2 0x47B CALLDATASIZE PUSH1 0x4 PUSH2 0x165B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 PUSH1 0x2 ADD SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0xE2F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x4D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x17F6 JUMP JUMPDEST PUSH2 0xEEC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x4F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x17D9 JUMP JUMPDEST PUSH2 0xFFF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x519 CALLDATASIZE PUSH1 0x4 PUSH2 0x17D9 JUMP JUMPDEST PUSH2 0x1073 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x52A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A5 PUSH2 0x539 CALLDATASIZE PUSH1 0x4 PUSH2 0x182B JUMP JUMPDEST PUSH2 0x10EC JUMP JUMPDEST PUSH1 0x0 PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ DUP1 PUSH2 0x56F JUMPI POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x57D PUSH2 0x1541 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x5B0 PUSH2 0x1541 JUMP JUMPDEST SELFBALANCE DUP1 PUSH2 0x5FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x4E6F2062616C616E636520746F207769746864726177 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP4 SWAP1 DUP4 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x649 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x64E JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x693 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 0x15DA5D1A191C985DD85B0819985A5B1959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x69F PUSH2 0x1541 JUMP JUMPDEST PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x6E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x8CCACA40E8DEDE40D0D2CED PUSH1 0xA3 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x3 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x2710 PUSH1 0x3 SLOAD DUP7 PUSH2 0x6FB SWAP2 SWAP1 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x705 SWAP2 SWAP1 PUSH2 0x18AE JUMP JUMPDEST SWAP3 POP PUSH2 0x2710 PUSH2 0x714 DUP6 DUP8 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x71E SWAP2 SWAP1 PUSH2 0x18AE JUMP JUMPDEST SWAP2 POP DUP2 PUSH2 0x72B DUP5 DUP8 PUSH2 0x18D0 JUMP JUMPDEST PUSH2 0x735 SWAP2 SWAP1 PUSH2 0x18D0 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH2 0x746 PUSH2 0x1541 JUMP JUMPDEST PUSH2 0x750 PUSH1 0x0 PUSH2 0x159B JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x75A PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP7 DUP6 MSTORE DUP3 MSTORE SWAP3 DUP4 SWAP1 KECCAK256 DUP4 MLOAD PUSH1 0xA0 DUP2 ADD DUP6 MSTORE DUP2 SLOAD DUP7 AND DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0xFF AND ISZERO ISZERO SWAP4 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x3 DUP2 ADD SLOAD PUSH1 0x60 DUP4 ADD MSTORE SWAP1 SWAP2 ADD SLOAD SWAP1 SWAP3 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x7FF 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 0x4974656D206E6F7420666F722073616C65 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP1 PUSH1 0x20 ADD MLOAD CALLVALUE LT ISZERO PUSH2 0x84A 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 0x125B9CDD59999A58DA595B9D081C185E5B595B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP3 KECCAK256 PUSH1 0x2 ADD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE PUSH1 0x3 SLOAD SWAP1 DUP4 ADD MLOAD PUSH2 0x2710 SWAP2 PUSH2 0x88B SWAP2 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x895 SWAP2 SWAP1 PUSH2 0x18AE JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MLOAD SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x8BB JUMPI POP PUSH1 0x0 DUP4 PUSH1 0x60 ADD MLOAD GT JUMPDEST ISZERO PUSH2 0x8E4 JUMPI PUSH2 0x2710 DUP4 PUSH1 0x60 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD PUSH2 0x8D7 SWAP2 SWAP1 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x8E1 SWAP2 SWAP1 PUSH2 0x18AE JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x0 DUP2 DUP4 DUP6 PUSH1 0x20 ADD MLOAD PUSH2 0x8F7 SWAP2 SWAP1 PUSH2 0x18D0 JUMP JUMPDEST PUSH2 0x901 SWAP2 SWAP1 PUSH2 0x18D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE CALLER PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x952 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x966 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD PUSH1 0x0 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 POP DUP6 SWAP1 DUP4 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x9B9 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x9BE JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xA05 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x119959481D1C985B9CD9995C8819985A5B1959 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP3 ISZERO PUSH2 0xAB4 JUMPI PUSH1 0x0 DUP6 PUSH1 0x80 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xA5C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xA61 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xAB2 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 0x526F79616C7479207472616E73666572206661696C6564000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST POP JUMPDEST DUP5 MLOAD PUSH1 0x40 MLOAD PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP5 SWAP1 DUP4 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xB00 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xB05 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB4E 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 0x14D95B1B195C881C185E5B595B9D0819985A5B1959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP6 PUSH1 0x20 ADD MLOAD CALLVALUE GT ISZERO PUSH2 0xBF2 JUMPI PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x0 SWAP1 CALLER SWAP1 PUSH2 0xB6E SWAP1 CALLVALUE PUSH2 0x18D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xBAA JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xBF0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x1499599D5B990819985A5B1959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST POP JUMPDEST DUP6 MLOAD PUSH1 0x20 DUP1 DUP9 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND DUP2 MSTORE SWAP3 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE CALLER SWAP2 DUP10 SWAP2 SWAP1 DUP12 AND SWAP1 PUSH32 0x5478AD3F04F76C56CDCCDBF76C58BC9A46A20205D5264DA270A05E23CA683AC0 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP POP PUSH2 0x693 PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH2 0xC6B PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP7 DUP6 MSTORE DUP3 MSTORE SWAP3 DUP4 SWAP1 KECCAK256 DUP4 MLOAD PUSH1 0xA0 DUP2 ADD DUP6 MSTORE DUP2 SLOAD DUP7 AND DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0xFF AND ISZERO ISZERO SWAP4 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x3 DUP2 ADD SLOAD PUSH1 0x60 DUP4 ADD MSTORE SWAP1 SWAP2 ADD SLOAD SWAP1 SWAP3 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0xD0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x125D195B481B9BDD081B1A5CDD1959 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD60 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x13DB9B1E481CD95B1B195C8818D85B8818D85B98D95B PUSH1 0x52 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP8 DUP6 MSTORE SWAP1 SWAP2 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x2 ADD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE SWAP1 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE CALLER PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP5 SWAP1 MSTORE PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xDD4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xDE8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD CALLER SWAP3 POP DUP5 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 PUSH32 0xC448B641F9D136B2082A1543DDDDD8B6F8B86576BC444A187505EA3934BAC2F8 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP PUSH2 0x693 PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH2 0xE37 PUSH2 0x1541 JUMP JUMPDEST SELFBALANCE PUSH1 0x0 PUSH2 0xE4C PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xE96 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xE9B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x693 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 0x456D657267656E6379207769746864726177616C206661696C65640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0xFF AND PUSH2 0xF55 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x125D195B481B9BDD081B1A5CDD1959 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xFA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x4F6E6C792073656C6C65722063616E20757064617465 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xFF7 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 0x5072696365206D7573742062652067726561746572207468616E207A65726F00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 ADD SSTORE POP POP JUMP JUMPDEST PUSH2 0x1007 PUSH2 0x1541 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1051 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 0x125B9D985B1A59081C9958DA5C1A595B9D PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x2 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 0x107B PUSH2 0x1541 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x10E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH2 0x10E9 DUP2 PUSH2 0x159B JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x10F4 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x0 DUP4 GT PUSH2 0x1144 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 0x5072696365206D7573742062652067726561746572207468616E207A65726F00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH2 0x12C DUP3 GT ISZERO PUSH2 0x1196 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 0x526F79616C74792070657263656E7420746F6F20686967680000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE DUP6 SWAP1 CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x11DF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1203 SWAP2 SWAP1 PUSH2 0x18E3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x124B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x2737BA103A37B5B2B71037BBB732B9 PUSH1 0x89 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x20604BF PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x81812FC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1292 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x12B6 SWAP2 SWAP1 PUSH2 0x18E3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x1334 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0xE985E9C5 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xE985E9C5 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1310 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1334 SWAP2 SWAP1 PUSH2 0x1900 JUMP JUMPDEST PUSH2 0x1378 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 0x10DBDB9D1C9858DD081B9BDD08185C1C1C9BDD9959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13DA JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP PUSH1 0x4 PUSH1 0x0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB29A3C5D9C9EB8230BD277C54293A0A15E98CD5592A3E0D470FE9CE59FED54F1 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1527 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH2 0x153A PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x750 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SLOAD SUB PUSH2 0x163F 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 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5F3 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x166E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1679 DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1699 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x16B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x16D0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x16DB DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x16EB DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x170F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1723 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1732 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x1744 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x10E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1778 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1783 DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1793 DUP2 PUSH2 0x1757 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x17B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x17EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x16B1 DUP2 PUSH2 0x1646 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x180B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1816 DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1843 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x184E DUP2 PUSH2 0x1646 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x1873 DUP2 PUSH2 0x1646 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x56F JUMPI PUSH2 0x56F PUSH2 0x1881 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x18CB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x56F JUMPI PUSH2 0x56F PUSH2 0x1881 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x16B1 DUP2 PUSH2 0x1646 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1912 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x16B1 DUP2 PUSH2 0x1757 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0x5F72B3C481 0xC ORIGIN SWAP7 0xD0 PUSH19 0x97E886E89FAB60E273384BDE7B791759FB7A32 PUSH18 0x8564736F6C63430008130033000000000000 ","sourceMap":"413:7858:24:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;797:63;;;;;;;;;;-1:-1:-1;797:63:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;797:63:24;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;779:15:25;;;761:34;;826:2;811:18;;804:34;;;;881:14;;874:22;854:18;;;847:50;;;;928:2;913:18;;906:34;977:15;;;971:3;956:19;;949:44;710:3;695:19;797:63:24;;;;;;;;8024:207;;;;;;;;;;-1:-1:-1;8024:207:24;;;;;:::i;:::-;;:::i;:::-;;;1460:14:25;;1453:22;1435:41;;1423:2;1408:18;8024:207:24;1295:187:25;7817:199:24;;;;;;;;;;-1:-1:-1;7817:199:24;;;;;:::i;:::-;-1:-1:-1;;;7817:199:24;;;;;;;;;;;-1:-1:-1;;;;;;2590:33:25;;;2572:52;;2560:2;2545:18;7817:199:24;2428:202:25;474:35:24;;;;;;;;;;-1:-1:-1;474:35:24;;;;-1:-1:-1;;;;;474:35:24;;;;;;-1:-1:-1;;;;;2815:32:25;;;2797:51;;2785:2;2770:18;474:35:24;2635:219:25;6477:184:24;;;;;;;;;;-1:-1:-1;6477:184:24;;;;;:::i;:::-;;:::i;:::-;;7288:278;;;;;;;;;;;;;:::i;6077:185::-;;;;;;;;;;-1:-1:-1;6077:185:24;;;;;:::i;:::-;;:::i;6857:423::-;;;;;;;;;;-1:-1:-1;6857:423:24;;;;;:::i;:::-;;:::i;:::-;;;;4009:25:25;;;4065:2;4050:18;;4043:34;;;;4093:18;;;4086:34;3997:2;3982:18;6857:423:24;3807:319:25;1824:101:0;;;;;;;;;;;;;:::i;5515:554:24:-;;;;;;;;;;-1:-1:-1;5515:554:24;;;;;:::i;:::-;-1:-1:-1;;;;;5837:21:24;;;5637:14;5837:21;;;:8;:21;;;;;;;;:30;;;;;;;;;;5812:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5515:554;1201:85:0;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;2815:1755:24;;;;;;:::i;:::-;;:::i;516:28::-;;;;;;;;;;;;;;;;;;;4485:25:25;;;4473:2;4458:18;516:28:24;4339:177:25;4578:513:24;;;;;;;;;;-1:-1:-1;4578:513:24;;;;;:::i;:::-;;:::i;867:55::-;;;;;;;;;;-1:-1:-1;867:55:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;6669:180;;;;;;;;;;-1:-1:-1;6669:180:24;;;;;:::i;:::-;-1:-1:-1;;;;;6804:21:24;;;;6775:4;6804:21;;;:8;:21;;;;;;;;:30;;;;;;;:37;;;;;;6669:180;7574:235;;;;;;;;;;;;;:::i;5099:408::-;;;;;;;;;;-1:-1:-1;5099:408:24;;;;;:::i;:::-;;:::i;6270:199::-;;;;;;;;;;-1:-1:-1;6270:199:24;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;;;;;-1:-1:-1;2074:198:0;;;;;:::i;:::-;;:::i;1771:1036:24:-;;;;;;;;;;-1:-1:-1;1771:1036:24;;;;;:::i;:::-;;:::i;8024:207::-;8094:4;-1:-1:-1;;;;;;;;;8118:25:24;;;;:80;;-1:-1:-1;;;;;;;;;;8173:25:24;;;8118:80;8111:87;8024:207;-1:-1:-1;;8024:207:24:o;6477:184::-;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;6605:36:24;;;::::1;;::::0;;;:23:::1;:36;::::0;;;;:48;;-1:-1:-1;;6605:48:24::1;::::0;::::1;;::::0;;;::::1;::::0;;6477:184::o;7288:278::-;1094:13:0;:11;:13::i;:::-;7363:21:24::1;7403:11:::0;7395:46:::1;;;::::0;-1:-1:-1;;;7395:46:24;;6222:2:25;7395:46:24::1;::::0;::::1;6204:21:25::0;6261:2;6241:18;;;6234:30;-1:-1:-1;;;6280:18:25;;;6273:52;6342:18;;7395:46:24::1;;;;;;;;;7473:12;::::0;:37:::1;::::0;7455:12:::1;::::0;-1:-1:-1;;;;;7473:12:24::1;::::0;7498:7;;7455:12;7473:37;7455:12;7473:37;7498:7;7473:12;:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7454:56;;;7529:7;7521:37;;;::::0;-1:-1:-1;;;7521:37:24;;6783:2:25;7521:37:24::1;::::0;::::1;6765:21:25::0;6822:2;6802:18;;;6795:30;-1:-1:-1;;;6841:18:25;;;6834:47;6898:18;;7521:37:24::1;6581:341:25::0;7521:37:24::1;7334:232;;7288:278::o:0;6077:185::-;1094:13:0;:11;:13::i;:::-;6190:4:24::1;6170:16;:24;;6162:49;;;::::0;-1:-1:-1;;;6162:49:24;;7129:2:25;6162:49:24::1;::::0;::::1;7111:21:25::0;7168:2;7148:18;;;7141:30;-1:-1:-1;;;7187:18:25;;;7180:42;7239:18;;6162:49:24::1;6927:336:25::0;6162:49:24::1;6222:13;:32:::0;6077:185::o;6857:423::-;6986:22;7023:18;7056:20;7147:5;7130:13;;7122:5;:21;;;;:::i;:::-;7121:31;;;;:::i;:::-;7104:48;-1:-1:-1;7206:5:24;7177:25;7185:17;7177:5;:25;:::i;:::-;7176:35;;;;:::i;:::-;7163:48;-1:-1:-1;7163:48:24;7237:22;7245:14;7237:5;:22;:::i;:::-;:35;;;;:::i;:::-;7222:50;;6857:423;;;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2815:1755:24:-;2261:21:4;:19;:21::i;:::-;-1:-1:-1;;;;;2968:21:24;;::::1;2943:22;2968:21:::0;;;:8:::1;:21;::::0;;;;;;;:30;;;;;;;;;2943:55;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;;;;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;::::1;::::0;;;;3011:44:::1;;;::::0;-1:-1:-1;;;3011:44:24;;8130:2:25;3011:44:24::1;::::0;::::1;8112:21:25::0;8169:2;8149:18;;;8142:30;-1:-1:-1;;;8188:18:25;;;8181:47;8245:18;;3011:44:24::1;7928:341:25::0;3011:44:24::1;3087:7;:13;;;3074:9;:26;;3066:59;;;::::0;-1:-1:-1;;;3066:59:24;;8476:2:25;3066:59:24::1;::::0;::::1;8458:21:25::0;8515:2;8495:18;;;8488:30;-1:-1:-1;;;8534:18:25;;;8527:50;8594:18;;3066:59:24::1;8274:344:25::0;3066:59:24::1;-1:-1:-1::0;;;;;3138:21:24;::::1;3178:5;3138:21:::0;;;:8:::1;:21;::::0;;;;;;;:30;;;;;;;:37:::1;;:45:::0;;-1:-1:-1;;3138:45:24::1;::::0;;3238:13:::1;::::0;3222;;::::1;::::0;3255:5:::1;::::0;3222:29:::1;::::0;::::1;:::i;:::-;3221:39;;;;:::i;:::-;3310:24;::::0;::::1;::::0;3196:64;;-1:-1:-1;3271:18:24::1;::::0;-1:-1:-1;;;;;3310:38:24::1;::::0;;::::1;::::0;:71:::1;;;3380:1;3352:7;:25;;;:29;3310:71;3306:168;;;3457:5;3428:7;:25;;;3412:7;:13;;;:41;;;;:::i;:::-;3411:51;;;;:::i;:::-;3398:64;;3306:168;3486:22;3544:10;3527:14;3511:7;:13;;;:30;;;;:::i;:::-;:43;;;;:::i;:::-;3567:69;::::0;-1:-1:-1;;;3567:69:24;;3609:4:::1;3567:69;::::0;::::1;8863:34:25::0;3616:10:24::1;8913:18:25::0;;;8906:43;8965:18;;;8958:34;;;3486:68:24;;-1:-1:-1;;;;;;3567:33:24;::::1;::::0;::::1;::::0;8798:18:25;;3567:69:24::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;3671:12:24::1;::::0;:44:::1;::::0;3650:15:::1;::::0;-1:-1:-1;;;;;;3671:12:24;;::::1;::::0;-1:-1:-1;3696:14:24;;3650:15;3671:44;3650:15;3671:44;3696:14;3671:12;:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3649:66;;;3734:10;3726:42;;;::::0;-1:-1:-1;;;3726:42:24;;9205:2:25;3726:42:24::1;::::0;::::1;9187:21:25::0;9244:2;9224:18;;;9217:30;-1:-1:-1;;;9263:18:25;;;9256:49;9322:18;;3726:42:24::1;9003:343:25::0;3726:42:24::1;3785:14:::0;;3781:199:::1;;3817:19;3850:7;:24;;;-1:-1:-1::0;;;;;3842:38:24::1;3888:10;3842:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3816:87;;;3926:14;3918:50;;;::::0;-1:-1:-1;;;3918:50:24;;9553:2:25;3918:50:24::1;::::0;::::1;9535:21:25::0;9592:2;9572:18;;;9565:30;9631:25;9611:18;;;9604:53;9674:18;;3918:50:24::1;9351:347:25::0;3918:50:24::1;3801:179;3781:199;4025:14:::0;;4017:55:::1;::::0;3993:18:::1;::::0;-1:-1:-1;;;;;4017:28:24::1;::::0;4053:14;;3993:18;4017:55;3993:18;4017:55;4053:14;4017:28;:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3992:80;;;4091:13;4083:47;;;::::0;-1:-1:-1;;;4083:47:24;;9905:2:25;4083:47:24::1;::::0;::::1;9887:21:25::0;9944:2;9924:18;;;9917:30;-1:-1:-1;;;9963:18:25;;;9956:51;10024:18;;4083:47:24::1;9703:345:25::0;4083:47:24::1;4159:7;:13;;;4147:9;:25;4143:199;;;4258:13;::::0;::::1;::::0;4190:18:::1;::::0;4222:10:::1;::::0;4246:25:::1;::::0;:9:::1;:25;:::i;:::-;4214:62;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4189:87;;;4299:13;4291:39;;;::::0;-1:-1:-1;;;4291:39:24;;10255:2:25;4291:39:24::1;::::0;::::1;10237:21:25::0;10294:2;10274:18;;;10267:30;-1:-1:-1;;;10313:18:25;;;10306:43;10366:18;;4291:39:24::1;10053:337:25::0;4291:39:24::1;4174:168;4143:199;4455:14:::0;;4484:13:::1;::::0;;::::1;::::0;4359:203:::1;::::0;;-1:-1:-1;;;;;10644:32:25;;;10626:51;;10693:18;;;10686:34;;;;10736:18;;10729:34;;;10794:2;10779:18;;10772:34;;;4430:10:24::1;::::0;4408:7;;4359:203;;::::1;::::0;::::1;::::0;10613:3:25;10598:19;4359:203:24::1;;;;;;;2932:1638;;;;;;2303:20:4::0;1716:1;2809:7;:22;2629:209;4578:513:24;2261:21:4;:19;:21::i;:::-;-1:-1:-1;;;;;4720:21:24;;::::1;4695:22;4720:21:::0;;;:8:::1;:21;::::0;;;;;;;:30;;;;;;;;;4695:55;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;;;;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;::::1;::::0;;;;4763:42:::1;;;::::0;-1:-1:-1;;;4763:42:24;;11019:2:25;4763:42:24::1;::::0;::::1;11001:21:25::0;11058:2;11038:18;;;11031:30;-1:-1:-1;;;11077:18:25;;;11070:45;11132:18;;4763:42:24::1;10817:339:25::0;4763:42:24::1;4824:14:::0;;-1:-1:-1;;;;;4824:28:24::1;4842:10;4824:28;4816:63;;;::::0;-1:-1:-1;;;4816:63:24;;11363:2:25;4816:63:24::1;::::0;::::1;11345:21:25::0;11402:2;11382:18;;;11375:30;-1:-1:-1;;;11421:18:25;;;11414:52;11483:18;;4816:63:24::1;11161:346:25::0;4816:63:24::1;-1:-1:-1::0;;;;;4892:21:24;::::1;4932:5;4892:21:::0;;;:8:::1;:21;::::0;;;;;;;:30;;;;;;;;;;:37:::1;;:45:::0;;-1:-1:-1;;4892:45:24::1;::::0;;4950:69;;-1:-1:-1;;;4950:69:24;;4992:4:::1;4950:69:::0;;::::1;8863:34:25::0;;;;4999:10:24::1;8913:18:25::0;;;8906:43;8965:18;;;8958:34;;;4950:33:24::1;::::0;8798:18:25;;4950:69:24::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;5037:46:24::1;::::0;5072:10:::1;::::0;-1:-1:-1;5063:7:24;;-1:-1:-1;;;;;;5037:46:24;::::1;::::0;::::1;::::0;;;::::1;4684:407;2303:20:4::0;1716:1;2809:7;:22;2629:209;7574:235:24;1094:13:0;:11;:13::i;:::-;7651:21:24::1;7633:15;7710:7;1273:6:0::0;;-1:-1:-1;;;;;1273:6:0;;1201:85;7710:7:24::1;-1:-1:-1::0;;;;;7702:21:24::1;7731:7;7702:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7683:60;;;7762:7;7754:47;;;::::0;-1:-1:-1;;;7754:47:24;;11714:2:25;7754:47:24::1;::::0;::::1;11696:21:25::0;11753:2;11733:18;;;11726:30;11792:29;11772:18;;;11765:57;11839:18;;7754:47:24::1;11512:351:25::0;5099:408:24;-1:-1:-1;;;;;5236:21:24;;5210:23;5236:21;;;:8;:21;;;;;;;;:30;;;;;;;;5287:14;;;;;;5279:42;;;;-1:-1:-1;;;5279:42:24;;11019:2:25;5279:42:24;;;11001:21:25;11058:2;11038:18;;;11031:30;-1:-1:-1;;;11077:18:25;;;11070:45;11132:18;;5279:42:24;10817:339:25;5279:42:24;5340:14;;-1:-1:-1;;;;;5340:14:24;5358:10;5340:28;5332:63;;;;-1:-1:-1;;;5332:63:24;;12070:2:25;5332:63:24;;;12052:21:25;12109:2;12089:18;;;12082:30;-1:-1:-1;;;12128:18:25;;;12121:52;12190:18;;5332:63:24;11868:346:25;5332:63:24;5425:1;5414:8;:12;5406:56;;;;-1:-1:-1;;;5406:56:24;;12421:2:25;5406:56:24;;;12403:21:25;12460:2;12440:18;;;12433:30;12499:33;12479:18;;;12472:61;12550:18;;5406:56:24;12219:355:25;5406:56:24;5475:13;;:24;-1:-1:-1;;5099:408:24:o;6270:199::-;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;6369:29:24;::::1;6361:59;;;::::0;-1:-1:-1;;;6361:59:24;;12781:2:25;6361:59:24::1;::::0;::::1;12763:21:25::0;12820:2;12800:18;;;12793:30;-1:-1:-1;;;12839:18:25;;;12832:47;12896:18;;6361:59:24::1;12579:341:25::0;6361:59:24::1;6431:12;:30:::0;;-1:-1:-1;;;;;;6431:30:24::1;-1:-1:-1::0;;;;;6431:30:24;;;::::1;::::0;;;::::1;::::0;;6270:199::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;13127:2:25;2154:73:0::1;::::0;::::1;13109:21:25::0;13166:2;13146:18;;;13139:30;13205:34;13185:18;;;13178:62;-1:-1:-1;;;13256:18:25;;;13249:36;13302:19;;2154:73:0::1;12925:402:25::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1771:1036:24:-;2261:21:4;:19;:21::i;:::-;1996:1:24::1;1988:5;:9;1980:53;;;::::0;-1:-1:-1;;;1980:53:24;;12421:2:25;1980:53:24::1;::::0;::::1;12403:21:25::0;12460:2;12440:18;;;12433:30;12499:33;12479:18;;;12472:61;12550:18;;1980:53:24::1;12219:355:25::0;1980:53:24::1;2073:3;2052:17;:24;;2044:61;;;::::0;-1:-1:-1;;;2044:61:24;;13534:2:25;2044:61:24::1;::::0;::::1;13516:21:25::0;13573:2;13553:18;;;13546:30;13612:26;13592:18;;;13585:54;13656:18;;2044:61:24::1;13332:348:25::0;2044:61:24::1;2171:20;::::0;-1:-1:-1;;;2171:20:24;;::::1;::::0;::::1;4485:25:25::0;;;2140:11:24;;2195:10:::1;::::0;-1:-1:-1;;;;;2171:11:24;::::1;::::0;::::1;::::0;4458:18:25;;2171:20:24::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2171:34:24::1;;2163:62;;;::::0;-1:-1:-1;;;2163:62:24;;14143:2:25;2163:62:24::1;::::0;::::1;14125:21:25::0;14182:2;14162:18;;;14155:30;-1:-1:-1;;;14201:18:25;;;14194:45;14256:18;;2163:62:24::1;13941:339:25::0;2163:62:24::1;2258:24;::::0;-1:-1:-1;;;2258:24:24;;::::1;::::0;::::1;4485:25:25::0;;;2294:4:24::1;::::0;-1:-1:-1;;;;;2258:15:24;::::1;::::0;::::1;::::0;4458:18:25;;2258:24:24::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2258:41:24::1;;:105;;;-1:-1:-1::0;2316:47:24::1;::::0;-1:-1:-1;;;2316:47:24;;2337:10:::1;2316:47;::::0;::::1;14497:34:25::0;2357:4:24::1;14547:18:25::0;;;14540:43;-1:-1:-1;;;;;2316:20:24;::::1;::::0;::::1;::::0;14432:18:25;;2316:47:24::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2236:176;;;::::0;-1:-1:-1;;;2236:176:24;;15046:2:25;2236:176:24::1;::::0;::::1;15028:21:25::0;15085:2;15065:18;;;15058:30;-1:-1:-1;;;15104:18:25;;;15097:51;15165:18;;2236:176:24::1;14844:345:25::0;2236:176:24::1;2425:52;::::0;-1:-1:-1;;;2425:52:24;;2442:10:::1;2425:52;::::0;::::1;8863:34:25::0;2462:4:24::1;8913:18:25::0;;;8906:43;8965:18;;;8958:34;;;-1:-1:-1;;;;;2425:16:24;::::1;::::0;::::1;::::0;8798:18:25;;2425:52:24::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;2523:207;;;;;;;;2554:10;-1:-1:-1::0;;;;;2523:207:24::1;;;;;2586:5;2523:207;;;;2614:4;2523:207;;;;;;2652:17;2523:207;;;;2702:16;-1:-1:-1::0;;;;;2523:207:24::1;;;::::0;2490:8:::1;:21;2499:11;-1:-1:-1::0;;;;;2490:21:24::1;-1:-1:-1::0;;;;;2490:21:24::1;;;;;;;;;;;;:30;2512:7;2490:30;;;;;;;;;;;:240;;;;;;;;;;;;;-1:-1:-1::0;;;;;2490:240:24::1;;;;;-1:-1:-1::0;;;;;2490:240:24::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;2490:240:24::1;;;;;-1:-1:-1::0;;;;;2490:240:24::1;;;;;;;;;2781:10;-1:-1:-1::0;;;;;2748:51:24::1;2772:7;2759:11;-1:-1:-1::0;;;;;2748:51:24::1;;2793:5;2748:51;;;;4485:25:25::0;;4473:2;4458:18;;4339:177;2748:51:24::1;;;;;;;;1969:838;2303:20:4::0;1716:1;2809:7;:22;2629:209;2303:20;1771:1036:24;;;;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;734:10:15;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;15396:2:25;1414:68:0;;;15378:21:25;;;15415:18;;;15408:30;15474:34;15454:18;;;15447:62;15526:18;;1414:68:0;15194:356:25;2426:187:0;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;2336:287:4:-;1759:1;2468:7;;:19;2460:63;;;;-1:-1:-1;;;2460:63:4;;15757:2:25;2460:63:4;;;15739:21:25;15796:2;15776:18;;;15769:30;15835:33;15815:18;;;15808:61;15886:18;;2460:63:4;15555:355:25;2460:63:4;1759:1;2598:7;:18;2336:287::o;14:131:25:-;-1:-1:-1;;;;;89:31:25;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:25:o;1004:286::-;1062:6;1115:2;1103:9;1094:7;1090:23;1086:32;1083:52;;;1131:1;1128;1121:12;1083:52;1157:23;;-1:-1:-1;;;;;;1209:32:25;;1199:43;;1189:71;;1256:1;1253;1246:12;1189:71;1279:5;1004:286;-1:-1:-1;;;1004:286:25:o;1487:936::-;1584:6;1592;1600;1608;1616;1669:3;1657:9;1648:7;1644:23;1640:33;1637:53;;;1686:1;1683;1676:12;1637:53;1725:9;1712:23;1744:31;1769:5;1744:31;:::i;:::-;1794:5;-1:-1:-1;1851:2:25;1836:18;;1823:32;1864:33;1823:32;1864:33;:::i;:::-;1916:7;-1:-1:-1;1970:2:25;1955:18;;1942:32;;-1:-1:-1;2025:2:25;2010:18;;1997:32;2048:18;2078:14;;;2075:34;;;2105:1;2102;2095:12;2075:34;2143:6;2132:9;2128:22;2118:32;;2188:7;2181:4;2177:2;2173:13;2169:27;2159:55;;2210:1;2207;2200:12;2159:55;2250:2;2237:16;2276:2;2268:6;2265:14;2262:34;;;2292:1;2289;2282:12;2262:34;2337:7;2332:2;2323:6;2319:2;2315:15;2311:24;2308:37;2305:57;;;2358:1;2355;2348:12;2305:57;1487:936;;;;-1:-1:-1;1487:936:25;;-1:-1:-1;2389:2:25;2381:11;;2411:6;1487:936;-1:-1:-1;;;1487:936:25:o;2859:118::-;2945:5;2938:13;2931:21;2924:5;2921:32;2911:60;;2967:1;2964;2957:12;2982:382;3047:6;3055;3108:2;3096:9;3087:7;3083:23;3079:32;3076:52;;;3124:1;3121;3114:12;3076:52;3163:9;3150:23;3182:31;3207:5;3182:31;:::i;:::-;3232:5;-1:-1:-1;3289:2:25;3274:18;;3261:32;3302:30;3261:32;3302:30;:::i;:::-;3351:7;3341:17;;;2982:382;;;;;:::o;3369:180::-;3428:6;3481:2;3469:9;3460:7;3456:23;3452:32;3449:52;;;3497:1;3494;3487:12;3449:52;-1:-1:-1;3520:23:25;;3369:180;-1:-1:-1;3369:180:25:o;3554:248::-;3622:6;3630;3683:2;3671:9;3662:7;3658:23;3654:32;3651:52;;;3699:1;3696;3689:12;3651:52;-1:-1:-1;;3722:23:25;;;3792:2;3777:18;;;3764:32;;-1:-1:-1;3554:248:25:o;4521:247::-;4580:6;4633:2;4621:9;4612:7;4608:23;4604:32;4601:52;;;4649:1;4646;4639:12;4601:52;4688:9;4675:23;4707:31;4732:5;4707:31;:::i;4773:383::-;4850:6;4858;4866;4919:2;4907:9;4898:7;4894:23;4890:32;4887:52;;;4935:1;4932;4925:12;4887:52;4974:9;4961:23;4993:31;5018:5;4993:31;:::i;:::-;5043:5;5095:2;5080:18;;5067:32;;-1:-1:-1;5146:2:25;5131:18;;;5118:32;;4773:383;-1:-1:-1;;;4773:383:25:o;5421:594::-;5516:6;5524;5532;5540;5548;5601:3;5589:9;5580:7;5576:23;5572:33;5569:53;;;5618:1;5615;5608:12;5569:53;5657:9;5644:23;5676:31;5701:5;5676:31;:::i;:::-;5726:5;-1:-1:-1;5778:2:25;5763:18;;5750:32;;-1:-1:-1;5829:2:25;5814:18;;5801:32;;-1:-1:-1;5880:2:25;5865:18;;5852:32;;-1:-1:-1;5936:3:25;5921:19;;5908:33;5950;5908;5950;:::i;:::-;6002:7;5992:17;;;5421:594;;;;;;;;:::o;7268:127::-;7329:10;7324:3;7320:20;7317:1;7310:31;7360:4;7357:1;7350:15;7384:4;7381:1;7374:15;7400:168;7473:9;;;7504;;7521:15;;;7515:22;;7501:37;7491:71;;7542:18;;:::i;7573:217::-;7613:1;7639;7629:132;;7683:10;7678:3;7674:20;7671:1;7664:31;7718:4;7715:1;7708:15;7746:4;7743:1;7736:15;7629:132;-1:-1:-1;7775:9:25;;7573:217::o;7795:128::-;7862:9;;;7883:11;;;7880:37;;;7897:18;;:::i;13685:251::-;13755:6;13808:2;13796:9;13787:7;13783:23;13779:32;13776:52;;;13824:1;13821;13814:12;13776:52;13856:9;13850:16;13875:31;13900:5;13875:31;:::i;14594:245::-;14661:6;14714:2;14702:9;14693:7;14689:23;14685:32;14682:52;;;14730:1;14727;14720:12;14682:52;14762:9;14756:16;14781:28;14803:5;14781:28;:::i"},"methodIdentifiers":{"buyItem(address,uint256)":"9f37092a","calculateFees(uint256,uint256)":"7096335b","cancelListing(address,uint256)":"b2ddee06","emergencyWithdraw()":"db2e21bc","feePercentage()":"a001ecdd","feeRecipient()":"46904840","getListing(address,uint256)":"88700d1c","isListed(address,uint256)":"cdb3cd25","listItem(address,uint256,uint256,uint256,address)":"f3fee54a","listings(address,uint256)":"0007df30","onERC721Received(address,address,uint256,bytes)":"150b7a02","owner()":"8da5cb5b","renounceOwnership()":"715018a6","supportedTokenStandards(address)":"cbdb7b8d","supportsInterface(bytes4)":"01ffc9a7","transferOwnership(address)":"f2fde38b","updateFeePercentage(uint256)":"6cad3fb0","updateFeeRecipient(address)":"f160d369","updatePrice(address,uint256,uint256)":"e57d6fb7","updateSupportedTokenStandard(address,bool)":"58a72ad0","withdrawBalance()":"5fd8c710"}},"metadata":"{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"_feeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_feePercentage\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"}],\"name\":\"ItemCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"}],\"name\":\"ItemListed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"buyer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"marketplaceFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"royaltyFee\",\"type\":\"uint256\"}],\"name\":\"ItemSold\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"buyItem\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"royaltyPercentage\",\"type\":\"uint256\"}],\"name\":\"calculateFees\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"marketplaceFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"royaltyFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"sellerAmount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"cancelListing\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"emergencyWithdraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"feePercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"feeRecipient\",\"outputs\":[{\"internalType\":\"address payable\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getListing\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"active\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"royaltyPercentage\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"royaltyRecipient\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"isListed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"royaltyPercentage\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"royaltyRecipient\",\"type\":\"address\"}],\"name\":\"listItem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"listings\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"active\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"royaltyPercentage\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"royaltyRecipient\",\"type\":\"address\"}],\"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\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"supportedTokenStandards\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newFeePercentage\",\"type\":\"uint256\"}],\"name\":\"updateFeePercentage\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"newFeeRecipient\",\"type\":\"address\"}],\"name\":\"updateFeeRecipient\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"newPrice\",\"type\":\"uint256\"}],\"name\":\"updatePrice\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nftContract\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"supported\",\"type\":\"bool\"}],\"name\":\"updateSupportedTokenStandard\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"withdrawBalance\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Core NFT Marketplace for ERC721 and ERC1155 with royalty support\",\"kind\":\"dev\",\"methods\":{\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"title\":\"NFTMarketplace\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/NFTMarketplace.sol\":\"NFTMarketplace\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41319e7f621f2dc3733511332c4fd032f8e32ad2aa7fd6f665c19741d9941a34\",\"dweb:/ipfs/QmcYR3bd862GD1Bc7jwrU9bGxrhUu5na1oP964bDCu2id1\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155.sol\":{\"keccak256\":\"0xcab667ddad478ff0d39c2053ca77fac778af8483c18ab07d810277b4216fd582\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://919c7ea27c77275c3c341da0c4a26a66a20ed27605fbe8becf11f58ec3bc65bf\",\"dweb:/ipfs/QmRLKyVE2n7e2Jo4bLNn8eLgqqhNGYnVQyjJPWdr8poskf\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5bce51e11f7d194b79ea59fe00c9e8de9fa2c5530124960f29a24d4c740a3266\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e66dfde185df46104c11bc89d08fa0760737aa59a2b8546a656473d810a8ea4\",\"dweb:/ipfs/QmXvyqtXPaPss2PD7eqPoSao5Szm2n6UMoiG8TZZDjmChR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"contracts/NFTMarketplace.sol\":{\"keccak256\":\"0x62fd25673278c9b9ada7518bdd55d05b40229b8b96c6d777d2ae263f095c2f50\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://02cf3728eeccb7916d940813c889ce79bb2af51e6a5843db18666b8c0c404be9\",\"dweb:/ipfs/Qmf2og3QPyPQndcjhDGH4ehVdGBenH4b826FJt4hqNjVTi\"]}},\"version\":1}"}}}}}