ETH Price: $2,666.15 (+9.99%)
Gas: 1 Gwei

Token

TSUNAZUKI (TSUNAZUKI)
 

Overview

Max Total Supply

307 TSUNAZUKI

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TSUNAZUKI
0xac9da794943a0092bf7f81075e7947e26091bba6
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:
TSUNAZUKI

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-10
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.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
     * ====
     *
     * [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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// 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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: TSUNAZUKI.sol


pragma solidity >=0.8.9 <0.9.0;




contract TSUNAZUKI is ERC721A, Ownable, ReentrancyGuard {
    bool    public isSaleActive = false;
    string  public baseURI;
    uint256 public maxSupply = 6666;
    uint256 public freeMaxSupply = 100;
    uint256 public maxPerTxn = 10;
    uint256 public price = 0.01 ether;

    constructor() ERC721A("TSUNAZUKI", "TSUNAZUKI") {}

    modifier saleActive() {
        require(isSaleActive, "Public sale is not live");
        _;
    }

    function togglePublicSale() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    modifier mintAvailability(uint256 quantity) {
        require(totalSupply() + quantity <= maxSupply, "Exceeds max supply");
        _;
    }

    modifier mintMaxPerTxn(uint256 quantity) {
        require(quantity > 0 && quantity <= maxPerTxn, "Exceeds max per txn");
        _;
    }

    function mint(uint256 quantity) public payable saleActive mintAvailability(quantity) mintMaxPerTxn(quantity) {
        if (totalSupply() + quantity > freeMaxSupply) {
            require(msg.value >= price * quantity, "Free mint is sold out, use correct price");
        }
        _safeMint(msg.sender, quantity);
    }

    function reservedMint(address recipient, uint256 quantity) external onlyOwner mintAvailability(quantity) {
        _safeMint(recipient, quantity);
    }

    function updateFreeMint(uint256 _freeMaxSupply) public onlyOwner {
        freeMaxSupply = _freeMaxSupply;
    }
    
    function updateMaxSupply(uint256 newMaxSupply) external onlyOwner {
        maxSupply = newMaxSupply;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function withdraw() external onlyOwner nonReentrant{
        require(payable(owner()).send(address(this).balance), "Not enough funds to withdraw");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMaxSupply","type":"uint256"}],"name":"updateFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff19168155611a0a600c556064600d55600e55662386f26fc10000600f553480156200003457600080fd5b506040805180820182526009808252685453554e415a554b4960b81b6020808401828152855180870190965292855284015281519192916200007991600291620000fe565b5080516200008f906003906020840190620000fe565b50506000805550620000a133620000ac565b6001600955620001e1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010c90620001a4565b90600052602060002090601f0160209004810192826200013057600085556200017b565b82601f106200014b57805160ff19168380011785556200017b565b828001600101855582156200017b579182015b828111156200017b5782518255916020019190600101906200015e565b50620001899291506200018d565b5090565b5b808211156200018957600081556001016200018e565b600181811c90821680620001b957607f821691505b60208210811415620001db57634e487b7160e01b600052602260045260246000fd5b50919050565b611d2c80620001f16000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063b7a34c8a11610095578063e222c7f911610064578063e222c7f914610508578063e985e9c51461051d578063f103b43314610566578063f2fde38b1461058657600080fd5b8063b7a34c8a14610492578063b88d4fde146104b2578063c87b56dd146104d2578063d5abeb01146104f257600080fd5b806395d89b41116100d157806395d89b4114610434578063a035b1fe14610449578063a0712d681461045f578063a22cb4651461047257600080fd5b806370a08231146103c1578063715018a6146103e15780638da5cb5b146103f657806391b7f5ed1461041457600080fd5b80633ccfd60b1161017a578063564566a811610149578063564566a81461035257806361d15c491461036c5780636352211e1461038c5780636c0360eb146103ac57600080fd5b80633ccfd60b146102e757806342842e0e146102fc5780635097bdef1461031c57806355f804b31461033257600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b15780633cb51994146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611791565b6105a6565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f8565b604051610209919061180d565b34801561024057600080fd5b5061025461024f366004611820565b61068a565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611855565b6106ce565b005b34801561029a57600080fd5b50600154600054035b604051908152602001610209565b3480156102bd57600080fd5b5061028c6102cc36600461187f565b61075c565b3480156102dd57600080fd5b506102a3600e5481565b3480156102f357600080fd5b5061028c610767565b34801561030857600080fd5b5061028c61031736600461187f565b61086d565b34801561032857600080fd5b506102a3600d5481565b34801561033e57600080fd5b5061028c61034d366004611947565b610888565b34801561035e57600080fd5b50600a546101fd9060ff1681565b34801561037857600080fd5b5061028c610387366004611820565b6108c9565b34801561039857600080fd5b506102546103a7366004611820565b6108f8565b3480156103b857600080fd5b5061022761090a565b3480156103cd57600080fd5b506102a36103dc366004611990565b610998565b3480156103ed57600080fd5b5061028c6109e7565b34801561040257600080fd5b506008546001600160a01b0316610254565b34801561042057600080fd5b5061028c61042f366004611820565b610a1d565b34801561044057600080fd5b50610227610a4c565b34801561045557600080fd5b506102a3600f5481565b61028c61046d366004611820565b610a5b565b34801561047e57600080fd5b5061028c61048d3660046119ab565b610bfa565b34801561049e57600080fd5b5061028c6104ad366004611855565b610c90565b3480156104be57600080fd5b5061028c6104cd3660046119e7565b610d23565b3480156104de57600080fd5b506102276104ed366004611820565b610d74565b3480156104fe57600080fd5b506102a3600c5481565b34801561051457600080fd5b5061028c610df5565b34801561052957600080fd5b506101fd610538366004611a63565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057257600080fd5b5061028c610581366004611820565b610e33565b34801561059257600080fd5b5061028c6105a1366004611990565b610e62565b60006001600160e01b031982166380ac58cd60e01b14806105d757506001600160e01b03198216635b5e139f60e01b145b806105f257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060790611a96565b80601f016020809104026020016040519081016040528092919081815260200182805461063390611a96565b80156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b600061069582610efd565b6106b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d9826108f8565b9050806001600160a01b0316836001600160a01b0316141561070e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061072e575061072c8133610538565b155b1561074c576040516367d9dca160e11b815260040160405180910390fd5b610757838383610f28565b505050565b610757838383610f84565b6008546001600160a01b0316331461079a5760405162461bcd60e51b815260040161079190611ad1565b60405180910390fd5b600260095414156107ed5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610791565b60026009556008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050506108665760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066756e647320746f207769746864726177000000006044820152606401610791565b6001600955565b61075783838360405180602001604052806000815250610d23565b6008546001600160a01b031633146108b25760405162461bcd60e51b815260040161079190611ad1565b80516108c590600b9060208401906116e2565b5050565b6008546001600160a01b031633146108f35760405162461bcd60e51b815260040161079190611ad1565b600d55565b60006109038261119a565b5192915050565b600b805461091790611a96565b80601f016020809104026020016040519081016040528092919081815260200182805461094390611a96565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b505050505081565b60006001600160a01b0382166109c1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a115760405162461bcd60e51b815260040161079190611ad1565b610a1b60006112b6565b565b6008546001600160a01b03163314610a475760405162461bcd60e51b815260040161079190611ad1565b600f55565b60606003805461060790611a96565b600a5460ff16610aad5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610791565b80600c5481610abf6001546000540390565b610ac99190611b1c565b1115610b0c5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610791565b81600081118015610b1f5750600e548111155b610b615760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc103832b9103a3c3760691b6044820152606401610791565b600d5483610b726001546000540390565b610b7c9190611b1c565b1115610bf05782600f54610b909190611b34565b341015610bf05760405162461bcd60e51b815260206004820152602860248201527f46726565206d696e7420697320736f6c64206f75742c2075736520636f727265604482015267637420707269636560c01b6064820152608401610791565b6107573384611308565b6001600160a01b038216331415610c245760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cba5760405162461bcd60e51b815260040161079190611ad1565b80600c5481610ccc6001546000540390565b610cd69190611b1c565b1115610d195760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610791565b6107578383611308565b610d2e848484610f84565b6001600160a01b0383163b15158015610d505750610d4e84848484611322565b155b15610d6e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d7f82610efd565b610dc35760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610791565b600b610dce8361140b565b604051602001610ddf929190611b6f565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161079190611ad1565b600a805460ff19811660ff90911615179055565b6008546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161079190611ad1565b600c55565b6008546001600160a01b03163314610e8c5760405162461bcd60e51b815260040161079190611ad1565b6001600160a01b038116610ef15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610791565b610efa816112b6565b50565b60008054821080156105f2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f8f8261119a565b80519091506000906001600160a01b0316336001600160a01b03161480610fbd57508151610fbd9033610538565b80610fd8575033610fcd8461068a565b6001600160a01b0316145b905080610ff857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461102d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661105457604051633a954ecd60e21b815260040160405180910390fd5b6110646000848460000151610f28565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661115057600054811015611150578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561129d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061129b5780516001600160a01b031615611231579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611296579392505050565b611231565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c5828260405180602001604052806000815250611509565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611357903390899088908890600401611c16565b6020604051808303816000875af1925050508015611392575060408051601f3d908101601f1916820190925261138f91810190611c53565b60015b6113ed573d8080156113c0576040519150601f19603f3d011682016040523d82523d6000602084013e6113c5565b606091505b5080516113e5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161142f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611459578061144381611c70565b91506114529050600a83611ca1565b9150611433565b60008167ffffffffffffffff811115611474576114746118bb565b6040519080825280601f01601f19166020018201604052801561149e576020820181803683370190505b5090505b8415611403576114b3600183611cb5565b91506114c0600a86611ccc565b6114cb906030611b1c565b60f81b8183815181106114e0576114e0611ce0565b60200101906001600160f81b031916908160001a905350611502600a86611ca1565b94506114a2565b61075783838360016000546001600160a01b03851661153a57604051622e076360e81b815260040160405180910390fd5b836115585760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561160a57506001600160a01b0387163b15155b15611693575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461165b6000888480600101955088611322565b611678576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561161057826000541461168e57600080fd5b6116d9565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611694575b50600055611193565b8280546116ee90611a96565b90600052602060002090601f0160209004810192826117105760008555611756565b82601f1061172957805160ff1916838001178555611756565b82800160010185558215611756579182015b8281111561175657825182559160200191906001019061173b565b50611762929150611766565b5090565b5b808211156117625760008155600101611767565b6001600160e01b031981168114610efa57600080fd5b6000602082840312156117a357600080fd5b81356117ae8161177b565b9392505050565b60005b838110156117d05781810151838201526020016117b8565b83811115610d6e5750506000910152565b600081518084526117f98160208601602086016117b5565b601f01601f19169290920160200192915050565b6020815260006117ae60208301846117e1565b60006020828403121561183257600080fd5b5035919050565b80356001600160a01b038116811461185057600080fd5b919050565b6000806040838503121561186857600080fd5b61187183611839565b946020939093013593505050565b60008060006060848603121561189457600080fd5b61189d84611839565b92506118ab60208501611839565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118ec576118ec6118bb565b604051601f8501601f19908116603f01168101908282118183101715611914576119146118bb565b8160405280935085815286868601111561192d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561195957600080fd5b813567ffffffffffffffff81111561197057600080fd5b8201601f8101841361198157600080fd5b611403848235602084016118d1565b6000602082840312156119a257600080fd5b6117ae82611839565b600080604083850312156119be57600080fd5b6119c783611839565b9150602083013580151581146119dc57600080fd5b809150509250929050565b600080600080608085870312156119fd57600080fd5b611a0685611839565b9350611a1460208601611839565b925060408501359150606085013567ffffffffffffffff811115611a3757600080fd5b8501601f81018713611a4857600080fd5b611a57878235602084016118d1565b91505092959194509250565b60008060408385031215611a7657600080fd5b611a7f83611839565b9150611a8d60208401611839565b90509250929050565b600181811c90821680611aaa57607f821691505b60208210811415611acb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b2f57611b2f611b06565b500190565b6000816000190483118215151615611b4e57611b4e611b06565b500290565b60008151611b658185602086016117b5565b9290920192915050565b600080845481600182811c915080831680611b8b57607f831692505b6020808410821415611bab57634e487b7160e01b86526022600452602486fd5b818015611bbf5760018114611bd057611bfd565b60ff19861689528489019650611bfd565b60008b81526020902060005b86811015611bf55781548b820152908501908301611bdc565b505084890196505b505050505050611c0d8185611b53565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c49908301846117e1565b9695505050505050565b600060208284031215611c6557600080fd5b81516117ae8161177b565b6000600019821415611c8457611c84611b06565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611cb057611cb0611c8b565b500490565b600082821015611cc757611cc7611b06565b500390565b600082611cdb57611cdb611c8b565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122016a9427a0673ae3c21e0f8872f66a6ad4d395ccd835c2e60f712b8c87e7a349064736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063b7a34c8a11610095578063e222c7f911610064578063e222c7f914610508578063e985e9c51461051d578063f103b43314610566578063f2fde38b1461058657600080fd5b8063b7a34c8a14610492578063b88d4fde146104b2578063c87b56dd146104d2578063d5abeb01146104f257600080fd5b806395d89b41116100d157806395d89b4114610434578063a035b1fe14610449578063a0712d681461045f578063a22cb4651461047257600080fd5b806370a08231146103c1578063715018a6146103e15780638da5cb5b146103f657806391b7f5ed1461041457600080fd5b80633ccfd60b1161017a578063564566a811610149578063564566a81461035257806361d15c491461036c5780636352211e1461038c5780636c0360eb146103ac57600080fd5b80633ccfd60b146102e757806342842e0e146102fc5780635097bdef1461031c57806355f804b31461033257600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b15780633cb51994146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611791565b6105a6565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f8565b604051610209919061180d565b34801561024057600080fd5b5061025461024f366004611820565b61068a565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611855565b6106ce565b005b34801561029a57600080fd5b50600154600054035b604051908152602001610209565b3480156102bd57600080fd5b5061028c6102cc36600461187f565b61075c565b3480156102dd57600080fd5b506102a3600e5481565b3480156102f357600080fd5b5061028c610767565b34801561030857600080fd5b5061028c61031736600461187f565b61086d565b34801561032857600080fd5b506102a3600d5481565b34801561033e57600080fd5b5061028c61034d366004611947565b610888565b34801561035e57600080fd5b50600a546101fd9060ff1681565b34801561037857600080fd5b5061028c610387366004611820565b6108c9565b34801561039857600080fd5b506102546103a7366004611820565b6108f8565b3480156103b857600080fd5b5061022761090a565b3480156103cd57600080fd5b506102a36103dc366004611990565b610998565b3480156103ed57600080fd5b5061028c6109e7565b34801561040257600080fd5b506008546001600160a01b0316610254565b34801561042057600080fd5b5061028c61042f366004611820565b610a1d565b34801561044057600080fd5b50610227610a4c565b34801561045557600080fd5b506102a3600f5481565b61028c61046d366004611820565b610a5b565b34801561047e57600080fd5b5061028c61048d3660046119ab565b610bfa565b34801561049e57600080fd5b5061028c6104ad366004611855565b610c90565b3480156104be57600080fd5b5061028c6104cd3660046119e7565b610d23565b3480156104de57600080fd5b506102276104ed366004611820565b610d74565b3480156104fe57600080fd5b506102a3600c5481565b34801561051457600080fd5b5061028c610df5565b34801561052957600080fd5b506101fd610538366004611a63565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057257600080fd5b5061028c610581366004611820565b610e33565b34801561059257600080fd5b5061028c6105a1366004611990565b610e62565b60006001600160e01b031982166380ac58cd60e01b14806105d757506001600160e01b03198216635b5e139f60e01b145b806105f257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060790611a96565b80601f016020809104026020016040519081016040528092919081815260200182805461063390611a96565b80156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b600061069582610efd565b6106b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d9826108f8565b9050806001600160a01b0316836001600160a01b0316141561070e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061072e575061072c8133610538565b155b1561074c576040516367d9dca160e11b815260040160405180910390fd5b610757838383610f28565b505050565b610757838383610f84565b6008546001600160a01b0316331461079a5760405162461bcd60e51b815260040161079190611ad1565b60405180910390fd5b600260095414156107ed5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610791565b60026009556008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050506108665760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066756e647320746f207769746864726177000000006044820152606401610791565b6001600955565b61075783838360405180602001604052806000815250610d23565b6008546001600160a01b031633146108b25760405162461bcd60e51b815260040161079190611ad1565b80516108c590600b9060208401906116e2565b5050565b6008546001600160a01b031633146108f35760405162461bcd60e51b815260040161079190611ad1565b600d55565b60006109038261119a565b5192915050565b600b805461091790611a96565b80601f016020809104026020016040519081016040528092919081815260200182805461094390611a96565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b505050505081565b60006001600160a01b0382166109c1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a115760405162461bcd60e51b815260040161079190611ad1565b610a1b60006112b6565b565b6008546001600160a01b03163314610a475760405162461bcd60e51b815260040161079190611ad1565b600f55565b60606003805461060790611a96565b600a5460ff16610aad5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610791565b80600c5481610abf6001546000540390565b610ac99190611b1c565b1115610b0c5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610791565b81600081118015610b1f5750600e548111155b610b615760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc103832b9103a3c3760691b6044820152606401610791565b600d5483610b726001546000540390565b610b7c9190611b1c565b1115610bf05782600f54610b909190611b34565b341015610bf05760405162461bcd60e51b815260206004820152602860248201527f46726565206d696e7420697320736f6c64206f75742c2075736520636f727265604482015267637420707269636560c01b6064820152608401610791565b6107573384611308565b6001600160a01b038216331415610c245760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cba5760405162461bcd60e51b815260040161079190611ad1565b80600c5481610ccc6001546000540390565b610cd69190611b1c565b1115610d195760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610791565b6107578383611308565b610d2e848484610f84565b6001600160a01b0383163b15158015610d505750610d4e84848484611322565b155b15610d6e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d7f82610efd565b610dc35760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610791565b600b610dce8361140b565b604051602001610ddf929190611b6f565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161079190611ad1565b600a805460ff19811660ff90911615179055565b6008546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161079190611ad1565b600c55565b6008546001600160a01b03163314610e8c5760405162461bcd60e51b815260040161079190611ad1565b6001600160a01b038116610ef15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610791565b610efa816112b6565b50565b60008054821080156105f2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f8f8261119a565b80519091506000906001600160a01b0316336001600160a01b03161480610fbd57508151610fbd9033610538565b80610fd8575033610fcd8461068a565b6001600160a01b0316145b905080610ff857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461102d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661105457604051633a954ecd60e21b815260040160405180910390fd5b6110646000848460000151610f28565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661115057600054811015611150578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561129d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061129b5780516001600160a01b031615611231579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611296579392505050565b611231565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c5828260405180602001604052806000815250611509565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611357903390899088908890600401611c16565b6020604051808303816000875af1925050508015611392575060408051601f3d908101601f1916820190925261138f91810190611c53565b60015b6113ed573d8080156113c0576040519150601f19603f3d011682016040523d82523d6000602084013e6113c5565b606091505b5080516113e5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161142f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611459578061144381611c70565b91506114529050600a83611ca1565b9150611433565b60008167ffffffffffffffff811115611474576114746118bb565b6040519080825280601f01601f19166020018201604052801561149e576020820181803683370190505b5090505b8415611403576114b3600183611cb5565b91506114c0600a86611ccc565b6114cb906030611b1c565b60f81b8183815181106114e0576114e0611ce0565b60200101906001600160f81b031916908160001a905350611502600a86611ca1565b94506114a2565b61075783838360016000546001600160a01b03851661153a57604051622e076360e81b815260040160405180910390fd5b836115585760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561160a57506001600160a01b0387163b15155b15611693575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461165b6000888480600101955088611322565b611678576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561161057826000541461168e57600080fd5b6116d9565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611694575b50600055611193565b8280546116ee90611a96565b90600052602060002090601f0160209004810192826117105760008555611756565b82601f1061172957805160ff1916838001178555611756565b82800160010185558215611756579182015b8281111561175657825182559160200191906001019061173b565b50611762929150611766565b5090565b5b808211156117625760008155600101611767565b6001600160e01b031981168114610efa57600080fd5b6000602082840312156117a357600080fd5b81356117ae8161177b565b9392505050565b60005b838110156117d05781810151838201526020016117b8565b83811115610d6e5750506000910152565b600081518084526117f98160208601602086016117b5565b601f01601f19169290920160200192915050565b6020815260006117ae60208301846117e1565b60006020828403121561183257600080fd5b5035919050565b80356001600160a01b038116811461185057600080fd5b919050565b6000806040838503121561186857600080fd5b61187183611839565b946020939093013593505050565b60008060006060848603121561189457600080fd5b61189d84611839565b92506118ab60208501611839565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118ec576118ec6118bb565b604051601f8501601f19908116603f01168101908282118183101715611914576119146118bb565b8160405280935085815286868601111561192d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561195957600080fd5b813567ffffffffffffffff81111561197057600080fd5b8201601f8101841361198157600080fd5b611403848235602084016118d1565b6000602082840312156119a257600080fd5b6117ae82611839565b600080604083850312156119be57600080fd5b6119c783611839565b9150602083013580151581146119dc57600080fd5b809150509250929050565b600080600080608085870312156119fd57600080fd5b611a0685611839565b9350611a1460208601611839565b925060408501359150606085013567ffffffffffffffff811115611a3757600080fd5b8501601f81018713611a4857600080fd5b611a57878235602084016118d1565b91505092959194509250565b60008060408385031215611a7657600080fd5b611a7f83611839565b9150611a8d60208401611839565b90509250929050565b600181811c90821680611aaa57607f821691505b60208210811415611acb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b2f57611b2f611b06565b500190565b6000816000190483118215151615611b4e57611b4e611b06565b500290565b60008151611b658185602086016117b5565b9290920192915050565b600080845481600182811c915080831680611b8b57607f831692505b6020808410821415611bab57634e487b7160e01b86526022600452602486fd5b818015611bbf5760018114611bd057611bfd565b60ff19861689528489019650611bfd565b60008b81526020902060005b86811015611bf55781548b820152908501908301611bdc565b505084890196505b505050505050611c0d8185611b53565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c49908301846117e1565b9695505050505050565b600060208284031215611c6557600080fd5b81516117ae8161177b565b6000600019821415611c8457611c84611b06565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611cb057611cb0611c8b565b500490565b600082821015611cc757611cc7611b06565b500390565b600082611cdb57611cdb611c8b565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122016a9427a0673ae3c21e0f8872f66a6ad4d395ccd835c2e60f712b8c87e7a349064736f6c634300080c0033

Deployed Bytecode Sourcemap

48563:2199:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31031:305;;;;;;;;;;-1:-1:-1;31031:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31031:305:0;;;;;;;;34416:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35919:204::-;;;;;;;;;;-1:-1:-1;35919:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;35919:204:0;1550:203:1;35482:371:0;;;;;;;;;;-1:-1:-1;35482:371:0;;;;;:::i;:::-;;:::i;:::-;;30280:303;;;;;;;;;;-1:-1:-1;30534:12:0;;30324:7;30518:13;:28;30280:303;;;2341:25:1;;;2329:2;2314:18;30280:303:0;2195:177:1;36776:170:0;;;;;;;;;;-1:-1:-1;36776:170:0;;;;;:::i;:::-;;:::i;48776:29::-;;;;;;;;;;;;;;;;50604:155;;;;;;;;;;;;;:::i;37017:185::-;;;;;;;;;;-1:-1:-1;37017:185:0;;;;;:::i;:::-;;:::i;48735:34::-;;;;;;;;;;;;;;;;50496:100;;;;;;;;;;-1:-1:-1;50496:100:0;;;;;:::i;:::-;;:::i;48626:35::-;;;;;;;;;;-1:-1:-1;48626:35:0;;;;;;;;49917:114;;;;;;;;;;-1:-1:-1;49917:114:0;;;;;:::i;:::-;;:::i;34225:124::-;;;;;;;;;;-1:-1:-1;34225:124:0;;;;;:::i;:::-;;:::i;48668:22::-;;;;;;;;;;;;;:::i;31400:206::-;;;;;;;;;;-1:-1:-1;31400:206:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;6838:87::-;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;50160:90;;;;;;;;;;-1:-1:-1;50160:90:0;;;;;:::i;:::-;;:::i;34585:104::-;;;;;;;;;;;;;:::i;48812:33::-;;;;;;;;;;;;;;;;49423:324;;;;;;:::i;:::-;;:::i;36195:279::-;;;;;;;;;;-1:-1:-1;36195:279:0;;;;;:::i;:::-;;:::i;49755:154::-;;;;;;;;;;-1:-1:-1;49755:154:0;;;;;:::i;:::-;;:::i;37273:369::-;;;;;;;;;;-1:-1:-1;37273:369:0;;;;;:::i;:::-;;:::i;50258:230::-;;;;;;;;;;-1:-1:-1;50258:230:0;;;;;:::i;:::-;;:::i;48697:31::-;;;;;;;;;;;;;;;;49021:94;;;;;;;;;;;;;:::i;36545:164::-;;;;;;;;;;-1:-1:-1;36545:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36666:25:0;;;36642:4;36666:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36545:164;50043:109;;;;;;;;;;-1:-1:-1;50043:109:0;;;;;:::i;:::-;;:::i;7747:201::-;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;31031:305::-;31133:4;-1:-1:-1;;;;;;31170:40:0;;-1:-1:-1;;;31170:40:0;;:105;;-1:-1:-1;;;;;;;31227:48:0;;-1:-1:-1;;;31227:48:0;31170:105;:158;;;-1:-1:-1;;;;;;;;;;19731:40:0;;;31292:36;31150:178;31031:305;-1:-1:-1;;31031:305:0:o;34416:100::-;34470:13;34503:5;34496:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34416:100;:::o;35919:204::-;35987:7;36012:16;36020:7;36012;:16::i;:::-;36007:64;;36037:34;;-1:-1:-1;;;36037:34:0;;;;;;;;;;;36007:64;-1:-1:-1;36091:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36091:24:0;;35919:204::o;35482:371::-;35555:13;35571:24;35587:7;35571:15;:24::i;:::-;35555:40;;35616:5;-1:-1:-1;;;;;35610:11:0;:2;-1:-1:-1;;;;;35610:11:0;;35606:48;;;35630:24;;-1:-1:-1;;;35630:24:0;;;;;;;;;;;35606:48;5642:10;-1:-1:-1;;;;;35671:21:0;;;;;;:63;;-1:-1:-1;35697:37:0;35714:5;5642:10;36545:164;:::i;35697:37::-;35696:38;35671:63;35667:138;;;35758:35;;-1:-1:-1;;;35758:35:0;;;;;;;;;;;35667:138;35817:28;35826:2;35830:7;35839:5;35817:8;:28::i;:::-;35544:309;35482:371;;:::o;36776:170::-;36910:28;36920:4;36926:2;36930:7;36910:9;:28::i;50604:155::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;::::0;-1:-1:-1;;;2402:63:0;;6363:2:1;2402:63:0::1;::::0;::::1;6345:21:1::0;6402:2;6382:18;;;6375:30;6441:33;6421:18;;;6414:61;6492:18;;2402:63:0::1;6161:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;6911:6;;50674:44:::2;::::0;-1:-1:-1;;;;;6911:6:0;;;;50696:21:::2;50674:44:::0;::::2;;;::::0;::::2;::::0;;;50696:21;6911:6;50674:44;::::2;;;;;;50666:85;;;::::0;-1:-1:-1;;;50666:85:0;;6723:2:1;50666:85:0::2;::::0;::::2;6705:21:1::0;6762:2;6742:18;;;6735:30;6801;6781:18;;;6774:58;6849:18;;50666:85:0::2;6521:352:1::0;50666:85:0::2;1768:1:::1;2722:7;:22:::0;50604:155::o;37017:185::-;37155:39;37172:4;37178:2;37182:7;37155:39;;;;;;;;;;;;:16;:39::i;50496:100::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50570:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50496:100:::0;:::o;49917:114::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;49993:13:::1;:30:::0;49917:114::o;34225:124::-;34289:7;34316:20;34328:7;34316:11;:20::i;:::-;:25;;34225:124;-1:-1:-1;;34225:124:0:o;48668:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31400:206::-;31464:7;-1:-1:-1;;;;;31488:19:0;;31484:60;;31516:28;;-1:-1:-1;;;31516:28:0;;;;;;;;;;;31484:60;-1:-1:-1;;;;;;31570:19:0;;;;;:12;:19;;;;;:27;;;;31400:206::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;50160:90::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50226:5:::1;:16:::0;50160:90::o;34585:104::-;34641:13;34674:7;34667:14;;;;;:::i;49423:324::-;48953:12;;;;48945:48;;;;-1:-1:-1;;;48945:48:0;;7080:2:1;48945:48:0;;;7062:21:1;7119:2;7099:18;;;7092:30;7158:25;7138:18;;;7131:53;7201:18;;48945:48:0;6878:347:1;48945:48:0;49498:8:::1;49214:9;;49202:8;49186:13;30534:12:::0;;30324:7;30518:13;:28;;30280:303;49186:13:::1;:24;;;;:::i;:::-;:37;;49178:68;;;::::0;-1:-1:-1;;;49178:68:0;;7697:2:1;49178:68:0::1;::::0;::::1;7679:21:1::0;7736:2;7716:18;;;7709:30;-1:-1:-1;;;7755:18:1;;;7748:48;7813:18;;49178:68:0::1;7495:342:1::0;49178:68:0::1;49522:8:::2;49345:1;49334:8;:12;:37;;;;;49362:9;;49350:8;:21;;49334:37;49326:69;;;::::0;-1:-1:-1;;;49326:69:0;;8044:2:1;49326:69:0::2;::::0;::::2;8026:21:1::0;8083:2;8063:18;;;8056:30;-1:-1:-1;;;8102:18:1;;;8095:49;8161:18;;49326:69:0::2;7842:343:1::0;49326:69:0::2;49574:13:::3;;49563:8;49547:13;30534:12:::0;;30324:7;30518:13;:28;;30280:303;49547:13:::3;:24;;;;:::i;:::-;:40;49543:155;;;49633:8;49625:5;;:16;;;;:::i;:::-;49612:9;:29;;49604:82;;;::::0;-1:-1:-1;;;49604:82:0;;8565:2:1;49604:82:0::3;::::0;::::3;8547:21:1::0;8604:2;8584:18;;;8577:30;8643:34;8623:18;;;8616:62;-1:-1:-1;;;8694:18:1;;;8687:38;8742:19;;49604:82:0::3;8363:404:1::0;49604:82:0::3;49708:31;49718:10;49730:8;49708:9;:31::i;36195:279::-:0;-1:-1:-1;;;;;36286:24:0;;5642:10;36286:24;36282:54;;;36319:17;;-1:-1:-1;;;36319:17:0;;;;;;;;;;;36282:54;5642:10;36349:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36349:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36349:53:0;;;;;;;;;;36418:48;;540:41:1;;;36349:42:0;;5642:10;36418:48;;513:18:1;36418:48:0;;;;;;;36195:279;;:::o;49755:154::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;49850:8:::1;49214:9;;49202:8;49186:13;30534:12:::0;;30324:7;30518:13;:28;;30280:303;49186:13:::1;:24;;;;:::i;:::-;:37;;49178:68;;;::::0;-1:-1:-1;;;49178:68:0;;7697:2:1;49178:68:0::1;::::0;::::1;7679:21:1::0;7736:2;7716:18;;;7709:30;-1:-1:-1;;;7755:18:1;;;7748:48;7813:18;;49178:68:0::1;7495:342:1::0;49178:68:0::1;49871:30:::2;49881:9;49892:8;49871:9;:30::i;37273:369::-:0;37440:28;37450:4;37456:2;37460:7;37440:9;:28::i;:::-;-1:-1:-1;;;;;37483:13:0;;9834:19;:23;;37483:76;;;;;37503:56;37534:4;37540:2;37544:7;37553:5;37503:30;:56::i;:::-;37502:57;37483:76;37479:156;;;37583:40;;-1:-1:-1;;;37583:40:0;;;;;;;;;;;37479:156;37273:369;;;;:::o;50258:230::-;50324:13;50358:17;50366:8;50358:7;:17::i;:::-;50350:51;;;;-1:-1:-1;;;50350:51:0;;8974:2:1;50350:51:0;;;8956:21:1;9013:2;8993:18;;;8986:30;-1:-1:-1;;;9032:18:1;;;9025:51;9093:18;;50350:51:0;8772:345:1;50350:51:0;50443:7;50452:26;50469:8;50452:16;:26::i;:::-;50426:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50412:68;;50258:230;;;:::o;49021:94::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;49095:12:::1;::::0;;-1:-1:-1;;49079:28:0;::::1;49095:12;::::0;;::::1;49094:13;49079:28;::::0;;49021:94::o;50043:109::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50120:9:::1;:24:::0;50043:109::o;7747:201::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;10819:2:1;7828:73:0::1;::::0;::::1;10801:21:1::0;10858:2;10838:18;;;10831:30;10897:34;10877:18;;;10870:62;-1:-1:-1;;;10948:18:1;;;10941:36;10994:19;;7828:73:0::1;10617:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;37897:187::-;37954:4;38018:13;;38008:7;:23;37978:98;;;;-1:-1:-1;;38049:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38049:27:0;;;;38048:28;;37897:187::o;45508:196::-;45623:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45623:29:0;-1:-1:-1;;;;;45623:29:0;;;;;;;;;45668:28;;45623:24;;45668:28;;;;;;;45508:196;;;:::o;41010:2112::-;41125:35;41163:20;41175:7;41163:11;:20::i;:::-;41238:18;;41125:58;;-1:-1:-1;41196:22:0;;-1:-1:-1;;;;;41222:34:0;5642:10;-1:-1:-1;;;;;41222:34:0;;:101;;;-1:-1:-1;41290:18:0;;41273:50;;5642:10;36545:164;:::i;41273:50::-;41222:154;;;-1:-1:-1;5642:10:0;41340:20;41352:7;41340:11;:20::i;:::-;-1:-1:-1;;;;;41340:36:0;;41222:154;41196:181;;41395:17;41390:66;;41421:35;;-1:-1:-1;;;41421:35:0;;;;;;;;;;;41390:66;41493:4;-1:-1:-1;;;;;41471:26:0;:13;:18;;;-1:-1:-1;;;;;41471:26:0;;41467:67;;41506:28;;-1:-1:-1;;;41506:28:0;;;;;;;;;;;41467:67;-1:-1:-1;;;;;41549:16:0;;41545:52;;41574:23;;-1:-1:-1;;;41574:23:0;;;;;;;;;;;41545:52;41718:49;41735:1;41739:7;41748:13;:18;;;41718:8;:49::i;:::-;-1:-1:-1;;;;;42063:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42063:31:0;;;;;;;-1:-1:-1;;42063:31:0;;;;;;;42109:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42109:29:0;;;;;;;;;;;42155:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42200:61:0;;;;-1:-1:-1;;;42245:15:0;42200:61;;;;;;;;;;;42535:11;;;42565:24;;;;;:29;42535:11;;42565:29;42561:445;;42790:13;;42776:11;:27;42772:219;;;42860:18;;;42828:24;;;:11;:24;;;;;;;;:50;;42943:28;;;;42901:70;;-1:-1:-1;;;42901:70:0;-1:-1:-1;;;;;;42901:70:0;;;-1:-1:-1;;;;;42828:50:0;;;42901:70;;;;;;;42772:219;42038:979;43053:7;43049:2;-1:-1:-1;;;;;43034:27:0;43043:4;-1:-1:-1;;;;;43034:27:0;;;;;;;;;;;43072:42;41114:2008;;41010:2112;;;:::o;33055:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33165:7:0;33248:13;;33241:4;:20;33210:886;;;33282:31;33316:17;;;:11;:17;;;;;;;;;33282:51;;;;;;;;;-1:-1:-1;;;;;33282:51:0;;;;-1:-1:-1;;;33282:51:0;;;;;;;;;;;-1:-1:-1;;;33282:51:0;;;;;;;;;;;;;;33352:729;;33402:14;;-1:-1:-1;;;;;33402:28:0;;33398:101;;33466:9;33055:1108;-1:-1:-1;;;33055:1108:0:o;33398:101::-;-1:-1:-1;;;33841:6:0;33886:17;;;;:11;:17;;;;;;;;;33874:29;;;;;;;;;-1:-1:-1;;;;;33874:29:0;;;;;-1:-1:-1;;;33874:29:0;;;;;;;;;;;-1:-1:-1;;;33874:29:0;;;;;;;;;;;;;33934:28;33930:109;;34002:9;33055:1108;-1:-1:-1;;;33055:1108:0:o;33930:109::-;33801:261;;;33263:833;33210:886;34124:31;;-1:-1:-1;;;34124:31:0;;;;;;;;;;;8108:191;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;38092:104::-;38161:27;38171:2;38175:8;38161:27;;;;;;;;;;;;:9;:27::i;46196:667::-;46380:72;;-1:-1:-1;;;46380:72:0;;46359:4;;-1:-1:-1;;;;;46380:36:0;;;;;:72;;5642:10;;46431:4;;46437:7;;46446:5;;46380:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46380:72:0;;;;;;;;-1:-1:-1;;46380:72:0;;;;;;;;;;;;:::i;:::-;;;46376:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46614:13:0;;46610:235;;46660:40;;-1:-1:-1;;;46660:40:0;;;;;;;;;;;46610:235;46803:6;46797:13;46788:6;46784:2;46780:15;46773:38;46376:480;-1:-1:-1;;;;;;46499:55:0;-1:-1:-1;;;46499:55:0;;-1:-1:-1;46376:480:0;46196:667;;;;;;:::o;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3714:56:0;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;38559:163;38682:32;38688:2;38692:8;38702:5;38709:4;39120:20;39143:13;-1:-1:-1;;;;;39171:16:0;;39167:48;;39196:19;;-1:-1:-1;;;39196:19:0;;;;;;;;;;;39167:48;39230:13;39226:44;;39252:18;;-1:-1:-1;;;39252:18:0;;;;;;;;;;;39226:44;-1:-1:-1;;;;;39621:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39680:49:0;;39621:44;;;;;;;;39680:49;;;;-1:-1:-1;;39621:44:0;;;;;;39680:49;;;;;;;;;;;;;;;;39746:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39796:66:0;;;;-1:-1:-1;;;39846:15:0;39796:66;;;;;;;;;;39746:25;39943:23;;;39987:4;:23;;;;-1:-1:-1;;;;;;39995:13:0;;9834:19;:23;;39995:15;39983:641;;;40031:314;40062:38;;40087:12;;-1:-1:-1;;;;;40062:38:0;;;40079:1;;40062:38;;40079:1;;40062:38;40128:69;40167:1;40171:2;40175:14;;;;;;40191:5;40128:30;:69::i;:::-;40123:174;;40233:40;;-1:-1:-1;;;40233:40:0;;;;;;;;;;;40123:174;40340:3;40324:12;:19;;40031:314;;40426:12;40409:13;;:29;40405:43;;40440:8;;;40405:43;39983:641;;;40489:120;40520:40;;40545:14;;;;;-1:-1:-1;;;;;40520:40:0;;;40537:1;;40520:40;;40537:1;;40520:40;40604:3;40588:12;:19;;40489:120;;39983:641;-1:-1:-1;40638:13:0;:28;40688:60;37273:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;2937:18;2978:2;2970:6;2967:14;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:1;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3657:9;3644:23;3690:18;3682:6;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:1;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;5800:356::-;6002:2;5984:21;;;6021:18;;;6014:30;6080:34;6075:2;6060:18;;6053:62;6147:2;6132:18;;5800:356::o;7230:127::-;7291:10;7286:3;7282:20;7279:1;7272:31;7322:4;7319:1;7312:15;7346:4;7343:1;7336:15;7362:128;7402:3;7433:1;7429:6;7426:1;7423:13;7420:39;;;7439:18;;:::i;:::-;-1:-1:-1;7475:9:1;;7362:128::o;8190:168::-;8230:7;8296:1;8292;8288:6;8284:14;8281:1;8278:21;8273:1;8266:9;8259:17;8255:45;8252:71;;;8303:18;;:::i;:::-;-1:-1:-1;8343:9:1;;8190:168::o;9248:185::-;9290:3;9328:5;9322:12;9343:52;9388:6;9383:3;9376:4;9369:5;9365:16;9343:52;:::i;:::-;9411:16;;;;;9248:185;-1:-1:-1;;9248:185:1:o;9438:1174::-;9614:3;9643:1;9676:6;9670:13;9706:3;9728:1;9756:9;9752:2;9748:18;9738:28;;9816:2;9805:9;9801:18;9838;9828:61;;9882:4;9874:6;9870:17;9860:27;;9828:61;9908:2;9956;9948:6;9945:14;9925:18;9922:38;9919:165;;;-1:-1:-1;;;9983:33:1;;10039:4;10036:1;10029:15;10069:4;9990:3;10057:17;9919:165;10100:18;10127:104;;;;10245:1;10240:320;;;;10093:467;;10127:104;-1:-1:-1;;10160:24:1;;10148:37;;10205:16;;;;-1:-1:-1;10127:104:1;;10240:320;9195:1;9188:14;;;9232:4;9219:18;;10335:1;10349:165;10363:6;10360:1;10357:13;10349:165;;;10441:14;;10428:11;;;10421:35;10484:16;;;;10378:10;;10349:165;;;10353:3;;10543:6;10538:3;10534:16;10527:23;;10093:467;;;;;;;10576:30;10602:3;10594:6;10576:30;:::i;:::-;10569:37;9438:1174;-1:-1:-1;;;;;9438:1174:1:o;11024:500::-;-1:-1:-1;;;;;11293:15:1;;;11275:34;;11345:15;;11340:2;11325:18;;11318:43;11392:2;11377:18;;11370:34;;;11440:3;11435:2;11420:18;;11413:31;;;11218:4;;11461:57;;11498:19;;11490:6;11461:57;:::i;:::-;11453:65;11024:500;-1:-1:-1;;;;;;11024:500:1:o;11529:249::-;11598:6;11651:2;11639:9;11630:7;11626:23;11622:32;11619:52;;;11667:1;11664;11657:12;11619:52;11699:9;11693:16;11718:30;11742:5;11718:30;:::i;11783:135::-;11822:3;-1:-1:-1;;11843:17:1;;11840:43;;;11863:18;;:::i;:::-;-1:-1:-1;11910:1:1;11899:13;;11783:135::o;11923:127::-;11984:10;11979:3;11975:20;11972:1;11965:31;12015:4;12012:1;12005:15;12039:4;12036:1;12029:15;12055:120;12095:1;12121;12111:35;;12126:18;;:::i;:::-;-1:-1:-1;12160:9:1;;12055:120::o;12180:125::-;12220:4;12248:1;12245;12242:8;12239:34;;;12253:18;;:::i;:::-;-1:-1:-1;12290:9:1;;12180:125::o;12310:112::-;12342:1;12368;12358:35;;12373:18;;:::i;:::-;-1:-1:-1;12407:9:1;;12310:112::o;12427:127::-;12488:10;12483:3;12479:20;12476:1;12469:31;12519:4;12516:1;12509:15;12543:4;12540:1;12533:15

Swarm Source

ipfs://16a9427a0673ae3c21e0f8872f66a6ad4d395ccd835c2e60f712b8c87e7a3490
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.