ETH Price: $2,640.71 (+1.51%)

Token

Takamuto (Takamuto)
 

Overview

Max Total Supply

377 Takamuto

Holders

93

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 Takamuto
0x9afeead5754ecc632d001685ea755b14afb7d634
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:
Takamuto

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 20 : Takamuto.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;


import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC2981.sol";
import "./MintpassValidator.sol";
import "./LibMintpass.sol";

interface IBEP20 {
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}


/**
 * @dev Learn more about this project on takamuto.com.
 *
 * Takamuto is a ERC721 Contract that supports Burnable.
 * The minting process is processed in a public and a whitelist
 * sale.
 */
contract Takamuto is MintpassValidator, ERC721Burnable, ERC2981, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    uint256 public totalSupply;

    // Token Limit and Mint Limits
    uint256 public TOKEN_LIMIT = 1000;
    uint256 public whitelistMintLimitPerWallet;
    uint256 public publicMintLimitPerWallet;

    // Price per Token depending on Category
    uint256 public whitelistMintPrice;
    uint256 public publicMintPrice;

    // Sale Stages Enabled / Disabled
    bool public isWhitelistMintEnabled = false;
    bool public isPublicMintEnabled = false;

    // Revealed Enabled / Disabled
    bool public revealed = false;

    // Mapping from minter to minted amounts
    mapping(address => uint256) public boughtAmounts;
    mapping(address => uint256) public boughtWhitelistAmounts;

    // Mapping from mintpass signature to minted amounts (Free Mints)
    mapping(bytes => uint256) public mintpassRedemptions;

    // Optional mapping to overwrite specific token URIs
    mapping(uint256 => string) private _tokenURIs;    

    // counter for tracking current token id
    Counters.Counter private _tokenIdTracker;

    // _abseTokenURI serving nft metadata per token
    string private _baseTokenURI;
    string private notRevealedUri;

    string public baseExtension = ".json";


    event TokenUriChanged(
        address indexed _address,
        uint256 indexed _tokenId,
        string _tokenURI
    );

    /**
     * @dev ERC721 Constructor
     */
    constructor(string memory name, string memory symbol, string memory _initBaseTokenURI, string memory _initNotRevealedURI) ERC721(name, symbol) {
        _setDefaultRoyalty(msg.sender, 1000);
        ACE_WALLET = 0xeaC703A4Fc9A82f070bAA9f12f0CabC627964f45;
        //Initial Values to safe gas
        totalSupply = 0;
        whitelistMintLimitPerWallet = 5;
        publicMintLimitPerWallet = 5;

        whitelistMintPrice = 0 ether;
        publicMintPrice = 0 ether;

        setBaseURI(_initBaseTokenURI);
        setNotRevealedURI(_initNotRevealedURI);
    }

    /**
     * @dev Withrawal all Funds sent to the contract to Owner
     *
     * Requirements:
     * - `msg.sender` needs to be Owner and payable
     */
    function withdrawalAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    /**
     * @dev Function to mint Tokens for only Gas. This function is used
     * for Community Wallet Mints, Raffle Winners and Cooperation Partners.
     * Redemptions are tracked and can be done in chunks.
     *
     * @param quantity amount of tokens to be minted
     * @param mintpass issued by takamuto.com.io
     * @param mintpassSignature issued by takamuto.com and signed by ACE_WALLET
     *
     * Requirements:
     * - `quantity` can't be higher than mintpass.amount
     * - `mintpass` needs to match the signature contents
     * - `mintpassSignature` needs to be obtained from takamuto.com and
     *    signed by ACE_WALLET
     */
    function freeMint(
        uint256 quantity,
        LibMintpass.Mintpass memory mintpass,
        bytes memory mintpassSignature
    ) public {
        require(
            isWhitelistMintEnabled == true || isPublicMintEnabled == true,
            "Minting is not Enabled"
        );
        require(
            mintpass.minterAddress == msg.sender,
            "Mintpass Address and Sender do not match"
        );
        require(
            mintpassRedemptions[mintpassSignature] + quantity <=
                mintpass.amount,
            "Mintpass already redeemed"
        );
        require(
            mintpass.minterCategory == 99,
            "Mintpass not a Free Mint"
        );

        validateMintpass(mintpass, mintpassSignature);
        mintQuantityToWallet(quantity, mintpass.minterAddress);
        mintpassRedemptions[mintpassSignature] =
            mintpassRedemptions[mintpassSignature] +
            quantity;
    }

    /**
     * @dev Function to mint Tokens during Whitelist Sale. This function is
     * should only be called on takamuto.com minting page to ensure
     * signature validity.
     *
     * @param quantity amount of tokens to be minted
     * @param mintpass issued by takamuto.com
     * @param mintpassSignature issued by takamuto.com and signed by ACE_WALLET
     *
     * Requirements:
     * - `quantity` can't be higher than {whitelistMintLimitPerWallet}
     * - `mintpass` needs to match the signature contents
     * - `mintpassSignature` needs to be obtained from takamuto.com and
     *    signed by ACE_WALLET
     */
    function mintWhitelist(
        uint256 quantity,
        LibMintpass.Mintpass memory mintpass,
        bytes memory mintpassSignature
    ) public payable {
        require(
            isWhitelistMintEnabled == true,
            "Whitelist Minting is not Enabled"
        );
        require(
            mintpass.minterAddress == msg.sender,
            "Mintpass Address and Sender do not match"
        );
        require(
            msg.value >= whitelistMintPrice * quantity,
            "Insufficient Amount"
        );
        require(
            boughtWhitelistAmounts[mintpass.minterAddress] + quantity <=
                whitelistMintLimitPerWallet,
            "Maximum Whitelist per Wallet reached"
        );

        validateMintpass(mintpass, mintpassSignature);
        mintQuantityToWallet(quantity, mintpass.minterAddress);
        boughtWhitelistAmounts[mintpass.minterAddress] =
            boughtWhitelistAmounts[mintpass.minterAddress] +
            quantity;
    }

    /**
     * @dev Public Mint Function.
     *
     * @param quantity amount of tokens to be minted
     *
     * Requirements:
     * - `quantity` can't be higher than {publicMintLimitPerWallet}
     */
    function mint(uint256 quantity) public payable {
        require(
            isPublicMintEnabled == true,
            "Public Minting is not Enabled"
        );
        require(
            msg.value >= publicMintPrice * quantity,
            "Insufficient Amount"
        );
        require(
            boughtAmounts[msg.sender] + quantity <= publicMintLimitPerWallet,
            "Maximum per Wallet reached"
        );

        mintQuantityToWallet(quantity, msg.sender);
        boughtAmounts[msg.sender] = boughtAmounts[msg.sender] + quantity;
    }

    /**
     * @dev internal mintQuantityToWallet function used to mint tokens
     * to a wallet (cpt. obivous out). We start with tokenId 1.
     *
     * @param quantity amount of tokens to be minted
     * @param minterAddress address that receives the tokens
     *
     * Requirements:
     * - `TOKEN_LIMIT` should not be reahed
     */
    function mintQuantityToWallet(uint256 quantity, address minterAddress)
        internal
        virtual
    {
        require(
            TOKEN_LIMIT >= quantity + _tokenIdTracker.current(),
            "sold out"
        );

        for (uint256 i; i < quantity; i++) {
            _mint(minterAddress, _tokenIdTracker.current() + 1);
            _tokenIdTracker.increment();
            totalSupply++;
        }
    }

    /**
     * @dev Function to change the ACE_WALLET by contract owner.
     * Learn more about the ACE_WALLET on our Roadmap.
     * This wallet is used to verify mintpass signatures and is allowed to
     * change tokenURIs for specific tokens.
     *
     * @param _ace_wallet The new ACE_WALLET address
     */
    function setAceWallet(address _ace_wallet) public virtual onlyOwner {
        ACE_WALLET = _ace_wallet;
    }

    /**
     */
    function setMintingLimits(
        uint256 _whitelistMintLimitPerWallet,
        uint256 _publicMintLimitPerWallet
    ) public virtual onlyOwner {
        whitelistMintLimitPerWallet = _whitelistMintLimitPerWallet;
        publicMintLimitPerWallet = _publicMintLimitPerWallet;
    }

    /**
     * @dev Function to be called by contract owner to enable / disable
     * different mint stages
     *
     * @param _isWhitelistMintEnabled true/false
     * @param _isPublicMintEnabled true/false
     */
    function setMintingEnabled(
        bool _isWhitelistMintEnabled,
        bool _isPublicMintEnabled
    ) public virtual onlyOwner {
        isWhitelistMintEnabled = _isWhitelistMintEnabled;
        isPublicMintEnabled = _isPublicMintEnabled;
    }

    /**
     * @dev Helper to replace _baseURI
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    /**
     * @dev Can be called by owner to change base URI. This is recommend to be used
     * after tokens are revealed to freeze metadata on IPFS or similar.
     *
     * @param permanentBaseURI URI to be prefixed before tokenId
     */
    function setBaseURI(string memory permanentBaseURI)
        public
        virtual
        onlyOwner
    {
        _baseTokenURI = permanentBaseURI;
    }

    /**
     * @dev _tokenURIs setter for a tokenId. This can only be done by owner or our
     * ACE_WALLET. Learn more about this on our Roadmap.
     *
     * Emits TokenUriChanged Event
     *
     * @param tokenId tokenId that should be updated
     * @param permanentTokenURI URI to OVERWRITE the entire tokenURI
     *
     * Requirements:
     * - `msg.sender` needs to be owner or {ACE_WALLET}
     */
    function setTokenURI(uint256 tokenId, string memory permanentTokenURI)
        public
        virtual
    {
        require(
            (msg.sender == ACE_WALLET || msg.sender == owner()),
            "Can only be modified by ACE"
        );
        require(_exists(tokenId), "URI set of nonexistent token");
        _tokenURIs[tokenId] = permanentTokenURI;
        emit TokenUriChanged(msg.sender, tokenId, permanentTokenURI);
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function mintedTokenCount() public view returns (uint256) {
        return _tokenIdTracker.current();
    }

    /**
     * @dev _tokenURIs getter for a tokenId. If tokenURIs has an entry for
     * this tokenId we return this URL. Otherwise we fallback to baseURI with
     * tokenID.
     *
     * @param tokenId URI requested for this tokenId
     *
     * Requirements:
     * - `tokenID` needs to exist
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "URI query for nonexistent token"
        );

        if(revealed == false) {
            return notRevealedUri;
        }

        string memory _tokenURI = _tokenURIs[tokenId];

        if (bytes(_tokenURI).length > 0) {
            return _tokenURI;
        }

        //return super.tokenURI(tokenId);
        string memory currentBaseURI  = super.tokenURI(tokenId);
        return string(abi.encodePacked(currentBaseURI , baseExtension));
    }

    /**
     * @dev Extends default burn behaviour with deletion of overwritten tokenURI
     * if it exists. Calls super._burn before deletion of tokenURI; Reset Token Royality if set
     *
     * @param tokenId tokenID that should be burned
     *
     * Requirements:
     * - `tokenID` needs to exist
     * - `msg.sender` needs to be current token Owner
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        _resetTokenRoyalty(tokenId);
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }


    function reveal() public onlyOwner {
      revealed = true;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function setDefaultRoyalty(address receiver, uint96 feeNumerator)
        public
        virtual
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function transferForeignToken(address _token, address _to) public onlyOwner returns(bool _sent){
        uint256 _contractBalance = IBEP20(_token).balanceOf(address(this));
        _sent = IBEP20(_token).transfer(_to, _contractBalance);
    }
}

File 2 of 20 : MintpassValidator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

import "./LibMintpass.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";

/**
 * @dev EIP712 based contract module which validates a Mintpass Issued by
 * TESTEST. The signer is {ACE_WALLET} and checks for integrity of
 * minterCategory, amount and Address. {mintpass} is struct defined in
 * LibMintpass.
 *
 */
abstract contract MintpassValidator is EIP712 {
    constructor() EIP712("TESTTEST", "1") {}

    // Wallet that signs our mintpasses
    address public ACE_WALLET;

    /**
     * @dev Validates if {mintpass} was signed by {ACE_WALLET} and created {signature}.
     *
     * @param mintpass Struct with mintpass properties
     * @param signature Signature to decode and compare
     */
    function validateMintpass(LibMintpass.Mintpass memory mintpass, bytes memory signature)
        internal
        view
    {
        bytes32 mintpassHash = LibMintpass.mintpassHash(mintpass);
        bytes32 digest = _hashTypedDataV4(mintpassHash);
        address signer = ECDSA.recover(digest, signature);

        require(
            signer == ACE_WALLET,
            "MintpassValidator: Mintpass signature verification error"
        );
    }
}

File 3 of 20 : LibMintpass.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

/**
 * @dev Mintpass Struct definition used to validate EIP712.
 *
 * {minterAddress} is the mintpass owner (It's reommenced to
 * check if it matches msg.sender in your call function)
 * {amount} is the maximum mintable amount, only used for Free Mints.
 * {minterCategory} determines what type of minter is calling:
 * (1, default) Whitelist, (99) Freemint
 */
library LibMintpass {
    bytes32 private constant MINTPASS_TYPE =
        keccak256(
            "Mintpass(address minterAddress,uint256 amount,uint256 minterCategory)"
        );

    struct Mintpass {
        address minterAddress;
        uint256 amount;
        uint256 minterCategory;
    }

    function mintpassHash(Mintpass memory mintpass) internal pure returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    MINTPASS_TYPE,
                    mintpass.minterAddress,
                    mintpass.amount,
                    mintpass.minterCategory
                )
            );
    }
}

File 4 of 20 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 7 of 20 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 8 of 20 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 9 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// 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 10 of 20 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 11 of 20 : Context.sol
// SPDX-License-Identifier: MIT
// 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 12 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// 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 13 of 20 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 14 of 20 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../utils/Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 15 of 20 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// 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 16 of 20 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @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 17 of 20 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 18 of 20 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 19 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 20 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_initBaseTokenURI","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"TokenUriChanged","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":[],"name":"ACE_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"boughtAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"boughtWhitelistAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"components":[{"internalType":"address","name":"minterAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minterCategory","type":"uint256"}],"internalType":"struct LibMintpass.Mintpass","name":"mintpass","type":"tuple"},{"internalType":"bytes","name":"mintpassSignature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"components":[{"internalType":"address","name":"minterAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minterCategory","type":"uint256"}],"internalType":"struct LibMintpass.Mintpass","name":"mintpass","type":"tuple"},{"internalType":"bytes","name":"mintpassSignature","type":"bytes"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"mintpassRedemptions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_ace_wallet","type":"address"}],"name":"setAceWallet","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":"permanentBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isWhitelistMintEnabled","type":"bool"},{"internalType":"bool","name":"_isPublicMintEnabled","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"_publicMintLimitPerWallet","type":"uint256"}],"name":"setMintingLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"permanentTokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"whitelistMintLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6103e8600b556010805462ffffff19169055610180604052600561014081905264173539b7b760d91b6101609081526200003d91601891906200041b565b503480156200004b57600080fd5b5060405162003b6d38038062003b6d8339810160408190526200006e916200058e565b6040805180820182526008815267151154d5151154d560c21b60208083019182528351808501855260018152603160f81b81830152835190922060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a081815287517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818701819052818a0186905260608201859052608082019390935230818301528851808203909201825260c0019097528651969093019590952089958995949390916080523060c05261012052505083516200016392506001915060208501906200041b565b508051620001799060029060208401906200041b565b50505062000196620001906200020160201b60201c565b62000205565b620001a4336103e862000257565b600080546001600160a01b03191673eac703a4fc9a82f070baa9f12f0cabc627964f45178155600a8190556005600c819055600d55600e819055600f55620001ec826200035c565b620001f781620003c0565b5050505062000684565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620002cb5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003235760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620002c2565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b6009546001600160a01b03163314620003a75760405162461bcd60e51b8152602060048201819052602482015260008051602062003b4d8339815191526044820152606401620002c2565b8051620003bc9060169060208401906200041b565b5050565b6009546001600160a01b031633146200040b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003b4d8339815191526044820152606401620002c2565b8051620003bc9060179060208401905b828054620004299062000647565b90600052602060002090601f0160209004810192826200044d576000855562000498565b82601f106200046857805160ff191683800117855562000498565b8280016001018555821562000498579182015b82811115620004985782518255916020019190600101906200047b565b50620004a6929150620004aa565b5090565b5b80821115620004a65760008155600101620004ab565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620004e957600080fd5b81516001600160401b0380821115620005065762000506620004c1565b604051601f8301601f19908116603f01168101908282118183101715620005315762000531620004c1565b816040528381526020925086838588010111156200054e57600080fd5b600091505b8382101562000572578582018301518183018401529082019062000553565b83821115620005845760008385830101525b9695505050505050565b60008060008060808587031215620005a557600080fd5b84516001600160401b0380821115620005bd57600080fd5b620005cb88838901620004d7565b95506020870151915080821115620005e257600080fd5b620005f088838901620004d7565b945060408701519150808211156200060757600080fd5b6200061588838901620004d7565b935060608701519150808211156200062c57600080fd5b506200063b87828801620004d7565b91505092959194509250565b600181811c908216806200065c57607f821691505b602082108114156200067e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051613479620006d460003960006127480152600061279701526000612772015260006126cb015260006126f50152600061271f01526134796000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063a22cb465116100c1578063e69ae0f91161007a578063e69ae0f914610787578063e985e9c5146107a7578063f2c4ce1e146107f0578063f2fde38b14610810578063f44b79b314610830578063fdf5a49f1461084557600080fd5b8063a22cb465146106e7578063a475b5dd14610707578063b88d4fde1461071c578063c66828621461073c578063c87b56dd14610751578063dc53fd921461077157600080fd5b806384f302f11161011357806384f302f1146106295780638da5cb5b1461064957806395d89b4114610667578063981ef04a1461067c5780639f6bef831461069c578063a0712d68146106d457600080fd5b80636352211e1461058757806368c91d8f146105a757806370a08231146105d4578063715018a6146105f45780638366e79a1461060957600080fd5b80632a55205a116101f35780634f1e55d0116101ac5780634f1e55d0146104ca57806351830227146104e057806351aaceab1461050057806355f804b31461051a57806359429c2a1461053a5780635eb5ab2b1461055a57600080fd5b80632a55205a1461040257806331c515b81461044157806335c6aaf81461046157806342842e0e1461047757806342966c68146104975780634ef91421146104b757600080fd5b8063081812fc11610245578063081812fc1461033e578063095ea7b3146103765780630b9e596514610396578063162094c4146103ac57806318160ddd146103cc57806323b872dd146103e257600080fd5b80630116bc2d1461028257806301ffc9a7146102b6578063031bd4c4146102d657806304634d8d146102fa57806306fdde031461031c575b600080fd5b34801561028e57600080fd5b506010546102a190610100900460ff1681565b60405190151581526020015b60405180910390f35b3480156102c257600080fd5b506102a16102d1366004612c18565b61085a565b3480156102e257600080fd5b506102ec600b5481565b6040519081526020016102ad565b34801561030657600080fd5b5061031a610315366004612c51565b61086b565b005b34801561032857600080fd5b506103316108ac565b6040516102ad9190612cec565b34801561034a57600080fd5b5061035e610359366004612cff565b61093e565b6040516001600160a01b0390911681526020016102ad565b34801561038257600080fd5b5061031a610391366004612d18565b6109c6565b3480156103a257600080fd5b506102ec600d5481565b3480156103b857600080fd5b5061031a6103c7366004612de5565b610adc565b3480156103d857600080fd5b506102ec600a5481565b3480156103ee57600080fd5b5061031a6103fd366004612e2c565b610c06565b34801561040e57600080fd5b5061042261041d366004612e68565b610c38565b604080516001600160a01b0390931683526020830191909152016102ad565b34801561044d57600080fd5b5061031a61045c366004612e98565b610ce6565b34801561046d57600080fd5b506102ec600e5481565b34801561048357600080fd5b5061031a610492366004612e2c565b610d34565b3480156104a357600080fd5b5061031a6104b2366004612cff565b610d4f565b61031a6104c5366004612ec6565b610dc9565b3480156104d657600080fd5b506102ec600c5481565b3480156104ec57600080fd5b506010546102a19062010000900460ff1681565b34801561050c57600080fd5b506010546102a19060ff1681565b34801561052657600080fd5b5061031a610535366004612f6c565b610f7c565b34801561054657600080fd5b5061031a610555366004612ec6565b610fb9565b34801561056657600080fd5b506102ec610575366004612fa1565b60126020526000908152604090205481565b34801561059357600080fd5b5061035e6105a2366004612cff565b611182565b3480156105b357600080fd5b506102ec6105c2366004612fa1565b60116020526000908152604090205481565b3480156105e057600080fd5b506102ec6105ef366004612fa1565b6111f9565b34801561060057600080fd5b5061031a611280565b34801561061557600080fd5b506102a1610624366004612fbc565b6112b6565b34801561063557600080fd5b5061031a610644366004612e68565b6113cd565b34801561065557600080fd5b506009546001600160a01b031661035e565b34801561067357600080fd5b50610331611402565b34801561068857600080fd5b5060005461035e906001600160a01b031681565b3480156106a857600080fd5b506102ec6106b7366004612f6c565b805160208183018101805160138252928201919093012091525481565b61031a6106e2366004612cff565b611411565b3480156106f357600080fd5b5061031a610702366004612fef565b611565565b34801561071357600080fd5b5061031a611570565b34801561072857600080fd5b5061031a61073736600461300b565b6115ad565b34801561074857600080fd5b506103316115e5565b34801561075d57600080fd5b5061033161076c366004612cff565b611673565b34801561077d57600080fd5b506102ec600f5481565b34801561079357600080fd5b5061031a6107a2366004612fa1565b61184e565b3480156107b357600080fd5b506102a16107c2366004612fbc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107fc57600080fd5b5061031a61080b366004612f6c565b61189a565b34801561081c57600080fd5b5061031a61082b366004612fa1565b6118d7565b34801561083c57600080fd5b5061031a61196f565b34801561085157600080fd5b506102ec6119bd565b6000610865826119cd565b92915050565b6009546001600160a01b0316331461089e5760405162461bcd60e51b815260040161089590613073565b60405180910390fd5b6108a882826119f2565b5050565b6060600180546108bb906130a8565b80601f01602080910402602001604051908101604052809291908181526020018280546108e7906130a8565b80156109345780601f1061090957610100808354040283529160200191610934565b820191906000526020600020905b81548152906001019060200180831161091757829003601f168201915b5050505050905090565b600061094982611aef565b6109aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610895565b506000908152600560205260409020546001600160a01b031690565b60006109d182611182565b9050806001600160a01b0316836001600160a01b03161415610a3f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610895565b336001600160a01b0382161480610a5b5750610a5b81336107c2565b610acd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610895565b610ad78383611b0c565b505050565b6000546001600160a01b0316331480610aff57506009546001600160a01b031633145b610b4b5760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c79206265206d6f6469666965642062792041434500000000006044820152606401610895565b610b5482611aef565b610ba05760405162461bcd60e51b815260206004820152601c60248201527f55524920736574206f66206e6f6e6578697374656e7420746f6b656e000000006044820152606401610895565b60008281526014602090815260409091208251610bbf92840190612b33565b5081336001600160a01b03167fc7868dbe1cad60d57d886befc1900d24ad0479e09f729e67507abfdb4332cd1e83604051610bfa9190612cec565b60405180910390a35050565b610c11335b82611b7a565b610c2d5760405162461bcd60e51b8152600401610895906130e3565b610ad7838383611c60565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610cad5750604080518082019091526007546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ccc906001600160601b03168761314a565b610cd6919061317f565b91519350909150505b9250929050565b6009546001600160a01b03163314610d105760405162461bcd60e51b815260040161089590613073565b6010805461ffff191692151561ff0019169290921761010091151591909102179055565b610ad7838383604051806020016040528060008152506115ad565b610d5833610c0b565b610dbd5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610895565b610dc681611dfc565b50565b60105460ff161515600114610e205760405162461bcd60e51b815260206004820181905260248201527f57686974656c697374204d696e74696e67206973206e6f7420456e61626c65646044820152606401610895565b81516001600160a01b03163314610e495760405162461bcd60e51b815260040161089590613193565b82600e54610e57919061314a565b341015610e9c5760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08105b5bdd5b9d606a1b6044820152606401610895565b600c5482516001600160a01b0316600090815260126020526040902054610ec49085906131db565b1115610f1e5760405162461bcd60e51b8152602060048201526024808201527f4d6178696d756d2057686974656c697374207065722057616c6c65742072656160448201526318da195960e21b6064820152608401610895565b610f288282611e4b565b610f36838360000151611f5d565b81516001600160a01b0316600090815260126020526040902054610f5b9084906131db565b91516001600160a01b03166000908152601260205260409020919091555050565b6009546001600160a01b03163314610fa65760405162461bcd60e51b815260040161089590613073565b80516108a8906016906020840190612b33565b60105460ff16151560011480610fdc575060105460ff6101009091041615156001145b6110215760405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81a5cc81b9bdd08115b98589b195960521b6044820152606401610895565b81516001600160a01b0316331461104a5760405162461bcd60e51b815260040161089590613193565b81602001518360138360405161106091906131f3565b90815260200160405180910390205461107991906131db565b11156110c75760405162461bcd60e51b815260206004820152601960248201527f4d696e747061737320616c72656164792072656465656d6564000000000000006044820152606401610895565b816040015160631461111b5760405162461bcd60e51b815260206004820152601860248201527f4d696e7470617373206e6f7420612046726565204d696e7400000000000000006044820152606401610895565b6111258282611e4b565b611133838360000151611f5d565b8260138260405161114491906131f3565b90815260200160405180910390205461115d91906131db565b60138260405161116d91906131f3565b90815260405190819003602001902055505050565b6000818152600360205260408120546001600160a01b0316806108655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610895565b60006001600160a01b0382166112645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610895565b506001600160a01b031660009081526004602052604090205490565b6009546001600160a01b031633146112aa5760405162461bcd60e51b815260040161089590613073565b6112b46000612004565b565b6009546000906001600160a01b031633146112e35760405162461bcd60e51b815260040161089590613073565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e919061320f565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156113a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c59190613228565b949350505050565b6009546001600160a01b031633146113f75760405162461bcd60e51b815260040161089590613073565b600c91909155600d55565b6060600280546108bb906130a8565b60105460ff61010090910416151560011461146e5760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963204d696e74696e67206973206e6f7420456e61626c65640000006044820152606401610895565b80600f5461147c919061314a565b3410156114c15760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08105b5bdd5b9d606a1b6044820152606401610895565b600d54336000908152601160205260409020546114df9083906131db565b111561152d5760405162461bcd60e51b815260206004820152601a60248201527f4d6178696d756d207065722057616c6c657420726561636865640000000000006044820152606401610895565b6115378133611f5d565b336000908152601160205260409020546115529082906131db565b3360009081526011602052604090205550565b6108a8338383612056565b6009546001600160a01b0316331461159a5760405162461bcd60e51b815260040161089590613073565b6010805462ff0000191662010000179055565b6115b73383611b7a565b6115d35760405162461bcd60e51b8152600401610895906130e3565b6115df84848484612125565b50505050565b601880546115f2906130a8565b80601f016020809104026020016040519081016040528092919081815260200182805461161e906130a8565b801561166b5780601f106116405761010080835404028352916020019161166b565b820191906000526020600020905b81548152906001019060200180831161164e57829003601f168201915b505050505081565b606061167e82611aef565b6116ca5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610895565b60105462010000900460ff1661176c57601780546116e7906130a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611713906130a8565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b50505050509050919050565b60008281526014602052604081208054611785906130a8565b80601f01602080910402602001604051908101604052809291908181526020018280546117b1906130a8565b80156117fe5780601f106117d3576101008083540402835291602001916117fe565b820191906000526020600020905b8154815290600101906020018083116117e157829003601f168201915b505050505090506000815111156118155792915050565b600061182084612158565b9050806018604051602001611836929190613245565b60405160208183030381529060405292505050919050565b6009546001600160a01b031633146118785760405162461bcd60e51b815260040161089590613073565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b031633146118c45760405162461bcd60e51b815260040161089590613073565b80516108a8906017906020840190612b33565b6009546001600160a01b031633146119015760405162461bcd60e51b815260040161089590613073565b6001600160a01b0381166119665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610895565b610dc681612004565b6009546001600160a01b031633146119995760405162461bcd60e51b815260040161089590613073565b60405133904780156108fc02916000818181858888f193505050506112b457600080fd5b60006119c860155490565b905090565b60006001600160e01b0319821663152a902d60e11b1480610865575061086582612223565b6127106001600160601b0382161115611a605760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610895565b6001600160a01b038216611ab65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610895565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b4182611182565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b8582611aef565b611be65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610895565b6000611bf183611182565b9050806001600160a01b0316846001600160a01b03161480611c2c5750836001600160a01b0316611c218461093e565b6001600160a01b0316145b806113c557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff166113c5565b826001600160a01b0316611c7382611182565b6001600160a01b031614611cd75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610895565b6001600160a01b038216611d395760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610895565b611d44600082611b0c565b6001600160a01b0383166000908152600460205260408120805460019290611d6d9084906132f6565b90915550506001600160a01b0382166000908152600460205260408120805460019290611d9b9084906131db565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e0581612273565b60008181526008602052604081205560008181526014602052604090208054611e2d906130a8565b159050610dc6576000818152601460205260408120610dc691612bb7565b815160208084015160408086015181517fa5050e90a6971a8fc2e6b7e922a439e60e7f44aba7c49fa4e337b85766c3855f818601526001600160a01b039095168583015260608501929092526080808501929092528051808503909201825260a090930190925281519101206000611ec28261230e565b90506000611ed0828561235c565b6000549091506001600160a01b03808316911614611f565760405162461bcd60e51b815260206004820152603860248201527f4d696e747061737356616c696461746f723a204d696e7470617373207369676e60448201527f617475726520766572696669636174696f6e206572726f7200000000000000006064820152608401610895565b5050505050565b601554611f6a90836131db565b600b541015611fa65760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610895565b60005b82811015610ad757611fce82611fbe60155490565b611fc99060016131db565b612380565b611fdc601580546001019055565b600a8054906000611fec8361330d565b91905055508080611ffc9061330d565b915050611fa9565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610895565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612130848484611c60565b61213c848484846124b3565b6115df5760405162461bcd60e51b815260040161089590613328565b606061216382611aef565b6121c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610895565b60006121d16125b1565b905060008151116121f1576040518060200160405280600081525061221c565b806121fb846125c0565b60405160200161220c92919061337a565b6040516020818303038152906040525b9392505050565b60006001600160e01b031982166380ac58cd60e01b148061225457506001600160e01b03198216635b5e139f60e01b145b8061086557506301ffc9a760e01b6001600160e01b0319831614610865565b600061227e82611182565b905061228b600083611b0c565b6001600160a01b03811660009081526004602052604081208054600192906122b49084906132f6565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600061086561231b6126be565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061236b85856127e5565b9150915061237881612852565b509392505050565b6001600160a01b0382166123d65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610895565b6123df81611aef565b1561242c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610895565b6001600160a01b03821660009081526004602052604081208054600192906124559084906131db565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156125a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124f79033908990889088906004016133a9565b6020604051808303816000875af1925050508015612532575060408051601f3d908101601f1916820190925261252f918101906133e6565b60015b61258c573d808015612560576040519150601f19603f3d011682016040523d82523d6000602084013e612565565b606091505b5080516125845760405162461bcd60e51b815260040161089590613328565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c5565b506001949350505050565b6060601680546108bb906130a8565b6060816125e45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561260e57806125f88161330d565b91506126079050600a8361317f565b91506125e8565b60008167ffffffffffffffff81111561262957612629612d42565b6040519080825280601f01601f191660200182016040528015612653576020820181803683370190505b5090505b84156113c5576126686001836132f6565b9150612675600a86613403565b6126809060306131db565b60f81b81838151811061269557612695613417565b60200101906001600160f81b031916908160001a9053506126b7600a8661317f565b9450612657565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561271757507f000000000000000000000000000000000000000000000000000000000000000046145b1561274157507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008082516041141561281c5760208301516040840151606085015160001a61281087828585612a0d565b94509450505050610cdf565b825160401415612846576020830151604084015161283b868383612afa565b935093505050610cdf565b50600090506002610cdf565b60008160048111156128665761286661342d565b141561286f5750565b60018160048111156128835761288361342d565b14156128d15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610895565b60028160048111156128e5576128e561342d565b14156129335760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610895565b60038160048111156129475761294761342d565b14156129a05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610895565b60048160048111156129b4576129b461342d565b1415610dc65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610895565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612a445750600090506003612af1565b8460ff16601b14158015612a5c57508460ff16601c14155b15612a6d5750600090506004612af1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612ac1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612aea57600060019250925050612af1565b9150600090505b94509492505050565b6000806001600160ff1b03831681612b1760ff86901c601b6131db565b9050612b2587828885612a0d565b935093505050935093915050565b828054612b3f906130a8565b90600052602060002090601f016020900481019282612b615760008555612ba7565b82601f10612b7a57805160ff1916838001178555612ba7565b82800160010185558215612ba7579182015b82811115612ba7578251825591602001919060010190612b8c565b50612bb3929150612bed565b5090565b508054612bc3906130a8565b6000825580601f10612bd3575050565b601f016020900490600052602060002090810190610dc691905b5b80821115612bb35760008155600101612bee565b6001600160e01b031981168114610dc657600080fd5b600060208284031215612c2a57600080fd5b813561221c81612c02565b80356001600160a01b0381168114612c4c57600080fd5b919050565b60008060408385031215612c6457600080fd5b612c6d83612c35565b915060208301356001600160601b0381168114612c8957600080fd5b809150509250929050565b60005b83811015612caf578181015183820152602001612c97565b838111156115df5750506000910152565b60008151808452612cd8816020860160208601612c94565b601f01601f19169290920160200192915050565b60208152600061221c6020830184612cc0565b600060208284031215612d1157600080fd5b5035919050565b60008060408385031215612d2b57600080fd5b612d3483612c35565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612d6957600080fd5b813567ffffffffffffffff80821115612d8457612d84612d42565b604051601f8301601f19908116603f01168101908282118183101715612dac57612dac612d42565b81604052838152866020858801011115612dc557600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215612df857600080fd5b82359150602083013567ffffffffffffffff811115612e1657600080fd5b612e2285828601612d58565b9150509250929050565b600080600060608486031215612e4157600080fd5b612e4a84612c35565b9250612e5860208501612c35565b9150604084013590509250925092565b60008060408385031215612e7b57600080fd5b50508035926020909101359150565b8015158114610dc657600080fd5b60008060408385031215612eab57600080fd5b8235612eb681612e8a565b91506020830135612c8981612e8a565b600080600083850360a0811215612edc57600080fd5b843593506060601f1982011215612ef257600080fd5b506040516060810167ffffffffffffffff8282108183111715612f1757612f17612d42565b81604052612f2760208801612c35565b835260408701356020840152606087013560408401528294506080870135925080831115612f5457600080fd5b5050612f6286828701612d58565b9150509250925092565b600060208284031215612f7e57600080fd5b813567ffffffffffffffff811115612f9557600080fd5b6113c584828501612d58565b600060208284031215612fb357600080fd5b61221c82612c35565b60008060408385031215612fcf57600080fd5b612fd883612c35565b9150612fe660208401612c35565b90509250929050565b6000806040838503121561300257600080fd5b612eb683612c35565b6000806000806080858703121561302157600080fd5b61302a85612c35565b935061303860208601612c35565b925060408501359150606085013567ffffffffffffffff81111561305b57600080fd5b61306787828801612d58565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806130bc57607f821691505b602082108114156130dd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561316457613164613134565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261318e5761318e613169565b500490565b60208082526028908201527f4d696e7470617373204164647265737320616e642053656e64657220646f206e6040820152670dee840dac2e8c6d60c31b606082015260800190565b600082198211156131ee576131ee613134565b500190565b60008251613205818460208701612c94565b9190910192915050565b60006020828403121561322157600080fd5b5051919050565b60006020828403121561323a57600080fd5b815161221c81612e8a565b6000835160206132588285838901612c94565b845491840191600090600181811c908083168061327657607f831692505b85831081141561329457634e487b7160e01b85526022600452602485fd5b8080156132a857600181146132b9576132e6565b60ff198516885283880195506132e6565b60008b81526020902060005b858110156132de5781548a8201529084019088016132c5565b505083880195505b50939a9950505050505050505050565b60008282101561330857613308613134565b500390565b600060001982141561332157613321613134565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000835161338c818460208801612c94565b8351908301906133a0818360208801612c94565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133dc90830184612cc0565b9695505050505050565b6000602082840312156133f857600080fd5b815161221c81612c02565b60008261341257613412613169565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fdfea26469706673582212204a975ed9bb2fd5431b72be064bec62d6497eafda71a58d86c8260055b64ed96164736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000854616b616d75746f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000854616b616d75746f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f737570657270696e6174612e6d7970696e6174612e636c6f75642f697066732f516d61523545325171734658776474536848396f684a7a75653278627a44396b444570317069524c63445a6e39652f000000000000000000000000000000000000000000000000000000000000000000000000000000005d68747470733a2f2f737570657270696e6174612e6d7970696e6174612e636c6f75642f697066732f516d6344616472674248446178344656515631523450777167364132466a743164623831517662374a4e35697a512f312e6a736f6e000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063a22cb465116100c1578063e69ae0f91161007a578063e69ae0f914610787578063e985e9c5146107a7578063f2c4ce1e146107f0578063f2fde38b14610810578063f44b79b314610830578063fdf5a49f1461084557600080fd5b8063a22cb465146106e7578063a475b5dd14610707578063b88d4fde1461071c578063c66828621461073c578063c87b56dd14610751578063dc53fd921461077157600080fd5b806384f302f11161011357806384f302f1146106295780638da5cb5b1461064957806395d89b4114610667578063981ef04a1461067c5780639f6bef831461069c578063a0712d68146106d457600080fd5b80636352211e1461058757806368c91d8f146105a757806370a08231146105d4578063715018a6146105f45780638366e79a1461060957600080fd5b80632a55205a116101f35780634f1e55d0116101ac5780634f1e55d0146104ca57806351830227146104e057806351aaceab1461050057806355f804b31461051a57806359429c2a1461053a5780635eb5ab2b1461055a57600080fd5b80632a55205a1461040257806331c515b81461044157806335c6aaf81461046157806342842e0e1461047757806342966c68146104975780634ef91421146104b757600080fd5b8063081812fc11610245578063081812fc1461033e578063095ea7b3146103765780630b9e596514610396578063162094c4146103ac57806318160ddd146103cc57806323b872dd146103e257600080fd5b80630116bc2d1461028257806301ffc9a7146102b6578063031bd4c4146102d657806304634d8d146102fa57806306fdde031461031c575b600080fd5b34801561028e57600080fd5b506010546102a190610100900460ff1681565b60405190151581526020015b60405180910390f35b3480156102c257600080fd5b506102a16102d1366004612c18565b61085a565b3480156102e257600080fd5b506102ec600b5481565b6040519081526020016102ad565b34801561030657600080fd5b5061031a610315366004612c51565b61086b565b005b34801561032857600080fd5b506103316108ac565b6040516102ad9190612cec565b34801561034a57600080fd5b5061035e610359366004612cff565b61093e565b6040516001600160a01b0390911681526020016102ad565b34801561038257600080fd5b5061031a610391366004612d18565b6109c6565b3480156103a257600080fd5b506102ec600d5481565b3480156103b857600080fd5b5061031a6103c7366004612de5565b610adc565b3480156103d857600080fd5b506102ec600a5481565b3480156103ee57600080fd5b5061031a6103fd366004612e2c565b610c06565b34801561040e57600080fd5b5061042261041d366004612e68565b610c38565b604080516001600160a01b0390931683526020830191909152016102ad565b34801561044d57600080fd5b5061031a61045c366004612e98565b610ce6565b34801561046d57600080fd5b506102ec600e5481565b34801561048357600080fd5b5061031a610492366004612e2c565b610d34565b3480156104a357600080fd5b5061031a6104b2366004612cff565b610d4f565b61031a6104c5366004612ec6565b610dc9565b3480156104d657600080fd5b506102ec600c5481565b3480156104ec57600080fd5b506010546102a19062010000900460ff1681565b34801561050c57600080fd5b506010546102a19060ff1681565b34801561052657600080fd5b5061031a610535366004612f6c565b610f7c565b34801561054657600080fd5b5061031a610555366004612ec6565b610fb9565b34801561056657600080fd5b506102ec610575366004612fa1565b60126020526000908152604090205481565b34801561059357600080fd5b5061035e6105a2366004612cff565b611182565b3480156105b357600080fd5b506102ec6105c2366004612fa1565b60116020526000908152604090205481565b3480156105e057600080fd5b506102ec6105ef366004612fa1565b6111f9565b34801561060057600080fd5b5061031a611280565b34801561061557600080fd5b506102a1610624366004612fbc565b6112b6565b34801561063557600080fd5b5061031a610644366004612e68565b6113cd565b34801561065557600080fd5b506009546001600160a01b031661035e565b34801561067357600080fd5b50610331611402565b34801561068857600080fd5b5060005461035e906001600160a01b031681565b3480156106a857600080fd5b506102ec6106b7366004612f6c565b805160208183018101805160138252928201919093012091525481565b61031a6106e2366004612cff565b611411565b3480156106f357600080fd5b5061031a610702366004612fef565b611565565b34801561071357600080fd5b5061031a611570565b34801561072857600080fd5b5061031a61073736600461300b565b6115ad565b34801561074857600080fd5b506103316115e5565b34801561075d57600080fd5b5061033161076c366004612cff565b611673565b34801561077d57600080fd5b506102ec600f5481565b34801561079357600080fd5b5061031a6107a2366004612fa1565b61184e565b3480156107b357600080fd5b506102a16107c2366004612fbc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107fc57600080fd5b5061031a61080b366004612f6c565b61189a565b34801561081c57600080fd5b5061031a61082b366004612fa1565b6118d7565b34801561083c57600080fd5b5061031a61196f565b34801561085157600080fd5b506102ec6119bd565b6000610865826119cd565b92915050565b6009546001600160a01b0316331461089e5760405162461bcd60e51b815260040161089590613073565b60405180910390fd5b6108a882826119f2565b5050565b6060600180546108bb906130a8565b80601f01602080910402602001604051908101604052809291908181526020018280546108e7906130a8565b80156109345780601f1061090957610100808354040283529160200191610934565b820191906000526020600020905b81548152906001019060200180831161091757829003601f168201915b5050505050905090565b600061094982611aef565b6109aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610895565b506000908152600560205260409020546001600160a01b031690565b60006109d182611182565b9050806001600160a01b0316836001600160a01b03161415610a3f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610895565b336001600160a01b0382161480610a5b5750610a5b81336107c2565b610acd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610895565b610ad78383611b0c565b505050565b6000546001600160a01b0316331480610aff57506009546001600160a01b031633145b610b4b5760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c79206265206d6f6469666965642062792041434500000000006044820152606401610895565b610b5482611aef565b610ba05760405162461bcd60e51b815260206004820152601c60248201527f55524920736574206f66206e6f6e6578697374656e7420746f6b656e000000006044820152606401610895565b60008281526014602090815260409091208251610bbf92840190612b33565b5081336001600160a01b03167fc7868dbe1cad60d57d886befc1900d24ad0479e09f729e67507abfdb4332cd1e83604051610bfa9190612cec565b60405180910390a35050565b610c11335b82611b7a565b610c2d5760405162461bcd60e51b8152600401610895906130e3565b610ad7838383611c60565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610cad5750604080518082019091526007546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ccc906001600160601b03168761314a565b610cd6919061317f565b91519350909150505b9250929050565b6009546001600160a01b03163314610d105760405162461bcd60e51b815260040161089590613073565b6010805461ffff191692151561ff0019169290921761010091151591909102179055565b610ad7838383604051806020016040528060008152506115ad565b610d5833610c0b565b610dbd5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610895565b610dc681611dfc565b50565b60105460ff161515600114610e205760405162461bcd60e51b815260206004820181905260248201527f57686974656c697374204d696e74696e67206973206e6f7420456e61626c65646044820152606401610895565b81516001600160a01b03163314610e495760405162461bcd60e51b815260040161089590613193565b82600e54610e57919061314a565b341015610e9c5760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08105b5bdd5b9d606a1b6044820152606401610895565b600c5482516001600160a01b0316600090815260126020526040902054610ec49085906131db565b1115610f1e5760405162461bcd60e51b8152602060048201526024808201527f4d6178696d756d2057686974656c697374207065722057616c6c65742072656160448201526318da195960e21b6064820152608401610895565b610f288282611e4b565b610f36838360000151611f5d565b81516001600160a01b0316600090815260126020526040902054610f5b9084906131db565b91516001600160a01b03166000908152601260205260409020919091555050565b6009546001600160a01b03163314610fa65760405162461bcd60e51b815260040161089590613073565b80516108a8906016906020840190612b33565b60105460ff16151560011480610fdc575060105460ff6101009091041615156001145b6110215760405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81a5cc81b9bdd08115b98589b195960521b6044820152606401610895565b81516001600160a01b0316331461104a5760405162461bcd60e51b815260040161089590613193565b81602001518360138360405161106091906131f3565b90815260200160405180910390205461107991906131db565b11156110c75760405162461bcd60e51b815260206004820152601960248201527f4d696e747061737320616c72656164792072656465656d6564000000000000006044820152606401610895565b816040015160631461111b5760405162461bcd60e51b815260206004820152601860248201527f4d696e7470617373206e6f7420612046726565204d696e7400000000000000006044820152606401610895565b6111258282611e4b565b611133838360000151611f5d565b8260138260405161114491906131f3565b90815260200160405180910390205461115d91906131db565b60138260405161116d91906131f3565b90815260405190819003602001902055505050565b6000818152600360205260408120546001600160a01b0316806108655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610895565b60006001600160a01b0382166112645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610895565b506001600160a01b031660009081526004602052604090205490565b6009546001600160a01b031633146112aa5760405162461bcd60e51b815260040161089590613073565b6112b46000612004565b565b6009546000906001600160a01b031633146112e35760405162461bcd60e51b815260040161089590613073565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e919061320f565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156113a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c59190613228565b949350505050565b6009546001600160a01b031633146113f75760405162461bcd60e51b815260040161089590613073565b600c91909155600d55565b6060600280546108bb906130a8565b60105460ff61010090910416151560011461146e5760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963204d696e74696e67206973206e6f7420456e61626c65640000006044820152606401610895565b80600f5461147c919061314a565b3410156114c15760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08105b5bdd5b9d606a1b6044820152606401610895565b600d54336000908152601160205260409020546114df9083906131db565b111561152d5760405162461bcd60e51b815260206004820152601a60248201527f4d6178696d756d207065722057616c6c657420726561636865640000000000006044820152606401610895565b6115378133611f5d565b336000908152601160205260409020546115529082906131db565b3360009081526011602052604090205550565b6108a8338383612056565b6009546001600160a01b0316331461159a5760405162461bcd60e51b815260040161089590613073565b6010805462ff0000191662010000179055565b6115b73383611b7a565b6115d35760405162461bcd60e51b8152600401610895906130e3565b6115df84848484612125565b50505050565b601880546115f2906130a8565b80601f016020809104026020016040519081016040528092919081815260200182805461161e906130a8565b801561166b5780601f106116405761010080835404028352916020019161166b565b820191906000526020600020905b81548152906001019060200180831161164e57829003601f168201915b505050505081565b606061167e82611aef565b6116ca5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610895565b60105462010000900460ff1661176c57601780546116e7906130a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611713906130a8565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b50505050509050919050565b60008281526014602052604081208054611785906130a8565b80601f01602080910402602001604051908101604052809291908181526020018280546117b1906130a8565b80156117fe5780601f106117d3576101008083540402835291602001916117fe565b820191906000526020600020905b8154815290600101906020018083116117e157829003601f168201915b505050505090506000815111156118155792915050565b600061182084612158565b9050806018604051602001611836929190613245565b60405160208183030381529060405292505050919050565b6009546001600160a01b031633146118785760405162461bcd60e51b815260040161089590613073565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b031633146118c45760405162461bcd60e51b815260040161089590613073565b80516108a8906017906020840190612b33565b6009546001600160a01b031633146119015760405162461bcd60e51b815260040161089590613073565b6001600160a01b0381166119665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610895565b610dc681612004565b6009546001600160a01b031633146119995760405162461bcd60e51b815260040161089590613073565b60405133904780156108fc02916000818181858888f193505050506112b457600080fd5b60006119c860155490565b905090565b60006001600160e01b0319821663152a902d60e11b1480610865575061086582612223565b6127106001600160601b0382161115611a605760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610895565b6001600160a01b038216611ab65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610895565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b4182611182565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b8582611aef565b611be65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610895565b6000611bf183611182565b9050806001600160a01b0316846001600160a01b03161480611c2c5750836001600160a01b0316611c218461093e565b6001600160a01b0316145b806113c557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff166113c5565b826001600160a01b0316611c7382611182565b6001600160a01b031614611cd75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610895565b6001600160a01b038216611d395760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610895565b611d44600082611b0c565b6001600160a01b0383166000908152600460205260408120805460019290611d6d9084906132f6565b90915550506001600160a01b0382166000908152600460205260408120805460019290611d9b9084906131db565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e0581612273565b60008181526008602052604081205560008181526014602052604090208054611e2d906130a8565b159050610dc6576000818152601460205260408120610dc691612bb7565b815160208084015160408086015181517fa5050e90a6971a8fc2e6b7e922a439e60e7f44aba7c49fa4e337b85766c3855f818601526001600160a01b039095168583015260608501929092526080808501929092528051808503909201825260a090930190925281519101206000611ec28261230e565b90506000611ed0828561235c565b6000549091506001600160a01b03808316911614611f565760405162461bcd60e51b815260206004820152603860248201527f4d696e747061737356616c696461746f723a204d696e7470617373207369676e60448201527f617475726520766572696669636174696f6e206572726f7200000000000000006064820152608401610895565b5050505050565b601554611f6a90836131db565b600b541015611fa65760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610895565b60005b82811015610ad757611fce82611fbe60155490565b611fc99060016131db565b612380565b611fdc601580546001019055565b600a8054906000611fec8361330d565b91905055508080611ffc9061330d565b915050611fa9565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610895565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612130848484611c60565b61213c848484846124b3565b6115df5760405162461bcd60e51b815260040161089590613328565b606061216382611aef565b6121c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610895565b60006121d16125b1565b905060008151116121f1576040518060200160405280600081525061221c565b806121fb846125c0565b60405160200161220c92919061337a565b6040516020818303038152906040525b9392505050565b60006001600160e01b031982166380ac58cd60e01b148061225457506001600160e01b03198216635b5e139f60e01b145b8061086557506301ffc9a760e01b6001600160e01b0319831614610865565b600061227e82611182565b905061228b600083611b0c565b6001600160a01b03811660009081526004602052604081208054600192906122b49084906132f6565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600061086561231b6126be565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061236b85856127e5565b9150915061237881612852565b509392505050565b6001600160a01b0382166123d65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610895565b6123df81611aef565b1561242c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610895565b6001600160a01b03821660009081526004602052604081208054600192906124559084906131db565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156125a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124f79033908990889088906004016133a9565b6020604051808303816000875af1925050508015612532575060408051601f3d908101601f1916820190925261252f918101906133e6565b60015b61258c573d808015612560576040519150601f19603f3d011682016040523d82523d6000602084013e612565565b606091505b5080516125845760405162461bcd60e51b815260040161089590613328565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c5565b506001949350505050565b6060601680546108bb906130a8565b6060816125e45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561260e57806125f88161330d565b91506126079050600a8361317f565b91506125e8565b60008167ffffffffffffffff81111561262957612629612d42565b6040519080825280601f01601f191660200182016040528015612653576020820181803683370190505b5090505b84156113c5576126686001836132f6565b9150612675600a86613403565b6126809060306131db565b60f81b81838151811061269557612695613417565b60200101906001600160f81b031916908160001a9053506126b7600a8661317f565b9450612657565b6000306001600160a01b037f000000000000000000000000da9889d465ca1cbda4b11f7a72c1845dc7fddef21614801561271757507f000000000000000000000000000000000000000000000000000000000000000146145b1561274157507f183c26c0e329dc1e8fc702d66a5ea210a204ac88c4f8cff1b39dec5b6fa4924190565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f43b7a48ee0db6c2c454583a3b9765d1b479960264c47408a59cb3cc24f9a6068828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008082516041141561281c5760208301516040840151606085015160001a61281087828585612a0d565b94509450505050610cdf565b825160401415612846576020830151604084015161283b868383612afa565b935093505050610cdf565b50600090506002610cdf565b60008160048111156128665761286661342d565b141561286f5750565b60018160048111156128835761288361342d565b14156128d15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610895565b60028160048111156128e5576128e561342d565b14156129335760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610895565b60038160048111156129475761294761342d565b14156129a05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610895565b60048160048111156129b4576129b461342d565b1415610dc65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610895565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612a445750600090506003612af1565b8460ff16601b14158015612a5c57508460ff16601c14155b15612a6d5750600090506004612af1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612ac1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612aea57600060019250925050612af1565b9150600090505b94509492505050565b6000806001600160ff1b03831681612b1760ff86901c601b6131db565b9050612b2587828885612a0d565b935093505050935093915050565b828054612b3f906130a8565b90600052602060002090601f016020900481019282612b615760008555612ba7565b82601f10612b7a57805160ff1916838001178555612ba7565b82800160010185558215612ba7579182015b82811115612ba7578251825591602001919060010190612b8c565b50612bb3929150612bed565b5090565b508054612bc3906130a8565b6000825580601f10612bd3575050565b601f016020900490600052602060002090810190610dc691905b5b80821115612bb35760008155600101612bee565b6001600160e01b031981168114610dc657600080fd5b600060208284031215612c2a57600080fd5b813561221c81612c02565b80356001600160a01b0381168114612c4c57600080fd5b919050565b60008060408385031215612c6457600080fd5b612c6d83612c35565b915060208301356001600160601b0381168114612c8957600080fd5b809150509250929050565b60005b83811015612caf578181015183820152602001612c97565b838111156115df5750506000910152565b60008151808452612cd8816020860160208601612c94565b601f01601f19169290920160200192915050565b60208152600061221c6020830184612cc0565b600060208284031215612d1157600080fd5b5035919050565b60008060408385031215612d2b57600080fd5b612d3483612c35565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612d6957600080fd5b813567ffffffffffffffff80821115612d8457612d84612d42565b604051601f8301601f19908116603f01168101908282118183101715612dac57612dac612d42565b81604052838152866020858801011115612dc557600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215612df857600080fd5b82359150602083013567ffffffffffffffff811115612e1657600080fd5b612e2285828601612d58565b9150509250929050565b600080600060608486031215612e4157600080fd5b612e4a84612c35565b9250612e5860208501612c35565b9150604084013590509250925092565b60008060408385031215612e7b57600080fd5b50508035926020909101359150565b8015158114610dc657600080fd5b60008060408385031215612eab57600080fd5b8235612eb681612e8a565b91506020830135612c8981612e8a565b600080600083850360a0811215612edc57600080fd5b843593506060601f1982011215612ef257600080fd5b506040516060810167ffffffffffffffff8282108183111715612f1757612f17612d42565b81604052612f2760208801612c35565b835260408701356020840152606087013560408401528294506080870135925080831115612f5457600080fd5b5050612f6286828701612d58565b9150509250925092565b600060208284031215612f7e57600080fd5b813567ffffffffffffffff811115612f9557600080fd5b6113c584828501612d58565b600060208284031215612fb357600080fd5b61221c82612c35565b60008060408385031215612fcf57600080fd5b612fd883612c35565b9150612fe660208401612c35565b90509250929050565b6000806040838503121561300257600080fd5b612eb683612c35565b6000806000806080858703121561302157600080fd5b61302a85612c35565b935061303860208601612c35565b925060408501359150606085013567ffffffffffffffff81111561305b57600080fd5b61306787828801612d58565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806130bc57607f821691505b602082108114156130dd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561316457613164613134565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261318e5761318e613169565b500490565b60208082526028908201527f4d696e7470617373204164647265737320616e642053656e64657220646f206e6040820152670dee840dac2e8c6d60c31b606082015260800190565b600082198211156131ee576131ee613134565b500190565b60008251613205818460208701612c94565b9190910192915050565b60006020828403121561322157600080fd5b5051919050565b60006020828403121561323a57600080fd5b815161221c81612e8a565b6000835160206132588285838901612c94565b845491840191600090600181811c908083168061327657607f831692505b85831081141561329457634e487b7160e01b85526022600452602485fd5b8080156132a857600181146132b9576132e6565b60ff198516885283880195506132e6565b60008b81526020902060005b858110156132de5781548a8201529084019088016132c5565b505083880195505b50939a9950505050505050505050565b60008282101561330857613308613134565b500390565b600060001982141561332157613321613134565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000835161338c818460208801612c94565b8351908301906133a0818360208801612c94565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133dc90830184612cc0565b9695505050505050565b6000602082840312156133f857600080fd5b815161221c81612c02565b60008261341257613412613169565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fdfea26469706673582212204a975ed9bb2fd5431b72be064bec62d6497eafda71a58d86c8260055b64ed96164736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000854616b616d75746f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000854616b616d75746f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f737570657270696e6174612e6d7970696e6174612e636c6f75642f697066732f516d61523545325171734658776474536848396f684a7a75653278627a44396b444570317069524c63445a6e39652f000000000000000000000000000000000000000000000000000000000000000000000000000000005d68747470733a2f2f737570657270696e6174612e6d7970696e6174612e636c6f75642f697066732f516d6344616472674248446178344656515631523450777167364132466a743164623831517662374a4e35697a512f312e6a736f6e000000

-----Decoded View---------------
Arg [0] : name (string): Takamuto
Arg [1] : symbol (string): Takamuto
Arg [2] : _initBaseTokenURI (string): https://superpinata.mypinata.cloud/ipfs/QmaR5E2QqsFXwdtShH9ohJzue2xbzD9kDEp1piRLcDZn9e/
Arg [3] : _initNotRevealedURI (string): https://superpinata.mypinata.cloud/ipfs/QmcDadrgBHDax4FVQV1R4Pwqg6A2Fjt1db81Qvb7JN5izQ/1.json

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 54616b616d75746f000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 54616b616d75746f000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [9] : 68747470733a2f2f737570657270696e6174612e6d7970696e6174612e636c6f
Arg [10] : 75642f697066732f516d61523545325171734658776474536848396f684a7a75
Arg [11] : 653278627a44396b444570317069524c63445a6e39652f000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000005d
Arg [13] : 68747470733a2f2f737570657270696e6174612e6d7970696e6174612e636c6f
Arg [14] : 75642f697066732f516d63446164726742484461783446565156315234507771
Arg [15] : 67364132466a743164623831517662374a4e35697a512f312e6a736f6e000000


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.