ETH Price: $2,611.53 (+0.18%)

Token

Genesis Dog (GenesisDog)
 

Overview

Max Total Supply

1,000 GenesisDog

Holders

367

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 GenesisDog
0x6b3acb3a83aaa08a202f437ab8ae6e900250273f
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:
MINTGO

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : MINTGO.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./interfaces/IMINTGO.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract MINTGO is IMINTGO, ERC721A, Ownable {
    using Strings for uint256;

    uint256 public maxSupply = 1000;

    uint256 public tokenPerAccountLimit = 2;

    uint256 public constant INTERNAL_SUPPLY = 0;

    string public baseURI;

    string public notRevealedURI;

    uint256 public mintPrice = 0 ether;

    uint256 public whiteListPrice = 0 ether;

    SaleStatus public saleStatus = SaleStatus.PAUSED;

    mapping(address => uint256) private _mintedCount;

    bytes32 public merkleRoot;

    address private _paymentAddress;

    bool private _internalMinted = false;

    constructor(address paymentAddress, string memory _notRevealedURI)
        ERC721A("Genesis Dog", "GenesisDog")
    {
        _paymentAddress = paymentAddress;
        notRevealedURI = _notRevealedURI;
    }

    modifier mintCheck(SaleStatus status, uint256 count) {
        require(saleStatus == status, "Genesis Dog: Not operational");
        require(
            _totalMinted() + count <= maxSupply,
            "Genesis Dog: Number of requested tokens will exceed max supply"
        );
        require(
            _mintedCount[msg.sender] + count <= tokenPerAccountLimit,
            "Genesis Dog: Number of requested tokens will exceed the limit per account"
        );
        _;
    }

    function setMaxSupply(uint256 supply) external onlyOwner {
        maxSupply = supply;
    }

    function setTokenPerAccountLimit(uint256 limit) external onlyOwner {
        tokenPerAccountLimit = limit;
    }

    function setPaymentAddress(address paymentAddress)
        external
        override
        onlyOwner
    {
        _paymentAddress = paymentAddress;
    }

    function setSaleStatus(SaleStatus status) external override onlyOwner {
        saleStatus = status;
    }

    function setMintPrice(uint256 price) external override onlyOwner {
        mintPrice = price;
    }

    function setWhiteListPrice(uint256 price) external override onlyOwner {
        whiteListPrice = price;
    }

    function setMerkleRoot(bytes32 root) external override onlyOwner {
        merkleRoot = root;
    }

    function setNotRevealedURI(string memory _notRevealedURI)
        external
        override
        onlyOwner
    {
        notRevealedURI = _notRevealedURI;
    }

    function setBaseURL(string memory url) external override onlyOwner {
        baseURI = url;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : notRevealedURI;
    }

    function mintWhitelist(bytes32[] calldata merkleProof, uint256 count)
        external
        payable
        override
        mintCheck(SaleStatus.PRESALE, count)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, leaf),
            "Genesis Dog: You are not whitelisted"
        );
        require(
            msg.value >= count * whiteListPrice,
            "Genesis Dog: Ether value sent is not sufficient"
        );
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function mint(uint256 count)
        external
        payable
        override
        mintCheck(SaleStatus.PUBLIC, count)
    {
        require(
            msg.value >= count * mintPrice,
            "Genesis Dog: Ether value sent is not sufficient"
        );
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function internalMint(address receiver) external override onlyOwner {
        require(!_internalMinted, "Genesis Dog: The interior has been mint");
        _internalMinted = true;
        _safeMint(receiver, INTERNAL_SUPPLY);
    }

    function withdraw() external override onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Genesis Dog: Insufficient balance");
        (bool success, ) = payable(_paymentAddress).call{value: balance}("");
        require(success, "Genesis Dog: Withdrawal failed");
    }

    function mintedCount(address mintAddress)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _mintedCount[mintAddress];
    }
}

File 2 of 8 : 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 3 of 8 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 8 : 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 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

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

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

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

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

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

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 6 of 8 : IMINTGO.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

interface IMINTGO {
    enum SaleStatus {
        PAUSED,
        PRESALE,
        PUBLIC
    }

    function setPaymentAddress(address paymentAddress) external;

    function setSaleStatus(SaleStatus status) external;

    function setMintPrice(uint256) external;

    function setWhiteListPrice(uint256) external;

    function setMerkleRoot(bytes32 root) external;

    function setNotRevealedURI(string memory _notRevealedURI) external;

    function setBaseURL(string memory url) external;

    function mintWhitelist(bytes32[] calldata merkleProof, uint256 count)
        external
        payable;

    function mint(uint256 count) external payable;

    function internalMint(address receiver) external;

    function withdraw() external;

    function mintedCount(address mintAddress) external returns (uint256);
}

File 7 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 8 of 8 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"},{"internalType":"string","name":"_notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INTERNAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":[{"internalType":"address","name":"receiver","type":"address"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"enum IMINTGO.SaleStatus","name":"","type":"uint8"}],"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":"url","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IMINTGO.SaleStatus","name":"status","type":"uint8"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setTokenPerAccountLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPerAccountLimit","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":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e86009556002600a556000600d556000600e556000600f60006101000a81548160ff0219169083600281111562000066577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b02179055506000601260146101000a81548160ff0219169083151502179055503480156200009357600080fd5b5060405162004864380380620048648339818101604052810190620000b99190620003fd565b6040518060400160405280600b81526020017f47656e6573697320446f670000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f47656e65736973446f670000000000000000000000000000000000000000000081525081600290805190602001906200013d929190620002c4565b50806003908051906020019062000156929190620002c4565b5062000167620001f160201b60201c565b60008190555050506200018f62000183620001f660201b60201c565b620001fe60201b60201c565b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c9080519060200190620001e8929190620002c4565b50505062000615565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d29062000520565b90600052602060002090601f016020900481019282620002f6576000855562000342565b82601f106200031157805160ff191683800117855562000342565b8280016001018555821562000342579182015b828111156200034157825182559160200191906001019062000324565b5b50905062000351919062000355565b5090565b5b808211156200037057600081600090555060010162000356565b5090565b60006200038b620003858462000480565b62000457565b905082815260208101848484011115620003a457600080fd5b620003b1848285620004ea565b509392505050565b600081519050620003ca81620005fb565b92915050565b600082601f830112620003e257600080fd5b8151620003f484826020860162000374565b91505092915050565b600080604083850312156200041157600080fd5b60006200042185828601620003b9565b925050602083015167ffffffffffffffff8111156200043f57600080fd5b6200044d85828601620003d0565b9150509250929050565b60006200046362000476565b905062000471828262000556565b919050565b6000604051905090565b600067ffffffffffffffff8211156200049e576200049d620005bb565b5b620004a982620005ea565b9050602081019050919050565b6000620004c382620004ca565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200050a578082015181840152602081019050620004ed565b838111156200051a576000848401525b50505050565b600060028204905060018216806200053957607f821691505b6020821081141562000550576200054f6200058c565b5b50919050565b6200056182620005ea565b810181811067ffffffffffffffff82111715620005835762000582620005bb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200060681620004b6565b81146200061257600080fd5b50565b61423f80620006256000396000f3fe60806040526004361061023b5760003560e01c8063722503801161012e578063b88d4fde116100ab578063f2c4ce1e1161006f578063f2c4ce1e1461082d578063f2fde38b14610856578063f4a0a5281461087f578063f9020e33146108a8578063fddcb5ea146108d35761023b565b8063b88d4fde14610736578063beafc89b1461075f578063c87b56dd14610788578063d5abeb01146107c5578063e985e9c5146107f05761023b565b80639c58faa1116100f25780639c58faa1146106835780639cd14e0f146106ac578063a0712d68146106d5578063a22cb465146106f1578063a6d612f91461071a5761023b565b806372250380146105ae5780637cb64759146105d95780638da5cb5b146106025780638dc823011461062d57806395d89b41146106585761023b565b80634891ad88116101bc578063685756851161018057806368575685146104db5780636c0360eb146105065780636f8b44b01461053157806370a082311461055a578063715018a6146105975761023b565b80634891ad88146103f857806349f2553a146104215780635e1e10041461044a5780636352211e146104735780636817c76c146104b05761023b565b806323b872dd1161020357806323b872dd146103395780632e34979e146103625780632eb4a7ab1461038d5780633ccfd60b146103b857806342842e0e146103cf5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613346565b610910565b604051610274919061378f565b60405180910390f35b34801561028957600080fd5b506102926109a2565b60405161029f91906137e0565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613402565b610a34565b6040516102dc9190613728565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613289565b610ab0565b005b34801561031a57600080fd5b50610323610bf1565b6040516103309190613962565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613183565b610c08565b005b34801561036e57600080fd5b50610377610f2d565b6040516103849190613962565b60405180910390f35b34801561039957600080fd5b506103a2610f32565b6040516103af91906137aa565b60405180910390f35b3480156103c457600080fd5b506103cd610f38565b005b3480156103db57600080fd5b506103f660048036038101906103f19190613183565b6110ce565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613398565b6110ee565b005b34801561042d57600080fd5b50610448600480360381019061044391906133c1565b6111bd565b005b34801561045657600080fd5b50610471600480360381019061046c919061311e565b611253565b005b34801561047f57600080fd5b5061049a60048036038101906104959190613402565b611313565b6040516104a79190613728565b60405180910390f35b3480156104bc57600080fd5b506104c5611325565b6040516104d29190613962565b60405180910390f35b3480156104e757600080fd5b506104f061132b565b6040516104fd9190613962565b60405180910390f35b34801561051257600080fd5b5061051b611331565b60405161052891906137e0565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613402565b6113bf565b005b34801561056657600080fd5b50610581600480360381019061057c919061311e565b611445565b60405161058e9190613962565b60405180910390f35b3480156105a357600080fd5b506105ac6114fe565b005b3480156105ba57600080fd5b506105c3611586565b6040516105d091906137e0565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061331d565b611614565b005b34801561060e57600080fd5b5061061761169a565b6040516106249190613728565b60405180910390f35b34801561063957600080fd5b506106426116c4565b60405161064f9190613962565b60405180910390f35b34801561066457600080fd5b5061066d6116ca565b60405161067a91906137e0565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a5919061311e565b61175c565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613402565b611851565b005b6106ef60048036038101906106ea9190613402565b6118d7565b005b3480156106fd57600080fd5b506107186004803603810190610713919061324d565b611b36565b005b610734600480360381019061072f91906132c5565b611cae565b005b34801561074257600080fd5b5061075d600480360381019061075891906131d2565b611fc8565b005b34801561076b57600080fd5b5061078660048036038101906107819190613402565b61203b565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613402565b6120c1565b6040516107bc91906137e0565b60405180910390f35b3480156107d157600080fd5b506107da612266565b6040516107e79190613962565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613147565b61226c565b604051610824919061378f565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f91906133c1565b612300565b005b34801561086257600080fd5b5061087d6004803603810190610878919061311e565b612396565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613402565b61248e565b005b3480156108b457600080fd5b506108bd612514565b6040516108ca91906137c5565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f5919061311e565b612527565b6040516109079190613962565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109b190613c4c565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90613c4c565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f82612570565b610a75576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abb82611313565b90508073ffffffffffffffffffffffffffffffffffffffff16610adc6125cf565b73ffffffffffffffffffffffffffffffffffffffff1614610b3f57610b0881610b036125cf565b61226c565b610b3e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bfb6125d7565b6001546000540303905090565b6000610c13826125dc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c86846126aa565b91509150610c9c8187610c976125cf565b6126cc565b610ce857610cb186610cac6125cf565b61226c565b610ce7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d4f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5c8686866001612710565b8015610d6757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3585610e11888887612716565b7c02000000000000000000000000000000000000000000000000000000001761273e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ebd576000600185019050600060046000838152602001908152602001600020541415610ebb576000548114610eba578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f258686866001612769565b505050505050565b600081565b60115481565b610f4061276f565b73ffffffffffffffffffffffffffffffffffffffff16610f5e61169a565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906138a2565b60405180910390fd5b600047905060008111610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390613942565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161104490613713565b60006040518083038185875af1925050503d8060008114611081576040519150601f19603f3d011682016040523d82523d6000602084013e611086565b606091505b50509050806110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c1906138e2565b60405180910390fd5b5050565b6110e983838360405180602001604052806000815250611fc8565b505050565b6110f661276f565b73ffffffffffffffffffffffffffffffffffffffff1661111461169a565b73ffffffffffffffffffffffffffffffffffffffff161461116a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611161906138a2565b60405180910390fd5b80600f60006101000a81548160ff021916908360028111156111b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b6111c561276f565b73ffffffffffffffffffffffffffffffffffffffff166111e361169a565b73ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906138a2565b60405180910390fd5b80600b908051906020019061124f929190612ece565b5050565b61125b61276f565b73ffffffffffffffffffffffffffffffffffffffff1661127961169a565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906138a2565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061131e826125dc565b9050919050565b600d5481565b600e5481565b600b805461133e90613c4c565b80601f016020809104026020016040519081016040528092919081815260200182805461136a90613c4c565b80156113b75780601f1061138c576101008083540402835291602001916113b7565b820191906000526020600020905b81548152906001019060200180831161139a57829003601f168201915b505050505081565b6113c761276f565b73ffffffffffffffffffffffffffffffffffffffff166113e561169a565b73ffffffffffffffffffffffffffffffffffffffff161461143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906138a2565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ad576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61150661276f565b73ffffffffffffffffffffffffffffffffffffffff1661152461169a565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611571906138a2565b60405180910390fd5b6115846000612777565b565b600c805461159390613c4c565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90613c4c565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b505050505081565b61161c61276f565b73ffffffffffffffffffffffffffffffffffffffff1661163a61169a565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611687906138a2565b60405180910390fd5b8060118190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b6060600380546116d990613c4c565b80601f016020809104026020016040519081016040528092919081815260200182805461170590613c4c565b80156117525780601f1061172757610100808354040283529160200191611752565b820191906000526020600020905b81548152906001019060200180831161173557829003601f168201915b5050505050905090565b61176461276f565b73ffffffffffffffffffffffffffffffffffffffff1661178261169a565b73ffffffffffffffffffffffffffffffffffffffff16146117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf906138a2565b60405180910390fd5b601260149054906101000a900460ff1615611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613882565b60405180910390fd5b6001601260146101000a81548160ff02191690831515021790555061184e81600061283d565b50565b61185961276f565b73ffffffffffffffffffffffffffffffffffffffff1661187761169a565b73ffffffffffffffffffffffffffffffffffffffff16146118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c4906138a2565b60405180910390fd5b80600a8190555050565b600281816002811115611913577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff16600281111561195b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1461199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613902565b60405180910390fd5b600954816119a761285b565b6119b19190613a52565b11156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613822565b60405180910390fd5b600a5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a409190613a52565b1115611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613922565b60405180910390fd5b600d5483611a8f9190613ad9565b341015611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613842565b60405180910390fd5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b209190613a52565b92505081905550611b31338461283d565b505050565b611b3e6125cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bb06125cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5d6125cf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ca2919061378f565b60405180910390a35050565b600181816002811115611cea577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff166002811115611d32577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990613902565b60405180910390fd5b60095481611d7e61285b565b611d889190613a52565b1115611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613822565b60405180910390fd5b600a5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e179190613a52565b1115611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613922565b60405180910390fd5b600033604051602001611e6b91906136d4565b604051602081830303815290604052805190602001209050611ed1868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506011548361286e565b611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790613862565b60405180910390fd5b600e5484611f1e9190613ad9565b341015611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790613842565b60405180910390fd5b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611faf9190613a52565b92505081905550611fc0338561283d565b505050505050565b611fd3848484610c08565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461203557611ffe84848484612885565b612034576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61204361276f565b73ffffffffffffffffffffffffffffffffffffffff1661206161169a565b73ffffffffffffffffffffffffffffffffffffffff16146120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae906138a2565b60405180910390fd5b80600e8190555050565b60606120cc82612570565b61210b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612102906138c2565b60405180910390fd5b6000600b805461211a90613c4c565b80601f016020809104026020016040519081016040528092919081815260200182805461214690613c4c565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b50505050509050600081511161223357600c80546121b090613c4c565b80601f01602080910402602001604051908101604052809291908181526020018280546121dc90613c4c565b80156122295780601f106121fe57610100808354040283529160200191612229565b820191906000526020600020905b81548152906001019060200180831161220c57829003601f168201915b505050505061225e565b8061223d846129e5565b60405160200161224e9291906136ef565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61230861276f565b73ffffffffffffffffffffffffffffffffffffffff1661232661169a565b73ffffffffffffffffffffffffffffffffffffffff161461237c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612373906138a2565b60405180910390fd5b80600c9080519060200190612392929190612ece565b5050565b61239e61276f565b73ffffffffffffffffffffffffffffffffffffffff166123bc61169a565b73ffffffffffffffffffffffffffffffffffffffff1614612412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612409906138a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247990613802565b60405180910390fd5b61248b81612777565b50565b61249661276f565b73ffffffffffffffffffffffffffffffffffffffff166124b461169a565b73ffffffffffffffffffffffffffffffffffffffff161461250a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612501906138a2565b60405180910390fd5b80600d8190555050565b600f60009054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008161257b6125d7565b1115801561258a575060005482105b80156125c8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806125eb6125d7565b11612673576000548110156126725760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612670575b600081141561266657600460008360019003935083815260200190815260200160002054905061263b565b80925050506126a5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861272d868684612b92565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612857828260405180602001604052806000815250612b9b565b5050565b60006128656125d7565b60005403905090565b60008261287b8584612c38565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128ab6125cf565b8786866040518563ffffffff1660e01b81526004016128cd9493929190613743565b602060405180830381600087803b1580156128e757600080fd5b505af192505050801561291857506040513d601f19601f82011682018060405250810190612915919061336f565b60015b612992573d8060008114612948576040519150601f19603f3d011682016040523d82523d6000602084013e61294d565b606091505b5060008151141561298a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612a2d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b8d565b600082905060005b60008214612a5f578080612a4890613caf565b915050600a82612a589190613aa8565b9150612a35565b60008167ffffffffffffffff811115612aa1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ad35781602001600182028036833780820191505090505b5090505b60008514612b8657600182612aec9190613b33565b9150600a85612afb9190613d1c565b6030612b079190613a52565b60f81b818381518110612b43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b7f9190613aa8565b9450612ad7565b8093505050505b919050565b60009392505050565b612ba58383612cd3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c3357600080549050600083820390505b612be56000868380600101945086612885565b612c1b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612bd2578160005414612c3057600080fd5b50505b505050565b60008082905060005b8451811015612cc8576000858281518110612c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612ca757612ca08382612ea7565b9250612cb4565b612cb18184612ea7565b92505b508080612cc090613caf565b915050612c41565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d40576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612d7b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d886000848385612710565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612dff83612df06000866000612716565b612df985612ebe565b1761273e565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e2357806000819055505050612ea26000848385612769565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612eda90613c4c565b90600052602060002090601f016020900481019282612efc5760008555612f43565b82601f10612f1557805160ff1916838001178555612f43565b82800160010185558215612f43579182015b82811115612f42578251825591602001919060010190612f27565b5b509050612f509190612f54565b5090565b5b80821115612f6d576000816000905550600101612f55565b5090565b6000612f84612f7f846139a2565b61397d565b905082815260208101848484011115612f9c57600080fd5b612fa7848285613c0a565b509392505050565b6000612fc2612fbd846139d3565b61397d565b905082815260208101848484011115612fda57600080fd5b612fe5848285613c0a565b509392505050565b600081359050612ffc81614186565b92915050565b60008083601f84011261301457600080fd5b8235905067ffffffffffffffff81111561302d57600080fd5b60208301915083602082028301111561304557600080fd5b9250929050565b60008135905061305b8161419d565b92915050565b600081359050613070816141b4565b92915050565b600081359050613085816141cb565b92915050565b60008151905061309a816141cb565b92915050565b600082601f8301126130b157600080fd5b81356130c1848260208601612f71565b91505092915050565b6000813590506130d9816141e2565b92915050565b600082601f8301126130f057600080fd5b8135613100848260208601612faf565b91505092915050565b600081359050613118816141f2565b92915050565b60006020828403121561313057600080fd5b600061313e84828501612fed565b91505092915050565b6000806040838503121561315a57600080fd5b600061316885828601612fed565b925050602061317985828601612fed565b9150509250929050565b60008060006060848603121561319857600080fd5b60006131a686828701612fed565b93505060206131b786828701612fed565b92505060406131c886828701613109565b9150509250925092565b600080600080608085870312156131e857600080fd5b60006131f687828801612fed565b945050602061320787828801612fed565b935050604061321887828801613109565b925050606085013567ffffffffffffffff81111561323557600080fd5b613241878288016130a0565b91505092959194509250565b6000806040838503121561326057600080fd5b600061326e85828601612fed565b925050602061327f8582860161304c565b9150509250929050565b6000806040838503121561329c57600080fd5b60006132aa85828601612fed565b92505060206132bb85828601613109565b9150509250929050565b6000806000604084860312156132da57600080fd5b600084013567ffffffffffffffff8111156132f457600080fd5b61330086828701613002565b9350935050602061331386828701613109565b9150509250925092565b60006020828403121561332f57600080fd5b600061333d84828501613061565b91505092915050565b60006020828403121561335857600080fd5b600061336684828501613076565b91505092915050565b60006020828403121561338157600080fd5b600061338f8482850161308b565b91505092915050565b6000602082840312156133aa57600080fd5b60006133b8848285016130ca565b91505092915050565b6000602082840312156133d357600080fd5b600082013567ffffffffffffffff8111156133ed57600080fd5b6133f9848285016130df565b91505092915050565b60006020828403121561341457600080fd5b600061342284828501613109565b91505092915050565b61343481613b67565b82525050565b61344b61344682613b67565b613cf8565b82525050565b61345a81613b79565b82525050565b61346981613b85565b82525050565b600061347a82613a04565b6134848185613a1a565b9350613494818560208601613c19565b61349d81613e38565b840191505092915050565b6134b181613bf8565b82525050565b60006134c282613a0f565b6134cc8185613a36565b93506134dc818560208601613c19565b6134e581613e38565b840191505092915050565b60006134fb82613a0f565b6135058185613a47565b9350613515818560208601613c19565b80840191505092915050565b600061352e602683613a36565b915061353982613e56565b604082019050919050565b6000613551603e83613a36565b915061355c82613ea5565b604082019050919050565b6000613574602f83613a36565b915061357f82613ef4565b604082019050919050565b6000613597602483613a36565b91506135a282613f43565b604082019050919050565b60006135ba602783613a36565b91506135c582613f92565b604082019050919050565b60006135dd602083613a36565b91506135e882613fe1565b602082019050919050565b6000613600602f83613a36565b915061360b8261400a565b604082019050919050565b6000613623600083613a2b565b915061362e82614059565b600082019050919050565b6000613646601e83613a36565b91506136518261405c565b602082019050919050565b6000613669601c83613a36565b915061367482614085565b602082019050919050565b600061368c604983613a36565b9150613697826140ae565b606082019050919050565b60006136af602183613a36565b91506136ba82614123565b604082019050919050565b6136ce81613bee565b82525050565b60006136e0828461343a565b60148201915081905092915050565b60006136fb82856134f0565b915061370782846134f0565b91508190509392505050565b600061371e82613616565b9150819050919050565b600060208201905061373d600083018461342b565b92915050565b6000608082019050613758600083018761342b565b613765602083018661342b565b61377260408301856136c5565b8181036060830152613784818461346f565b905095945050505050565b60006020820190506137a46000830184613451565b92915050565b60006020820190506137bf6000830184613460565b92915050565b60006020820190506137da60008301846134a8565b92915050565b600060208201905081810360008301526137fa81846134b7565b905092915050565b6000602082019050818103600083015261381b81613521565b9050919050565b6000602082019050818103600083015261383b81613544565b9050919050565b6000602082019050818103600083015261385b81613567565b9050919050565b6000602082019050818103600083015261387b8161358a565b9050919050565b6000602082019050818103600083015261389b816135ad565b9050919050565b600060208201905081810360008301526138bb816135d0565b9050919050565b600060208201905081810360008301526138db816135f3565b9050919050565b600060208201905081810360008301526138fb81613639565b9050919050565b6000602082019050818103600083015261391b8161365c565b9050919050565b6000602082019050818103600083015261393b8161367f565b9050919050565b6000602082019050818103600083015261395b816136a2565b9050919050565b600060208201905061397760008301846136c5565b92915050565b6000613987613998565b90506139938282613c7e565b919050565b6000604051905090565b600067ffffffffffffffff8211156139bd576139bc613e09565b5b6139c682613e38565b9050602081019050919050565b600067ffffffffffffffff8211156139ee576139ed613e09565b5b6139f782613e38565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5d82613bee565b9150613a6883613bee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9d57613a9c613d4d565b5b828201905092915050565b6000613ab382613bee565b9150613abe83613bee565b925082613ace57613acd613d7c565b5b828204905092915050565b6000613ae482613bee565b9150613aef83613bee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2857613b27613d4d565b5b828202905092915050565b6000613b3e82613bee565b9150613b4983613bee565b925082821015613b5c57613b5b613d4d565b5b828203905092915050565b6000613b7282613bce565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613bc982614172565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613c0382613bbb565b9050919050565b82818337600083830152505050565b60005b83811015613c37578082015181840152602081019050613c1c565b83811115613c46576000848401525b50505050565b60006002820490506001821680613c6457607f821691505b60208210811415613c7857613c77613dda565b5b50919050565b613c8782613e38565b810181811067ffffffffffffffff82111715613ca657613ca5613e09565b5b80604052505050565b6000613cba82613bee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ced57613cec613d4d565b5b600182019050919050565b6000613d0382613d0a565b9050919050565b6000613d1582613e49565b9050919050565b6000613d2782613bee565b9150613d3283613bee565b925082613d4257613d41613d7c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47656e6573697320446f673a204e756d626572206f662072657175657374656460008201527f20746f6b656e732077696c6c20657863656564206d617820737570706c790000602082015250565b7f47656e6573697320446f673a2045746865722076616c75652073656e7420697360008201527f206e6f742073756666696369656e740000000000000000000000000000000000602082015250565b7f47656e6573697320446f673a20596f7520617265206e6f742077686974656c6960008201527f7374656400000000000000000000000000000000000000000000000000000000602082015250565b7f47656e6573697320446f673a2054686520696e746572696f722068617320626560008201527f656e206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f47656e6573697320446f673a205769746864726177616c206661696c65640000600082015250565b7f47656e6573697320446f673a204e6f74206f7065726174696f6e616c00000000600082015250565b7f47656e6573697320446f673a204e756d626572206f662072657175657374656460008201527f20746f6b656e732077696c6c2065786365656420746865206c696d697420706560208201527f72206163636f756e740000000000000000000000000000000000000000000000604082015250565b7f47656e6573697320446f673a20496e73756666696369656e742062616c616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6003811061418357614182613dab565b5b50565b61418f81613b67565b811461419a57600080fd5b50565b6141a681613b79565b81146141b157600080fd5b50565b6141bd81613b85565b81146141c857600080fd5b50565b6141d481613b8f565b81146141df57600080fd5b50565b600381106141ef57600080fd5b50565b6141fb81613bee565b811461420657600080fd5b5056fea264697066735822122067301a987e86b2bf85dda4c35d90324244331b71a0899172aefbd4432723000e64736f6c6343000804003300000000000000000000000066628a1e3948d906e27cb02a4685f3b2493caac100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a53337441545a337a4770536454674c7764665679454a5331577557676938467a5a4c32675878525239664e0000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063722503801161012e578063b88d4fde116100ab578063f2c4ce1e1161006f578063f2c4ce1e1461082d578063f2fde38b14610856578063f4a0a5281461087f578063f9020e33146108a8578063fddcb5ea146108d35761023b565b8063b88d4fde14610736578063beafc89b1461075f578063c87b56dd14610788578063d5abeb01146107c5578063e985e9c5146107f05761023b565b80639c58faa1116100f25780639c58faa1146106835780639cd14e0f146106ac578063a0712d68146106d5578063a22cb465146106f1578063a6d612f91461071a5761023b565b806372250380146105ae5780637cb64759146105d95780638da5cb5b146106025780638dc823011461062d57806395d89b41146106585761023b565b80634891ad88116101bc578063685756851161018057806368575685146104db5780636c0360eb146105065780636f8b44b01461053157806370a082311461055a578063715018a6146105975761023b565b80634891ad88146103f857806349f2553a146104215780635e1e10041461044a5780636352211e146104735780636817c76c146104b05761023b565b806323b872dd1161020357806323b872dd146103395780632e34979e146103625780632eb4a7ab1461038d5780633ccfd60b146103b857806342842e0e146103cf5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613346565b610910565b604051610274919061378f565b60405180910390f35b34801561028957600080fd5b506102926109a2565b60405161029f91906137e0565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613402565b610a34565b6040516102dc9190613728565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613289565b610ab0565b005b34801561031a57600080fd5b50610323610bf1565b6040516103309190613962565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613183565b610c08565b005b34801561036e57600080fd5b50610377610f2d565b6040516103849190613962565b60405180910390f35b34801561039957600080fd5b506103a2610f32565b6040516103af91906137aa565b60405180910390f35b3480156103c457600080fd5b506103cd610f38565b005b3480156103db57600080fd5b506103f660048036038101906103f19190613183565b6110ce565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613398565b6110ee565b005b34801561042d57600080fd5b50610448600480360381019061044391906133c1565b6111bd565b005b34801561045657600080fd5b50610471600480360381019061046c919061311e565b611253565b005b34801561047f57600080fd5b5061049a60048036038101906104959190613402565b611313565b6040516104a79190613728565b60405180910390f35b3480156104bc57600080fd5b506104c5611325565b6040516104d29190613962565b60405180910390f35b3480156104e757600080fd5b506104f061132b565b6040516104fd9190613962565b60405180910390f35b34801561051257600080fd5b5061051b611331565b60405161052891906137e0565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613402565b6113bf565b005b34801561056657600080fd5b50610581600480360381019061057c919061311e565b611445565b60405161058e9190613962565b60405180910390f35b3480156105a357600080fd5b506105ac6114fe565b005b3480156105ba57600080fd5b506105c3611586565b6040516105d091906137e0565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061331d565b611614565b005b34801561060e57600080fd5b5061061761169a565b6040516106249190613728565b60405180910390f35b34801561063957600080fd5b506106426116c4565b60405161064f9190613962565b60405180910390f35b34801561066457600080fd5b5061066d6116ca565b60405161067a91906137e0565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a5919061311e565b61175c565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613402565b611851565b005b6106ef60048036038101906106ea9190613402565b6118d7565b005b3480156106fd57600080fd5b506107186004803603810190610713919061324d565b611b36565b005b610734600480360381019061072f91906132c5565b611cae565b005b34801561074257600080fd5b5061075d600480360381019061075891906131d2565b611fc8565b005b34801561076b57600080fd5b5061078660048036038101906107819190613402565b61203b565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613402565b6120c1565b6040516107bc91906137e0565b60405180910390f35b3480156107d157600080fd5b506107da612266565b6040516107e79190613962565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613147565b61226c565b604051610824919061378f565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f91906133c1565b612300565b005b34801561086257600080fd5b5061087d6004803603810190610878919061311e565b612396565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613402565b61248e565b005b3480156108b457600080fd5b506108bd612514565b6040516108ca91906137c5565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f5919061311e565b612527565b6040516109079190613962565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109b190613c4c565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90613c4c565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f82612570565b610a75576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abb82611313565b90508073ffffffffffffffffffffffffffffffffffffffff16610adc6125cf565b73ffffffffffffffffffffffffffffffffffffffff1614610b3f57610b0881610b036125cf565b61226c565b610b3e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bfb6125d7565b6001546000540303905090565b6000610c13826125dc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c86846126aa565b91509150610c9c8187610c976125cf565b6126cc565b610ce857610cb186610cac6125cf565b61226c565b610ce7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d4f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5c8686866001612710565b8015610d6757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3585610e11888887612716565b7c02000000000000000000000000000000000000000000000000000000001761273e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ebd576000600185019050600060046000838152602001908152602001600020541415610ebb576000548114610eba578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f258686866001612769565b505050505050565b600081565b60115481565b610f4061276f565b73ffffffffffffffffffffffffffffffffffffffff16610f5e61169a565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906138a2565b60405180910390fd5b600047905060008111610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390613942565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161104490613713565b60006040518083038185875af1925050503d8060008114611081576040519150601f19603f3d011682016040523d82523d6000602084013e611086565b606091505b50509050806110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c1906138e2565b60405180910390fd5b5050565b6110e983838360405180602001604052806000815250611fc8565b505050565b6110f661276f565b73ffffffffffffffffffffffffffffffffffffffff1661111461169a565b73ffffffffffffffffffffffffffffffffffffffff161461116a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611161906138a2565b60405180910390fd5b80600f60006101000a81548160ff021916908360028111156111b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b6111c561276f565b73ffffffffffffffffffffffffffffffffffffffff166111e361169a565b73ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906138a2565b60405180910390fd5b80600b908051906020019061124f929190612ece565b5050565b61125b61276f565b73ffffffffffffffffffffffffffffffffffffffff1661127961169a565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906138a2565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061131e826125dc565b9050919050565b600d5481565b600e5481565b600b805461133e90613c4c565b80601f016020809104026020016040519081016040528092919081815260200182805461136a90613c4c565b80156113b75780601f1061138c576101008083540402835291602001916113b7565b820191906000526020600020905b81548152906001019060200180831161139a57829003601f168201915b505050505081565b6113c761276f565b73ffffffffffffffffffffffffffffffffffffffff166113e561169a565b73ffffffffffffffffffffffffffffffffffffffff161461143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906138a2565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ad576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61150661276f565b73ffffffffffffffffffffffffffffffffffffffff1661152461169a565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611571906138a2565b60405180910390fd5b6115846000612777565b565b600c805461159390613c4c565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90613c4c565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b505050505081565b61161c61276f565b73ffffffffffffffffffffffffffffffffffffffff1661163a61169a565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611687906138a2565b60405180910390fd5b8060118190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b6060600380546116d990613c4c565b80601f016020809104026020016040519081016040528092919081815260200182805461170590613c4c565b80156117525780601f1061172757610100808354040283529160200191611752565b820191906000526020600020905b81548152906001019060200180831161173557829003601f168201915b5050505050905090565b61176461276f565b73ffffffffffffffffffffffffffffffffffffffff1661178261169a565b73ffffffffffffffffffffffffffffffffffffffff16146117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf906138a2565b60405180910390fd5b601260149054906101000a900460ff1615611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613882565b60405180910390fd5b6001601260146101000a81548160ff02191690831515021790555061184e81600061283d565b50565b61185961276f565b73ffffffffffffffffffffffffffffffffffffffff1661187761169a565b73ffffffffffffffffffffffffffffffffffffffff16146118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c4906138a2565b60405180910390fd5b80600a8190555050565b600281816002811115611913577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff16600281111561195b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1461199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613902565b60405180910390fd5b600954816119a761285b565b6119b19190613a52565b11156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613822565b60405180910390fd5b600a5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a409190613a52565b1115611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613922565b60405180910390fd5b600d5483611a8f9190613ad9565b341015611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613842565b60405180910390fd5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b209190613a52565b92505081905550611b31338461283d565b505050565b611b3e6125cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bb06125cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5d6125cf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ca2919061378f565b60405180910390a35050565b600181816002811115611cea577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff166002811115611d32577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990613902565b60405180910390fd5b60095481611d7e61285b565b611d889190613a52565b1115611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613822565b60405180910390fd5b600a5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e179190613a52565b1115611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613922565b60405180910390fd5b600033604051602001611e6b91906136d4565b604051602081830303815290604052805190602001209050611ed1868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506011548361286e565b611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790613862565b60405180910390fd5b600e5484611f1e9190613ad9565b341015611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790613842565b60405180910390fd5b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611faf9190613a52565b92505081905550611fc0338561283d565b505050505050565b611fd3848484610c08565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461203557611ffe84848484612885565b612034576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61204361276f565b73ffffffffffffffffffffffffffffffffffffffff1661206161169a565b73ffffffffffffffffffffffffffffffffffffffff16146120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae906138a2565b60405180910390fd5b80600e8190555050565b60606120cc82612570565b61210b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612102906138c2565b60405180910390fd5b6000600b805461211a90613c4c565b80601f016020809104026020016040519081016040528092919081815260200182805461214690613c4c565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b50505050509050600081511161223357600c80546121b090613c4c565b80601f01602080910402602001604051908101604052809291908181526020018280546121dc90613c4c565b80156122295780601f106121fe57610100808354040283529160200191612229565b820191906000526020600020905b81548152906001019060200180831161220c57829003601f168201915b505050505061225e565b8061223d846129e5565b60405160200161224e9291906136ef565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61230861276f565b73ffffffffffffffffffffffffffffffffffffffff1661232661169a565b73ffffffffffffffffffffffffffffffffffffffff161461237c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612373906138a2565b60405180910390fd5b80600c9080519060200190612392929190612ece565b5050565b61239e61276f565b73ffffffffffffffffffffffffffffffffffffffff166123bc61169a565b73ffffffffffffffffffffffffffffffffffffffff1614612412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612409906138a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247990613802565b60405180910390fd5b61248b81612777565b50565b61249661276f565b73ffffffffffffffffffffffffffffffffffffffff166124b461169a565b73ffffffffffffffffffffffffffffffffffffffff161461250a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612501906138a2565b60405180910390fd5b80600d8190555050565b600f60009054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008161257b6125d7565b1115801561258a575060005482105b80156125c8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806125eb6125d7565b11612673576000548110156126725760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612670575b600081141561266657600460008360019003935083815260200190815260200160002054905061263b565b80925050506126a5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861272d868684612b92565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612857828260405180602001604052806000815250612b9b565b5050565b60006128656125d7565b60005403905090565b60008261287b8584612c38565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128ab6125cf565b8786866040518563ffffffff1660e01b81526004016128cd9493929190613743565b602060405180830381600087803b1580156128e757600080fd5b505af192505050801561291857506040513d601f19601f82011682018060405250810190612915919061336f565b60015b612992573d8060008114612948576040519150601f19603f3d011682016040523d82523d6000602084013e61294d565b606091505b5060008151141561298a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612a2d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b8d565b600082905060005b60008214612a5f578080612a4890613caf565b915050600a82612a589190613aa8565b9150612a35565b60008167ffffffffffffffff811115612aa1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ad35781602001600182028036833780820191505090505b5090505b60008514612b8657600182612aec9190613b33565b9150600a85612afb9190613d1c565b6030612b079190613a52565b60f81b818381518110612b43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b7f9190613aa8565b9450612ad7565b8093505050505b919050565b60009392505050565b612ba58383612cd3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c3357600080549050600083820390505b612be56000868380600101945086612885565b612c1b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612bd2578160005414612c3057600080fd5b50505b505050565b60008082905060005b8451811015612cc8576000858281518110612c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612ca757612ca08382612ea7565b9250612cb4565b612cb18184612ea7565b92505b508080612cc090613caf565b915050612c41565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d40576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612d7b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d886000848385612710565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612dff83612df06000866000612716565b612df985612ebe565b1761273e565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e2357806000819055505050612ea26000848385612769565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612eda90613c4c565b90600052602060002090601f016020900481019282612efc5760008555612f43565b82601f10612f1557805160ff1916838001178555612f43565b82800160010185558215612f43579182015b82811115612f42578251825591602001919060010190612f27565b5b509050612f509190612f54565b5090565b5b80821115612f6d576000816000905550600101612f55565b5090565b6000612f84612f7f846139a2565b61397d565b905082815260208101848484011115612f9c57600080fd5b612fa7848285613c0a565b509392505050565b6000612fc2612fbd846139d3565b61397d565b905082815260208101848484011115612fda57600080fd5b612fe5848285613c0a565b509392505050565b600081359050612ffc81614186565b92915050565b60008083601f84011261301457600080fd5b8235905067ffffffffffffffff81111561302d57600080fd5b60208301915083602082028301111561304557600080fd5b9250929050565b60008135905061305b8161419d565b92915050565b600081359050613070816141b4565b92915050565b600081359050613085816141cb565b92915050565b60008151905061309a816141cb565b92915050565b600082601f8301126130b157600080fd5b81356130c1848260208601612f71565b91505092915050565b6000813590506130d9816141e2565b92915050565b600082601f8301126130f057600080fd5b8135613100848260208601612faf565b91505092915050565b600081359050613118816141f2565b92915050565b60006020828403121561313057600080fd5b600061313e84828501612fed565b91505092915050565b6000806040838503121561315a57600080fd5b600061316885828601612fed565b925050602061317985828601612fed565b9150509250929050565b60008060006060848603121561319857600080fd5b60006131a686828701612fed565b93505060206131b786828701612fed565b92505060406131c886828701613109565b9150509250925092565b600080600080608085870312156131e857600080fd5b60006131f687828801612fed565b945050602061320787828801612fed565b935050604061321887828801613109565b925050606085013567ffffffffffffffff81111561323557600080fd5b613241878288016130a0565b91505092959194509250565b6000806040838503121561326057600080fd5b600061326e85828601612fed565b925050602061327f8582860161304c565b9150509250929050565b6000806040838503121561329c57600080fd5b60006132aa85828601612fed565b92505060206132bb85828601613109565b9150509250929050565b6000806000604084860312156132da57600080fd5b600084013567ffffffffffffffff8111156132f457600080fd5b61330086828701613002565b9350935050602061331386828701613109565b9150509250925092565b60006020828403121561332f57600080fd5b600061333d84828501613061565b91505092915050565b60006020828403121561335857600080fd5b600061336684828501613076565b91505092915050565b60006020828403121561338157600080fd5b600061338f8482850161308b565b91505092915050565b6000602082840312156133aa57600080fd5b60006133b8848285016130ca565b91505092915050565b6000602082840312156133d357600080fd5b600082013567ffffffffffffffff8111156133ed57600080fd5b6133f9848285016130df565b91505092915050565b60006020828403121561341457600080fd5b600061342284828501613109565b91505092915050565b61343481613b67565b82525050565b61344b61344682613b67565b613cf8565b82525050565b61345a81613b79565b82525050565b61346981613b85565b82525050565b600061347a82613a04565b6134848185613a1a565b9350613494818560208601613c19565b61349d81613e38565b840191505092915050565b6134b181613bf8565b82525050565b60006134c282613a0f565b6134cc8185613a36565b93506134dc818560208601613c19565b6134e581613e38565b840191505092915050565b60006134fb82613a0f565b6135058185613a47565b9350613515818560208601613c19565b80840191505092915050565b600061352e602683613a36565b915061353982613e56565b604082019050919050565b6000613551603e83613a36565b915061355c82613ea5565b604082019050919050565b6000613574602f83613a36565b915061357f82613ef4565b604082019050919050565b6000613597602483613a36565b91506135a282613f43565b604082019050919050565b60006135ba602783613a36565b91506135c582613f92565b604082019050919050565b60006135dd602083613a36565b91506135e882613fe1565b602082019050919050565b6000613600602f83613a36565b915061360b8261400a565b604082019050919050565b6000613623600083613a2b565b915061362e82614059565b600082019050919050565b6000613646601e83613a36565b91506136518261405c565b602082019050919050565b6000613669601c83613a36565b915061367482614085565b602082019050919050565b600061368c604983613a36565b9150613697826140ae565b606082019050919050565b60006136af602183613a36565b91506136ba82614123565b604082019050919050565b6136ce81613bee565b82525050565b60006136e0828461343a565b60148201915081905092915050565b60006136fb82856134f0565b915061370782846134f0565b91508190509392505050565b600061371e82613616565b9150819050919050565b600060208201905061373d600083018461342b565b92915050565b6000608082019050613758600083018761342b565b613765602083018661342b565b61377260408301856136c5565b8181036060830152613784818461346f565b905095945050505050565b60006020820190506137a46000830184613451565b92915050565b60006020820190506137bf6000830184613460565b92915050565b60006020820190506137da60008301846134a8565b92915050565b600060208201905081810360008301526137fa81846134b7565b905092915050565b6000602082019050818103600083015261381b81613521565b9050919050565b6000602082019050818103600083015261383b81613544565b9050919050565b6000602082019050818103600083015261385b81613567565b9050919050565b6000602082019050818103600083015261387b8161358a565b9050919050565b6000602082019050818103600083015261389b816135ad565b9050919050565b600060208201905081810360008301526138bb816135d0565b9050919050565b600060208201905081810360008301526138db816135f3565b9050919050565b600060208201905081810360008301526138fb81613639565b9050919050565b6000602082019050818103600083015261391b8161365c565b9050919050565b6000602082019050818103600083015261393b8161367f565b9050919050565b6000602082019050818103600083015261395b816136a2565b9050919050565b600060208201905061397760008301846136c5565b92915050565b6000613987613998565b90506139938282613c7e565b919050565b6000604051905090565b600067ffffffffffffffff8211156139bd576139bc613e09565b5b6139c682613e38565b9050602081019050919050565b600067ffffffffffffffff8211156139ee576139ed613e09565b5b6139f782613e38565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5d82613bee565b9150613a6883613bee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9d57613a9c613d4d565b5b828201905092915050565b6000613ab382613bee565b9150613abe83613bee565b925082613ace57613acd613d7c565b5b828204905092915050565b6000613ae482613bee565b9150613aef83613bee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2857613b27613d4d565b5b828202905092915050565b6000613b3e82613bee565b9150613b4983613bee565b925082821015613b5c57613b5b613d4d565b5b828203905092915050565b6000613b7282613bce565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613bc982614172565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613c0382613bbb565b9050919050565b82818337600083830152505050565b60005b83811015613c37578082015181840152602081019050613c1c565b83811115613c46576000848401525b50505050565b60006002820490506001821680613c6457607f821691505b60208210811415613c7857613c77613dda565b5b50919050565b613c8782613e38565b810181811067ffffffffffffffff82111715613ca657613ca5613e09565b5b80604052505050565b6000613cba82613bee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ced57613cec613d4d565b5b600182019050919050565b6000613d0382613d0a565b9050919050565b6000613d1582613e49565b9050919050565b6000613d2782613bee565b9150613d3283613bee565b925082613d4257613d41613d7c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47656e6573697320446f673a204e756d626572206f662072657175657374656460008201527f20746f6b656e732077696c6c20657863656564206d617820737570706c790000602082015250565b7f47656e6573697320446f673a2045746865722076616c75652073656e7420697360008201527f206e6f742073756666696369656e740000000000000000000000000000000000602082015250565b7f47656e6573697320446f673a20596f7520617265206e6f742077686974656c6960008201527f7374656400000000000000000000000000000000000000000000000000000000602082015250565b7f47656e6573697320446f673a2054686520696e746572696f722068617320626560008201527f656e206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f47656e6573697320446f673a205769746864726177616c206661696c65640000600082015250565b7f47656e6573697320446f673a204e6f74206f7065726174696f6e616c00000000600082015250565b7f47656e6573697320446f673a204e756d626572206f662072657175657374656460008201527f20746f6b656e732077696c6c2065786365656420746865206c696d697420706560208201527f72206163636f756e740000000000000000000000000000000000000000000000604082015250565b7f47656e6573697320446f673a20496e73756666696369656e742062616c616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6003811061418357614182613dab565b5b50565b61418f81613b67565b811461419a57600080fd5b50565b6141a681613b79565b81146141b157600080fd5b50565b6141bd81613b85565b81146141c857600080fd5b50565b6141d481613b8f565b81146141df57600080fd5b50565b600381106141ef57600080fd5b50565b6141fb81613bee565b811461420657600080fd5b5056fea264697066735822122067301a987e86b2bf85dda4c35d90324244331b71a0899172aefbd4432723000e64736f6c63430008040033

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

00000000000000000000000066628a1e3948d906e27cb02a4685f3b2493caac100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a53337441545a337a4770536454674c7764665679454a5331577557676938467a5a4c32675878525239664e0000000000000000000000

-----Decoded View---------------
Arg [0] : paymentAddress (address): 0x66628A1e3948d906E27cb02a4685f3B2493cAaC1
Arg [1] : _notRevealedURI (string): ipfs://QmZS3tATZ3zGpSdTgLwdfVyEJS1WuWgi8FzZL2gXxRR9fN

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000066628a1e3948d906e27cb02a4685f3b2493caac1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d5a53337441545a337a4770536454674c7764665679454a
Arg [4] : 5331577557676938467a5a4c32675878525239664e0000000000000000000000


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.