ETH Price: $2,971.65 (+2.45%)
Gas: 1 Gwei

Token

 

Overview

Max Total Supply

0

Holders

145

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xcc99489be87f4efa26919d918995c09a7a688677
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TimeswapV2Token

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 27 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev 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._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev 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.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    ) public view virtual override returns (uint256[] memory) {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `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.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address to, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address from, uint256 id, uint256 amount) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address from, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 2 of 27 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev 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.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 3 of 27 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev 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}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] calldata accounts,
        uint256[] calldata ids
    ) external view returns (uint256[] memory);

    /**
     * @dev 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.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev 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.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev 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.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 4 of 27 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev 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).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev 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).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 5 of 27 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 6 of 27 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 7 of 27 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev 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.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 8 of 27 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev 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}.
 */
interface IERC165 {
    /**
     * @dev 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.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 9 of 27 : Error.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

/// @title Library for errors
/// @author Timeswap Labs
/// @dev Common error messages
library Error {
  /// @dev Reverts when input is zero.
  error ZeroInput();

  /// @dev Reverts when output is zero.
  error ZeroOutput();

  /// @dev Reverts when a value cannot be zero.
  error CannotBeZero();

  /// @dev Reverts when a pool already have liquidity.
  /// @param liquidity The liquidity amount that already existed in the pool.
  error AlreadyHaveLiquidity(uint160 liquidity);

  /// @dev Reverts when a pool requires liquidity.
  error RequireLiquidity();

  /// @dev Reverts when a given address is the zero address.
  error ZeroAddress();

  /// @dev Reverts when the maturity given is not withing uint96.
  /// @param maturity The maturity being inquired.
  error IncorrectMaturity(uint256 maturity);

  /// @dev Reverts when an option of given strike and maturity is still inactive.
  /// @param strike The chosen strike.
  /// @param maturity The chosen maturity.
  error InactiveOption(uint256 strike, uint256 maturity);

  /// @dev Reverts when a pool of given strike and maturity is still inactive.
  /// @param strike The chosen strike.
  /// @param maturity The chosen maturity.
  error InactivePool(uint256 strike, uint256 maturity);

  /// @dev Reverts when a liquidity token is inactive.
  error InactiveLiquidityTokenChoice();

  /// @dev Reverts when the square root interest rate is zero.
  /// @param strike The chosen strike.
  /// @param maturity The chosen maturity.
  error ZeroSqrtInterestRate(uint256 strike, uint256 maturity);

  /// @dev Reverts when the maturity is already matured.
  /// @param maturity The maturity.
  /// @param blockTimestamp The current block timestamp.
  error AlreadyMatured(uint256 maturity, uint96 blockTimestamp);

  /// @dev Reverts when the maturity is still active.
  /// @param maturity The maturity.
  /// @param blockTimestamp The current block timestamp.
  error StillActive(uint256 maturity, uint96 blockTimestamp);

  /// @dev Token amount not received.
  /// @param minuend The amount being subtracted.
  /// @param subtrahend The amount subtracting.
  error NotEnoughReceived(uint256 minuend, uint256 subtrahend);

  /// @dev The deadline of a transaction has been reached.
  /// @param deadline The deadline set.
  error DeadlineReached(uint256 deadline);

  /// @dev Reverts when input is zero.
  function zeroInput() internal pure {
    revert ZeroInput();
  }

  /// @dev Reverts when output is zero.
  function zeroOutput() internal pure {
    revert ZeroOutput();
  }

  /// @dev Reverts when a value cannot be zero.
  function cannotBeZero() internal pure {
    revert CannotBeZero();
  }

  /// @dev Reverts when a pool already have liquidity.
  /// @param liquidity The liquidity amount that already existed in the pool.
  function alreadyHaveLiquidity(uint160 liquidity) internal pure {
    revert AlreadyHaveLiquidity(liquidity);
  }

  /// @dev Reverts when a pool requires liquidity.
  function requireLiquidity() internal pure {
    revert RequireLiquidity();
  }

  /// @dev Reverts when a given address is the zero address.
  function zeroAddress() internal pure {
    revert ZeroAddress();
  }

  /// @dev Reverts when the maturity given is not withing uint96.
  /// @param maturity The maturity being inquired.
  function incorrectMaturity(uint256 maturity) internal pure {
    revert IncorrectMaturity(maturity);
  }

  /// @dev Reverts when the maturity is already matured.
  /// @param maturity The maturity.
  /// @param blockTimestamp The current block timestamp.
  function alreadyMatured(uint256 maturity, uint96 blockTimestamp) internal pure {
    revert AlreadyMatured(maturity, blockTimestamp);
  }

  /// @dev Reverts when the maturity is still active.
  /// @param maturity The maturity.
  /// @param blockTimestamp The current block timestamp.
  function stillActive(uint256 maturity, uint96 blockTimestamp) internal pure {
    revert StillActive(maturity, blockTimestamp);
  }

  /// @dev The deadline of a transaction has been reached.
  /// @param deadline The deadline set.
  function deadlineReached(uint256 deadline) internal pure {
    revert DeadlineReached(deadline);
  }

  /// @dev Reverts when an option of given strike and maturity is still inactive.
  /// @param strike The chosen strike.
  function inactiveOptionChoice(uint256 strike, uint256 maturity) internal pure {
    revert InactiveOption(strike, maturity);
  }

  /// @dev Reverts when a pool of given strike and maturity is still inactive.
  /// @param strike The chosen strike.
  /// @param maturity The chosen maturity.
  function inactivePoolChoice(uint256 strike, uint256 maturity) internal pure {
    revert InactivePool(strike, maturity);
  }

  /// @dev Reverts when the square root interest rate is zero.
  /// @param strike The chosen strike.
  /// @param maturity The chosen maturity.
  function zeroSqrtInterestRate(uint256 strike, uint256 maturity) internal pure {
    revert ZeroSqrtInterestRate(strike, maturity);
  }

  /// @dev Reverts when a liquidity token is inactive.
  function inactiveLiquidityTokenChoice() internal pure {
    revert InactiveLiquidityTokenChoice();
  }

  /// @dev Reverts when token amount not received.
  /// @param balance The balance amount being subtracted.
  /// @param balanceTarget The amount target.
  function checkEnough(uint256 balance, uint256 balanceTarget) internal pure {
    if (balance < balanceTarget) revert NotEnoughReceived(balance, balanceTarget);
  }
}

File 10 of 27 : Position.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

/// @dev The three type of native token positions.
/// @dev Long0 is denominated as the underlying Token0.
/// @dev Long1 is denominated as the underlying Token1.
/// @dev When strike greater than uint128 then Short is denominated as Token0 (the base token denomination).
/// @dev When strike is uint128 then Short is denominated as Token1 (the base token denomination).
enum TimeswapV2OptionPosition {
  Long0,
  Long1,
  Short
}

/// @title library for position utils
/// @author Timeswap Labs
/// @dev Helper functions for the TimeswapOptionPosition enum.
library PositionLibrary {
  /// @dev Reverts when the given type of position is invalid.
  error InvalidPosition();

  /// @dev Checks that the position input is correct.
  /// @param position The position input.
  function check(TimeswapV2OptionPosition position) internal pure {
    if (uint256(position) >= 3) revert InvalidPosition();
  }
}

File 11 of 27 : Transaction.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

/// @dev The different input for the mint transaction.
enum TimeswapV2OptionMint {
  GivenTokensAndLongs,
  GivenShorts
}

/// @dev The different input for the burn transaction.
enum TimeswapV2OptionBurn {
  GivenTokensAndLongs,
  GivenShorts
}

/// @dev The different input for the swap transaction.
enum TimeswapV2OptionSwap {
  GivenToken0AndLong0,
  GivenToken1AndLong1
}

/// @dev The different input for the collect transaction.
enum TimeswapV2OptionCollect {
  GivenShort,
  GivenToken0,
  GivenToken1
}

/// @title library for transaction checks
/// @author Timeswap Labs
/// @dev Helper functions for the all enums in this module.
library TransactionLibrary {
  /// @dev Reverts when the given type of transaction is invalid.
  error InvalidTransaction();

  /// @dev checks that the given input is correct.
  /// @param transaction the mint transaction input.
  function check(TimeswapV2OptionMint transaction) internal pure {
    if (uint256(transaction) >= 2) revert InvalidTransaction();
  }

  /// @dev checks that the given input is correct.
  /// @param transaction the burn transaction input.
  function check(TimeswapV2OptionBurn transaction) internal pure {
    if (uint256(transaction) >= 2) revert InvalidTransaction();
  }

  /// @dev checks that the given input is correct.
  /// @param transaction the swap transaction input.
  function check(TimeswapV2OptionSwap transaction) internal pure {
    if (uint256(transaction) >= 2) revert InvalidTransaction();
  }

  /// @dev checks that the given input is correct.
  /// @param transaction the collect transaction input.
  function check(TimeswapV2OptionCollect transaction) internal pure {
    if (uint256(transaction) >= 3) revert InvalidTransaction();
  }
}

File 12 of 27 : ITimeswapV2Option.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {TimeswapV2OptionPosition} from "../enums/Position.sol";
import {TimeswapV2OptionMintParam, TimeswapV2OptionBurnParam, TimeswapV2OptionSwapParam, TimeswapV2OptionCollectParam} from "../structs/Param.sol";
import {StrikeAndMaturity} from "../structs/StrikeAndMaturity.sol";

/// @title An interface for a contract that deploys Timeswap V2 Option pair contracts
/// @notice A Timeswap V2 Option pair facilitates option mechanics between any two assets that strictly conform
/// to the ERC20 specification.
interface ITimeswapV2Option {
  /* ===== EVENT ===== */

  /// @dev Emits when a position is transferred.
  /// @param strike The strike ratio of token1 per token0 of the position.
  /// @param maturity The maturity of the position.
  /// @param from The address of the caller of the transferPosition function.
  /// @param to The address of the recipient of the position.
  /// @param position The type of position transferred. More information in the Position module.
  /// @param amount The amount of balance transferred.
  event TransferPosition(
    uint256 indexed strike,
    uint256 indexed maturity,
    address from,
    address to,
    TimeswapV2OptionPosition position,
    uint256 amount
  );

  /// @dev Emits when a mint transaction is called.
  /// @param strike The strike ratio of token1 per token0 of the option.
  /// @param maturity The maturity of the option.
  /// @param caller The address of the caller of the mint function.
  /// @param long0To The address of the recipient of long token0 position.
  /// @param long1To The address of the recipient of long token1 position.
  /// @param shortTo The address of the recipient of short position.
  /// @param token0AndLong0Amount The amount of token0 deposited and long0 minted.
  /// @param token1AndLong1Amount The amount of token1 deposited and long1 minted.
  /// @param shortAmount The amount of short minted.
  event Mint(
    uint256 indexed strike,
    uint256 indexed maturity,
    address indexed caller,
    address long0To,
    address long1To,
    address shortTo,
    uint256 token0AndLong0Amount,
    uint256 token1AndLong1Amount,
    uint256 shortAmount
  );

  /// @dev Emits when a burn transaction is called.
  /// @param strike The strike ratio of token1 per token0 of the option.
  /// @param maturity The maturity of the option.
  /// @param caller The address of the caller of the mint function.
  /// @param token0To The address of the recipient of token0.
  /// @param token1To The address of the recipient of token1.
  /// @param token0AndLong0Amount The amount of token0 withdrawn and long0 burnt.
  /// @param token1AndLong1Amount The amount of token1 withdrawn and long1 burnt.
  /// @param shortAmount The amount of short burnt.
  event Burn(
    uint256 indexed strike,
    uint256 indexed maturity,
    address indexed caller,
    address token0To,
    address token1To,
    uint256 token0AndLong0Amount,
    uint256 token1AndLong1Amount,
    uint256 shortAmount
  );

  /// @dev Emits when a swap transaction is called.
  /// @param strike The strike ratio of token1 per token0 of the option.
  /// @param maturity The maturity of the option.
  /// @param caller The address of the caller of the mint function.
  /// @param tokenTo The address of the recipient of token0 or token1.
  /// @param longTo The address of the recipient of long token0 or long token1.
  /// @param isLong0toLong1 The direction of the swap. More information in the Transaction module.
  /// @param token0AndLong0Amount If the direction is from long0 to long1, the amount of token0 withdrawn and long0 burnt.
  /// If the direction is from long1 to long0, the amount of token0 deposited and long0 minted.
  /// @param token1AndLong1Amount If the direction is from long0 to long1, the amount of token1 deposited and long1 minted.
  /// If the direction is from long1 to long0, the amount of token1 withdrawn and long1 burnt.
  event Swap(
    uint256 indexed strike,
    uint256 indexed maturity,
    address indexed caller,
    address tokenTo,
    address longTo,
    bool isLong0toLong1,
    uint256 token0AndLong0Amount,
    uint256 token1AndLong1Amount
  );

  /// @dev Emits when a collect transaction is called.
  /// @param strike The strike ratio of token1 per token0 of the option.
  /// @param maturity The maturity of the option.
  /// @param caller The address of the caller of the mint function.
  /// @param token0To The address of the recipient of token0.
  /// @param token1To The address of the recipient of token1.
  /// @param long0AndToken0Amount The amount of token0 withdrawn.
  /// @param long1AndToken1Amount The amount of token1 withdrawn.
  /// @param shortAmount The amount of short burnt.
  event Collect(
    uint256 indexed strike,
    uint256 indexed maturity,
    address indexed caller,
    address token0To,
    address token1To,
    uint256 long0AndToken0Amount,
    uint256 long1AndToken1Amount,
    uint256 shortAmount
  );

  /* ===== VIEW ===== */

  /// @dev Returns the factory address that deployed this contract.
  function optionFactory() external view returns (address);

  /// @dev Returns the first ERC20 token address of the pair.
  function token0() external view returns (address);

  /// @dev Returns the second ERC20 token address of the pair.
  function token1() external view returns (address);

  /// @dev Get the strike and maturity of the option in the option enumeration list.
  /// @param id The chosen index.
  function getByIndex(uint256 id) external view returns (StrikeAndMaturity memory);

  /// @dev Number of options being interacted.
  function numberOfOptions() external view returns (uint256);

  /// @dev Returns the total position of the option.
  /// @param strike The strike ratio of token1 per token0 of the position.
  /// @param maturity The maturity of the position.
  /// @param position The type of position inquired. More information in the Position module.
  /// @return balance The total position.
  function totalPosition(
    uint256 strike,
    uint256 maturity,
    TimeswapV2OptionPosition position
  ) external view returns (uint256 balance);

  /// @dev Returns the position of an owner of the option.
  /// @param strike The strike ratio of token1 per token0 of the position.
  /// @param maturity The maturity of the position.
  /// @param owner The address of the owner of the position.
  /// @param position The type of position inquired. More information in the Position module.
  /// @return balance The user position.
  function positionOf(
    uint256 strike,
    uint256 maturity,
    address owner,
    TimeswapV2OptionPosition position
  ) external view returns (uint256 balance);

  /* ===== UPDATE ===== */

  /// @dev Transfer position to another address.
  /// @param strike The strike ratio of token1 per token0 of the position.
  /// @param maturity The maturity of the position.
  /// @param to The address of the recipient of the position.
  /// @param position The type of position transferred. More information in the Position module.
  /// @param amount The amount of balance transferred.
  function transferPosition(
    uint256 strike,
    uint256 maturity,
    address to,
    TimeswapV2OptionPosition position,
    uint256 amount
  ) external;

  /// @dev Mint position.
  /// Mint long token0 position when token0 is deposited.
  /// Mint long token1 position when token1 is deposited.
  /// @dev Can only be called before the maturity of the pool.
  /// @param param The parameters for the mint function.
  /// @return token0AndLong0Amount The amount of token0 deposited and long0 minted.
  /// @return token1AndLong1Amount The amount of token1 deposited and long1 minted.
  /// @return shortAmount The amount of short minted.
  /// @return data The additional data return.
  function mint(
    TimeswapV2OptionMintParam calldata param
  )
    external
    returns (uint256 token0AndLong0Amount, uint256 token1AndLong1Amount, uint256 shortAmount, bytes memory data);

  /// @dev Burn short position.
  /// Withdraw token0, when long token0 is burnt.
  /// Withdraw token1, when long token1 is burnt.
  /// @dev Can only be called before the maturity of the pool.
  /// @param param The parameters for the burn function.
  /// @return token0AndLong0Amount The amount of token0 withdrawn and long0 burnt.
  /// @return token1AndLong1Amount The amount of token1 withdrawn and long1 burnt.
  /// @return shortAmount The amount of short burnt.
  function burn(
    TimeswapV2OptionBurnParam calldata param
  )
    external
    returns (uint256 token0AndLong0Amount, uint256 token1AndLong1Amount, uint256 shortAmount, bytes memory data);

  /// @dev If the direction is from long token0 to long token1, burn long token0 and mint equivalent long token1,
  /// also deposit token1 and withdraw token0.
  /// If the direction is from long token1 to long token0, burn long token1 and mint equivalent long token0,
  /// also deposit token0 and withdraw token1.
  /// @dev Can only be called before the maturity of the pool.
  /// @param param The parameters for the swap function.
  /// @return token0AndLong0Amount If direction is Long0ToLong1, the amount of token0 withdrawn and long0 burnt.
  /// If direction is Long1ToLong0, the amount of token0 deposited and long0 minted.
  /// @return token1AndLong1Amount If direction is Long0ToLong1, the amount of token1 deposited and long1 minted.
  /// If direction is Long1ToLong0, the amount of token1 withdrawn and long1 burnt.
  /// @return data The additional data return.
  function swap(
    TimeswapV2OptionSwapParam calldata param
  ) external returns (uint256 token0AndLong0Amount, uint256 token1AndLong1Amount, bytes memory data);

  /// @dev Burn short position, withdraw token0 and token1.
  /// @dev Can only be called after the maturity of the pool.
  /// @param param The parameters for the collect function.
  /// @return token0Amount The amount of token0 withdrawn.
  /// @return token1Amount The amount of token1 withdrawn.
  /// @return shortAmount The amount of short burnt.
  function collect(
    TimeswapV2OptionCollectParam calldata param
  ) external returns (uint256 token0Amount, uint256 token1Amount, uint256 shortAmount, bytes memory data);
}

File 13 of 27 : ITimeswapV2OptionFactory.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

/// @title The interface for the contract that deploys Timeswap V2 Option pair contracts
/// @notice The Timeswap V2 Option Factory facilitates creation of Timeswap V2 Options pair.
interface ITimeswapV2OptionFactory {
  /* ===== EVENT ===== */

  /// @dev Emits when a new Timeswap V2 Option contract is created.
  /// @param caller The address of the caller of create function.
  /// @param token0 The first ERC20 token address of the pair.
  /// @param token1 The second ERC20 token address of the pair.
  /// @param optionPair The address of the Timeswap V2 Option contract created.
  event Create(address indexed caller, address indexed token0, address indexed token1, address optionPair);

  /* ===== VIEW ===== */

  /// @dev Returns the address of a Timeswap V2 Option.
  /// @dev Returns a zero address if the Timeswap V2 Option does not exist.
  /// @notice The token0 address must be smaller than token1 address.
  /// @param token0 The first ERC20 token address of the pair.
  /// @param token1 The second ERC20 token address of the pair.
  /// @return optionPair The address of the Timeswap V2 Option contract or a zero address.
  function get(address token0, address token1) external view returns (address optionPair);

  /// @dev Get the address of the option pair in the option pair enumeration list.
  /// @param id The chosen index.
  function getByIndex(uint256 id) external view returns (address optionPair);

  /// @dev The number of option pairs deployed.
  function numberOfPairs() external view returns (uint256);

  /* ===== UPDATE ===== */

  /// @dev Creates a Timeswap V2 Option based on pair parameters.
  /// @dev Cannot create a duplicate Timeswap V2 Option with the same pair parameters.
  /// @notice The token0 address must be smaller than token1 address.
  /// @param token0 The first ERC20 token address of the pair.
  /// @param token1 The second ERC20 token address of the pair.
  /// @param optionPair The address of the Timeswap V2 Option contract created.
  function create(address token0, address token1) external returns (address optionPair);
}

File 14 of 27 : OptionFactory.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {Error} from "@timeswap-labs/v2-library/contracts/Error.sol";

import {OptionPairLibrary} from "./OptionPair.sol";

import {ITimeswapV2OptionFactory} from "../interfaces/ITimeswapV2OptionFactory.sol";

/// @title library for option utils
/// @author Timeswap Labs
library OptionFactoryLibrary {
  using OptionPairLibrary for address;

  /// @dev reverts if the factory is the zero address.
  error ZeroFactoryAddress();

  /// @dev check if the factory address is not zero.
  /// @param optionFactory The factory address.
  function checkNotZeroFactory(address optionFactory) internal pure {
    if (optionFactory == address(0)) revert ZeroFactoryAddress();
  }

  /// @dev Helper function to get the option pair address.
  /// @param optionFactory The address of the option factory.
  /// @param token0 The smaller ERC20 address of the pair.
  /// @param token1 The larger ERC20 address of the pair.
  /// @return optionPair The result option pair address.
  function get(address optionFactory, address token0, address token1) internal view returns (address optionPair) {
    optionPair = ITimeswapV2OptionFactory(optionFactory).get(token0, token1);
  }

  /// @dev Helper function to get the option pair address.
  /// @notice reverts when the option pair does not exist.
  /// @param optionFactory The address of the option factory.
  /// @param token0 The smaller ERC20 address of the pair.
  /// @param token1 The larger ERC20 address of the pair.
  /// @return optionPair The result option pair address.
  function getWithCheck(
    address optionFactory,
    address token0,
    address token1
  ) internal view returns (address optionPair) {
    optionPair = get(optionFactory, token0, token1);
    if (optionPair == address(0)) Error.zeroAddress();
  }
}

File 15 of 27 : OptionPair.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

/// @title library for optionPair utils
/// @author Timeswap Labs
library OptionPairLibrary {
  /// @dev Reverts when option address is zero.
  error ZeroOptionAddress();

  /// @dev Reverts when the pair has incorrect format.
  /// @param token0 The first ERC20 token address of the pair.
  /// @param token1 The second ERC20 token address of the pair.
  error InvalidOptionPair(address token0, address token1);

  /// @dev Reverts when the Timeswap V2 Option already exist.
  /// @param token0 The first ERC20 token address of the pair.
  /// @param token1 The second ERC20 token address of the pair.
  /// @param optionPair The address of the existed Pair contract.
  error OptionPairAlreadyExisted(address token0, address token1, address optionPair);

  /// @dev Checks if option address is not zero.
  /// @param optionPair The option pair address being inquired.
  function checkNotZeroAddress(address optionPair) internal pure {
    if (optionPair == address(0)) revert ZeroOptionAddress();
  }

  /// @dev Check if the pair tokens is in correct format.
  /// @notice Reverts if token0 is greater than or equal token1.
  /// @param token0 The first ERC20 token address of the pair.
  /// @param token1 The second ERC20 token address of the pair.
  function checkCorrectFormat(address token0, address token1) internal pure {
    if (token0 >= token1) revert InvalidOptionPair(token0, token1);
  }

  /// @dev Check if the pair already existed.
  /// @notice Reverts if the pair is not a zero address.
  /// @param token0 The first ERC20 token address of the pair.
  /// @param token1 The second ERC20 token address of the pair.
  /// @param optionPair The address of the existed Pair contract.
  function checkDoesNotExist(address token0, address token1, address optionPair) internal pure {
    if (optionPair != address(0)) revert OptionPairAlreadyExisted(token0, token1, optionPair);
  }
}

File 16 of 27 : Param.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {Error} from "@timeswap-labs/v2-library/contracts/Error.sol";

import {TimeswapV2OptionMint, TimeswapV2OptionBurn, TimeswapV2OptionSwap, TimeswapV2OptionCollect, TransactionLibrary} from "../enums/Transaction.sol";

/// @dev The parameter to call the mint function.
/// @param strike The strike of the option.
/// @param maturity The maturity of the option.
/// @param long0To The recipient of long0 positions.
/// @param long1To The recipient of long1 positions.
/// @param shortTo The recipient of short positions.
/// @param transaction The type of mint transaction, more information in Transaction module.
/// @param amount0 If transaction is givenTokensAndLongs, the amount of token0 deposited, and amount of long0 position minted.
/// If transaction is givenShorts, the amount of short minted, where the equivalent strike converted amount is long0 positions.
/// @param amount1 If transaction is givenTokensAndLongs, the amount of token1 deposited, and amount of long1 position minted.
/// If transaction is givenShorts, the amount of short minted, where the equivalent strike converted amount is long1 positions.
/// @param data The data to be sent to the function, which will go to the mint callback.
struct TimeswapV2OptionMintParam {
  uint256 strike;
  uint256 maturity;
  address long0To;
  address long1To;
  address shortTo;
  TimeswapV2OptionMint transaction;
  uint256 amount0;
  uint256 amount1;
  bytes data;
}

/// @dev The parameter to call the burn function.
/// @param strike The strike of the option.
/// @param maturity The maturity of the option.
/// @param token0To The recipient of token0 withdrawn.
/// @param token1To The recipient of token1 withdrawn.
/// @param transaction The type of burn transaction, more information in Transaction module.
/// @param amount0 If transaction is givenTokensAndLongs, the amount of token0 withdrawn, and amount of long0 position burnt.
/// If transaction is givenShorts, the amount of short burnt, where the equivalent strike converted amount is long0 positions.
/// @param amount1 If transaction is givenTokensAndLongs, the amount of token1 withdrawn, and amount of long1 position burnt.
/// If transaction is givenShorts, the amount of short burnt, where the equivalent strike converted amount is long1 positions.
/// @param data The data to be sent to the function, which will go to the burn callback.
/// @notice If data length is zero, skips the callback.
struct TimeswapV2OptionBurnParam {
  uint256 strike;
  uint256 maturity;
  address token0To;
  address token1To;
  TimeswapV2OptionBurn transaction;
  uint256 amount0;
  uint256 amount1;
  bytes data;
}

/// @dev The parameter to call the swap function.
/// @param strike The strike of the option.
/// @param maturity The maturity of the option.
/// @param tokenTo The recipient of token0 when isLong0ToLong1 or token1 when isLong1ToLong0.
/// @param longTo The recipient of long1 positions when isLong0ToLong1 or long0 when isLong1ToLong0.
/// @param isLong0ToLong1 Transform long0 positions to long1 positions when true. Transform long1 positions to long0 positions when false.
/// @param transaction The type of swap transaction, more information in Transaction module.
/// @param amount If isLong0ToLong1 and transaction is GivenToken0AndLong0, this is the amount of token0 withdrawn, and the amount of long0 position burnt.
/// If isLong1ToLong0 and transaction is GivenToken0AndLong0, this is the amount of token0 to be deposited, and the amount of long0 position minted.
/// If isLong0ToLong1 and transaction is GivenToken1AndLong1, this is the amount of token1 to be deposited, and the amount of long1 position minted.
/// If isLong1ToLong0 and transaction is GivenToken1AndLong1, this is the amount of token1 withdrawn, and the amount of long1 position burnt.
/// @param data The data to be sent to the function, which will go to the swap callback.
struct TimeswapV2OptionSwapParam {
  uint256 strike;
  uint256 maturity;
  address tokenTo;
  address longTo;
  bool isLong0ToLong1;
  TimeswapV2OptionSwap transaction;
  uint256 amount;
  bytes data;
}

/// @dev The parameter to call the collect function.
/// @param strike The strike of the option.
/// @param maturity The maturity of the option.
/// @param token0To The recipient of token0 withdrawn.
/// @param token1To The recipient of token1 withdrawn.
/// @param transaction The type of collect transaction, more information in Transaction module.
/// @param amount If transaction is GivenShort, the amount of short position burnt.
/// If transaction is GivenToken0, the amount of token0 withdrawn.
/// If transaction is GivenToken1, the amount of token1 withdrawn.
/// @param data The data to be sent to the function, which will go to the collect callback.
/// @notice If data length is zero, skips the callback.
struct TimeswapV2OptionCollectParam {
  uint256 strike;
  uint256 maturity;
  address token0To;
  address token1To;
  TimeswapV2OptionCollect transaction;
  uint256 amount;
  bytes data;
}

library ParamLibrary {
  /// @dev Sanity checks
  /// @param param the parameter for mint transaction.
  /// @param blockTimestamp the current block timestamp.
  function check(TimeswapV2OptionMintParam memory param, uint96 blockTimestamp) internal pure {
    if (param.strike == 0) Error.zeroInput();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (param.maturity < blockTimestamp) Error.alreadyMatured(param.maturity, blockTimestamp);
    if (param.shortTo == address(0)) Error.zeroAddress();
    if (param.long0To == address(0)) Error.zeroAddress();
    if (param.long1To == address(0)) Error.zeroAddress();
    TransactionLibrary.check(param.transaction);
    if (param.amount0 == 0 && param.amount1 == 0) Error.zeroInput();
  }

  /// @dev Sanity checks
  /// @param param the parameter for burn transaction.
  /// @param blockTimestamp the current block timestamp.
  function check(TimeswapV2OptionBurnParam memory param, uint96 blockTimestamp) internal pure {
    if (param.strike == 0) Error.zeroInput();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (param.maturity < blockTimestamp) Error.alreadyMatured(param.maturity, blockTimestamp);
    if (param.token0To == address(0)) Error.zeroAddress();
    if (param.token1To == address(0)) Error.zeroAddress();
    TransactionLibrary.check(param.transaction);
    if (param.amount0 == 0 && param.amount1 == 0) Error.zeroInput();
  }

  /// @dev Sanity checks
  /// @param param the parameter for swap transaction.
  /// @param blockTimestamp the current block timestamp.
  function check(TimeswapV2OptionSwapParam memory param, uint96 blockTimestamp) internal pure {
    if (param.strike == 0) Error.zeroInput();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (param.maturity < blockTimestamp) Error.alreadyMatured(param.maturity, blockTimestamp);
    if (param.tokenTo == address(0)) Error.zeroAddress();
    if (param.longTo == address(0)) Error.zeroAddress();
    TransactionLibrary.check(param.transaction);
    if (param.amount == 0) Error.zeroInput();
  }

  /// @dev Sanity checks
  /// @param param the parameter for collect transaction.
  /// @param blockTimestamp the current block timestamp.
  function check(TimeswapV2OptionCollectParam memory param, uint96 blockTimestamp) internal pure {
    if (param.strike == 0) Error.zeroInput();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (param.maturity >= blockTimestamp) Error.stillActive(param.maturity, blockTimestamp);
    if (param.token0To == address(0)) Error.zeroAddress();
    if (param.token1To == address(0)) Error.zeroAddress();
    TransactionLibrary.check(param.transaction);
    if (param.amount == 0) Error.zeroInput();
  }
}

File 17 of 27 : StrikeAndMaturity.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

/// @dev A data with strike and maturity data.
/// @param strike The strike.
/// @param maturity The maturity.
struct StrikeAndMaturity {
  uint256 strike;
  uint256 maturity;
}

File 18 of 27 : ReentrancyGuard.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

/// @title library for renentrancy protection
/// @author Timeswap Labs
library ReentrancyGuard {
  /// @dev Reverts when their is a reentrancy to a single option.
  error NoReentrantCall();

  /// @dev Reverts when the option, pool, or token id is not interacted yet.
  error NotInteracted();

  /// @dev The initial state which must be change to NOT_ENTERED when first interacting.
  uint96 internal constant NOT_INTERACTED = 0;

  /// @dev The initial and ending state of balanceTarget in the Option struct.
  uint96 internal constant NOT_ENTERED = 1;

  /// @dev The state where the contract is currently being interacted with.
  uint96 internal constant ENTERED = 2;

  /// @dev Check if there is a reentrancy in an option.
  /// @notice Reverts when balanceTarget is not zero.
  /// @param reentrancyGuard The balance being inquired.
  function check(uint96 reentrancyGuard) internal pure {
    if (reentrancyGuard == NOT_INTERACTED) revert NotInteracted();
    if (reentrancyGuard == ENTERED) revert NoReentrantCall();
  }
}

File 19 of 27 : ERC1155Enumerable.sol
// SPDX-License-Identifier: BUSL-1.1
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import {ERC1155} from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";

import {IERC1155Enumerable} from "../interfaces/IERC1155Enumerable.sol";

/// Extension of {ERC1155} that adds
/// enumerability of all the token ids in the contract as well as all token ids owned by each
/// account.
abstract contract ERC1155Enumerable is IERC1155Enumerable, ERC1155 {
  // Mapping from owner to list of owned token IDs
  mapping(address => uint256[]) private _ownedTokens; // An index of all tokens

  // Mapping from address to token ID to index of the owner tokens list
  mapping(address => mapping(uint256 => uint256)) private _ownedTokensIndex;

  mapping(uint256 => uint256) private _idTotalSupply;

  // Array with all token ids, used for enumeration
  uint256[] private _allTokens;

  // Mapping from token id to position in the allTokens array
  mapping(uint256 => uint256) private _allTokensIndex;

  /// @inheritdoc IERC1155Enumerable
  function tokenOfOwnerByIndex(address owner, uint256 index) external view override returns (uint256) {
    return _ownedTokens[owner][index];
  }

  /// @inheritdoc IERC1155Enumerable
  function totalIds() external view override returns (uint256) {
    return _allTokens.length;
  }

  /// @inheritdoc IERC1155Enumerable
  function totalSupply(uint256 id) external view override returns (uint256) {
    return _idTotalSupply[id];
  }

  /// @inheritdoc IERC1155Enumerable
  function tokenByIndex(uint256 index) external view override returns (uint256) {
    return _allTokens[index];
  }

  /// @dev Hook that is called before any token transfer. This includes minting
  /// and burning.
  function _beforeTokenTransfer(
    address,
    address from,
    address to,
    uint256[] memory ids,
    uint256[] memory amounts,
    bytes memory
  ) internal virtual override {
    for (uint256 i; i < ids.length; ) {
      if (amounts[i] != 0) _addTokenEnumeration(from, to, ids[i], amounts[i]);

      unchecked {
        ++i;
      }
    }
  }

  /// @dev Add token enumeration list if necessary.
  function _addTokenEnumeration(address from, address to, uint256 id, uint256 amount) internal {
    if (from == address(0)) {
      if (_idTotalSupply[id] == 0 && _additionalConditionAddTokenToAllTokensEnumeration(id))
        _addTokenToAllTokensEnumeration(id);
      _idTotalSupply[id] += amount;
    }

    if (to != address(0) && to != from) {
      if (balanceOf(to, id) == 0 && _additionalConditionAddTokenToOwnerEnumeration(to, id))
        _addTokenToOwnerEnumeration(to, id);
    }
  }

  /// @dev Any additional condition to add token enumeration when overridden.
  function _additionalConditionAddTokenToAllTokensEnumeration(uint256) internal virtual returns (bool) {
    return true;
  }

  /// @dev Any additional condition to add token enumeration when overridden.
  function _additionalConditionAddTokenToOwnerEnumeration(address, uint256) internal virtual returns (bool) {
    return true;
  }

  /// @dev Hook that is called after any token transfer. This includes minting
  /// and burning.
  function _afterTokenTransfer(
    address,
    address from,
    address to,
    uint256[] memory ids,
    uint256[] memory amounts,
    bytes memory
  ) internal virtual override {
    for (uint256 i; i < ids.length; ) {
      if (amounts[i] != 0) _removeTokenEnumeration(from, to, ids[i], amounts[i]);

      unchecked {
        ++i;
      }
    }
  }

  /// @dev Remove token enumeration list if necessary.
  function _removeTokenEnumeration(address from, address to, uint256 id, uint256 amount) internal {
    if (to == address(0)) {
      _idTotalSupply[id] -= amount;
      if (_idTotalSupply[id] == 0 && _additionalConditionRemoveTokenFromAllTokensEnumeration(id))
        _removeTokenFromAllTokensEnumeration(id);
    }

    if (from != address(0) && from != to) {
      if (balanceOf(from, id) == 0 && _additionalConditionRemoveTokenFromOwnerEnumeration(from, id))
        _removeTokenFromOwnerEnumeration(from, id);
    }
  }

  /// @dev Any additional condition to remove token enumeration when overridden.
  function _additionalConditionRemoveTokenFromAllTokensEnumeration(uint256) internal virtual returns (bool) {
    return true;
  }

  /// @dev Any additional condition to remove token enumeration when overridden.
  function _additionalConditionRemoveTokenFromOwnerEnumeration(address, uint256) internal virtual returns (bool) {
    return true;
  }

  /// @dev Private function to add a token to this extension's ownership-tracking data structures.
  /// @param to address representing the new owner of the given token ID
  /// @param tokenId uint256 ID of the token to be added to the tokens list of the given address
  function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
    _ownedTokensIndex[to][tokenId] = _ownedTokens[to].length;
    _ownedTokens[to].push(tokenId);
  }

  /// @dev Private function to add a token to this extension's token tracking data structures.
  /// @param tokenId uint256 ID of the token to be added to the tokens list
  function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
    _allTokensIndex[tokenId] = _allTokens.length;
    _allTokens.push(tokenId);
  }

  /// @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
  /// while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
  /// gas optimizations e.g. when performing a transfer operation (avoiding double writes).
  /// This has O(1) time complexity, but alters the order of the _ownedTokens array.
  /// @param from address representing the previous owner of the given token ID
  /// @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
  function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
    uint256 lastTokenIndex = _ownedTokens[from].length - 1;
    uint256 tokenIndex = _ownedTokensIndex[from][tokenId];

    if (tokenIndex != lastTokenIndex) {
      uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

      _ownedTokens[from][tokenIndex] = lastTokenId;
      _ownedTokensIndex[from][lastTokenId] = tokenIndex;
    }

    delete _ownedTokensIndex[from][tokenId];
    _ownedTokens[from].pop();
  }

  /// @dev Private function to remove a token from this extension's token tracking data structures.
  /// This has O(1) time complexity, but alters the order of the _allTokens array.
  /// @param tokenId uint256 ID of the token to be removed from the tokens list
  function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
    uint256 lastTokenIndex = _allTokens.length - 1;
    uint256 tokenIndex = _allTokensIndex[tokenId];

    if (tokenIndex != lastTokenIndex) {
      uint256 lastTokenId = _allTokens[lastTokenIndex];

      _allTokens[tokenIndex] = lastTokenId;
      _allTokensIndex[lastTokenId] = tokenIndex;
    }

    delete _allTokensIndex[tokenId];
    _allTokens.pop();
  }
}

File 20 of 27 : ITimeswapV2TokenBurnCallback.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {TimeswapV2TokenBurnCallbackParam} from "../../structs/CallbackParam.sol";

interface ITimeswapV2TokenBurnCallback {
  /// @dev Callback for `ITimeswapV2Token.burn`
  function timeswapV2TokenBurnCallback(
    TimeswapV2TokenBurnCallbackParam calldata param
  ) external returns (bytes memory data);
}

File 21 of 27 : ITimeswapV2TokenMintCallback.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {TimeswapV2TokenMintCallbackParam} from "../../structs/CallbackParam.sol";

interface ITimeswapV2TokenMintCallback {
  /// @dev Callback for `ITimeswapV2Token.mint`
  function timeswapV2TokenMintCallback(
    TimeswapV2TokenMintCallbackParam calldata param
  ) external returns (bytes memory data);
}

File 22 of 27 : IERC1155Enumerable.sol
// SPDX-License-Identifier: BUSL-1.1
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";

/// @title ERC-1155 Token Standard, optional enumeration extension
/// @dev See https://eips.ethereum.org/EIPS/eip-721
interface IERC1155Enumerable is IERC1155 {
  /// @dev Returns the total amount of ids with positive supply stored by the contract.
  function totalIds() external view returns (uint256);

  /// @dev Returns the total supply of a token given its id.
  /// @param id The index of the queried token.
  function totalSupply(uint256 id) external view returns (uint256);

  /// @dev Returns a token ID owned by `owner` at a given `index` of its token list.
  /// Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

  /// @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
  /// Use along with {totalSupply} to enumerate all tokens.
  function tokenByIndex(uint256 index) external view returns (uint256);
}

File 23 of 27 : ITimeswapV2Token.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";

import {TimeswapV2TokenPosition} from "../structs/Position.sol";
import {TimeswapV2TokenMintParam, TimeswapV2TokenBurnParam} from "../structs/Param.sol";

/// @title An interface for TS-V2 token system
/// @notice This interface is used to interact with TS-V2 positions
interface ITimeswapV2Token is IERC1155 {
  /// @dev Returns the factory address that deployed this contract.
  function optionFactory() external view returns (address);

  /// @dev Returns the position Balance of the owner
  /// @param owner The owner of the token
  /// @param position type of option position (long0, long1, short)
  function positionOf(address owner, TimeswapV2TokenPosition calldata position) external view returns (uint256 amount);

  /// @dev Transfers position token TimeswapV2Token from `from` to `to`
  /// @param from The address to transfer position token from
  /// @param to The address to transfer position token to
  /// @param position The TimeswapV2Token Position to transfer
  /// @param amount The amount of TimeswapV2Token Position to transfer
  function transferTokenPositionFrom(
    address from,
    address to,
    TimeswapV2TokenPosition calldata position,
    uint256 amount
  ) external;

  /// @dev mints TimeswapV2Token as per postion and amount
  /// @param param The TimeswapV2TokenMintParam
  /// @return data Arbitrary data
  function mint(TimeswapV2TokenMintParam calldata param) external returns (bytes memory data);

  /// @dev burns TimeswapV2Token as per postion and amount
  /// @param param The TimeswapV2TokenBurnParam
  function burn(TimeswapV2TokenBurnParam calldata param) external returns (bytes memory data);
}

File 24 of 27 : CallbackParam.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

/// @dev parameter for minting Timeswap V2 Tokens
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param long0Amount The amount of long0 deposited.
/// @param long1Amount The amount of long1 deposited.
/// @param shortAmount The amount of short deposited.
/// @param data Arbitrary data passed to the callback.
struct TimeswapV2TokenMintCallbackParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  uint256 long0Amount;
  uint256 long1Amount;
  uint256 shortAmount;
  bytes data;
}

/// @dev parameter for burning Timeswap V2 Tokens
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param long0Amount The amount of long0 withdrawn.
/// @param long1Amount The amount of long1 withdrawn.
/// @param shortAmount The amount of short withdrawn.
/// @param data Arbitrary data passed to the callback, initalize as empty if not required.
struct TimeswapV2TokenBurnCallbackParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  uint256 long0Amount;
  uint256 long1Amount;
  uint256 shortAmount;
  bytes data;
}

/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param liquidity The amount of liquidity increase.
/// @param data data
struct TimeswapV2LiquidityTokenMintCallbackParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  uint160 liquidityAmount;
  bytes data;
}

/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param liquidity The amount of liquidity decrease.
/// @param data data
struct TimeswapV2LiquidityTokenBurnCallbackParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  uint160 liquidityAmount;
  bytes data;
}

/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param long0Fees The amount of long0 fees withdrawn.
/// @param long1Fees The amount of long1 fees withdrawn.
/// @param shortFees The amount of short fees withdrawn.
/// @param shortReturned The amount of short returned withdrawn.
/// @param data data
struct TimeswapV2LiquidityTokenCollectCallbackParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  uint256 long0Fees;
  uint256 long1Fees;
  uint256 shortFees;
  uint256 shortReturned;
  bytes data;
}

File 25 of 27 : Param.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {Error} from "@timeswap-labs/v2-library/contracts/Error.sol";

/// @dev parameter for minting Timeswap V2 Tokens
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param long0To The address of the recipient of TimeswapV2Token representing long0 position.
/// @param long1To The address of the recipient of TimeswapV2Token representing long1 position.
/// @param shortTo The address of the recipient of TimeswapV2Token representing short position.
/// @param long0Amount The amount of long0 deposited.
/// @param long1Amount The amount of long1 deposited.
/// @param shortAmount The amount of short deposited.
/// @param data Arbitrary data passed to the callback.
struct TimeswapV2TokenMintParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  address long0To;
  address long1To;
  address shortTo;
  uint256 long0Amount;
  uint256 long1Amount;
  uint256 shortAmount;
  bytes data;
}

/// @dev parameter for burning Timeswap V2 Tokens
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param long0To  The address of the recipient of long token0 position.
/// @param long1To The address of the recipient of long token1 position.
/// @param shortTo The address of the recipient of short position.
/// @param long0Amount  The amount of TimeswapV2Token long0  deposited and equivalent long0 position is withdrawn.
/// @param long1Amount The amount of TimeswapV2Token long1 deposited and equivalent long1 position is withdrawn.
/// @param shortAmount The amount of TimeswapV2Token short deposited and equivalent short position is withdrawn,
/// @param data Arbitrary data passed to the callback, initalize as empty if not required.
struct TimeswapV2TokenBurnParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  address long0To;
  address long1To;
  address shortTo;
  uint256 long0Amount;
  uint256 long1Amount;
  uint256 shortAmount;
  bytes data;
}

/// @dev parameter for minting Timeswap V2 Liquidity Tokens
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param to The address of the recipient of TimeswapV2LiquidityToken.
/// @param liquidityAmount The amount of liquidity token deposited.
/// @param data Arbitrary data passed to the callback.
/// @param erc1155Data Arbitrary custojm data passed through erc115 minting.
struct TimeswapV2LiquidityTokenMintParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  address to;
  uint160 liquidityAmount;
  bytes data;
  bytes erc1155Data;
}

/// @dev parameter for burning Timeswap V2 Liquidity Tokens
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param to The address of the recipient of the liquidity token.
/// @param liquidityAmount The amount of liquidity token withdrawn.
/// @param data Arbitrary data passed to the callback, initalize as empty if not required.
struct TimeswapV2LiquidityTokenBurnParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  address to;
  uint160 liquidityAmount;
  bytes data;
}

/// @dev parameter for collecting fees and shortReturned from Timeswap V2 Liquidity Tokens
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param from The address of the owner of the fees and shortReturned;
/// @param long0FeesTo The address of the recipient of the long0 fees.
/// @param long1FeesTo The address of the recipient of the long1 fees.
/// @param shortFeesTo The address of the recipient of the short fees.
/// @param shortReturnedTo The address of the recipient of the short returned.
/// @param long0FeesDesired The maximum amount of long0Fees desired to be withdrawn.
/// @param long1FeesDesired The maximum amount of long1Fees desired to be withdrawn.
/// @param shortFeesDesired The maximum amount of shortFees desired to be withdrawn.
/// @param shortReturnedDesired The maximum amount of shortReturned desired to be withdrawn.
/// @param data Arbitrary data passed to the callback, initalize as empty if not required.
struct TimeswapV2LiquidityTokenCollectParam {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  address from;
  address long0FeesTo;
  address long1FeesTo;
  address shortFeesTo;
  address shortReturnedTo;
  uint256 long0FeesDesired;
  uint256 long1FeesDesired;
  uint256 shortFeesDesired;
  uint256 shortReturnedDesired;
  bytes data;
}

library ParamLibrary {
  /// @dev Sanity checks for token mint.
  function check(TimeswapV2TokenMintParam memory param) internal pure {
    if (param.long0To == address(0) || param.long1To == address(0) || param.shortTo == address(0)) Error.zeroAddress();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (param.long0Amount == 0 && param.long1Amount == 0 && param.shortAmount == 0) Error.zeroInput();
  }

  /// @dev Sanity checks for token burn.
  function check(TimeswapV2TokenBurnParam memory param) internal pure {
    if (param.long0To == address(0) || param.long1To == address(0) || param.shortTo == address(0)) Error.zeroAddress();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (param.long0Amount == 0 && param.long1Amount == 0 && param.shortAmount == 0) Error.zeroInput();
  }

  /// @dev Sanity checks for liquidity token mint.
  function check(TimeswapV2LiquidityTokenMintParam memory param) internal pure {
    if (param.to == address(0)) Error.zeroAddress();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (param.liquidityAmount == 0) Error.zeroInput();
  }

  /// @dev Sanity checks for liquidity token burn.
  function check(TimeswapV2LiquidityTokenBurnParam memory param) internal pure {
    if (param.to == address(0)) Error.zeroAddress();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (param.liquidityAmount == 0) Error.zeroInput();
  }

  /// @dev Sanity checks for liquidity token collect.
  function check(TimeswapV2LiquidityTokenCollectParam memory param) internal pure {
    if (
      param.from == address(0) ||
      param.long0FeesTo == address(0) ||
      param.long1FeesTo == address(0) ||
      param.shortFeesTo == address(0) ||
      param.shortReturnedTo == address(0)
    ) Error.zeroAddress();
    if (param.maturity > type(uint96).max) Error.incorrectMaturity(param.maturity);
    if (
      param.long0FeesDesired == 0 &&
      param.long1FeesDesired == 0 &&
      param.shortFeesDesired == 0 &&
      param.shortReturnedDesired == 0
    ) Error.zeroInput();
  }
}

File 26 of 27 : Position.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {TimeswapV2OptionPosition} from "@timeswap-labs/v2-option/contracts/enums/Position.sol";

/// @dev Struct for Token
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
/// @param position The position of the option.
struct TimeswapV2TokenPosition {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
  TimeswapV2OptionPosition position;
}

/// @dev Struct for Liquidity Token
/// @param token0 The first ERC20 token address of the pair.
/// @param token1 The second ERC20 token address of the pair.
/// @param strike  The strike ratio of token1 per token0 of the option.
/// @param maturity The maturity of the option.
struct TimeswapV2LiquidityTokenPosition {
  address token0;
  address token1;
  uint256 strike;
  uint256 maturity;
}

library PositionLibrary {
  /// @dev return keccak for key management for Token.
  function toKey(TimeswapV2TokenPosition memory timeswapV2TokenPosition) internal pure returns (bytes32) {
    return keccak256(abi.encode(timeswapV2TokenPosition));
  }

  /// @dev return keccak for key management for Liquidity Token.
  function toKey(
    TimeswapV2LiquidityTokenPosition memory timeswapV2LiquidityTokenPosition
  ) internal pure returns (bytes32) {
    return keccak256(abi.encode(timeswapV2LiquidityTokenPosition));
  }
}

File 27 of 27 : TimeswapV2Token.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.8;

import {ERC1155} from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";

import {ITimeswapV2Option} from "@timeswap-labs/v2-option/contracts/interfaces/ITimeswapV2Option.sol";

import {OptionFactoryLibrary} from "@timeswap-labs/v2-option/contracts/libraries/OptionFactory.sol";
import {ReentrancyGuard} from "@timeswap-labs/v2-pool/contracts/libraries/ReentrancyGuard.sol";

import {TimeswapV2OptionPosition} from "@timeswap-labs/v2-option/contracts/enums/Position.sol";

import {ITimeswapV2Token} from "./interfaces/ITimeswapV2Token.sol";

import {ITimeswapV2TokenMintCallback} from "./interfaces/callbacks/ITimeswapV2TokenMintCallback.sol";
import {ITimeswapV2TokenBurnCallback} from "./interfaces/callbacks/ITimeswapV2TokenBurnCallback.sol";

import {ERC1155Enumerable} from "./base/ERC1155Enumerable.sol";

import {TimeswapV2TokenPosition, PositionLibrary} from "./structs/Position.sol";
import {TimeswapV2TokenMintParam, TimeswapV2TokenBurnParam, ParamLibrary} from "./structs/Param.sol";
import {TimeswapV2TokenMintCallbackParam, TimeswapV2TokenBurnCallbackParam} from "./structs/CallbackParam.sol";
import {Error} from "@timeswap-labs/v2-library/contracts/Error.sol";

/// @title
/// @author Timeswap Labs
/// @notice TimeswapV2Token tokenizes the TimeswapV2 native option positions (long0, long1, short)
contract TimeswapV2Token is ITimeswapV2Token, ERC1155Enumerable {
  using ReentrancyGuard for uint96;

  using PositionLibrary for TimeswapV2TokenPosition;

  address public immutable optionFactory;

  mapping(bytes32 => uint96) private reentrancyGuards;

  mapping(uint256 => TimeswapV2TokenPosition) private _timeswapV2TokenPositions;
  mapping(bytes32 => uint256) private _timeswapV2TokenPositionIds;

  uint256 private counter;

  constructor(address chosenOptionFactory, string memory uri) ERC1155("Timeswap V2 Token") {
    optionFactory = chosenOptionFactory;
    _setURI(uri);
  }

  /// @dev internal function to change interaction level if any
  function changeInteractedIfNecessary(address token0, address token1, uint256 strike, uint256 maturity) private {
    bytes32 key = keccak256(abi.encode(token0, token1, strike, maturity));

    if (reentrancyGuards[key] == ReentrancyGuard.NOT_INTERACTED) reentrancyGuards[key] = ReentrancyGuard.NOT_ENTERED;
  }

  /// @dev internal function to start the reentrancy guard
  function raiseGuard(address token0, address token1, uint256 strike, uint256 maturity) private {
    bytes32 key = keccak256(abi.encode(token0, token1, strike, maturity));

    reentrancyGuards[key].check();
    reentrancyGuards[key] = ReentrancyGuard.ENTERED;
  }

  /// @dev internal function to end the reentrancy guard
  function lowerGuard(address token0, address token1, uint256 strike, uint256 maturity) private {
    bytes32 key = keccak256(abi.encode(token0, token1, strike, maturity));
    reentrancyGuards[key] = ReentrancyGuard.NOT_ENTERED;
  }

  /// @inheritdoc ITimeswapV2Token
  function positionOf(
    address owner,
    TimeswapV2TokenPosition calldata timeswapV2TokenPosition
  ) public view returns (uint256 amount) {
    amount = ERC1155.balanceOf(owner, _timeswapV2TokenPositionIds[timeswapV2TokenPosition.toKey()]);
  }

  /// @inheritdoc ITimeswapV2Token
  function transferTokenPositionFrom(
    address from,
    address to,
    TimeswapV2TokenPosition calldata timeswapV2TokenPosition,
    uint256 amount
  ) external override {
    safeTransferFrom(from, to, _timeswapV2TokenPositionIds[timeswapV2TokenPosition.toKey()], (amount), bytes(""));
  }

  /// @inheritdoc ITimeswapV2Token
  function mint(TimeswapV2TokenMintParam calldata param) external override returns (bytes memory data) {
    ParamLibrary.check(param);
    changeInteractedIfNecessary(param.token0, param.token1, param.strike, param.maturity);
    raiseGuard(param.token0, param.token1, param.strike, param.maturity);

    address optionPair = OptionFactoryLibrary.getWithCheck(optionFactory, param.token0, param.token1);

    uint256 long0BalanceTarget;
    // mints TimeswapV2Token in case of the long0 position
    if (param.long0Amount != 0) {
      // get the initial balance of the long0 position and add the long0 amount to mint
      long0BalanceTarget =
        ITimeswapV2Option(optionPair).positionOf(
          param.strike,
          param.maturity,
          address(this),
          TimeswapV2OptionPosition.Long0
        ) +
        param.long0Amount;

      TimeswapV2TokenPosition memory timeswapV2TokenPosition = TimeswapV2TokenPosition({
        token0: param.token0,
        token1: param.token1,
        strike: param.strike,
        maturity: param.maturity,
        position: TimeswapV2OptionPosition.Long0
      });

      bytes32 key = timeswapV2TokenPosition.toKey();
      // get the unique id of the TimeswapV2Token position
      uint256 id = _timeswapV2TokenPositionIds[key];

      // if the id is 0, it means that the position has not been minted yet
      if (id == 0) {
        id = (++counter);
        _timeswapV2TokenPositions[id] = timeswapV2TokenPosition;
        _timeswapV2TokenPositionIds[key] = id;
      }

      // mint the TimeswapV2Token long0 position
      _mint(param.long0To, id, (param.long0Amount), bytes(""));
    }

    uint256 long1BalanceTarget;
    // mints TimeswapV2Token in case of the long1 position
    if (param.long1Amount != 0) {
      // get the initial balance of the long1 position and add the long1 amount to mint
      long1BalanceTarget =
        ITimeswapV2Option(optionPair).positionOf(
          param.strike,
          param.maturity,
          address(this),
          TimeswapV2OptionPosition.Long1
        ) +
        param.long1Amount;

      TimeswapV2TokenPosition memory timeswapV2TokenPosition = TimeswapV2TokenPosition({
        token0: param.token0,
        token1: param.token1,
        strike: param.strike,
        maturity: param.maturity,
        position: TimeswapV2OptionPosition.Long1
      });

      bytes32 key = timeswapV2TokenPosition.toKey();
      // get the unique id of the TimeswapV2Token position
      uint256 id = _timeswapV2TokenPositionIds[key];

      // if the id is 0, it means that the position has not been minted yet
      if (id == 0) {
        id = (++counter);
        _timeswapV2TokenPositions[id] = timeswapV2TokenPosition;
        _timeswapV2TokenPositionIds[key] = id;
      }

      // mint the TimeswapV2Token long1 position
      _mint(param.long1To, id, (param.long1Amount), bytes(""));
    }

    uint256 shortBalanceTarget;
    // mints TimeswapV2Token in case of the short position
    if (param.shortAmount != 0) {
      // get the initial balance of the short position and add the short amount to mint
      shortBalanceTarget =
        ITimeswapV2Option(optionPair).positionOf(
          param.strike,
          param.maturity,
          address(this),
          TimeswapV2OptionPosition.Short
        ) +
        param.shortAmount;

      TimeswapV2TokenPosition memory timeswapV2TokenPosition = TimeswapV2TokenPosition({
        token0: param.token0,
        token1: param.token1,
        strike: param.strike,
        maturity: param.maturity,
        position: TimeswapV2OptionPosition.Short
      });

      bytes32 key = timeswapV2TokenPosition.toKey();
      // get the unique id of the TimeswapV2Token position
      uint256 id = _timeswapV2TokenPositionIds[key];

      // if the id is 0, it means that the position has not been minted yet
      if (id == 0) {
        id = (++counter);
        _timeswapV2TokenPositions[id] = timeswapV2TokenPosition;
        _timeswapV2TokenPositionIds[key] = id;
      }

      // mint the TimeswapV2Token short position
      _mint(param.shortTo, id, (param.shortAmount), bytes(""));
    }

    // ask the msg.sender to transfer the long0/long1/short amount to the this contract
    data = ITimeswapV2TokenMintCallback(msg.sender).timeswapV2TokenMintCallback(
      TimeswapV2TokenMintCallbackParam({
        token0: param.token0,
        token1: param.token1,
        strike: param.strike,
        maturity: param.maturity,
        long0Amount: param.long0Amount,
        long1Amount: param.long1Amount,
        shortAmount: param.shortAmount,
        data: param.data
      })
    );

    // check if the long0 position token balance target is achieved. If not, revert the transaction
    if (param.long0Amount != 0)
      Error.checkEnough(
        ITimeswapV2Option(optionPair).positionOf(
          param.strike,
          param.maturity,
          address(this),
          TimeswapV2OptionPosition.Long0
        ),
        long0BalanceTarget
      );

    // check if the long1 position token balance target is achieved. If not, revert the transaction
    if (param.long1Amount != 0)
      Error.checkEnough(
        ITimeswapV2Option(optionPair).positionOf(
          param.strike,
          param.maturity,
          address(this),
          TimeswapV2OptionPosition.Long1
        ),
        long1BalanceTarget
      );

    // check if the short position token balance target is achieved. If not, revert the transaction
    if (param.shortAmount != 0)
      Error.checkEnough(
        ITimeswapV2Option(optionPair).positionOf(
          param.strike,
          param.maturity,
          address(this),
          TimeswapV2OptionPosition.Short
        ),
        shortBalanceTarget
      );

    lowerGuard(param.token0, param.token1, param.strike, param.maturity);
  }

  /// @inheritdoc ITimeswapV2Token
  function burn(TimeswapV2TokenBurnParam calldata param) external override returns (bytes memory data) {
    ParamLibrary.check(param);
    raiseGuard(param.token0, param.token1, param.strike, param.maturity);

    address optionPair = OptionFactoryLibrary.getWithCheck(optionFactory, param.token0, param.token1);

    // case when the long0 position is to be burned
    if (param.long0Amount != 0)
      ITimeswapV2Option(optionPair).transferPosition(
        param.strike,
        param.maturity,
        param.long0To,
        TimeswapV2OptionPosition.Long0,
        param.long0Amount
      );

    // case when the long1 position is to be burned
    if (param.long1Amount != 0)
      // transfer the underlying equivalent long1 position amount to address of the recipient of long1 position.
      ITimeswapV2Option(optionPair).transferPosition(
        param.strike,
        param.maturity,
        param.long1To,
        TimeswapV2OptionPosition.Long1,
        param.long1Amount
      );

    // case when the short position is to be burned
    if (param.shortAmount != 0)
      ITimeswapV2Option(optionPair).transferPosition(
        param.strike,
        param.maturity,
        param.shortTo,
        TimeswapV2OptionPosition.Short,
        param.shortAmount
      );

    if (param.data.length != 0)
      data = ITimeswapV2TokenBurnCallback(msg.sender).timeswapV2TokenBurnCallback(
        TimeswapV2TokenBurnCallbackParam({
          token0: param.token0,
          token1: param.token1,
          strike: param.strike,
          maturity: param.maturity,
          long0Amount: param.long0Amount,
          long1Amount: param.long1Amount,
          shortAmount: param.shortAmount,
          data: param.data
        })
      );

    // case when the long0 position is to be burned
    if (param.long0Amount != 0) {
      TimeswapV2TokenPosition memory timeswapV2TokenPosition = TimeswapV2TokenPosition({
        token0: param.token0,
        token1: param.token1,
        strike: param.strike,
        maturity: param.maturity,
        position: TimeswapV2OptionPosition.Long0
      });

      // burn the TimeswapV2Token representing long0 position
      _burn(msg.sender, _timeswapV2TokenPositionIds[timeswapV2TokenPosition.toKey()], param.long0Amount);
    }

    // case when the long1 position is to be burned
    if (param.long1Amount != 0) {
      TimeswapV2TokenPosition memory timeswapV2TokenPosition = TimeswapV2TokenPosition({
        token0: param.token0,
        token1: param.token1,
        strike: param.strike,
        maturity: param.maturity,
        position: TimeswapV2OptionPosition.Long1
      });

      // burn the TimeswapV2Token representing long1 position
      _burn(msg.sender, _timeswapV2TokenPositionIds[timeswapV2TokenPosition.toKey()], param.long1Amount);
    }

    // case when the short position is to be burned
    if (param.shortAmount != 0) {
      TimeswapV2TokenPosition memory timeswapV2TokenPosition = TimeswapV2TokenPosition({
        token0: param.token0,
        token1: param.token1,
        strike: param.strike,
        maturity: param.maturity,
        position: TimeswapV2OptionPosition.Short
      });

      // burn the TimeswapV2Token representing short position
      _burn(msg.sender, _timeswapV2TokenPositionIds[timeswapV2TokenPosition.toKey()], param.shortAmount);
    }

    // stop the guard of reentrancy
    lowerGuard(param.token0, param.token1, param.strike, param.maturity);
  }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"chosenOptionFactory","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"maturity","type":"uint256"}],"name":"IncorrectMaturity","type":"error"},{"inputs":[],"name":"NoReentrantCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"minuend","type":"uint256"},{"internalType":"uint256","name":"subtrahend","type":"uint256"}],"name":"NotEnoughReceived","type":"error"},{"inputs":[],"name":"NotInteracted","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroInput","type":"error"},{"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":[{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint256","name":"strike","type":"uint256"},{"internalType":"uint256","name":"maturity","type":"uint256"},{"internalType":"address","name":"long0To","type":"address"},{"internalType":"address","name":"long1To","type":"address"},{"internalType":"address","name":"shortTo","type":"address"},{"internalType":"uint256","name":"long0Amount","type":"uint256"},{"internalType":"uint256","name":"long1Amount","type":"uint256"},{"internalType":"uint256","name":"shortAmount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct TimeswapV2TokenBurnParam","name":"param","type":"tuple"}],"name":"burn","outputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"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":[{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint256","name":"strike","type":"uint256"},{"internalType":"uint256","name":"maturity","type":"uint256"},{"internalType":"address","name":"long0To","type":"address"},{"internalType":"address","name":"long1To","type":"address"},{"internalType":"address","name":"shortTo","type":"address"},{"internalType":"uint256","name":"long0Amount","type":"uint256"},{"internalType":"uint256","name":"long1Amount","type":"uint256"},{"internalType":"uint256","name":"shortAmount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct TimeswapV2TokenMintParam","name":"param","type":"tuple"}],"name":"mint","outputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"optionFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint256","name":"strike","type":"uint256"},{"internalType":"uint256","name":"maturity","type":"uint256"},{"internalType":"enum TimeswapV2OptionPosition","name":"position","type":"uint8"}],"internalType":"struct TimeswapV2TokenPosition","name":"timeswapV2TokenPosition","type":"tuple"}],"name":"positionOf","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"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"},{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint256","name":"strike","type":"uint256"},{"internalType":"uint256","name":"maturity","type":"uint256"},{"internalType":"enum TimeswapV2OptionPosition","name":"position","type":"uint8"}],"internalType":"struct TimeswapV2TokenPosition","name":"timeswapV2TokenPosition","type":"tuple"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferTokenPositionFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b506040516200398d3803806200398d833981016040819052620000349162000162565b6040805180820190915260118152702a34b6b2b9bbb0b8102b19102a37b5b2b760791b602082015262000067816200008d565b506001600160601b0319606083901b1660805262000085816200008d565b50506200029f565b8051620000a2906002906020840190620000a6565b5050565b828054620000b49062000262565b90600052602060002090601f016020900481019282620000d8576000855562000123565b82601f10620000f357805160ff191683800117855562000123565b8280016001018555821562000123579182015b828111156200012357825182559160200191906001019062000106565b506200013192915062000135565b5090565b5b8082111562000131576000815560010162000136565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200017657600080fd5b82516001600160a01b03811681146200018e57600080fd5b602084810151919350906001600160401b0380821115620001ae57600080fd5b818601915086601f830112620001c357600080fd5b815181811115620001d857620001d86200014c565b604051601f8201601f19908116603f011681019083821181831017156200020357620002036200014c565b8160405282815289868487010111156200021c57600080fd5b600093505b8284101562000240578484018601518185018701529285019262000221565b82841115620002525760008684830101525b8096505050505050509250929050565b600181811c908216806200027757607f821691505b602082108114156200029957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c6136c1620002cc6000396000818161022c015281816106b5015261115001526136c16000f3fe608060405234801561001057600080fd5b506004361061010a5760003560e01c80634fd991ea116100a2578063b3461c8711610071578063b3461c8714610227578063bb19c64814610266578063bd85b03914610279578063e985e9c514610299578063f242432a146102d557600080fd5b80634fd991ea146101db5780635c9b7282146101ee578063a22cb46514610201578063a38d7a171461021457600080fd5b80632f745c59116100de5780632f745c591461018d578063390a5ba5146101a05780634e1273f4146101a85780634f6ccce7146101c857600080fd5b8062fdd58e1461010f57806301ffc9a7146101355780630e89341c146101585780632eb2c2d614610178575b600080fd5b61012261011d366004612919565b6102e8565b6040519081526020015b60405180910390f35b61014861014336600461295b565b61037e565b604051901515815260200161012c565b61016b610166366004612978565b6103d0565b60405161012c91906129e9565b61018b610186366004612b7e565b610464565b005b61012261019b366004612919565b6104b0565b600654610122565b6101bb6101b6366004612c2b565b6104ed565b60405161012c9190612d32565b6101226101d6366004612978565b610616565b61016b6101e9366004612d58565b61063d565b61018b6101fc366004612d9e565b6110d1565b61018b61020f366004612def565b61111c565b61016b610222366004612d58565b61112b565b61024e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161012c565b610122610274366004612e2d565b6116c0565b610122610287366004612978565b60009081526005602052604090205490565b6101486102a7366004612e63565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61018b6102e3366004612e91565b6116f6565b60006001600160a01b0383166103585760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103af57506001600160e01b031982166303a24d0760e21b145b806103ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103df90612ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461040b90612ef9565b80156104585780601f1061042d57610100808354040283529160200191610458565b820191906000526020600020905b81548152906001019060200180831161043b57829003601f168201915b50505050509050919050565b6001600160a01b038516331480610480575061048085336102a7565b61049c5760405162461bcd60e51b815260040161034f90612f2e565b6104a9858585858561173b565b5050505050565b6001600160a01b03821660009081526003602052604081208054839081106104da576104da612f7c565b9060005260206000200154905092915050565b606081518351146105525760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161034f565b600083516001600160401b0381111561056d5761056d6129fc565b604051908082528060200260200182016040528015610596578160200160208202803683370190505b50905060005b845181101561060e576105e18582815181106105ba576105ba612f7c565b60200260200101518583815181106105d4576105d4612f7c565b60200260200101516102e8565b8282815181106105f3576105f3612f7c565b602090810291909101015261060781612fa8565b905061059c565b509392505050565b60006006828154811061062b5761062b612f7c565b90600052602060002001549050919050565b606061065061064b83613096565b611934565b61067f61066060208401846130a2565b61067060408501602086016130a2565b846040013585606001356119d0565b6106ae61068f60208401846130a2565b61069f60408501602086016130a2565b84604001358560600135611a44565b60006106f67f00000000000000000000000000000000000000000000000000000000000000006106e160208601866130a2565b6106f160408701602088016130a2565b611abc565b9050600060e084013515610921578360e00135826001600160a01b031663af2f91ea866040013587606001353060006040518563ffffffff1660e01b815260040161074494939291906130f7565b60206040518083038186803b15801561075c57600080fd5b505afa158015610770573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610794919061312a565b61079e9190613143565b6040805160a08101909152909150600090806107bd60208801886130a2565b6001600160a01b031681526020018660200160208101906107de91906130a2565b6001600160a01b03168152602001866040013581526020018660600135815260200160006002811115610813576108136130bf565b90529050600061082282611ae1565b6000818152600a6020526040902054909150806108ef57600b6000815461084890612fa8565b9182905550600081815260096020908152604091829020865181546001600160a01b039182166001600160a01b0319918216178355928801516001808401805492909316919094161790559186015160028084019190915560608701516003840155608087015160048401805495965088959193909260ff199092169184908111156108d6576108d66130bf565b021790555050506000828152600a602052604090208190555b61091d61090260a0890160808a016130a2565b828960e0013560405180602001604052806000815250611b11565b5050505b600061010085013515610b4d57846101000135836001600160a01b031663af2f91ea876040013588606001353060016040518563ffffffff1660e01b815260040161096f94939291906130f7565b60206040518083038186803b15801561098757600080fd5b505afa15801561099b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf919061312a565b6109c99190613143565b6040805160a08101909152909150600090806109e860208901896130a2565b6001600160a01b03168152602001876020016020810190610a0991906130a2565b6001600160a01b03168152602001876040013581526020018760600135815260200160016002811115610a3e57610a3e6130bf565b905290506000610a4d82611ae1565b6000818152600a602052604090205490915080610b1a57600b60008154610a7390612fa8565b9182905550600081815260096020908152604091829020865181546001600160a01b039182166001600160a01b0319918216178355928801516001808401805492909316919094161790559186015160028084019190915560608701516003840155608087015160048401805495965088959193909260ff19909216918490811115610b0157610b016130bf565b021790555050506000828152600a602052604090208190555b610b49610b2d60c08a0160a08b016130a2565b828a610100013560405180602001604052806000815250611b11565b5050505b600061012086013515610d7857856101200135846001600160a01b031663af2f91ea886040013589606001353060026040518563ffffffff1660e01b8152600401610b9b94939291906130f7565b60206040518083038186803b158015610bb357600080fd5b505afa158015610bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610beb919061312a565b610bf59190613143565b6040805160a0810190915290915060009080610c1460208a018a6130a2565b6001600160a01b03168152602001886020016020810190610c3591906130a2565b6001600160a01b031681526020018860400135815260200188606001358152602001600280811115610c6957610c696130bf565b905290506000610c7882611ae1565b6000818152600a602052604090205490915080610d4557600b60008154610c9e90612fa8565b9182905550600081815260096020908152604091829020865181546001600160a01b039182166001600160a01b0319918216178355928801516001808401805492909316919094161790559186015160028084019190915560608701516003840155608087015160048401805495965088959193909260ff19909216918490811115610d2c57610d2c6130bf565b021790555050506000828152600a602052604090208190555b610d74610d5860e08b0160c08c016130a2565b828b610120013560405180602001604052806000815250611b11565b5050505b604080516101008101909152339063e13c022c9080610d9a60208b018b6130a2565b6001600160a01b03168152602001896020016020810190610dbb91906130a2565b6001600160a01b0316815260200189604001358152602001896060013581526020018960e0013581526020018961010001358152602001896101200135815260200189806101400190610e0e919061315b565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152506040516001600160e01b031960e084901b168152610e659190600401613210565b600060405180830381600087803b158015610e7f57600080fd5b505af1158015610e93573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ebb9190810190613223565b945060e086013515610f5b57610f5b846001600160a01b031663af2f91ea886040013589606001353060006040518563ffffffff1660e01b8152600401610f0594939291906130f7565b60206040518083038186803b158015610f1d57600080fd5b505afa158015610f31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f55919061312a565b84611c43565b61010086013515610ffa57610ffa846001600160a01b031663af2f91ea886040013589606001353060016040518563ffffffff1660e01b8152600401610fa494939291906130f7565b60206040518083038186803b158015610fbc57600080fd5b505afa158015610fd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff4919061312a565b83611c43565b6101208601351561109957611099846001600160a01b031663af2f91ea886040013589606001353060026040518563ffffffff1660e01b815260040161104394939291906130f7565b60206040518083038186803b15801561105b57600080fd5b505afa15801561106f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611093919061312a565b82611c43565b6110c86110a960208801886130a2565b6110b96040890160208a016130a2565b88604001358960600135611c6e565b50505050919050565b6111168484600a60006110f16110ec368990038901896132a4565b611ae1565b81526020019081526020016000205484604051806020016040528060008152506116f6565b50505050565b611127338383611cc3565b5050565b606061113961064b83613096565b61114961068f60208401846130a2565b600061117c7f00000000000000000000000000000000000000000000000000000000000000006106e160208601866130a2565b905060e08301351561120b576001600160a01b03811663b2ceca77604085013560608601356111b160a08801608089016130a2565b60008860e001356040518663ffffffff1660e01b81526004016111d895949392919061332f565b600060405180830381600087803b1580156111f257600080fd5b505af1158015611206573d6000803e3d6000fd5b505050505b6101008301351561129a576001600160a01b03811663b2ceca776040850135606086013561123f60c0880160a089016130a2565b60018861010001356040518663ffffffff1660e01b815260040161126795949392919061332f565b600060405180830381600087803b15801561128157600080fd5b505af1158015611295573d6000803e3d6000fd5b505050505b61012083013515611329576001600160a01b03811663b2ceca77604085013560608601356112ce60e0880160c089016130a2565b60028861012001356040518663ffffffff1660e01b81526004016112f695949392919061332f565b600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b505050505b61133761014084018461315b565b15905061148457604080516101008101909152339063fb05b8fe908061136060208801886130a2565b6001600160a01b0316815260200186602001602081019061138191906130a2565b6001600160a01b0316815260200186604001358152602001866060013581526020018660e00135815260200186610100013581526020018661012001358152602001868061014001906113d4919061315b565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152506040516001600160e01b031960e084901b16815261142b9190600401613210565b600060405180830381600087803b15801561144557600080fd5b505af1158015611459573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114819190810190613223565b91505b60e083013515611530576040805160a08101909152600090806114aa60208701876130a2565b6001600160a01b031681526020018560200160208101906114cb91906130a2565b6001600160a01b03168152602001856040013581526020018560600135815260200160006002811115611500576115006130bf565b9052905061152e33600a600061151585611ae1565b8152602001908152602001600020548660e00135611da4565b505b610100830135156115de576040805160a081019091526000908061155760208701876130a2565b6001600160a01b0316815260200185602001602081019061157891906130a2565b6001600160a01b031681526020018560400135815260200185606001358152602001600160028111156115ad576115ad6130bf565b905290506115dc33600a60006115c285611ae1565b815260200190815260200160002054866101000135611da4565b505b6101208301351561168b576040805160a081019091526000908061160560208701876130a2565b6001600160a01b0316815260200185602001602081019061162691906130a2565b6001600160a01b03168152602001856040013581526020018560600135815260200160028081111561165a5761165a6130bf565b9052905061168933600a600061166f85611ae1565b815260200190815260200160002054866101200135611da4565b505b6116ba61169b60208501856130a2565b6116ab60408601602087016130a2565b85604001358660600135611c6e565b50919050565b60006116ef83600a836116db6110ec368890038801886132a4565b8152602001908152602001600020546102e8565b9392505050565b6001600160a01b038516331480611712575061171285336102a7565b61172e5760405162461bcd60e51b815260040161034f90612f2e565b6104a98585858585611f3e565b815183511461179d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161034f565b6001600160a01b0384166117c35760405162461bcd60e51b815260040161034f90613369565b336117d2818787878787612084565b60005b84518110156118b85760008582815181106117f2576117f2612f7c565b60200260200101519050600085838151811061181057611810612f7c565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156118605760405162461bcd60e51b815260040161034f906133ae565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061189d908490613143565b92505081905550505050806118b190612fa8565b90506117d5565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119089291906133f8565b60405180910390a461191e8187878787876120f7565b61192c81878787878761216a565b505050505050565b60808101516001600160a01b03161580611959575060a08101516001600160a01b0316155b8061196f575060c08101516001600160a01b0316155b1561197c5761197c6122d5565b60608101516001600160601b03101561199c5761199c81606001516122ee565b60e08101511580156119b15750610100810151155b80156119c05750610120810151155b156119cd576119cd61230a565b50565b6000848484846040516020016119e9949392919061341d565b60408051601f198184030181529181528151602092830120600081815260089093529120549091506001600160601b03166104a957600081815260086020526040902080546001600160601b03191660011790555050505050565b600084848484604051602001611a5d949392919061341d565b60408051601f19818403018152918152815160209283012060008181526008909352912054909150611a97906001600160601b0316612323565b600090815260086020526040902080546001600160601b031916600217905550505050565b6000611ac9848484612375565b90506001600160a01b0381166116ef576116ef6122d5565b600081604051602001611af49190613446565b604051602081830303815290604052805190602001209050919050565b6001600160a01b038416611b715760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161034f565b336000611b7d85612402565b90506000611b8a85612402565b9050611b9b83600089858589612084565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611bcb908490613143565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c2b836000898585896120f7565b611c3a8360008989898961244d565b50505050505050565b8082101561112757604051631c22ff0160e21b8152600481018390526024810182905260440161034f565b600084848484604051602001611c87949392919061341d565b60408051601f19818403018152918152815160209283012060009081526008909252902080546001600160601b03191660011790555050505050565b816001600160a01b0316836001600160a01b03161415611d375760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161034f565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316611e065760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161034f565b336000611e1284612402565b90506000611e1f84612402565b9050611e3f83876000858560405180602001604052806000815250612084565b6000858152602081815260408083206001600160a01b038a16845290915290205484811015611ebc5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161034f565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c3a848860008686604051806020016040528060008152506120f7565b6001600160a01b038416611f645760405162461bcd60e51b815260040161034f90613369565b336000611f7085612402565b90506000611f7d85612402565b9050611f8d838989858589612084565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015611fce5760405162461bcd60e51b815260040161034f906133ae565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061200b908490613143565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461206b848a8a86868a6120f7565b612079848a8a8a8a8a61244d565b505050505050505050565b60005b8351811015611c3a578281815181106120a2576120a2612f7c565b60200260200101516000146120ef576120ef86868684815181106120c8576120c8612f7c565b60200260200101518685815181106120e2576120e2612f7c565b6020026020010151612517565b600101612087565b60005b8351811015611c3a5782818151811061211557612115612f7c565b602002602001015160001461216257612162868686848151811061213b5761213b612f7c565b602002602001015186858151811061215557612155612f7c565b6020026020010151612640565b6001016120fa565b6001600160a01b0384163b1561192c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906121ae9089908990889088908890600401613494565b602060405180830381600087803b1580156121c857600080fd5b505af19250505080156121f8575060408051601f3d908101601f191682019092526121f5918101906134f2565b60015b6122a55761220461350f565b806308c379a0141561223e575061221961352b565b806122245750612240565b8060405162461bcd60e51b815260040161034f91906129e9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161034f565b6001600160e01b0319811663bc197c8160e01b14611c3a5760405162461bcd60e51b815260040161034f906135b4565b60405163d92e233d60e01b815260040160405180910390fd5b6040516335f135d360e01b81526004810182905260240161034f565b60405163af458c0760e01b815260040160405180910390fd5b6001600160601b03811661234a5760405163e2228b1560e01b815260040160405180910390fd5b6001600160601b038116600214156119cd5760405163865a6de560e01b815260040160405180910390fd5b60405163d81e842360e01b81526001600160a01b03838116600483015282811660248301526000919085169063d81e84239060440160206040518083038186803b1580156123c257600080fd5b505afa1580156123d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fa91906135fc565b949350505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061243c5761243c612f7c565b602090810291909101015292915050565b6001600160a01b0384163b1561192c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906124919089908990889088908890600401613619565b602060405180830381600087803b1580156124ab57600080fd5b505af19250505080156124db575060408051601f3d908101601f191682019092526124d8918101906134f2565b60015b6124e75761220461350f565b6001600160e01b0319811663f23a6e6160e01b14611c3a5760405162461bcd60e51b815260040161034f906135b4565b6001600160a01b0384166125b05760008281526005602052604090205415801561253f575060015b1561258c5761258c82600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b600082815260056020526040812080548392906125aa908490613143565b90915550505b6001600160a01b038316158015906125da5750836001600160a01b0316836001600160a01b031614155b15611116576125e983836102e8565b1580156125f4575060015b15611116576001600160a01b0383166000908152600360208181526040808420805460048452828620888752845291852082905592825260018101835591835290912001829055611116565b6001600160a01b038316612699576000828152600560205260408120805483929061266c90849061365e565b909155505060008281526005602052604090205415801561268b575060015b1561269957612699826126ec565b6001600160a01b038416158015906126c35750826001600160a01b0316846001600160a01b031614155b15611116576126d284836102e8565b1580156126dd575060015b156111165761111684836127a8565b6006546000906126fe9060019061365e565b60008381526007602052604090205490915080821461276d5760006006838154811061272c5761272c612f7c565b90600052602060002001549050806006838154811061274d5761274d612f7c565b600091825260208083209091019290925591825260079052604090208190555b600083815260076020526040812055600680548061278d5761278d613675565b60019003818190600052602060002001600090559055505050565b6001600160a01b0382166000908152600360205260408120546127cd9060019061365e565b6001600160a01b038416600090815260046020908152604080832086845290915290205490915080821461289b576001600160a01b038416600090815260036020526040812080548490811061282557612825612f7c565b906000526020600020015490508060036000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061286957612869612f7c565b60009182526020808320909101929092556001600160a01b038716815260048252604080822093825292909152208190555b6001600160a01b0384166000818152600460209081526040808320878452825280832083905592825260039052208054806128d8576128d8613675565b6001900381819060005260206000200160009055905550505050565b6001600160a01b03811681146119cd57600080fd5b8035612914816128f4565b919050565b6000806040838503121561292c57600080fd5b8235612937816128f4565b946020939093013593505050565b6001600160e01b0319811681146119cd57600080fd5b60006020828403121561296d57600080fd5b81356116ef81612945565b60006020828403121561298a57600080fd5b5035919050565b60005b838110156129ac578181015183820152602001612994565b838111156111165750506000910152565b600081518084526129d5816020860160208601612991565b601f01601f19169290920160200192915050565b6020815260006116ef60208301846129bd565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612a3757612a376129fc565b6040525050565b60405161016081016001600160401b0381118282101715612a6157612a616129fc565b60405290565b60006001600160401b03821115612a8057612a806129fc565b5060051b60200190565b600082601f830112612a9b57600080fd5b81356020612aa882612a67565b604051612ab58282612a12565b83815260059390931b8501820192828101915086841115612ad557600080fd5b8286015b84811015612af05780358352918301918301612ad9565b509695505050505050565b60006001600160401b03821115612b1457612b146129fc565b50601f01601f191660200190565b600082601f830112612b3357600080fd5b8135612b3e81612afb565b604051612b4b8282612a12565b828152856020848701011115612b6057600080fd5b82602086016020830137600092810160200192909252509392505050565b600080600080600060a08688031215612b9657600080fd5b8535612ba1816128f4565b94506020860135612bb1816128f4565b935060408601356001600160401b0380821115612bcd57600080fd5b612bd989838a01612a8a565b94506060880135915080821115612bef57600080fd5b612bfb89838a01612a8a565b93506080880135915080821115612c1157600080fd5b50612c1e88828901612b22565b9150509295509295909350565b60008060408385031215612c3e57600080fd5b82356001600160401b0380821115612c5557600080fd5b818501915085601f830112612c6957600080fd5b81356020612c7682612a67565b604051612c838282612a12565b83815260059390931b8501820192828101915089841115612ca357600080fd5b948201945b83861015612cca578535612cbb816128f4565b82529482019490820190612ca8565b96505086013592505080821115612ce057600080fd5b50612ced85828601612a8a565b9150509250929050565b600081518084526020808501945080840160005b83811015612d2757815187529582019590820190600101612d0b565b509495945050505050565b6020815260006116ef6020830184612cf7565b600061016082840312156116ba57600080fd5b600060208284031215612d6a57600080fd5b81356001600160401b03811115612d8057600080fd5b6123fa84828501612d45565b600060a082840312156116ba57600080fd5b6000806000806101008587031215612db557600080fd5b8435612dc0816128f4565b93506020850135612dd0816128f4565b9250612ddf8660408701612d8c565b9396929550929360e00135925050565b60008060408385031215612e0257600080fd5b8235612e0d816128f4565b915060208301358015158114612e2257600080fd5b809150509250929050565b60008060c08385031215612e4057600080fd5b8235612e4b816128f4565b9150612e5a8460208501612d8c565b90509250929050565b60008060408385031215612e7657600080fd5b8235612e81816128f4565b91506020830135612e22816128f4565b600080600080600060a08688031215612ea957600080fd5b8535612eb4816128f4565b94506020860135612ec4816128f4565b9350604086013592506060860135915060808601356001600160401b03811115612eed57600080fd5b612c1e88828901612b22565b600181811c90821680612f0d57607f821691505b602082108114156116ba57634e487b7160e01b600052602260045260246000fd5b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612fbc57612fbc612f92565b5060010190565b60006101608284031215612fd657600080fd5b612fde612a3e565b9050612fe982612909565b8152612ff760208301612909565b6020820152604082013560408201526060820135606082015261301c60808301612909565b608082015261302d60a08301612909565b60a082015261303e60c08301612909565b60c082015260e0828101359082015261010080830135908201526101208083013590820152610140808301356001600160401b0381111561307e57600080fd5b61308a85828601612b22565b82840152505092915050565b60006103ca3683612fc3565b6000602082840312156130b457600080fd5b81356116ef816128f4565b634e487b7160e01b600052602160045260246000fd5b600381106130f357634e487b7160e01b600052602160045260246000fd5b9052565b848152602081018490526001600160a01b03831660408201526080810161312160608301846130d5565b95945050505050565b60006020828403121561313c57600080fd5b5051919050565b6000821982111561315657613156612f92565b500190565b6000808335601e1984360301811261317257600080fd5b8301803591506001600160401b0382111561318c57600080fd5b6020019150368190038213156131a157600080fd5b9250929050565b600061010060018060a01b038084511685528060208501511660208601525060408301516040850152606083015160608501526080830151608085015260a083015160a085015260c083015160c085015260e08301518160e0860152613121828601826129bd565b6020815260006116ef60208301846131a8565b60006020828403121561323557600080fd5b81516001600160401b0381111561324b57600080fd5b8201601f8101841361325c57600080fd5b805161326781612afb565b6040516132748282612a12565b82815286602084860101111561328957600080fd5b61329a836020830160208701612991565b9695505050505050565b600060a082840312156132b657600080fd5b60405160a081018181106001600160401b03821117156132d8576132d86129fc565b60405282356132e6816128f4565b815260208301356132f6816128f4565b80602083015250604083013560408201526060830135606082015260808301356003811061332357600080fd5b60808201529392505050565b858152602081018590526001600160a01b038416604082015260a0810161335960608301856130d5565b8260808301529695505050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061340b6040830185612cf7565b82810360208401526131218185612cf7565b6001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b81516001600160a01b03908116825260208084015190911690820152604080830151908201526060808301519082015260808083015160a083019161348d908401826130d5565b5092915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906134c090830186612cf7565b82810360608401526134d28186612cf7565b905082810360808401526134e681856129bd565b98975050505050505050565b60006020828403121561350457600080fd5b81516116ef81612945565b600060033d11156135285760046000803e5060005160e01c5b90565b600060443d10156135395790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561356857505050505090565b82850191508151818111156135805750505050505090565b843d870101602082850101111561359a5750505050505090565b6135a960208286010187612a12565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60006020828403121561360e57600080fd5b81516116ef816128f4565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613653908301846129bd565b979650505050505050565b60008282101561367057613670612f92565b500390565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220116825d2055ed48e221166713eac0b94e1659b88c9a809e4a2a937e9c44af77764736f6c6343000808003300000000000000000000000017385e95cb74a20150e4fa092aa72d57330896c400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010a5760003560e01c80634fd991ea116100a2578063b3461c8711610071578063b3461c8714610227578063bb19c64814610266578063bd85b03914610279578063e985e9c514610299578063f242432a146102d557600080fd5b80634fd991ea146101db5780635c9b7282146101ee578063a22cb46514610201578063a38d7a171461021457600080fd5b80632f745c59116100de5780632f745c591461018d578063390a5ba5146101a05780634e1273f4146101a85780634f6ccce7146101c857600080fd5b8062fdd58e1461010f57806301ffc9a7146101355780630e89341c146101585780632eb2c2d614610178575b600080fd5b61012261011d366004612919565b6102e8565b6040519081526020015b60405180910390f35b61014861014336600461295b565b61037e565b604051901515815260200161012c565b61016b610166366004612978565b6103d0565b60405161012c91906129e9565b61018b610186366004612b7e565b610464565b005b61012261019b366004612919565b6104b0565b600654610122565b6101bb6101b6366004612c2b565b6104ed565b60405161012c9190612d32565b6101226101d6366004612978565b610616565b61016b6101e9366004612d58565b61063d565b61018b6101fc366004612d9e565b6110d1565b61018b61020f366004612def565b61111c565b61016b610222366004612d58565b61112b565b61024e7f00000000000000000000000017385e95cb74a20150e4fa092aa72d57330896c481565b6040516001600160a01b03909116815260200161012c565b610122610274366004612e2d565b6116c0565b610122610287366004612978565b60009081526005602052604090205490565b6101486102a7366004612e63565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61018b6102e3366004612e91565b6116f6565b60006001600160a01b0383166103585760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103af57506001600160e01b031982166303a24d0760e21b145b806103ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103df90612ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461040b90612ef9565b80156104585780601f1061042d57610100808354040283529160200191610458565b820191906000526020600020905b81548152906001019060200180831161043b57829003601f168201915b50505050509050919050565b6001600160a01b038516331480610480575061048085336102a7565b61049c5760405162461bcd60e51b815260040161034f90612f2e565b6104a9858585858561173b565b5050505050565b6001600160a01b03821660009081526003602052604081208054839081106104da576104da612f7c565b9060005260206000200154905092915050565b606081518351146105525760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161034f565b600083516001600160401b0381111561056d5761056d6129fc565b604051908082528060200260200182016040528015610596578160200160208202803683370190505b50905060005b845181101561060e576105e18582815181106105ba576105ba612f7c565b60200260200101518583815181106105d4576105d4612f7c565b60200260200101516102e8565b8282815181106105f3576105f3612f7c565b602090810291909101015261060781612fa8565b905061059c565b509392505050565b60006006828154811061062b5761062b612f7c565b90600052602060002001549050919050565b606061065061064b83613096565b611934565b61067f61066060208401846130a2565b61067060408501602086016130a2565b846040013585606001356119d0565b6106ae61068f60208401846130a2565b61069f60408501602086016130a2565b84604001358560600135611a44565b60006106f67f00000000000000000000000017385e95cb74a20150e4fa092aa72d57330896c46106e160208601866130a2565b6106f160408701602088016130a2565b611abc565b9050600060e084013515610921578360e00135826001600160a01b031663af2f91ea866040013587606001353060006040518563ffffffff1660e01b815260040161074494939291906130f7565b60206040518083038186803b15801561075c57600080fd5b505afa158015610770573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610794919061312a565b61079e9190613143565b6040805160a08101909152909150600090806107bd60208801886130a2565b6001600160a01b031681526020018660200160208101906107de91906130a2565b6001600160a01b03168152602001866040013581526020018660600135815260200160006002811115610813576108136130bf565b90529050600061082282611ae1565b6000818152600a6020526040902054909150806108ef57600b6000815461084890612fa8565b9182905550600081815260096020908152604091829020865181546001600160a01b039182166001600160a01b0319918216178355928801516001808401805492909316919094161790559186015160028084019190915560608701516003840155608087015160048401805495965088959193909260ff199092169184908111156108d6576108d66130bf565b021790555050506000828152600a602052604090208190555b61091d61090260a0890160808a016130a2565b828960e0013560405180602001604052806000815250611b11565b5050505b600061010085013515610b4d57846101000135836001600160a01b031663af2f91ea876040013588606001353060016040518563ffffffff1660e01b815260040161096f94939291906130f7565b60206040518083038186803b15801561098757600080fd5b505afa15801561099b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf919061312a565b6109c99190613143565b6040805160a08101909152909150600090806109e860208901896130a2565b6001600160a01b03168152602001876020016020810190610a0991906130a2565b6001600160a01b03168152602001876040013581526020018760600135815260200160016002811115610a3e57610a3e6130bf565b905290506000610a4d82611ae1565b6000818152600a602052604090205490915080610b1a57600b60008154610a7390612fa8565b9182905550600081815260096020908152604091829020865181546001600160a01b039182166001600160a01b0319918216178355928801516001808401805492909316919094161790559186015160028084019190915560608701516003840155608087015160048401805495965088959193909260ff19909216918490811115610b0157610b016130bf565b021790555050506000828152600a602052604090208190555b610b49610b2d60c08a0160a08b016130a2565b828a610100013560405180602001604052806000815250611b11565b5050505b600061012086013515610d7857856101200135846001600160a01b031663af2f91ea886040013589606001353060026040518563ffffffff1660e01b8152600401610b9b94939291906130f7565b60206040518083038186803b158015610bb357600080fd5b505afa158015610bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610beb919061312a565b610bf59190613143565b6040805160a0810190915290915060009080610c1460208a018a6130a2565b6001600160a01b03168152602001886020016020810190610c3591906130a2565b6001600160a01b031681526020018860400135815260200188606001358152602001600280811115610c6957610c696130bf565b905290506000610c7882611ae1565b6000818152600a602052604090205490915080610d4557600b60008154610c9e90612fa8565b9182905550600081815260096020908152604091829020865181546001600160a01b039182166001600160a01b0319918216178355928801516001808401805492909316919094161790559186015160028084019190915560608701516003840155608087015160048401805495965088959193909260ff19909216918490811115610d2c57610d2c6130bf565b021790555050506000828152600a602052604090208190555b610d74610d5860e08b0160c08c016130a2565b828b610120013560405180602001604052806000815250611b11565b5050505b604080516101008101909152339063e13c022c9080610d9a60208b018b6130a2565b6001600160a01b03168152602001896020016020810190610dbb91906130a2565b6001600160a01b0316815260200189604001358152602001896060013581526020018960e0013581526020018961010001358152602001896101200135815260200189806101400190610e0e919061315b565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152506040516001600160e01b031960e084901b168152610e659190600401613210565b600060405180830381600087803b158015610e7f57600080fd5b505af1158015610e93573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ebb9190810190613223565b945060e086013515610f5b57610f5b846001600160a01b031663af2f91ea886040013589606001353060006040518563ffffffff1660e01b8152600401610f0594939291906130f7565b60206040518083038186803b158015610f1d57600080fd5b505afa158015610f31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f55919061312a565b84611c43565b61010086013515610ffa57610ffa846001600160a01b031663af2f91ea886040013589606001353060016040518563ffffffff1660e01b8152600401610fa494939291906130f7565b60206040518083038186803b158015610fbc57600080fd5b505afa158015610fd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff4919061312a565b83611c43565b6101208601351561109957611099846001600160a01b031663af2f91ea886040013589606001353060026040518563ffffffff1660e01b815260040161104394939291906130f7565b60206040518083038186803b15801561105b57600080fd5b505afa15801561106f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611093919061312a565b82611c43565b6110c86110a960208801886130a2565b6110b96040890160208a016130a2565b88604001358960600135611c6e565b50505050919050565b6111168484600a60006110f16110ec368990038901896132a4565b611ae1565b81526020019081526020016000205484604051806020016040528060008152506116f6565b50505050565b611127338383611cc3565b5050565b606061113961064b83613096565b61114961068f60208401846130a2565b600061117c7f00000000000000000000000017385e95cb74a20150e4fa092aa72d57330896c46106e160208601866130a2565b905060e08301351561120b576001600160a01b03811663b2ceca77604085013560608601356111b160a08801608089016130a2565b60008860e001356040518663ffffffff1660e01b81526004016111d895949392919061332f565b600060405180830381600087803b1580156111f257600080fd5b505af1158015611206573d6000803e3d6000fd5b505050505b6101008301351561129a576001600160a01b03811663b2ceca776040850135606086013561123f60c0880160a089016130a2565b60018861010001356040518663ffffffff1660e01b815260040161126795949392919061332f565b600060405180830381600087803b15801561128157600080fd5b505af1158015611295573d6000803e3d6000fd5b505050505b61012083013515611329576001600160a01b03811663b2ceca77604085013560608601356112ce60e0880160c089016130a2565b60028861012001356040518663ffffffff1660e01b81526004016112f695949392919061332f565b600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b505050505b61133761014084018461315b565b15905061148457604080516101008101909152339063fb05b8fe908061136060208801886130a2565b6001600160a01b0316815260200186602001602081019061138191906130a2565b6001600160a01b0316815260200186604001358152602001866060013581526020018660e00135815260200186610100013581526020018661012001358152602001868061014001906113d4919061315b565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152506040516001600160e01b031960e084901b16815261142b9190600401613210565b600060405180830381600087803b15801561144557600080fd5b505af1158015611459573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114819190810190613223565b91505b60e083013515611530576040805160a08101909152600090806114aa60208701876130a2565b6001600160a01b031681526020018560200160208101906114cb91906130a2565b6001600160a01b03168152602001856040013581526020018560600135815260200160006002811115611500576115006130bf565b9052905061152e33600a600061151585611ae1565b8152602001908152602001600020548660e00135611da4565b505b610100830135156115de576040805160a081019091526000908061155760208701876130a2565b6001600160a01b0316815260200185602001602081019061157891906130a2565b6001600160a01b031681526020018560400135815260200185606001358152602001600160028111156115ad576115ad6130bf565b905290506115dc33600a60006115c285611ae1565b815260200190815260200160002054866101000135611da4565b505b6101208301351561168b576040805160a081019091526000908061160560208701876130a2565b6001600160a01b0316815260200185602001602081019061162691906130a2565b6001600160a01b03168152602001856040013581526020018560600135815260200160028081111561165a5761165a6130bf565b9052905061168933600a600061166f85611ae1565b815260200190815260200160002054866101200135611da4565b505b6116ba61169b60208501856130a2565b6116ab60408601602087016130a2565b85604001358660600135611c6e565b50919050565b60006116ef83600a836116db6110ec368890038801886132a4565b8152602001908152602001600020546102e8565b9392505050565b6001600160a01b038516331480611712575061171285336102a7565b61172e5760405162461bcd60e51b815260040161034f90612f2e565b6104a98585858585611f3e565b815183511461179d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161034f565b6001600160a01b0384166117c35760405162461bcd60e51b815260040161034f90613369565b336117d2818787878787612084565b60005b84518110156118b85760008582815181106117f2576117f2612f7c565b60200260200101519050600085838151811061181057611810612f7c565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156118605760405162461bcd60e51b815260040161034f906133ae565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061189d908490613143565b92505081905550505050806118b190612fa8565b90506117d5565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119089291906133f8565b60405180910390a461191e8187878787876120f7565b61192c81878787878761216a565b505050505050565b60808101516001600160a01b03161580611959575060a08101516001600160a01b0316155b8061196f575060c08101516001600160a01b0316155b1561197c5761197c6122d5565b60608101516001600160601b03101561199c5761199c81606001516122ee565b60e08101511580156119b15750610100810151155b80156119c05750610120810151155b156119cd576119cd61230a565b50565b6000848484846040516020016119e9949392919061341d565b60408051601f198184030181529181528151602092830120600081815260089093529120549091506001600160601b03166104a957600081815260086020526040902080546001600160601b03191660011790555050505050565b600084848484604051602001611a5d949392919061341d565b60408051601f19818403018152918152815160209283012060008181526008909352912054909150611a97906001600160601b0316612323565b600090815260086020526040902080546001600160601b031916600217905550505050565b6000611ac9848484612375565b90506001600160a01b0381166116ef576116ef6122d5565b600081604051602001611af49190613446565b604051602081830303815290604052805190602001209050919050565b6001600160a01b038416611b715760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161034f565b336000611b7d85612402565b90506000611b8a85612402565b9050611b9b83600089858589612084565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611bcb908490613143565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c2b836000898585896120f7565b611c3a8360008989898961244d565b50505050505050565b8082101561112757604051631c22ff0160e21b8152600481018390526024810182905260440161034f565b600084848484604051602001611c87949392919061341d565b60408051601f19818403018152918152815160209283012060009081526008909252902080546001600160601b03191660011790555050505050565b816001600160a01b0316836001600160a01b03161415611d375760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161034f565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316611e065760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161034f565b336000611e1284612402565b90506000611e1f84612402565b9050611e3f83876000858560405180602001604052806000815250612084565b6000858152602081815260408083206001600160a01b038a16845290915290205484811015611ebc5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161034f565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c3a848860008686604051806020016040528060008152506120f7565b6001600160a01b038416611f645760405162461bcd60e51b815260040161034f90613369565b336000611f7085612402565b90506000611f7d85612402565b9050611f8d838989858589612084565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015611fce5760405162461bcd60e51b815260040161034f906133ae565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061200b908490613143565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461206b848a8a86868a6120f7565b612079848a8a8a8a8a61244d565b505050505050505050565b60005b8351811015611c3a578281815181106120a2576120a2612f7c565b60200260200101516000146120ef576120ef86868684815181106120c8576120c8612f7c565b60200260200101518685815181106120e2576120e2612f7c565b6020026020010151612517565b600101612087565b60005b8351811015611c3a5782818151811061211557612115612f7c565b602002602001015160001461216257612162868686848151811061213b5761213b612f7c565b602002602001015186858151811061215557612155612f7c565b6020026020010151612640565b6001016120fa565b6001600160a01b0384163b1561192c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906121ae9089908990889088908890600401613494565b602060405180830381600087803b1580156121c857600080fd5b505af19250505080156121f8575060408051601f3d908101601f191682019092526121f5918101906134f2565b60015b6122a55761220461350f565b806308c379a0141561223e575061221961352b565b806122245750612240565b8060405162461bcd60e51b815260040161034f91906129e9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161034f565b6001600160e01b0319811663bc197c8160e01b14611c3a5760405162461bcd60e51b815260040161034f906135b4565b60405163d92e233d60e01b815260040160405180910390fd5b6040516335f135d360e01b81526004810182905260240161034f565b60405163af458c0760e01b815260040160405180910390fd5b6001600160601b03811661234a5760405163e2228b1560e01b815260040160405180910390fd5b6001600160601b038116600214156119cd5760405163865a6de560e01b815260040160405180910390fd5b60405163d81e842360e01b81526001600160a01b03838116600483015282811660248301526000919085169063d81e84239060440160206040518083038186803b1580156123c257600080fd5b505afa1580156123d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fa91906135fc565b949350505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061243c5761243c612f7c565b602090810291909101015292915050565b6001600160a01b0384163b1561192c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906124919089908990889088908890600401613619565b602060405180830381600087803b1580156124ab57600080fd5b505af19250505080156124db575060408051601f3d908101601f191682019092526124d8918101906134f2565b60015b6124e75761220461350f565b6001600160e01b0319811663f23a6e6160e01b14611c3a5760405162461bcd60e51b815260040161034f906135b4565b6001600160a01b0384166125b05760008281526005602052604090205415801561253f575060015b1561258c5761258c82600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b600082815260056020526040812080548392906125aa908490613143565b90915550505b6001600160a01b038316158015906125da5750836001600160a01b0316836001600160a01b031614155b15611116576125e983836102e8565b1580156125f4575060015b15611116576001600160a01b0383166000908152600360208181526040808420805460048452828620888752845291852082905592825260018101835591835290912001829055611116565b6001600160a01b038316612699576000828152600560205260408120805483929061266c90849061365e565b909155505060008281526005602052604090205415801561268b575060015b1561269957612699826126ec565b6001600160a01b038416158015906126c35750826001600160a01b0316846001600160a01b031614155b15611116576126d284836102e8565b1580156126dd575060015b156111165761111684836127a8565b6006546000906126fe9060019061365e565b60008381526007602052604090205490915080821461276d5760006006838154811061272c5761272c612f7c565b90600052602060002001549050806006838154811061274d5761274d612f7c565b600091825260208083209091019290925591825260079052604090208190555b600083815260076020526040812055600680548061278d5761278d613675565b60019003818190600052602060002001600090559055505050565b6001600160a01b0382166000908152600360205260408120546127cd9060019061365e565b6001600160a01b038416600090815260046020908152604080832086845290915290205490915080821461289b576001600160a01b038416600090815260036020526040812080548490811061282557612825612f7c565b906000526020600020015490508060036000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061286957612869612f7c565b60009182526020808320909101929092556001600160a01b038716815260048252604080822093825292909152208190555b6001600160a01b0384166000818152600460209081526040808320878452825280832083905592825260039052208054806128d8576128d8613675565b6001900381819060005260206000200160009055905550505050565b6001600160a01b03811681146119cd57600080fd5b8035612914816128f4565b919050565b6000806040838503121561292c57600080fd5b8235612937816128f4565b946020939093013593505050565b6001600160e01b0319811681146119cd57600080fd5b60006020828403121561296d57600080fd5b81356116ef81612945565b60006020828403121561298a57600080fd5b5035919050565b60005b838110156129ac578181015183820152602001612994565b838111156111165750506000910152565b600081518084526129d5816020860160208601612991565b601f01601f19169290920160200192915050565b6020815260006116ef60208301846129bd565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612a3757612a376129fc565b6040525050565b60405161016081016001600160401b0381118282101715612a6157612a616129fc565b60405290565b60006001600160401b03821115612a8057612a806129fc565b5060051b60200190565b600082601f830112612a9b57600080fd5b81356020612aa882612a67565b604051612ab58282612a12565b83815260059390931b8501820192828101915086841115612ad557600080fd5b8286015b84811015612af05780358352918301918301612ad9565b509695505050505050565b60006001600160401b03821115612b1457612b146129fc565b50601f01601f191660200190565b600082601f830112612b3357600080fd5b8135612b3e81612afb565b604051612b4b8282612a12565b828152856020848701011115612b6057600080fd5b82602086016020830137600092810160200192909252509392505050565b600080600080600060a08688031215612b9657600080fd5b8535612ba1816128f4565b94506020860135612bb1816128f4565b935060408601356001600160401b0380821115612bcd57600080fd5b612bd989838a01612a8a565b94506060880135915080821115612bef57600080fd5b612bfb89838a01612a8a565b93506080880135915080821115612c1157600080fd5b50612c1e88828901612b22565b9150509295509295909350565b60008060408385031215612c3e57600080fd5b82356001600160401b0380821115612c5557600080fd5b818501915085601f830112612c6957600080fd5b81356020612c7682612a67565b604051612c838282612a12565b83815260059390931b8501820192828101915089841115612ca357600080fd5b948201945b83861015612cca578535612cbb816128f4565b82529482019490820190612ca8565b96505086013592505080821115612ce057600080fd5b50612ced85828601612a8a565b9150509250929050565b600081518084526020808501945080840160005b83811015612d2757815187529582019590820190600101612d0b565b509495945050505050565b6020815260006116ef6020830184612cf7565b600061016082840312156116ba57600080fd5b600060208284031215612d6a57600080fd5b81356001600160401b03811115612d8057600080fd5b6123fa84828501612d45565b600060a082840312156116ba57600080fd5b6000806000806101008587031215612db557600080fd5b8435612dc0816128f4565b93506020850135612dd0816128f4565b9250612ddf8660408701612d8c565b9396929550929360e00135925050565b60008060408385031215612e0257600080fd5b8235612e0d816128f4565b915060208301358015158114612e2257600080fd5b809150509250929050565b60008060c08385031215612e4057600080fd5b8235612e4b816128f4565b9150612e5a8460208501612d8c565b90509250929050565b60008060408385031215612e7657600080fd5b8235612e81816128f4565b91506020830135612e22816128f4565b600080600080600060a08688031215612ea957600080fd5b8535612eb4816128f4565b94506020860135612ec4816128f4565b9350604086013592506060860135915060808601356001600160401b03811115612eed57600080fd5b612c1e88828901612b22565b600181811c90821680612f0d57607f821691505b602082108114156116ba57634e487b7160e01b600052602260045260246000fd5b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612fbc57612fbc612f92565b5060010190565b60006101608284031215612fd657600080fd5b612fde612a3e565b9050612fe982612909565b8152612ff760208301612909565b6020820152604082013560408201526060820135606082015261301c60808301612909565b608082015261302d60a08301612909565b60a082015261303e60c08301612909565b60c082015260e0828101359082015261010080830135908201526101208083013590820152610140808301356001600160401b0381111561307e57600080fd5b61308a85828601612b22565b82840152505092915050565b60006103ca3683612fc3565b6000602082840312156130b457600080fd5b81356116ef816128f4565b634e487b7160e01b600052602160045260246000fd5b600381106130f357634e487b7160e01b600052602160045260246000fd5b9052565b848152602081018490526001600160a01b03831660408201526080810161312160608301846130d5565b95945050505050565b60006020828403121561313c57600080fd5b5051919050565b6000821982111561315657613156612f92565b500190565b6000808335601e1984360301811261317257600080fd5b8301803591506001600160401b0382111561318c57600080fd5b6020019150368190038213156131a157600080fd5b9250929050565b600061010060018060a01b038084511685528060208501511660208601525060408301516040850152606083015160608501526080830151608085015260a083015160a085015260c083015160c085015260e08301518160e0860152613121828601826129bd565b6020815260006116ef60208301846131a8565b60006020828403121561323557600080fd5b81516001600160401b0381111561324b57600080fd5b8201601f8101841361325c57600080fd5b805161326781612afb565b6040516132748282612a12565b82815286602084860101111561328957600080fd5b61329a836020830160208701612991565b9695505050505050565b600060a082840312156132b657600080fd5b60405160a081018181106001600160401b03821117156132d8576132d86129fc565b60405282356132e6816128f4565b815260208301356132f6816128f4565b80602083015250604083013560408201526060830135606082015260808301356003811061332357600080fd5b60808201529392505050565b858152602081018590526001600160a01b038416604082015260a0810161335960608301856130d5565b8260808301529695505050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061340b6040830185612cf7565b82810360208401526131218185612cf7565b6001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b81516001600160a01b03908116825260208084015190911690820152604080830151908201526060808301519082015260808083015160a083019161348d908401826130d5565b5092915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906134c090830186612cf7565b82810360608401526134d28186612cf7565b905082810360808401526134e681856129bd565b98975050505050505050565b60006020828403121561350457600080fd5b81516116ef81612945565b600060033d11156135285760046000803e5060005160e01c5b90565b600060443d10156135395790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561356857505050505090565b82850191508151818111156135805750505050505090565b843d870101602082850101111561359a5750505050505090565b6135a960208286010187612a12565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60006020828403121561360e57600080fd5b81516116ef816128f4565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613653908301846129bd565b979650505050505050565b60008282101561367057613670612f92565b500390565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220116825d2055ed48e221166713eac0b94e1659b88c9a809e4a2a937e9c44af77764736f6c63430008080033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000017385e95cb74a20150e4fa092aa72d57330896c400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : chosenOptionFactory (address): 0x17385e95cb74A20150E4fA092Aa72D57330896C4
Arg [1] : uri (string):

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000017385e95cb74a20150e4fa092aa72d57330896c4
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.