ETH Price: $3,470.42 (-1.03%)
Gas: 3 Gwei

Token

Billion Buns (BBUN)
 

Overview

Max Total Supply

888 BBUN

Holders

411

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nft-boutique.eth
Balance
5 BBUN
0x114c7dba538049260e3c4919e98447943f9f228a
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:
BillionBuns

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 21 : BillionBuns.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/interfaces/IERC20.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/interfaces/IERC165.sol';
import '@openzeppelin/contracts/interfaces/IERC2981.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

contract BillionBuns is ERC721Enumerable, Ownable, Pausable, ReentrancyGuard, IERC2981 {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint8 private redeemedGiveaways;

    bool public saleActive = false;
    string public PROVENANCE_HASH = "";
    string private baseURI;
    string private tokenSuffixURI;
    string private contractMetadata = 'contract.json';

    uint256 public constant SALE_PRICE = 88000000000000000; // 0.088 ETH
    uint8 public constant MINT_BATCH_LIMIT = 5; // Max number of Tokens minted in a single txn
    uint8 public constant RESERVED_GIVEAWAYS = 12; // Tokens reserved for giveaway list

    uint256 public saleStartsAt;
    uint256 public publicsaleStartsAt;
    uint256 public privatesaleStartsAt;
    uint256 public privatesaleEndsAt;

    uint256 public constant MAX_TOKENS = 876; // Max number of token sold in  sale

    address[] private recipients;
    uint256[] private splits;
    uint16 public constant SPLIT_BASE = 10000;

    bytes32 public whitelistMerkleRoot;

    event TokenMinted(
        address indexed owner, 
        uint256 indexed quantity
    );
    event SaleStatusChange(
        address indexed issuer, 
        bool indexed status
    );
    event ContractWithdraw(
        address indexed initiator,
        uint256 amount
    );
    event ContractWithdrawToken(
        address indexed initiator,
        address indexed token,
        uint256 amount
    );
    event ProvenanceHashSet(
        address indexed initiator,
        string previousHash,
        string newHash
    );
    event WithdrawAddressChanged(
        address indexed previousAddress, 
        address indexed newAddress
    );

    uint16 internal royalty = 500; // base 10000, 5%
    uint16 public constant BASE = 10000;

    constructor(
        uint256 _saleStartTime,
        string memory _baseContractURI,
        string memory _tokenSuffixURI,
        string memory _provenaceHash,
        address[] memory _recipients,
        uint16[] memory _splits
    ) ERC721('Billion Buns', 'BBUN') {
        baseURI = _baseContractURI;
        tokenSuffixURI = _tokenSuffixURI;
        saleStartsAt = _saleStartTime; // Unix Timestamp 
        privatesaleStartsAt = saleStartsAt; // Start Private Sale, 
        privatesaleEndsAt = saleStartsAt + 24 hours; // End of Private Sale, 
        publicsaleStartsAt = saleStartsAt + 24 hours; // Start of Public Sale, 
        PROVENANCE_HASH =  _provenaceHash;
        recipients = _recipients;
        splits = _splits;
    }

    function mintGiveawayNFT(address recipient, uint8 numTokens) public onlyOwner {
        require((numTokens + redeemedGiveaways) <= RESERVED_GIVEAWAYS, 'All Giveaways Redeemed');
        for (uint8 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            _safeMint(recipient, _tokenIds.current());
        }
        redeemedGiveaways = redeemedGiveaways + numTokens;
        emit TokenMinted(recipient, numTokens);
    }

    function setWhitelistMerkleRoot(bytes32 _root) onlyOwner external {
        whitelistMerkleRoot = _root;
    }

    /**
     * @dev mints `numTokens` tokens and assigns it to
     * `msg.sender` by calling _safeMint function.
     *
     * Emits a {TokenMinted} event.
     * Emits two {TransferSingle} events via ERC721 Contract.
     *
     * Requirements:
     * - `saleActive` must be set to true.
     * - Current timestamp must greater than or equal `saleStartsAt`.
     * - Current timestamp must within period of private sale `privatesaleStartsAt` - `privatesaleEndsAt`.
     * - `msg.sender` is among whitelisted memebrs based on the merkle proof provided
     * - Ether amount sent greater or equal the base price multipled by `numTokens`.
     * - `numTokens` within limits of max number of tokens minted in single txn.
     * - Max number of tokens for the private sale not reahced
     * @param numTokens - Number of tokens to be minted
     * @param proof -The merkle proof for the whitelisted address
     */
    function mintPrivateSale(uint8 numTokens, bytes32[] memory proof) public payable {
        require(!Address.isContract(msg.sender), "Cannot mint to a contract");

        require(saleActive && block.timestamp >= saleStartsAt, 'Sale not active');
        uint256 time = (block.timestamp);
        require(time > privatesaleStartsAt && time < privatesaleEndsAt, 'Private sale over');
        
        // bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, whitelistMerkleRoot, keccak256(abi.encodePacked(msg.sender))), 'Restricted Access');

        require((_tokenIds.current() + numTokens ) <= MAX_TOKENS + RESERVED_GIVEAWAYS, 'Private sale sold');

        require(msg.value >= SALE_PRICE * numTokens, 'Insufficient ETH');
        require(numTokens <= MINT_BATCH_LIMIT && numTokens > 0, 'Invalid Num Token');

        for (uint256 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            _safeMint(msg.sender, _tokenIds.current() );
        }

        emit TokenMinted(msg.sender, numTokens);
    }

    /**
     * @dev mints `numTokens` tokens and assigns it to
     * `msg.sender` by calling _safeMint function.
     *
     * Emits a {TokenMinted} event.
     * Emits two {TransferSingle} events via ERC721 Contract.
     *
     * Requirements:
     * - `saleActive` must be set to true.
     * - Current timestamp must greater than or equal `saleStartsAt`.
     * - Current timestamp must within period of public sale `publicsaleStartsAt` - `publicsaleEndsAt`.
     * - Ether amount sent greater or equal the current price multipled by `numTokens`.
     * - `numTokens` within limits of max number of tokens minted in single txn.
     * - Max number of tokens for the sale not reahced
     * @param numTokens - Number of tokens to be minted
     */
    function mintPublicSale(uint8 numTokens) public payable {
        require(!Address.isContract(msg.sender), "Sender should be an account address");

        require(saleActive && block.timestamp >= publicsaleStartsAt, 'Sale not active');

        require(msg.value >= SALE_PRICE * numTokens, 'Insufficient ETH');
        require(numTokens <= MINT_BATCH_LIMIT && numTokens > 0, 'Wrong Num Token');
        require((_tokenIds.current() + numTokens ) <= MAX_TOKENS + RESERVED_GIVEAWAYS, 'Public sale sold');
        for (uint8 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            _safeMint(msg.sender, _tokenIds.current() );
        }
        emit TokenMinted(msg.sender, numTokens);
    }

    function setBaseURI(string memory baseContractURI) public onlyOwner {
        baseURI = baseContractURI;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    /**
     * @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 override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev returns the base contract metadata json object
     * this metadat file is used by OpenSea see {https://docs.opensea.io/docs/contract-level-metadata}
     *
     */
    function contractURI() public view returns (string memory) {
        string memory baseContractURI = _baseURI();
        return string(abi.encodePacked(baseContractURI, contractMetadata));
    }

    /**
     * @dev Changes the sale status 'saleActive' from active to not active and vice versa
     *
     * Only Contract Owner can execute
     *
     * Emits a {SaleStatusChange} event.
     */
    function changeSaleStatus() public onlyOwner {
        saleActive = !saleActive;
        emit SaleStatusChange(msg.sender, saleActive);
    }

    /**
     * @dev withdraws the contract balance and send it to the withdraw Addresses based on split ratio.
     *
     * Emits a {ContractWithdraw} event.
     */
    function withdraw() public nonReentrant {

        uint256 balance = address(this).balance;

        for (uint256 i = 0; i < recipients.length; i++) {
            (bool sent, ) = payable(recipients[i]).call{value: (balance * splits[i]) / SPLIT_BASE}('');
            require(sent, 'Withdraw Failed.');
        }

        emit ContractWithdraw(msg.sender, balance);
    }

    /// @notice Calculate the royalty payment
    /// @param _salePrice the sale price of the token
    function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (address(this), (_salePrice * royalty) / BASE);
    }

    /// @dev set the royalty
    /// @param _royalty the royalty in base 10000, 500 = 5%
    function setRoyalty(uint16 _royalty) public onlyOwner {
        require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.');

        royalty = _royalty;
    }

    /// @dev withdraw ERC20 tokens divided by splits
    function withdrawTokens(address _tokenContract) external nonReentrant {

        IERC20 tokenContract = IERC20(_tokenContract);
        // transfer the token from address of Catbotica address
        uint256 balance = tokenContract.balanceOf(address(this));

        for (uint256 i = 0; i < recipients.length; i++) {
            tokenContract.transfer(recipients[i], (balance * splits[i]) / SPLIT_BASE);
        }

        emit ContractWithdrawToken(
            msg.sender,
            _tokenContract,
            balance
        );
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721Enumerable, IERC165)
        returns (bool)
    {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    function changeWithdrawAddress(address _recipient) external {
        require(_recipient != address(0), "Cannot use the zero address.");
        require(_recipient != address(this), 'Cannot use the address of this contract.');
        require(!Address.isContract(_recipient), "Cannot set recipient to a contract address");

        // loop over all the recipients and update the address
        bool _found = false;
        for (uint256 i = 0; i < recipients.length; i++) {
            // if the sender matches one of the recipients, update the address
            if (recipients[i] == msg.sender) {
                recipients[i] = _recipient;
                _found = true;
                break;
            }
        }
        require(_found, 'The sender is not a recipient.');
        emit WithdrawAddressChanged(msg.sender, _recipient);
    }


    function getRemSaleSupply() public view returns (uint256) {
        return (MAX_TOKENS + RESERVED_GIVEAWAYS - _tokenIds.current());
    }


    function getTotalSaleSupply() public pure returns (uint256) {
        return MAX_TOKENS;
    }

    /**
    * @dev sets `PROVENANCE_HASH`
    *
    * Only Contract Owner can execute
    *
    * @param provenanceHash the string for the metadata and images hash
    */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        emit ProvenanceHashSet(msg.sender,PROVENANCE_HASH,provenanceHash);
        PROVENANCE_HASH = provenanceHash;
        
    }

    receive() external payable {}

}

File 2 of 21 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 3 of 21 : 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 4 of 21 : 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);
    }
}

File 5 of 21 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 21 : 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 7 of 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 8 of 21 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

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

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

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 9 of 21 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 10 of 21 : 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 11 of 21 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 12 of 21 : 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 13 of 21 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 14 of 21 : 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 15 of 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 16 of 21 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

File 17 of 21 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 18 of 21 : 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 19 of 21 : 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 20 of 21 : 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 21 of 21 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"},{"internalType":"string","name":"_baseContractURI","type":"string"},{"internalType":"string","name":"_tokenSuffixURI","type":"string"},{"internalType":"string","name":"_provenaceHash","type":"string"},{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint16[]","name":"_splits","type":"uint16[]"}],"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":"initiator","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ContractWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ContractWithdrawToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"string","name":"previousHash","type":"string"},{"indexed":false,"internalType":"string","name":"newHash","type":"string"}],"name":"ProvenanceHashSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"SaleStatusChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"WithdrawAddressChanged","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_BATCH_LIMIT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_GIVEAWAYS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SPLIT_BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"changeSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"changeWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatesaleEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatesaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseContractURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600d805461ff001916905560a06040819052600060808190526200002691600e9162000233565b5060408051808201909152600d8082526c31b7b73a3930b1ba173539b7b760991b60209092019182526200005d9160119162000233565b506019805461ffff19166101f41790553480156200007a57600080fd5b5060405162004050380380620040508339810160408190526200009d9162000513565b604080518082018252600c81526b42696c6c696f6e2042756e7360a01b60208083019182528351808501909452600484526321212aa760e11b908401528151919291620000ed9160009162000233565b5080516200010390600190602084019062000233565b505050620001206200011a620001dd60201b60201c565b620001e1565b600a805460ff60a01b191690556001600b5584516200014790600f90602088019062000233565b5083516200015d90601090602087019062000233565b506012869055601486905562000177866201518062000656565b6015556012546200018c906201518062000656565b6013558251620001a490600e90602086019062000233565b508151620001ba906016906020850190620002c2565b508051620001d09060179060208401906200031a565b50505050505050620006d0565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000241906200067d565b90600052602060002090601f016020900481019282620002655760008555620002b0565b82601f106200028057805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002b057825182559160200191906001019062000293565b50620002be9291506200035e565b5090565b828054828255906000526020600020908101928215620002b0579160200282015b82811115620002b057825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002e3565b828054828255906000526020600020908101928215620002b0579160200282015b82811115620002b0578251829061ffff169055916020019190600101906200033b565b5b80821115620002be57600081556001016200035f565b600082601f8301126200038757600080fd5b81516020620003a06200039a8362000630565b620005fd565b80838252828201915082860187848660051b8901011115620003c157600080fd5b6000805b86811015620003f85782516001600160a01b0381168114620003e5578283fd5b85529385019391850191600101620003c5565b509198975050505050505050565b600082601f8301126200041857600080fd5b815160206200042b6200039a8362000630565b80838252828201915082860187848660051b89010111156200044c57600080fd5b6000805b86811015620003f857825161ffff811681146200046b578283fd5b8552938501939185019160010162000450565b600082601f8301126200049057600080fd5b81516001600160401b03811115620004ac57620004ac620006ba565b6020620004c2601f8301601f19168201620005fd565b8281528582848701011115620004d757600080fd5b60005b83811015620004f7578581018301518282018401528201620004da565b83811115620005095760008385840101525b5095945050505050565b60008060008060008060c087890312156200052d57600080fd5b865160208801519096506001600160401b03808211156200054d57600080fd5b6200055b8a838b016200047e565b965060408901519150808211156200057257600080fd5b620005808a838b016200047e565b955060608901519150808211156200059757600080fd5b620005a58a838b016200047e565b94506080890151915080821115620005bc57600080fd5b620005ca8a838b0162000375565b935060a0890151915080821115620005e157600080fd5b50620005f089828a0162000406565b9150509295509295509295565b604051601f8201601f191681016001600160401b0381118282101715620006285762000628620006ba565b604052919050565b60006001600160401b038211156200064c576200064c620006ba565b5060051b60200190565b600082198211156200067857634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200069257607f821691505b60208210811415620006b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61397080620006e06000396000f3fe6080604052600436106103175760003560e01c806368428a1b1161019a578063c15bf4c1116100e1578063e985e9c51161008a578063f47c84c511610064578063f47c84c51461089a578063fc8ff579146108b0578063ff1b6556146108c657600080fd5b8063e985e9c514610831578063ec342ad0146107ab578063f2fde38b1461087a57600080fd5b8063c87b56dd116100bb578063c87b56dd146107e7578063ca1d953c14610807578063e8a3d4851461081c57600080fd5b8063c15bf4c11461078b578063c197b0f7146107ab578063c31f2d1d146107d457600080fd5b8063a22cb46511610143578063aa98e0c61161011d578063aa98e0c614610735578063b88d4fde1461074b578063bd32fb661461076b57600080fd5b8063a22cb465146106eb578063a4b379b81461070b578063a4cd6c611461072057600080fd5b80637f205a74116101745780637f205a741461069c5780638da5cb5b146106b857806395d89b41146106d657600080fd5b806368428a1b1461064857806370a0823114610667578063715018a61461068757600080fd5b80632f745c591161025e57806349df728c11610207578063583e88ab116101e1578063583e88ab146105e25780635c975abb146105f85780636352211e1461062857600080fd5b806349df728c146105825780634f6ccce7146105a257806355f804b3146105c257600080fd5b80633ccfd60b116102385780633ccfd60b1461053757806342842e0e1461054c57806345763d0c1461056c57600080fd5b80632f745c59146104e257806336e79a5a146105025780633a439a991461052257600080fd5b80631453671d116102c0578063291bdd061161029a578063291bdd061461047a5780632a55205a1461048d5780632dc04e46146104cc57600080fd5b80631453671d1461041b57806318160ddd1461043b57806323b872dd1461045a57600080fd5b8063095ea7b3116102f1578063095ea7b3146103b257806310969523146103d4578063143a3f92146103f457600080fd5b806301ffc9a71461032357806306fdde0314610358578063081812fc1461037a57600080fd5b3661031e57005b600080fd5b34801561032f57600080fd5b5061034361033e36600461339f565b6108db565b60405190151581526020015b60405180910390f35b34801561036457600080fd5b5061036d61091f565b60405161034f9190613697565b34801561038657600080fd5b5061039a610395366004613386565b6109b1565b6040516001600160a01b03909116815260200161034f565b3480156103be57600080fd5b506103d26103cd366004613315565b610a4b565b005b3480156103e057600080fd5b506103d26103ef3660046133d9565b610b7d565b34801561040057600080fd5b50610409600581565b60405160ff909116815260200161034f565b34801561042757600080fd5b506103d26104363660046131d8565b610c32565b34801561044757600080fd5b506008545b60405190815260200161034f565b34801561046657600080fd5b506103d2610475366004613226565b610ea7565b6103d261048836600461349c565b610f2e565b34801561049957600080fd5b506104ad6104a836600461345f565b61127f565b604080516001600160a01b03909316835260208301919091520161034f565b3480156104d857600080fd5b5061044c60145481565b3480156104ee57600080fd5b5061044c6104fd366004613315565b6112b0565b34801561050e57600080fd5b506103d261051d366004613422565b611358565b34801561052e57600080fd5b5061036c61044c565b34801561054357600080fd5b506103d2611446565b34801561055857600080fd5b506103d2610567366004613226565b6115f5565b34801561057857600080fd5b5061044c60125481565b34801561058e57600080fd5b506103d261059d3660046131d8565b611610565b3480156105ae57600080fd5b5061044c6105bd366004613386565b61185b565b3480156105ce57600080fd5b506103d26105dd3660046133d9565b6118ff565b3480156105ee57600080fd5b5061044c60135481565b34801561060457600080fd5b50600a5474010000000000000000000000000000000000000000900460ff16610343565b34801561063457600080fd5b5061039a610643366004613386565b61196c565b34801561065457600080fd5b50600d5461034390610100900460ff1681565b34801561067357600080fd5b5061044c6106823660046131d8565b6119f7565b34801561069357600080fd5b506103d2611a91565b3480156106a857600080fd5b5061044c670138a388a43c000081565b3480156106c457600080fd5b50600a546001600160a01b031661039a565b3480156106e257600080fd5b5061036d611af7565b3480156106f757600080fd5b506103d26107063660046132de565b611b06565b34801561071757600080fd5b5061044c611b11565b34801561072c57600080fd5b50610409600c81565b34801561074157600080fd5b5061044c60185481565b34801561075757600080fd5b506103d2610766366004613262565b611b38565b34801561077757600080fd5b506103d2610786366004613386565b611bc6565b34801561079757600080fd5b506103d26107a636600461333f565b611c25565b3480156107b757600080fd5b506107c161271081565b60405161ffff909116815260200161034f565b6103d26107e2366004613481565b611d7f565b3480156107f357600080fd5b5061036d610802366004613386565b612004565b34801561081357600080fd5b506103d26120f0565b34801561082857600080fd5b5061036d6121a1565b34801561083d57600080fd5b5061034361084c3660046131f3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088657600080fd5b506103d26108953660046131d8565b6121d8565b3480156108a657600080fd5b5061044c61036c81565b3480156108bc57600080fd5b5061044c60155481565b3480156108d257600080fd5b5061036d6122ba565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610919575061091982612348565b92915050565b60606000805461092e9061381e565b80601f016020809104026020016040519081016040528092919081815260200182805461095a9061381e565b80156109a75780601f1061097c576101008083540402835291602001916109a7565b820191906000526020600020905b81548152906001019060200180831161098a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a2f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a568261196c565b9050806001600160a01b0316836001600160a01b03161415610ae05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a26565b336001600160a01b0382161480610afc5750610afc813361084c565b610b6e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a26565b610b788383612386565b505050565b600a546001600160a01b03163314610bd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b336001600160a01b03167f1cc4bb0a279bf9b4df4bb7260cdd54995304640e17dfda43047018d82ec3b26c600e83604051610c139291906136aa565b60405180910390a28051610c2e90600e9060208401906130ba565b5050565b6001600160a01b038116610c885760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742075736520746865207a65726f20616464726573732e000000006044820152606401610a26565b6001600160a01b038116301415610d075760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420757365207468652061646472657373206f662074686973206360448201527f6f6e74726163742e0000000000000000000000000000000000000000000000006064820152608401610a26565b803b15610d7c5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f742073657420726563697069656e7420746f206120636f6e74726160448201527f63742061646472657373000000000000000000000000000000000000000000006064820152608401610a26565b6000805b601654811015610e1f57336001600160a01b031660168281548110610da757610da76138ea565b6000918252602090912001546001600160a01b03161415610e0d578260168281548110610dd657610dd66138ea565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060019150610e1f565b80610e1781613859565b915050610d80565b5080610e6d5760405162461bcd60e51b815260206004820152601e60248201527f5468652073656e646572206973206e6f74206120726563697069656e742e00006044820152606401610a26565b6040516001600160a01b0383169033907f49309b5d08d7bbaebcda96dda577818eee99f98cd01bb4a546ffb81653b4004190600090a35050565b610eb13382612401565b610f235760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a26565b610b788383836124f8565b333b15610f7d5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610a26565b600d54610100900460ff168015610f9657506012544210155b610fe25760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610a26565b601454429081118015610ff6575060155481105b6110425760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610a26565b6018546040516bffffffffffffffffffffffff193360601b166020820152611084918491603401604051602081830303815290604052805190602001206126dd565b6110d05760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610a26565b6110dd600c61036c61376b565b8360ff166110ea600c5490565b6110f4919061376b565b11156111425760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c6520736f6c640000000000000000000000000000006044820152606401610a26565b61115760ff8416670138a388a43c00006137bc565b3410156111a65760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610a26565b600560ff8416118015906111bd575060008360ff16115b6112095760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964204e756d20546f6b656e0000000000000000000000000000006044820152606401610a26565b60005b8360ff1681101561124957611225600c80546001019055565b61123733611232600c5490565b6126f3565b8061124181613859565b91505061120c565b5060405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b601954600090819030906127109061129b9061ffff16866137bc565b6112a591906137a8565b915091509250929050565b60006112bb836119f7565b821061132f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a26565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146113b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b6103e88161ffff16111561142e5760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201527f30252e00000000000000000000000000000000000000000000000000000000006064820152608401610a26565b6019805461ffff191661ffff92909216919091179055565b6002600b5414156114995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a26565b6002600b554760005b6016548110156115b7576000601682815481106114c1576114c16138ea565b600091825260209091200154601780546001600160a01b03909216916127109190859081106114f2576114f26138ea565b90600052602060002001548561150891906137bc565b61151291906137a8565b604051600081818185875af1925050503d806000811461154e576040519150601f19603f3d011682016040523d82523d6000602084013e611553565b606091505b50509050806115a45760405162461bcd60e51b815260206004820152601060248201527f5769746864726177204661696c65642e000000000000000000000000000000006044820152606401610a26565b50806115af81613859565b9150506114a2565b5060405181815233907f434a43765b3cd21fa5b240a88fef750a558ba196a12784bdd49335beabc1a39d9060200160405180910390a2506001600b55565b610b7883838360405180602001604052806000815250611b38565b6002600b5414156116635760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a26565b6002600b556040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b1580156116c557600080fd5b505afa1580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd9190613446565b905060005b60165481101561181057826001600160a01b031663a9059cbb6016838154811061172e5761172e6138ea565b600091825260209091200154601780546001600160a01b039092169161271091908690811061175f5761175f6138ea565b90600052602060002001548661177591906137bc565b61177f91906137a8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156117c557600080fd5b505af11580156117d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fd9190613369565b508061180881613859565b915050611702565b506040518181526001600160a01b0384169033907f73298854beb73cf7c63db725c9e244a4c6c2bde8fa5b477fc56d5a8b5c6150d39060200160405180910390a350506001600b5550565b600061186660085490565b82106118da5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a26565b600882815481106118ed576118ed6138ea565b90600052602060002001549050919050565b600a546001600160a01b031633146119595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b8051610c2e90600f9060208401906130ba565b6000818152600260205260408120546001600160a01b0316806109195760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a26565b60006001600160a01b038216611a755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a26565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611aeb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b611af5600061270d565b565b60606001805461092e9061381e565b610c2e33838361276c565b6000611b1c600c5490565b611b29600c61036c61376b565b611b3391906137db565b905090565b611b423383612401565b611bb45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a26565b611bc08484848461283b565b50505050565b600a546001600160a01b03163314611c205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b601855565b600a546001600160a01b03163314611c7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b600d54600c90611c929060ff1683613783565b60ff161115611ce35760405162461bcd60e51b815260206004820152601660248201527f416c6c204769766561776179732052656465656d6564000000000000000000006044820152606401610a26565b60005b8160ff168160ff161015611d2157611d02600c80546001019055565b611d0f83611232600c5490565b80611d1981613874565b915050611ce6565b50600d54611d3390829060ff16613783565b600d805460ff191660ff928316179055604051908216906001600160a01b038416907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a35050565b333b15611df45760405162461bcd60e51b815260206004820152602360248201527f53656e6465722073686f756c6420626520616e206163636f756e74206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a26565b600d54610100900460ff168015611e0d57506013544210155b611e595760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610a26565b611e6e60ff8216670138a388a43c00006137bc565b341015611ebd5760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610a26565b600560ff821611801590611ed4575060008160ff16115b611f205760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610a26565b611f2d600c61036c61376b565b8160ff16611f3a600c5490565b611f44919061376b565b1115611f925760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c6520736f6c64000000000000000000000000000000006044820152606401610a26565b60005b8160ff168160ff161015611fd057611fb1600c80546001019055565b611fbe33611232600c5490565b80611fc881613874565b915050611f95565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350565b6000818152600260205260409020546060906001600160a01b03166120915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a26565b600061209b6128b9565b905060008151116120bb57604051806020016040528060008152506120e9565b806120c5846128c8565b60106040516020016120d9939291906135f7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461214a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b600d805460ff610100808304821615810261ff001990931692909217928390556040519190920490911615159033907fe3f6649f5bc36b8b8c13782cfdb234a2f34ea0a28e750e23ea10b14d550f643590600090a3565b606060006121ad6128b9565b90508060116040516020016121c3929190613634565b60405160208183030381529060405291505090565b600a546001600160a01b031633146122325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b6001600160a01b0381166122ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a26565b6122b78161270d565b50565b600e80546122c79061381e565b80601f01602080910402602001604051908101604052809291908181526020018280546122f39061381e565b80156123405780601f1061231557610100808354040283529160200191612340565b820191906000526020600020905b81548152906001019060200180831161232357829003601f168201915b505050505081565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109195750610919826129fa565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906123c88261196c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661247a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a26565b60006124858361196c565b9050806001600160a01b0316846001600160a01b031614806124c05750836001600160a01b03166124b5846109b1565b6001600160a01b0316145b806124f057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661250b8261196c565b6001600160a01b0316146125875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a26565b6001600160a01b0382166126025760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a26565b61260d838383612a95565b612618600082612386565b6001600160a01b03831660009081526003602052604081208054600192906126419084906137db565b90915550506001600160a01b038216600090815260036020526040812080546001929061266f90849061376b565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826126ea8584612b4d565b14949350505050565b610c2e828260405180602001604052806000815250612bf9565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156127ce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a26565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6128468484846124f8565b61285284848484612c77565b611bc05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a26565b6060600f805461092e9061381e565b60608161290857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612932578061291c81613859565b915061292b9050600a836137a8565b915061290c565b60008167ffffffffffffffff81111561294d5761294d613900565b6040519080825280601f01601f191660200182016040528015612977576020820181803683370190505b5090505b84156124f05761298c6001836137db565b9150612999600a86613894565b6129a490603061376b565b60f81b8183815181106129b9576129b96138ea565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506129f3600a866137a8565b945061297b565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612a5d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610919565b6001600160a01b038316612af057612aeb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b13565b816001600160a01b0316836001600160a01b031614612b1357612b138382612dcf565b6001600160a01b038216612b2a57610b7881612e6c565b826001600160a01b0316826001600160a01b031614610b7857610b788282612f1b565b600081815b8451811015612bf1576000858281518110612b6f57612b6f6138ea565b60200260200101519050808311612bb1576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612bde565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612be981613859565b915050612b52565b509392505050565b612c038383612f5f565b612c106000848484612c77565b610b785760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a26565b60006001600160a01b0384163b15612dc457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612cbb90339089908890889060040161365b565b602060405180830381600087803b158015612cd557600080fd5b505af1925050508015612d05575060408051601f3d908101601f19168201909252612d02918101906133bc565b60015b612daa573d808015612d33576040519150601f19603f3d011682016040523d82523d6000602084013e612d38565b606091505b508051612da25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a26565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124f0565b506001949350505050565b60006001612ddc846119f7565b612de691906137db565b600083815260076020526040902054909150808214612e39576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e7e906001906137db565b60008381526009602052604081205460088054939450909284908110612ea657612ea66138ea565b906000526020600020015490508060088381548110612ec757612ec76138ea565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612eff57612eff6138d4565b6001900381819060005260206000200160009055905550505050565b6000612f26836119f7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612fb55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a26565b6000818152600260205260409020546001600160a01b03161561301a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a26565b61302660008383612a95565b6001600160a01b038216600090815260036020526040812080546001929061304f90849061376b565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546130c69061381e565b90600052602060002090601f0160209004810192826130e8576000855561312e565b82601f1061310157805160ff191683800117855561312e565b8280016001018555821561312e579182015b8281111561312e578251825591602001919060010190613113565b5061313a92915061313e565b5090565b5b8082111561313a576000815560010161313f565b600067ffffffffffffffff83111561316d5761316d613900565b613180601f8401601f191660200161373a565b905082815283838301111561319457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146131c257600080fd5b919050565b803560ff811681146131c257600080fd5b6000602082840312156131ea57600080fd5b6120e9826131ab565b6000806040838503121561320657600080fd5b61320f836131ab565b915061321d602084016131ab565b90509250929050565b60008060006060848603121561323b57600080fd5b613244846131ab565b9250613252602085016131ab565b9150604084013590509250925092565b6000806000806080858703121561327857600080fd5b613281856131ab565b935061328f602086016131ab565b925060408501359150606085013567ffffffffffffffff8111156132b257600080fd5b8501601f810187136132c357600080fd5b6132d287823560208401613153565b91505092959194509250565b600080604083850312156132f157600080fd5b6132fa836131ab565b9150602083013561330a81613916565b809150509250929050565b6000806040838503121561332857600080fd5b613331836131ab565b946020939093013593505050565b6000806040838503121561335257600080fd5b61335b836131ab565b915061321d602084016131c7565b60006020828403121561337b57600080fd5b81516120e981613916565b60006020828403121561339857600080fd5b5035919050565b6000602082840312156133b157600080fd5b81356120e981613924565b6000602082840312156133ce57600080fd5b81516120e981613924565b6000602082840312156133eb57600080fd5b813567ffffffffffffffff81111561340257600080fd5b8201601f8101841361341357600080fd5b6124f084823560208401613153565b60006020828403121561343457600080fd5b813561ffff811681146120e957600080fd5b60006020828403121561345857600080fd5b5051919050565b6000806040838503121561347257600080fd5b50508035926020909101359150565b60006020828403121561349357600080fd5b6120e9826131c7565b600080604083850312156134af57600080fd5b6134b8836131c7565b915060208084013567ffffffffffffffff808211156134d657600080fd5b818601915086601f8301126134ea57600080fd5b8135818111156134fc576134fc613900565b8060051b915061350d84830161373a565b8181528481019084860184860187018b101561352857600080fd5b600095505b8386101561354b57803583526001959095019491860191860161352d565b508096505050505050509250929050565b600081518084526135748160208601602086016137f2565b601f01601f19169290920160200192915050565b600081546135958161381e565b600182811680156135ad57600181146135be576135ed565b60ff198416875282870194506135ed565b8560005260208060002060005b858110156135e45781548a8201529084019082016135cb565b50505082870194505b5050505092915050565b600084516136098184602089016137f2565b84519083019061361d8183602089016137f2565b61362981830186613588565b979650505050505050565b600083516136468184602088016137f2565b61365281840185613588565b95945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261368d608083018461355c565b9695505050505050565b6020815260006120e9602083018461355c565b6040815260008084546136bc8161381e565b80604086015260606001808416600081146136de57600181146136f257613723565b60ff19851688840152608088019550613723565b8960005260208060002060005b8681101561371a5781548b82018701529084019082016136ff565b8a018501975050505b50505050508281036020840152613652818561355c565b604051601f8201601f1916810167ffffffffffffffff8111828210171561376357613763613900565b604052919050565b6000821982111561377e5761377e6138a8565b500190565b600060ff821660ff84168060ff038211156137a0576137a06138a8565b019392505050565b6000826137b7576137b76138be565b500490565b60008160001904831182151516156137d6576137d66138a8565b500290565b6000828210156137ed576137ed6138a8565b500390565b60005b8381101561380d5781810151838201526020016137f5565b83811115611bc05750506000910152565b600181811c9082168061383257607f821691505b6020821081141561385357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561386d5761386d6138a8565b5060010190565b600060ff821660ff81141561388b5761388b6138a8565b60010192915050565b6000826138a3576138a36138be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146122b757600080fd5b6001600160e01b0319811681146122b757600080fdfea264697066735822122082d64bbfe254798ff614f8dbeda8b111c50425bc89c84f9241c7dc1c78ccfc5d64736f6c634300080700330000000000000000000000000000000000000000000000000000000061dc580000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6e667467656e2e6d7970696e6174612e636c6f75642f697066732f516d65654b5272334b793762666f434a4d4d5146375244657458376e31375661513655326962504332507762366b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000403262323134393564653633313630656266356438313434626565656134666638313866356638393138373164346637373865616238386331393735656232613500000000000000000000000000000000000000000000000000000000000000020000000000000000000000007cb4e25fa71e37e8b2765a5adfbd9dfbe23527ad000000000000000000000000d5a1a7e5a2eb6bfeeeb1cb26851b27dd0e50d510000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000000001d4c

Deployed Bytecode

0x6080604052600436106103175760003560e01c806368428a1b1161019a578063c15bf4c1116100e1578063e985e9c51161008a578063f47c84c511610064578063f47c84c51461089a578063fc8ff579146108b0578063ff1b6556146108c657600080fd5b8063e985e9c514610831578063ec342ad0146107ab578063f2fde38b1461087a57600080fd5b8063c87b56dd116100bb578063c87b56dd146107e7578063ca1d953c14610807578063e8a3d4851461081c57600080fd5b8063c15bf4c11461078b578063c197b0f7146107ab578063c31f2d1d146107d457600080fd5b8063a22cb46511610143578063aa98e0c61161011d578063aa98e0c614610735578063b88d4fde1461074b578063bd32fb661461076b57600080fd5b8063a22cb465146106eb578063a4b379b81461070b578063a4cd6c611461072057600080fd5b80637f205a74116101745780637f205a741461069c5780638da5cb5b146106b857806395d89b41146106d657600080fd5b806368428a1b1461064857806370a0823114610667578063715018a61461068757600080fd5b80632f745c591161025e57806349df728c11610207578063583e88ab116101e1578063583e88ab146105e25780635c975abb146105f85780636352211e1461062857600080fd5b806349df728c146105825780634f6ccce7146105a257806355f804b3146105c257600080fd5b80633ccfd60b116102385780633ccfd60b1461053757806342842e0e1461054c57806345763d0c1461056c57600080fd5b80632f745c59146104e257806336e79a5a146105025780633a439a991461052257600080fd5b80631453671d116102c0578063291bdd061161029a578063291bdd061461047a5780632a55205a1461048d5780632dc04e46146104cc57600080fd5b80631453671d1461041b57806318160ddd1461043b57806323b872dd1461045a57600080fd5b8063095ea7b3116102f1578063095ea7b3146103b257806310969523146103d4578063143a3f92146103f457600080fd5b806301ffc9a71461032357806306fdde0314610358578063081812fc1461037a57600080fd5b3661031e57005b600080fd5b34801561032f57600080fd5b5061034361033e36600461339f565b6108db565b60405190151581526020015b60405180910390f35b34801561036457600080fd5b5061036d61091f565b60405161034f9190613697565b34801561038657600080fd5b5061039a610395366004613386565b6109b1565b6040516001600160a01b03909116815260200161034f565b3480156103be57600080fd5b506103d26103cd366004613315565b610a4b565b005b3480156103e057600080fd5b506103d26103ef3660046133d9565b610b7d565b34801561040057600080fd5b50610409600581565b60405160ff909116815260200161034f565b34801561042757600080fd5b506103d26104363660046131d8565b610c32565b34801561044757600080fd5b506008545b60405190815260200161034f565b34801561046657600080fd5b506103d2610475366004613226565b610ea7565b6103d261048836600461349c565b610f2e565b34801561049957600080fd5b506104ad6104a836600461345f565b61127f565b604080516001600160a01b03909316835260208301919091520161034f565b3480156104d857600080fd5b5061044c60145481565b3480156104ee57600080fd5b5061044c6104fd366004613315565b6112b0565b34801561050e57600080fd5b506103d261051d366004613422565b611358565b34801561052e57600080fd5b5061036c61044c565b34801561054357600080fd5b506103d2611446565b34801561055857600080fd5b506103d2610567366004613226565b6115f5565b34801561057857600080fd5b5061044c60125481565b34801561058e57600080fd5b506103d261059d3660046131d8565b611610565b3480156105ae57600080fd5b5061044c6105bd366004613386565b61185b565b3480156105ce57600080fd5b506103d26105dd3660046133d9565b6118ff565b3480156105ee57600080fd5b5061044c60135481565b34801561060457600080fd5b50600a5474010000000000000000000000000000000000000000900460ff16610343565b34801561063457600080fd5b5061039a610643366004613386565b61196c565b34801561065457600080fd5b50600d5461034390610100900460ff1681565b34801561067357600080fd5b5061044c6106823660046131d8565b6119f7565b34801561069357600080fd5b506103d2611a91565b3480156106a857600080fd5b5061044c670138a388a43c000081565b3480156106c457600080fd5b50600a546001600160a01b031661039a565b3480156106e257600080fd5b5061036d611af7565b3480156106f757600080fd5b506103d26107063660046132de565b611b06565b34801561071757600080fd5b5061044c611b11565b34801561072c57600080fd5b50610409600c81565b34801561074157600080fd5b5061044c60185481565b34801561075757600080fd5b506103d2610766366004613262565b611b38565b34801561077757600080fd5b506103d2610786366004613386565b611bc6565b34801561079757600080fd5b506103d26107a636600461333f565b611c25565b3480156107b757600080fd5b506107c161271081565b60405161ffff909116815260200161034f565b6103d26107e2366004613481565b611d7f565b3480156107f357600080fd5b5061036d610802366004613386565b612004565b34801561081357600080fd5b506103d26120f0565b34801561082857600080fd5b5061036d6121a1565b34801561083d57600080fd5b5061034361084c3660046131f3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088657600080fd5b506103d26108953660046131d8565b6121d8565b3480156108a657600080fd5b5061044c61036c81565b3480156108bc57600080fd5b5061044c60155481565b3480156108d257600080fd5b5061036d6122ba565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610919575061091982612348565b92915050565b60606000805461092e9061381e565b80601f016020809104026020016040519081016040528092919081815260200182805461095a9061381e565b80156109a75780601f1061097c576101008083540402835291602001916109a7565b820191906000526020600020905b81548152906001019060200180831161098a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a2f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a568261196c565b9050806001600160a01b0316836001600160a01b03161415610ae05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a26565b336001600160a01b0382161480610afc5750610afc813361084c565b610b6e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a26565b610b788383612386565b505050565b600a546001600160a01b03163314610bd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b336001600160a01b03167f1cc4bb0a279bf9b4df4bb7260cdd54995304640e17dfda43047018d82ec3b26c600e83604051610c139291906136aa565b60405180910390a28051610c2e90600e9060208401906130ba565b5050565b6001600160a01b038116610c885760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742075736520746865207a65726f20616464726573732e000000006044820152606401610a26565b6001600160a01b038116301415610d075760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420757365207468652061646472657373206f662074686973206360448201527f6f6e74726163742e0000000000000000000000000000000000000000000000006064820152608401610a26565b803b15610d7c5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f742073657420726563697069656e7420746f206120636f6e74726160448201527f63742061646472657373000000000000000000000000000000000000000000006064820152608401610a26565b6000805b601654811015610e1f57336001600160a01b031660168281548110610da757610da76138ea565b6000918252602090912001546001600160a01b03161415610e0d578260168281548110610dd657610dd66138ea565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060019150610e1f565b80610e1781613859565b915050610d80565b5080610e6d5760405162461bcd60e51b815260206004820152601e60248201527f5468652073656e646572206973206e6f74206120726563697069656e742e00006044820152606401610a26565b6040516001600160a01b0383169033907f49309b5d08d7bbaebcda96dda577818eee99f98cd01bb4a546ffb81653b4004190600090a35050565b610eb13382612401565b610f235760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a26565b610b788383836124f8565b333b15610f7d5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610a26565b600d54610100900460ff168015610f9657506012544210155b610fe25760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610a26565b601454429081118015610ff6575060155481105b6110425760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610a26565b6018546040516bffffffffffffffffffffffff193360601b166020820152611084918491603401604051602081830303815290604052805190602001206126dd565b6110d05760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610a26565b6110dd600c61036c61376b565b8360ff166110ea600c5490565b6110f4919061376b565b11156111425760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c6520736f6c640000000000000000000000000000006044820152606401610a26565b61115760ff8416670138a388a43c00006137bc565b3410156111a65760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610a26565b600560ff8416118015906111bd575060008360ff16115b6112095760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964204e756d20546f6b656e0000000000000000000000000000006044820152606401610a26565b60005b8360ff1681101561124957611225600c80546001019055565b61123733611232600c5490565b6126f3565b8061124181613859565b91505061120c565b5060405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b601954600090819030906127109061129b9061ffff16866137bc565b6112a591906137a8565b915091509250929050565b60006112bb836119f7565b821061132f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a26565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146113b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b6103e88161ffff16111561142e5760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201527f30252e00000000000000000000000000000000000000000000000000000000006064820152608401610a26565b6019805461ffff191661ffff92909216919091179055565b6002600b5414156114995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a26565b6002600b554760005b6016548110156115b7576000601682815481106114c1576114c16138ea565b600091825260209091200154601780546001600160a01b03909216916127109190859081106114f2576114f26138ea565b90600052602060002001548561150891906137bc565b61151291906137a8565b604051600081818185875af1925050503d806000811461154e576040519150601f19603f3d011682016040523d82523d6000602084013e611553565b606091505b50509050806115a45760405162461bcd60e51b815260206004820152601060248201527f5769746864726177204661696c65642e000000000000000000000000000000006044820152606401610a26565b50806115af81613859565b9150506114a2565b5060405181815233907f434a43765b3cd21fa5b240a88fef750a558ba196a12784bdd49335beabc1a39d9060200160405180910390a2506001600b55565b610b7883838360405180602001604052806000815250611b38565b6002600b5414156116635760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a26565b6002600b556040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b1580156116c557600080fd5b505afa1580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd9190613446565b905060005b60165481101561181057826001600160a01b031663a9059cbb6016838154811061172e5761172e6138ea565b600091825260209091200154601780546001600160a01b039092169161271091908690811061175f5761175f6138ea565b90600052602060002001548661177591906137bc565b61177f91906137a8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156117c557600080fd5b505af11580156117d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fd9190613369565b508061180881613859565b915050611702565b506040518181526001600160a01b0384169033907f73298854beb73cf7c63db725c9e244a4c6c2bde8fa5b477fc56d5a8b5c6150d39060200160405180910390a350506001600b5550565b600061186660085490565b82106118da5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a26565b600882815481106118ed576118ed6138ea565b90600052602060002001549050919050565b600a546001600160a01b031633146119595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b8051610c2e90600f9060208401906130ba565b6000818152600260205260408120546001600160a01b0316806109195760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a26565b60006001600160a01b038216611a755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a26565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611aeb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b611af5600061270d565b565b60606001805461092e9061381e565b610c2e33838361276c565b6000611b1c600c5490565b611b29600c61036c61376b565b611b3391906137db565b905090565b611b423383612401565b611bb45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a26565b611bc08484848461283b565b50505050565b600a546001600160a01b03163314611c205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b601855565b600a546001600160a01b03163314611c7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b600d54600c90611c929060ff1683613783565b60ff161115611ce35760405162461bcd60e51b815260206004820152601660248201527f416c6c204769766561776179732052656465656d6564000000000000000000006044820152606401610a26565b60005b8160ff168160ff161015611d2157611d02600c80546001019055565b611d0f83611232600c5490565b80611d1981613874565b915050611ce6565b50600d54611d3390829060ff16613783565b600d805460ff191660ff928316179055604051908216906001600160a01b038416907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a35050565b333b15611df45760405162461bcd60e51b815260206004820152602360248201527f53656e6465722073686f756c6420626520616e206163636f756e74206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a26565b600d54610100900460ff168015611e0d57506013544210155b611e595760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610a26565b611e6e60ff8216670138a388a43c00006137bc565b341015611ebd5760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610a26565b600560ff821611801590611ed4575060008160ff16115b611f205760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610a26565b611f2d600c61036c61376b565b8160ff16611f3a600c5490565b611f44919061376b565b1115611f925760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c6520736f6c64000000000000000000000000000000006044820152606401610a26565b60005b8160ff168160ff161015611fd057611fb1600c80546001019055565b611fbe33611232600c5490565b80611fc881613874565b915050611f95565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350565b6000818152600260205260409020546060906001600160a01b03166120915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a26565b600061209b6128b9565b905060008151116120bb57604051806020016040528060008152506120e9565b806120c5846128c8565b60106040516020016120d9939291906135f7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461214a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b600d805460ff610100808304821615810261ff001990931692909217928390556040519190920490911615159033907fe3f6649f5bc36b8b8c13782cfdb234a2f34ea0a28e750e23ea10b14d550f643590600090a3565b606060006121ad6128b9565b90508060116040516020016121c3929190613634565b60405160208183030381529060405291505090565b600a546001600160a01b031633146122325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b6001600160a01b0381166122ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a26565b6122b78161270d565b50565b600e80546122c79061381e565b80601f01602080910402602001604051908101604052809291908181526020018280546122f39061381e565b80156123405780601f1061231557610100808354040283529160200191612340565b820191906000526020600020905b81548152906001019060200180831161232357829003601f168201915b505050505081565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109195750610919826129fa565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906123c88261196c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661247a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a26565b60006124858361196c565b9050806001600160a01b0316846001600160a01b031614806124c05750836001600160a01b03166124b5846109b1565b6001600160a01b0316145b806124f057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661250b8261196c565b6001600160a01b0316146125875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a26565b6001600160a01b0382166126025760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a26565b61260d838383612a95565b612618600082612386565b6001600160a01b03831660009081526003602052604081208054600192906126419084906137db565b90915550506001600160a01b038216600090815260036020526040812080546001929061266f90849061376b565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826126ea8584612b4d565b14949350505050565b610c2e828260405180602001604052806000815250612bf9565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156127ce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a26565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6128468484846124f8565b61285284848484612c77565b611bc05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a26565b6060600f805461092e9061381e565b60608161290857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612932578061291c81613859565b915061292b9050600a836137a8565b915061290c565b60008167ffffffffffffffff81111561294d5761294d613900565b6040519080825280601f01601f191660200182016040528015612977576020820181803683370190505b5090505b84156124f05761298c6001836137db565b9150612999600a86613894565b6129a490603061376b565b60f81b8183815181106129b9576129b96138ea565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506129f3600a866137a8565b945061297b565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612a5d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610919565b6001600160a01b038316612af057612aeb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b13565b816001600160a01b0316836001600160a01b031614612b1357612b138382612dcf565b6001600160a01b038216612b2a57610b7881612e6c565b826001600160a01b0316826001600160a01b031614610b7857610b788282612f1b565b600081815b8451811015612bf1576000858281518110612b6f57612b6f6138ea565b60200260200101519050808311612bb1576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612bde565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612be981613859565b915050612b52565b509392505050565b612c038383612f5f565b612c106000848484612c77565b610b785760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a26565b60006001600160a01b0384163b15612dc457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612cbb90339089908890889060040161365b565b602060405180830381600087803b158015612cd557600080fd5b505af1925050508015612d05575060408051601f3d908101601f19168201909252612d02918101906133bc565b60015b612daa573d808015612d33576040519150601f19603f3d011682016040523d82523d6000602084013e612d38565b606091505b508051612da25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a26565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124f0565b506001949350505050565b60006001612ddc846119f7565b612de691906137db565b600083815260076020526040902054909150808214612e39576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e7e906001906137db565b60008381526009602052604081205460088054939450909284908110612ea657612ea66138ea565b906000526020600020015490508060088381548110612ec757612ec76138ea565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612eff57612eff6138d4565b6001900381819060005260206000200160009055905550505050565b6000612f26836119f7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612fb55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a26565b6000818152600260205260409020546001600160a01b03161561301a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a26565b61302660008383612a95565b6001600160a01b038216600090815260036020526040812080546001929061304f90849061376b565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546130c69061381e565b90600052602060002090601f0160209004810192826130e8576000855561312e565b82601f1061310157805160ff191683800117855561312e565b8280016001018555821561312e579182015b8281111561312e578251825591602001919060010190613113565b5061313a92915061313e565b5090565b5b8082111561313a576000815560010161313f565b600067ffffffffffffffff83111561316d5761316d613900565b613180601f8401601f191660200161373a565b905082815283838301111561319457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146131c257600080fd5b919050565b803560ff811681146131c257600080fd5b6000602082840312156131ea57600080fd5b6120e9826131ab565b6000806040838503121561320657600080fd5b61320f836131ab565b915061321d602084016131ab565b90509250929050565b60008060006060848603121561323b57600080fd5b613244846131ab565b9250613252602085016131ab565b9150604084013590509250925092565b6000806000806080858703121561327857600080fd5b613281856131ab565b935061328f602086016131ab565b925060408501359150606085013567ffffffffffffffff8111156132b257600080fd5b8501601f810187136132c357600080fd5b6132d287823560208401613153565b91505092959194509250565b600080604083850312156132f157600080fd5b6132fa836131ab565b9150602083013561330a81613916565b809150509250929050565b6000806040838503121561332857600080fd5b613331836131ab565b946020939093013593505050565b6000806040838503121561335257600080fd5b61335b836131ab565b915061321d602084016131c7565b60006020828403121561337b57600080fd5b81516120e981613916565b60006020828403121561339857600080fd5b5035919050565b6000602082840312156133b157600080fd5b81356120e981613924565b6000602082840312156133ce57600080fd5b81516120e981613924565b6000602082840312156133eb57600080fd5b813567ffffffffffffffff81111561340257600080fd5b8201601f8101841361341357600080fd5b6124f084823560208401613153565b60006020828403121561343457600080fd5b813561ffff811681146120e957600080fd5b60006020828403121561345857600080fd5b5051919050565b6000806040838503121561347257600080fd5b50508035926020909101359150565b60006020828403121561349357600080fd5b6120e9826131c7565b600080604083850312156134af57600080fd5b6134b8836131c7565b915060208084013567ffffffffffffffff808211156134d657600080fd5b818601915086601f8301126134ea57600080fd5b8135818111156134fc576134fc613900565b8060051b915061350d84830161373a565b8181528481019084860184860187018b101561352857600080fd5b600095505b8386101561354b57803583526001959095019491860191860161352d565b508096505050505050509250929050565b600081518084526135748160208601602086016137f2565b601f01601f19169290920160200192915050565b600081546135958161381e565b600182811680156135ad57600181146135be576135ed565b60ff198416875282870194506135ed565b8560005260208060002060005b858110156135e45781548a8201529084019082016135cb565b50505082870194505b5050505092915050565b600084516136098184602089016137f2565b84519083019061361d8183602089016137f2565b61362981830186613588565b979650505050505050565b600083516136468184602088016137f2565b61365281840185613588565b95945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261368d608083018461355c565b9695505050505050565b6020815260006120e9602083018461355c565b6040815260008084546136bc8161381e565b80604086015260606001808416600081146136de57600181146136f257613723565b60ff19851688840152608088019550613723565b8960005260208060002060005b8681101561371a5781548b82018701529084019082016136ff565b8a018501975050505b50505050508281036020840152613652818561355c565b604051601f8201601f1916810167ffffffffffffffff8111828210171561376357613763613900565b604052919050565b6000821982111561377e5761377e6138a8565b500190565b600060ff821660ff84168060ff038211156137a0576137a06138a8565b019392505050565b6000826137b7576137b76138be565b500490565b60008160001904831182151516156137d6576137d66138a8565b500290565b6000828210156137ed576137ed6138a8565b500390565b60005b8381101561380d5781810151838201526020016137f5565b83811115611bc05750506000910152565b600181811c9082168061383257607f821691505b6020821081141561385357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561386d5761386d6138a8565b5060010190565b600060ff821660ff81141561388b5761388b6138a8565b60010192915050565b6000826138a3576138a36138be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146122b757600080fd5b6001600160e01b0319811681146122b757600080fdfea264697066735822122082d64bbfe254798ff614f8dbeda8b111c50425bc89c84f9241c7dc1c78ccfc5d64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000061dc580000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6e667467656e2e6d7970696e6174612e636c6f75642f697066732f516d65654b5272334b793762666f434a4d4d5146375244657458376e31375661513655326962504332507762366b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000403262323134393564653633313630656266356438313434626565656134666638313866356638393138373164346637373865616238386331393735656232613500000000000000000000000000000000000000000000000000000000000000020000000000000000000000007cb4e25fa71e37e8b2765a5adfbd9dfbe23527ad000000000000000000000000d5a1a7e5a2eb6bfeeeb1cb26851b27dd0e50d510000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000000001d4c

-----Decoded View---------------
Arg [0] : _saleStartTime (uint256): 1641830400
Arg [1] : _baseContractURI (string): https://nftgen.mypinata.cloud/ipfs/QmeeKRr3Ky7bfoCJMMQF7RDetX7n17VaQ6U2ibPC2Pwb6k/
Arg [2] : _tokenSuffixURI (string): .json
Arg [3] : _provenaceHash (string): 2b21495de63160ebf5d8144beeea4ff818f5f891871d4f778eab88c1975eb2a5
Arg [4] : _recipients (address[]): 0x7cB4E25FA71e37e8b2765A5aDFbD9DfBE23527AD,0xD5a1a7E5a2Eb6bFeeEB1cb26851b27dd0e50d510
Arg [5] : _splits (uint16[]): 2500,7500

-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000061dc5800
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [7] : 68747470733a2f2f6e667467656e2e6d7970696e6174612e636c6f75642f6970
Arg [8] : 66732f516d65654b5272334b793762666f434a4d4d5146375244657458376e31
Arg [9] : 375661513655326962504332507762366b2f0000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [11] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [13] : 3262323134393564653633313630656266356438313434626565656134666638
Arg [14] : 3138663566383931383731643466373738656162383863313937356562326135
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [16] : 0000000000000000000000007cb4e25fa71e37e8b2765a5adfbd9dfbe23527ad
Arg [17] : 000000000000000000000000d5a1a7e5a2eb6bfeeeb1cb26851b27dd0e50d510
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [19] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [20] : 0000000000000000000000000000000000000000000000000000000000001d4c


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.