ETH Price: $3,478.20 (+0.48%)
Gas: 5 Gwei

Token

Mythics Genesis (MGEN)
 

Overview

Max Total Supply

606 MGEN

Holders

499

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nftclub.eth
Balance
1 MGEN
0xdfeb50f97bb6a660697849ac13645e2e26cc4915
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xc0F62012...A59307CfD
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Genesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Genesis.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./interfaces/GenesisSupplyInterface.sol";

contract OwnableDelegateProxy {}

/**
 * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract Genesis is ERC721Pausable, Ownable {
    /**
     * Mint parameters
     */
    uint256 public constant WHITELIST_MINT_COUNT = 1;
    uint256 public price;
    string public unrevealedURI;
    string public baseTokenURI;
    mapping(address => uint256) private addressToMaxFreeMintCount;

    /**
     * Merkle tree properties
     */
    bytes32 private whiteListMerkleTreeRoot;

    DeployedSupply private supply;
    address private proxyRegistryAddress;

    constructor(
        address _genesisSupplyAddress,
        string memory _unrevealedURI,
        uint256 _price,
        address _proxyRegistryAddress
    ) ERC721("Mythics Genesis", "MGEN") {
        supply = DeployedSupply(_genesisSupplyAddress);
        unrevealedURI = _unrevealedURI;
        price = _price;
        proxyRegistryAddress = _proxyRegistryAddress;
        _pause();
    }

    /**
     * Getters
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function isRevealed() internal view returns (bool revealed) {
        return bytes(baseTokenURI).length > 0;
    }

    function contractURI() public pure returns (string memory) {
        return
            "https://ipfs.io/ipfs/QmbZwPZgKS6YJkT2U4Vmp87udA6Cfy4Tu63KKDv4QnncU2";
    }

    function totalSupply() external view returns (uint256) {
        return supply.currentIndex();
    }

    /**
     * Setters
     */
    function setBaseURI(string memory _baseTokenURI) external onlyOwner {
        // Set in Supply contract for the `getMetadataForTokenId` function
        supply.setIsRevealed(true);
        baseTokenURI = _baseTokenURI;
    }

    function setWhiteListMerkleTreeRoot(bytes32 _whiteListMerkleTreeRoot)
        external
        onlyOwner
    {
        whiteListMerkleTreeRoot = _whiteListMerkleTreeRoot;
    }

    function setUnrevealedURI(string memory _unrevealedUri) external onlyOwner {
        unrevealedURI = _unrevealedUri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        if (!isRevealed()) {
            return unrevealedURI;
        }
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId)));
    }

    /**
     * Pause contract
     */
    function pause() external onlyOwner {
        _pause();
    }

    /**
     * Unpause contract
     */
    function unpause() external onlyOwner {
        _unpause();
    }

    /**
     * Free mint
     * @param count number of tokens to mint
     */
    function freeMint(uint256 count) external whenNotPaused {
        require(
            addressToMaxFreeMintCount[msg.sender] > 0,
            "Address is not in the free mint list"
        );
        uint256 mintCount = balanceOf(msg.sender) + count;
        require(
            mintCount <= addressToMaxFreeMintCount[msg.sender],
            "Trying to mint more than allowed"
        );

        (uint256 startIndex, uint256 endIndex) = supply.mint(count);

        for (uint256 i = startIndex; i < endIndex; i++) {
            _mint(msg.sender, i);
        }
    }

    /**
     * Whitelist mint
     * @param nonce nonce used to verify that the caller is allowed to mint
     * @param proof Proof to verify that the caller is allowed to mint
     */
    function mintWhitelist(uint256 nonce, bytes32[] calldata proof)
        external
        payable
        whenNotPaused
    {
        require(
            verifyProof(nonce, whiteListMerkleTreeRoot, proof),
            "Address is not in the whitelist"
        );
        require(msg.value >= price, "Not enough ETH");
        uint256 mintCount = balanceOf(msg.sender);
        require(mintCount < WHITELIST_MINT_COUNT, "Already minted");
        (uint256 startIndex, ) = supply.mint(1);
        _mint(msg.sender, startIndex);
    }

    /**
     * Function to mint the reserved gods
     * @param count number of gods to mint from the reserved pool
     */
    function mintReservedGods(uint256 count) external onlyOwner {
        (uint256 startingIndex, uint256 maxSupply) = supply
            .reservedGodsCurrentIndexAndSupply();
        require(
            startingIndex + count <= maxSupply,
            "Not enough reserved gods left"
        );
        supply.mintReservedGods(count);
        // We use the current index if the reserved is done in multiple parts
        for (uint256 i = startingIndex; i < count + startingIndex; i++) {
            _mint(msg.sender, i);
        }
    }

    /**
     * Add an address to the free mint count
     * @param to address of free minter
     * @param maxCount max free mint allowed for address
     */
    function addFreeMinter(address to, uint256 maxCount) external onlyOwner {
        require(addressToMaxFreeMintCount[to] == 0, "Already added");
        addressToMaxFreeMintCount[to] = maxCount;
    }

    /**
     * Generate a leaf of the Merkle tree with a nonce and the address of the sender
     * @param nonce nonce to be used
     * @param addr id of the token
     * @return leaf generated
     */
    function generateLeaf(uint256 nonce, address addr)
        internal
        pure
        returns (bytes32 leaf)
    {
        return keccak256(abi.encodePacked(nonce, addr));
    }

    /**
     * Verifies the proof of the sender to confirm they are in given list
     * @param nonce nonce to be used
     * @param root Merkle tree root
     * @param proof proof
     * @return valid TRUE if the proof is valid, FALSE otherwise
     */
    function verifyProof(
        uint256 nonce,
        bytes32 root,
        bytes32[] memory proof
    ) internal view returns (bool valid) {
        return MerkleProof.verify(proof, root, generateLeaf(nonce, msg.sender));
    }

    /**
     * Withdraw balance from the contract
     */
    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");
        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }

    /**
     * Override isApprovedForAll to whitelist user's ProxyRegistry proxy accounts to
     * enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 3 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 4 of 15 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 5 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

File 6 of 15 : GenesisSupplyInterface.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// Supply ABI needed from Genesis Contract
contract DeployedSupply {
    function setIsRevealed(bool _isRevealed) external {}

    function currentIndex() public view returns (uint256 index) {}

    function reservedGodsCurrentIndexAndSupply()
        public
        view
        returns (uint256 index, uint256 supply)
    {}

    function mint(uint256 count)
        public
        returns (uint256 startIndex, uint256 endIndex)
    {}

    function mintReservedGods(uint256 count) public {}
}

File 7 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 8 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 9 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 10 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 13 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_genesisSupplyAddress","type":"address"},{"internalType":"string","name":"_unrevealedURI","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"WHITELIST_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"maxCount","type":"uint256"}],"name":"addFreeMinter","outputs":[],"stateMutability":"nonpayable","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintReservedGods","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedUri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whiteListMerkleTreeRoot","type":"bytes32"}],"name":"setWhiteListMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b50604051620053df380380620053df8339818101604052810190620000379190620004c7565b6040518060400160405280600f81526020017f4d7974686963732047656e6573697300000000000000000000000000000000008152506040518060400160405280600481526020017f4d47454e000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb9291906200036b565b508060019080519060200190620000d49291906200036b565b5050506000600660006101000a81548160ff0219169083151502179055506200011262000106620001ce60201b60201c565b620001d660201b60201c565b83600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600890805190602001906200016b9291906200036b565b508160078190555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001c46200029c60201b60201c565b50505050620007ff565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ac6200035460201b60201c565b15620002ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e690620005ad565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200033b620001ce60201b60201c565b6040516200034a919062000590565b60405180910390a1565b6000600660009054906101000a900460ff16905090565b8280546200037990620006b3565b90600052602060002090601f0160209004810192826200039d5760008555620003e9565b82601f10620003b857805160ff1916838001178555620003e9565b82800160010185558215620003e9579182015b82811115620003e8578251825591602001919060010190620003cb565b5b509050620003f89190620003fc565b5090565b5b8082111562000417576000816000905550600101620003fd565b5090565b6000620004326200042c84620005f8565b620005cf565b90508281526020810184848401111562000451576200045062000782565b5b6200045e8482856200067d565b509392505050565b6000815190506200047781620007cb565b92915050565b600082601f8301126200049557620004946200077d565b5b8151620004a78482602086016200041b565b91505092915050565b600081519050620004c181620007e5565b92915050565b60008060008060808587031215620004e457620004e36200078c565b5b6000620004f48782880162000466565b945050602085015167ffffffffffffffff81111562000518576200051762000787565b5b62000526878288016200047d565b93505060406200053987828801620004b0565b92505060606200054c8782880162000466565b91505092959194509250565b62000563816200063f565b82525050565b6000620005786010836200062e565b91506200058582620007a2565b602082019050919050565b6000602082019050620005a7600083018462000558565b92915050565b60006020820190508181036000830152620005c88162000569565b9050919050565b6000620005db620005ee565b9050620005e98282620006e9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200061657620006156200074e565b5b620006218262000791565b9050602081019050919050565b600082825260208201905092915050565b60006200064c8262000653565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200069d57808201518184015260208101905062000680565b83811115620006ad576000848401525b50505050565b60006002820490506001821680620006cc57607f821691505b60208210811415620006e357620006e26200071f565b5b50919050565b620006f48262000791565b810181811067ffffffffffffffff821117156200071657620007156200074e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b620007d6816200063f565b8114620007e257600080fd5b50565b620007f08162000673565b8114620007fc57600080fd5b50565b614bd0806200080f6000396000f3fe6080604052600436106101ee5760003560e01c80638456cb591161010d578063c87b56dd116100a0578063ea50e78c1161006f578063ea50e78c14610697578063eadaec05146106c0578063f28ba283146106e9578063f2fde38b14610714578063fe2c7fee1461073d576101ee565b8063c87b56dd146105c7578063d547cfb714610604578063e8a3d4851461062f578063e985e9c51461065a576101ee565b8063a035b1fe116100dc578063a035b1fe14610521578063a22cb4651461054c578063b88d4fde14610575578063bb1ee47b1461059e576101ee565b80638456cb59146104aa578063853828b6146104c15780638da5cb5b146104cb57806395d89b41146104f6576101ee565b806342842e0e116101855780637035bf18116101545780637035bf181461040257806370a082311461042d578063715018a61461046a5780637c928fe914610481576101ee565b806342842e0e1461034857806355f804b3146103715780635c975abb1461039a5780636352211e146103c5576101ee565b8063095ea7b3116101c1578063095ea7b3146102b457806318160ddd146102dd57806323b872dd146103085780633f4ba83a14610331576101ee565b806301ffc9a7146101f3578063061431a81461023057806306fdde031461024c578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906133b8565b610766565b6040516102279190613bf1565b60405180910390f35b61024a600480360381019061024591906134e2565b610848565b005b34801561025857600080fd5b50610261610a75565b60405161026e9190613c27565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613488565b610b07565b6040516102ab9190613b8a565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d6919061334b565b610b8c565b005b3480156102e957600080fd5b506102f2610ca4565b6040516102ff9190613fa9565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613235565b610d4b565b005b34801561033d57600080fd5b50610346610dab565b005b34801561035457600080fd5b5061036f600480360381019061036a9190613235565b610e31565b005b34801561037d57600080fd5b506103986004803603810190610393919061343f565b610e51565b005b3480156103a657600080fd5b506103af610f75565b6040516103bc9190613bf1565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e79190613488565b610f8c565b6040516103f99190613b8a565b60405180910390f35b34801561040e57600080fd5b5061041761103e565b6040516104249190613c27565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f91906131c8565b6110cc565b6040516104619190613fa9565b60405180910390f35b34801561047657600080fd5b5061047f611184565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613488565b61120c565b005b3480156104b657600080fd5b506104bf611455565b005b6104c96114db565b005b3480156104d757600080fd5b506104e061164f565b6040516104ed9190613b8a565b60405180910390f35b34801561050257600080fd5b5061050b611679565b6040516105189190613c27565b60405180910390f35b34801561052d57600080fd5b5061053661170b565b6040516105439190613fa9565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e919061330b565b611711565b005b34801561058157600080fd5b5061059c60048036038101906105979190613288565b611727565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061338b565b611789565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613488565b61180f565b6040516105fb9190613c27565b60405180910390f35b34801561061057600080fd5b506106196118e2565b6040516106269190613c27565b60405180910390f35b34801561063b57600080fd5b50610644611970565b6040516106519190613c27565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c91906131f5565b611990565b60405161068e9190613bf1565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613488565b611a92565b005b3480156106cc57600080fd5b506106e760048036038101906106e2919061334b565b611ccb565b005b3480156106f557600080fd5b506106fe611e11565b60405161070b9190613fa9565b60405180910390f35b34801561072057600080fd5b5061073b600480360381019061073691906131c8565b611e16565b005b34801561074957600080fd5b50610764600480360381019061075f919061343f565b611f0e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610841575061084082611fa4565b5b9050919050565b610850610f75565b15610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790613da9565b60405180910390fd5b6108de83600b54848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061200e565b61091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490613d89565b60405180910390fd5b600754341015610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095990613e89565b60405180910390fd5b600061096d336110cc565b9050600181106109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613c49565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d6860016040518263ffffffff1660e01b8152600401610a109190613c0c565b6040805180830381600087803b158015610a2957600080fd5b505af1158015610a3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a619190613542565b509050610a6e338261202d565b5050505050565b606060008054610a849061424d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab09061424d565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000610b12826121fb565b610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890613ea9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9782610f8c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613f09565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c27612267565b73ffffffffffffffffffffffffffffffffffffffff161480610c565750610c5581610c50612267565b611990565b5b610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613dc9565b60405180910390fd5b610c9f838361226f565b505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166326987b606040518163ffffffff1660e01b815260040160206040518083038186803b158015610d0e57600080fd5b505afa158015610d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4691906134b5565b905090565b610d5c610d56612267565b82612328565b610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613f69565b60405180910390fd5b610da6838383612406565b505050565b610db3612267565b73ffffffffffffffffffffffffffffffffffffffff16610dd161164f565b73ffffffffffffffffffffffffffffffffffffffff1614610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90613ec9565b60405180910390fd5b610e2f612662565b565b610e4c83838360405180602001604052806000815250611727565b505050565b610e59612267565b73ffffffffffffffffffffffffffffffffffffffff16610e7761164f565b73ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490613ec9565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166349a5980a60016040518263ffffffff1660e01b8152600401610f299190613bf1565b600060405180830381600087803b158015610f4357600080fd5b505af1158015610f57573d6000803e3d6000fd5b505050508060099080519060200190610f71929190612f47565b5050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613e09565b60405180910390fd5b80915050919050565b6008805461104b9061424d565b80601f01602080910402602001604051908101604052809291908181526020018280546110779061424d565b80156110c45780601f10611099576101008083540402835291602001916110c4565b820191906000526020600020905b8154815290600101906020018083116110a757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490613de9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61118c612267565b73ffffffffffffffffffffffffffffffffffffffff166111aa61164f565b73ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790613ec9565b60405180910390fd5b61120a6000612704565b565b611214610f75565b15611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90613da9565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90613e29565b60405180910390fd5b6000816112e2336110cc565b6112ec91906140ae565b9050600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790613ca9565b60405180910390fd5b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68856040518263ffffffff1660e01b81526004016113ce9190613fa9565b6040805180830381600087803b1580156113e757600080fd5b505af11580156113fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141f9190613542565b9150915060008290505b8181101561144e5761143b338261202d565b8080611446906142b0565b915050611429565b5050505050565b61145d612267565b73ffffffffffffffffffffffffffffffffffffffff1661147b61164f565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613ec9565b60405180910390fd5b6114d96127ca565b565b6114e3612267565b73ffffffffffffffffffffffffffffffffffffffff1661150161164f565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e90613ec9565b60405180910390fd5b60004790506000811161159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690613e69565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516115c590613b49565b60006040518083038185875af1925050503d8060008114611602576040519150601f19603f3d011682016040523d82523d6000602084013e611607565b606091505b505090508061164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290613f49565b60405180910390fd5b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116889061424d565b80601f01602080910402602001604051908101604052809291908181526020018280546116b49061424d565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b5050505050905090565b60075481565b61172361171c612267565b838361286d565b5050565b611738611732612267565b83612328565b611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90613f69565b60405180910390fd5b611783848484846129da565b50505050565b611791612267565b73ffffffffffffffffffffffffffffffffffffffff166117af61164f565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90613ec9565b60405180910390fd5b80600b8190555050565b6060611819612a36565b6118af576008805461182a9061424d565b80601f01602080910402602001604051908101604052809291908181526020018280546118569061424d565b80156118a35780601f10611878576101008083540402835291602001916118a3565b820191906000526020600020905b81548152906001019060200180831161188657829003601f168201915b505050505090506118dd565b60096118ba83612a4e565b6040516020016118cb929190613b25565b60405160208183030381529060405290505b919050565b600980546118ef9061424d565b80601f016020809104026020016040519081016040528092919081815260200182805461191b9061424d565b80156119685780601f1061193d57610100808354040283529160200191611968565b820191906000526020600020905b81548152906001019060200180831161194b57829003601f168201915b505050505081565b6060604051806080016040528060438152602001614b5860439139905090565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a089190613b8a565b60206040518083038186803b158015611a2057600080fd5b505afa158015611a34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a589190613412565b73ffffffffffffffffffffffffffffffffffffffff161415611a7e576001915050611a8c565b611a888484612baf565b9150505b92915050565b611a9a612267565b73ffffffffffffffffffffffffffffffffffffffff16611ab861164f565b73ffffffffffffffffffffffffffffffffffffffff1614611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613ec9565b60405180910390fd5b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3df656d6040518163ffffffff1660e01b8152600401604080518083038186803b158015611b7857600080fd5b505afa158015611b8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb09190613542565b91509150808383611bc191906140ae565b1115611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613f89565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ea50e78c846040518263ffffffff1660e01b8152600401611c5d9190613fa9565b600060405180830381600087803b158015611c7757600080fd5b505af1158015611c8b573d6000803e3d6000fd5b5050505060008290505b8284611ca191906140ae565b811015611cc557611cb2338261202d565b8080611cbd906142b0565b915050611c95565b50505050565b611cd3612267565b73ffffffffffffffffffffffffffffffffffffffff16611cf161164f565b73ffffffffffffffffffffffffffffffffffffffff1614611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90613ec9565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613f29565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600181565b611e1e612267565b73ffffffffffffffffffffffffffffffffffffffff16611e3c61164f565b73ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613ec9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613ce9565b60405180910390fd5b611f0b81612704565b50565b611f16612267565b73ffffffffffffffffffffffffffffffffffffffff16611f3461164f565b73ffffffffffffffffffffffffffffffffffffffff1614611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190613ec9565b60405180910390fd5b8060089080519060200190611fa0929190612f47565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612024828461201f8733612c43565b612c76565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209490613e49565b60405180910390fd5b6120a6816121fb565b156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90613d09565b60405180910390fd5b6120f260008383612c8d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214291906140ae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122e283610f8c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612333826121fb565b612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990613d69565b60405180910390fd5b600061237d83610f8c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123ec57508373ffffffffffffffffffffffffffffffffffffffff166123d484610b07565b73ffffffffffffffffffffffffffffffffffffffff16145b806123fd57506123fc8185611990565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242682610f8c565b73ffffffffffffffffffffffffffffffffffffffff161461247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390613ee9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e390613d29565b60405180910390fd5b6124f7838383612c8d565b61250260008261226f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125529190614135565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a991906140ae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61266a610f75565b6126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090613c89565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126ed612267565b6040516126fa9190613b8a565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127d2610f75565b15612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990613da9565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612856612267565b6040516128639190613b8a565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d390613d49565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129cd9190613bf1565b60405180910390a3505050565b6129e5848484612406565b6129f184848484612ce5565b612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790613cc9565b60405180910390fd5b50505050565b60008060098054612a469061424d565b905011905090565b60606000821415612a96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612baa565b600082905060005b60008214612ac8578080612ab1906142b0565b915050600a82612ac19190614104565b9150612a9e565b60008167ffffffffffffffff811115612ae457612ae361441e565b5b6040519080825280601f01601f191660200182016040528015612b165781602001600182028036833780820191505090505b5090505b60008514612ba357600182612b2f9190614135565b9150600a85612b3e9190614331565b6030612b4a91906140ae565b60f81b818381518110612b6057612b5f6143ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b9c9190614104565b9450612b1a565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008282604051602001612c58929190613b5e565b60405160208183030381529060405280519060200120905092915050565b600082612c838584612e7c565b1490509392505050565b612c98838383612f2f565b612ca0610f75565b15612ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd790613c69565b60405180910390fd5b505050565b6000612d068473ffffffffffffffffffffffffffffffffffffffff16612f34565b15612e6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2f612267565b8786866040518563ffffffff1660e01b8152600401612d519493929190613ba5565b602060405180830381600087803b158015612d6b57600080fd5b505af1925050508015612d9c57506040513d601f19601f82011682018060405250810190612d9991906133e5565b60015b612e1f573d8060008114612dcc576040519150601f19603f3d011682016040523d82523d6000602084013e612dd1565b606091505b50600081511415612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e90613cc9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e74565b600190505b949350505050565b60008082905060005b8451811015612f24576000858281518110612ea357612ea26143ef565b5b60200260200101519050808311612ee4578281604051602001612ec7929190613af9565b604051602081830303815290604052805190602001209250612f10565b8083604051602001612ef7929190613af9565b6040516020818303038152906040528051906020012092505b508080612f1c906142b0565b915050612e85565b508091505092915050565b505050565b600080823b905060008111915050919050565b828054612f539061424d565b90600052602060002090601f016020900481019282612f755760008555612fbc565b82601f10612f8e57805160ff1916838001178555612fbc565b82800160010185558215612fbc579182015b82811115612fbb578251825591602001919060010190612fa0565b5b509050612fc99190612fcd565b5090565b5b80821115612fe6576000816000905550600101612fce565b5090565b6000612ffd612ff884613fe9565b613fc4565b9050828152602081018484840111156130195761301861445c565b5b61302484828561420b565b509392505050565b600061303f61303a8461401a565b613fc4565b90508281526020810184848401111561305b5761305a61445c565b5b61306684828561420b565b509392505050565b60008135905061307d81614acd565b92915050565b60008083601f84011261309957613098614452565b5b8235905067ffffffffffffffff8111156130b6576130b561444d565b5b6020830191508360208202830111156130d2576130d1614457565b5b9250929050565b6000813590506130e881614ae4565b92915050565b6000813590506130fd81614afb565b92915050565b60008135905061311281614b12565b92915050565b60008151905061312781614b12565b92915050565b600082601f83011261314257613141614452565b5b8135613152848260208601612fea565b91505092915050565b60008151905061316a81614b29565b92915050565b600082601f83011261318557613184614452565b5b813561319584826020860161302c565b91505092915050565b6000813590506131ad81614b40565b92915050565b6000815190506131c281614b40565b92915050565b6000602082840312156131de576131dd614466565b5b60006131ec8482850161306e565b91505092915050565b6000806040838503121561320c5761320b614466565b5b600061321a8582860161306e565b925050602061322b8582860161306e565b9150509250929050565b60008060006060848603121561324e5761324d614466565b5b600061325c8682870161306e565b935050602061326d8682870161306e565b925050604061327e8682870161319e565b9150509250925092565b600080600080608085870312156132a2576132a1614466565b5b60006132b08782880161306e565b94505060206132c18782880161306e565b93505060406132d28782880161319e565b925050606085013567ffffffffffffffff8111156132f3576132f2614461565b5b6132ff8782880161312d565b91505092959194509250565b6000806040838503121561332257613321614466565b5b60006133308582860161306e565b9250506020613341858286016130d9565b9150509250929050565b6000806040838503121561336257613361614466565b5b60006133708582860161306e565b92505060206133818582860161319e565b9150509250929050565b6000602082840312156133a1576133a0614466565b5b60006133af848285016130ee565b91505092915050565b6000602082840312156133ce576133cd614466565b5b60006133dc84828501613103565b91505092915050565b6000602082840312156133fb576133fa614466565b5b600061340984828501613118565b91505092915050565b60006020828403121561342857613427614466565b5b60006134368482850161315b565b91505092915050565b60006020828403121561345557613454614466565b5b600082013567ffffffffffffffff81111561347357613472614461565b5b61347f84828501613170565b91505092915050565b60006020828403121561349e5761349d614466565b5b60006134ac8482850161319e565b91505092915050565b6000602082840312156134cb576134ca614466565b5b60006134d9848285016131b3565b91505092915050565b6000806000604084860312156134fb576134fa614466565b5b60006135098682870161319e565b935050602084013567ffffffffffffffff81111561352a57613529614461565b5b61353686828701613083565b92509250509250925092565b6000806040838503121561355957613558614466565b5b6000613567858286016131b3565b9250506020613578858286016131b3565b9150509250929050565b61358b81614169565b82525050565b6135a261359d82614169565b6142f9565b82525050565b6135b18161417b565b82525050565b6135c86135c382614187565b61430b565b82525050565b60006135d982614060565b6135e38185614076565b93506135f381856020860161421a565b6135fc8161446b565b840191505092915050565b613610816141f9565b82525050565b60006136218261406b565b61362b8185614092565b935061363b81856020860161421a565b6136448161446b565b840191505092915050565b600061365a8261406b565b61366481856140a3565b935061367481856020860161421a565b80840191505092915050565b6000815461368d8161424d565b61369781866140a3565b945060018216600081146136b257600181146136c3576136f6565b60ff198316865281860193506136f6565b6136cc8561404b565b60005b838110156136ee578154818901526001820191506020810190506136cf565b838801955050505b50505092915050565b600061370c600e83614092565b915061371782614489565b602082019050919050565b600061372f602b83614092565b915061373a826144b2565b604082019050919050565b6000613752601483614092565b915061375d82614501565b602082019050919050565b6000613775602083614092565b91506137808261452a565b602082019050919050565b6000613798603283614092565b91506137a382614553565b604082019050919050565b60006137bb602683614092565b91506137c6826145a2565b604082019050919050565b60006137de601c83614092565b91506137e9826145f1565b602082019050919050565b6000613801602483614092565b915061380c8261461a565b604082019050919050565b6000613824601983614092565b915061382f82614669565b602082019050919050565b6000613847602c83614092565b915061385282614692565b604082019050919050565b600061386a601f83614092565b9150613875826146e1565b602082019050919050565b600061388d601083614092565b91506138988261470a565b602082019050919050565b60006138b0603883614092565b91506138bb82614733565b604082019050919050565b60006138d3602a83614092565b91506138de82614782565b604082019050919050565b60006138f6602983614092565b9150613901826147d1565b604082019050919050565b6000613919602483614092565b915061392482614820565b604082019050919050565b600061393c602083614092565b91506139478261486f565b602082019050919050565b600061395f601983614092565b915061396a82614898565b602082019050919050565b6000613982600e83614092565b915061398d826148c1565b602082019050919050565b60006139a5602c83614092565b91506139b0826148ea565b604082019050919050565b60006139c8602083614092565b91506139d382614939565b602082019050919050565b60006139eb602983614092565b91506139f682614962565b604082019050919050565b6000613a0e602183614092565b9150613a19826149b1565b604082019050919050565b6000613a31600d83614092565b9150613a3c82614a00565b602082019050919050565b6000613a54600083614087565b9150613a5f82614a29565b600082019050919050565b6000613a77601083614092565b9150613a8282614a2c565b602082019050919050565b6000613a9a603183614092565b9150613aa582614a55565b604082019050919050565b6000613abd601d83614092565b9150613ac882614aa4565b602082019050919050565b613adc816141ef565b82525050565b613af3613aee826141ef565b614327565b82525050565b6000613b0582856135b7565b602082019150613b1582846135b7565b6020820191508190509392505050565b6000613b318285613680565b9150613b3d828461364f565b91508190509392505050565b6000613b5482613a47565b9150819050919050565b6000613b6a8285613ae2565b602082019150613b7a8284613591565b6014820191508190509392505050565b6000602082019050613b9f6000830184613582565b92915050565b6000608082019050613bba6000830187613582565b613bc76020830186613582565b613bd46040830185613ad3565b8181036060830152613be681846135ce565b905095945050505050565b6000602082019050613c0660008301846135a8565b92915050565b6000602082019050613c216000830184613607565b92915050565b60006020820190508181036000830152613c418184613616565b905092915050565b60006020820190508181036000830152613c62816136ff565b9050919050565b60006020820190508181036000830152613c8281613722565b9050919050565b60006020820190508181036000830152613ca281613745565b9050919050565b60006020820190508181036000830152613cc281613768565b9050919050565b60006020820190508181036000830152613ce28161378b565b9050919050565b60006020820190508181036000830152613d02816137ae565b9050919050565b60006020820190508181036000830152613d22816137d1565b9050919050565b60006020820190508181036000830152613d42816137f4565b9050919050565b60006020820190508181036000830152613d6281613817565b9050919050565b60006020820190508181036000830152613d828161383a565b9050919050565b60006020820190508181036000830152613da28161385d565b9050919050565b60006020820190508181036000830152613dc281613880565b9050919050565b60006020820190508181036000830152613de2816138a3565b9050919050565b60006020820190508181036000830152613e02816138c6565b9050919050565b60006020820190508181036000830152613e22816138e9565b9050919050565b60006020820190508181036000830152613e428161390c565b9050919050565b60006020820190508181036000830152613e628161392f565b9050919050565b60006020820190508181036000830152613e8281613952565b9050919050565b60006020820190508181036000830152613ea281613975565b9050919050565b60006020820190508181036000830152613ec281613998565b9050919050565b60006020820190508181036000830152613ee2816139bb565b9050919050565b60006020820190508181036000830152613f02816139de565b9050919050565b60006020820190508181036000830152613f2281613a01565b9050919050565b60006020820190508181036000830152613f4281613a24565b9050919050565b60006020820190508181036000830152613f6281613a6a565b9050919050565b60006020820190508181036000830152613f8281613a8d565b9050919050565b60006020820190508181036000830152613fa281613ab0565b9050919050565b6000602082019050613fbe6000830184613ad3565b92915050565b6000613fce613fdf565b9050613fda828261427f565b919050565b6000604051905090565b600067ffffffffffffffff8211156140045761400361441e565b5b61400d8261446b565b9050602081019050919050565b600067ffffffffffffffff8211156140355761403461441e565b5b61403e8261446b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140b9826141ef565b91506140c4836141ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140f9576140f8614362565b5b828201905092915050565b600061410f826141ef565b915061411a836141ef565b92508261412a57614129614391565b5b828204905092915050565b6000614140826141ef565b915061414b836141ef565b92508282101561415e5761415d614362565b5b828203905092915050565b6000614174826141cf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006141c882614169565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614204826141ef565b9050919050565b82818337600083830152505050565b60005b8381101561423857808201518184015260208101905061421d565b83811115614247576000848401525b50505050565b6000600282049050600182168061426557607f821691505b60208210811415614279576142786143c0565b5b50919050565b6142888261446b565b810181811067ffffffffffffffff821117156142a7576142a661441e565b5b80604052505050565b60006142bb826141ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ee576142ed614362565b5b600182019050919050565b600061430482614315565b9050919050565b6000819050919050565b60006143208261447c565b9050919050565b6000819050919050565b600061433c826141ef565b9150614347836141ef565b92508261435757614356614391565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f547279696e6720746f206d696e74206d6f7265207468616e20616c6c6f776564600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420696e207468652077686974656c69737400600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420696e207468652066726565206d696e742060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920616464656400000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820726573657276656420676f6473206c656674000000600082015250565b614ad681614169565b8114614ae157600080fd5b50565b614aed8161417b565b8114614af857600080fd5b50565b614b0481614187565b8114614b0f57600080fd5b50565b614b1b81614191565b8114614b2657600080fd5b50565b614b32816141bd565b8114614b3d57600080fd5b50565b614b49816141ef565b8114614b5457600080fd5b5056fe68747470733a2f2f697066732e696f2f697066732f516d625a77505a674b5336594a6b54325534566d7038377564413643667934547536334b4b447634516e6e635532a2646970667358221220a34fb039c49ffcc627441498dd3d29b66e05bfd864675b2aa400723537cd88c064736f6c63430008070033000000000000000000000000b1f6c460048aff966f0fe0fc67d10dd8c057b71a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000001118f178fb48000000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d655a397a477446737a7039713366634b374d536f7573736a6d346e42715238786251317a386f4463474459610000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638456cb591161010d578063c87b56dd116100a0578063ea50e78c1161006f578063ea50e78c14610697578063eadaec05146106c0578063f28ba283146106e9578063f2fde38b14610714578063fe2c7fee1461073d576101ee565b8063c87b56dd146105c7578063d547cfb714610604578063e8a3d4851461062f578063e985e9c51461065a576101ee565b8063a035b1fe116100dc578063a035b1fe14610521578063a22cb4651461054c578063b88d4fde14610575578063bb1ee47b1461059e576101ee565b80638456cb59146104aa578063853828b6146104c15780638da5cb5b146104cb57806395d89b41146104f6576101ee565b806342842e0e116101855780637035bf18116101545780637035bf181461040257806370a082311461042d578063715018a61461046a5780637c928fe914610481576101ee565b806342842e0e1461034857806355f804b3146103715780635c975abb1461039a5780636352211e146103c5576101ee565b8063095ea7b3116101c1578063095ea7b3146102b457806318160ddd146102dd57806323b872dd146103085780633f4ba83a14610331576101ee565b806301ffc9a7146101f3578063061431a81461023057806306fdde031461024c578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906133b8565b610766565b6040516102279190613bf1565b60405180910390f35b61024a600480360381019061024591906134e2565b610848565b005b34801561025857600080fd5b50610261610a75565b60405161026e9190613c27565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613488565b610b07565b6040516102ab9190613b8a565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d6919061334b565b610b8c565b005b3480156102e957600080fd5b506102f2610ca4565b6040516102ff9190613fa9565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613235565b610d4b565b005b34801561033d57600080fd5b50610346610dab565b005b34801561035457600080fd5b5061036f600480360381019061036a9190613235565b610e31565b005b34801561037d57600080fd5b506103986004803603810190610393919061343f565b610e51565b005b3480156103a657600080fd5b506103af610f75565b6040516103bc9190613bf1565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e79190613488565b610f8c565b6040516103f99190613b8a565b60405180910390f35b34801561040e57600080fd5b5061041761103e565b6040516104249190613c27565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f91906131c8565b6110cc565b6040516104619190613fa9565b60405180910390f35b34801561047657600080fd5b5061047f611184565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613488565b61120c565b005b3480156104b657600080fd5b506104bf611455565b005b6104c96114db565b005b3480156104d757600080fd5b506104e061164f565b6040516104ed9190613b8a565b60405180910390f35b34801561050257600080fd5b5061050b611679565b6040516105189190613c27565b60405180910390f35b34801561052d57600080fd5b5061053661170b565b6040516105439190613fa9565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e919061330b565b611711565b005b34801561058157600080fd5b5061059c60048036038101906105979190613288565b611727565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061338b565b611789565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613488565b61180f565b6040516105fb9190613c27565b60405180910390f35b34801561061057600080fd5b506106196118e2565b6040516106269190613c27565b60405180910390f35b34801561063b57600080fd5b50610644611970565b6040516106519190613c27565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c91906131f5565b611990565b60405161068e9190613bf1565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613488565b611a92565b005b3480156106cc57600080fd5b506106e760048036038101906106e2919061334b565b611ccb565b005b3480156106f557600080fd5b506106fe611e11565b60405161070b9190613fa9565b60405180910390f35b34801561072057600080fd5b5061073b600480360381019061073691906131c8565b611e16565b005b34801561074957600080fd5b50610764600480360381019061075f919061343f565b611f0e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610841575061084082611fa4565b5b9050919050565b610850610f75565b15610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790613da9565b60405180910390fd5b6108de83600b54848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061200e565b61091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490613d89565b60405180910390fd5b600754341015610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095990613e89565b60405180910390fd5b600061096d336110cc565b9050600181106109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613c49565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d6860016040518263ffffffff1660e01b8152600401610a109190613c0c565b6040805180830381600087803b158015610a2957600080fd5b505af1158015610a3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a619190613542565b509050610a6e338261202d565b5050505050565b606060008054610a849061424d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab09061424d565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000610b12826121fb565b610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890613ea9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9782610f8c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613f09565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c27612267565b73ffffffffffffffffffffffffffffffffffffffff161480610c565750610c5581610c50612267565b611990565b5b610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613dc9565b60405180910390fd5b610c9f838361226f565b505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166326987b606040518163ffffffff1660e01b815260040160206040518083038186803b158015610d0e57600080fd5b505afa158015610d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4691906134b5565b905090565b610d5c610d56612267565b82612328565b610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613f69565b60405180910390fd5b610da6838383612406565b505050565b610db3612267565b73ffffffffffffffffffffffffffffffffffffffff16610dd161164f565b73ffffffffffffffffffffffffffffffffffffffff1614610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90613ec9565b60405180910390fd5b610e2f612662565b565b610e4c83838360405180602001604052806000815250611727565b505050565b610e59612267565b73ffffffffffffffffffffffffffffffffffffffff16610e7761164f565b73ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490613ec9565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166349a5980a60016040518263ffffffff1660e01b8152600401610f299190613bf1565b600060405180830381600087803b158015610f4357600080fd5b505af1158015610f57573d6000803e3d6000fd5b505050508060099080519060200190610f71929190612f47565b5050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613e09565b60405180910390fd5b80915050919050565b6008805461104b9061424d565b80601f01602080910402602001604051908101604052809291908181526020018280546110779061424d565b80156110c45780601f10611099576101008083540402835291602001916110c4565b820191906000526020600020905b8154815290600101906020018083116110a757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490613de9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61118c612267565b73ffffffffffffffffffffffffffffffffffffffff166111aa61164f565b73ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790613ec9565b60405180910390fd5b61120a6000612704565b565b611214610f75565b15611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90613da9565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90613e29565b60405180910390fd5b6000816112e2336110cc565b6112ec91906140ae565b9050600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790613ca9565b60405180910390fd5b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68856040518263ffffffff1660e01b81526004016113ce9190613fa9565b6040805180830381600087803b1580156113e757600080fd5b505af11580156113fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141f9190613542565b9150915060008290505b8181101561144e5761143b338261202d565b8080611446906142b0565b915050611429565b5050505050565b61145d612267565b73ffffffffffffffffffffffffffffffffffffffff1661147b61164f565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613ec9565b60405180910390fd5b6114d96127ca565b565b6114e3612267565b73ffffffffffffffffffffffffffffffffffffffff1661150161164f565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e90613ec9565b60405180910390fd5b60004790506000811161159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690613e69565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516115c590613b49565b60006040518083038185875af1925050503d8060008114611602576040519150601f19603f3d011682016040523d82523d6000602084013e611607565b606091505b505090508061164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290613f49565b60405180910390fd5b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116889061424d565b80601f01602080910402602001604051908101604052809291908181526020018280546116b49061424d565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b5050505050905090565b60075481565b61172361171c612267565b838361286d565b5050565b611738611732612267565b83612328565b611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90613f69565b60405180910390fd5b611783848484846129da565b50505050565b611791612267565b73ffffffffffffffffffffffffffffffffffffffff166117af61164f565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90613ec9565b60405180910390fd5b80600b8190555050565b6060611819612a36565b6118af576008805461182a9061424d565b80601f01602080910402602001604051908101604052809291908181526020018280546118569061424d565b80156118a35780601f10611878576101008083540402835291602001916118a3565b820191906000526020600020905b81548152906001019060200180831161188657829003601f168201915b505050505090506118dd565b60096118ba83612a4e565b6040516020016118cb929190613b25565b60405160208183030381529060405290505b919050565b600980546118ef9061424d565b80601f016020809104026020016040519081016040528092919081815260200182805461191b9061424d565b80156119685780601f1061193d57610100808354040283529160200191611968565b820191906000526020600020905b81548152906001019060200180831161194b57829003601f168201915b505050505081565b6060604051806080016040528060438152602001614b5860439139905090565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a089190613b8a565b60206040518083038186803b158015611a2057600080fd5b505afa158015611a34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a589190613412565b73ffffffffffffffffffffffffffffffffffffffff161415611a7e576001915050611a8c565b611a888484612baf565b9150505b92915050565b611a9a612267565b73ffffffffffffffffffffffffffffffffffffffff16611ab861164f565b73ffffffffffffffffffffffffffffffffffffffff1614611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613ec9565b60405180910390fd5b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3df656d6040518163ffffffff1660e01b8152600401604080518083038186803b158015611b7857600080fd5b505afa158015611b8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb09190613542565b91509150808383611bc191906140ae565b1115611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613f89565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ea50e78c846040518263ffffffff1660e01b8152600401611c5d9190613fa9565b600060405180830381600087803b158015611c7757600080fd5b505af1158015611c8b573d6000803e3d6000fd5b5050505060008290505b8284611ca191906140ae565b811015611cc557611cb2338261202d565b8080611cbd906142b0565b915050611c95565b50505050565b611cd3612267565b73ffffffffffffffffffffffffffffffffffffffff16611cf161164f565b73ffffffffffffffffffffffffffffffffffffffff1614611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90613ec9565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613f29565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600181565b611e1e612267565b73ffffffffffffffffffffffffffffffffffffffff16611e3c61164f565b73ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613ec9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613ce9565b60405180910390fd5b611f0b81612704565b50565b611f16612267565b73ffffffffffffffffffffffffffffffffffffffff16611f3461164f565b73ffffffffffffffffffffffffffffffffffffffff1614611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190613ec9565b60405180910390fd5b8060089080519060200190611fa0929190612f47565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612024828461201f8733612c43565b612c76565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209490613e49565b60405180910390fd5b6120a6816121fb565b156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90613d09565b60405180910390fd5b6120f260008383612c8d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214291906140ae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122e283610f8c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612333826121fb565b612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990613d69565b60405180910390fd5b600061237d83610f8c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123ec57508373ffffffffffffffffffffffffffffffffffffffff166123d484610b07565b73ffffffffffffffffffffffffffffffffffffffff16145b806123fd57506123fc8185611990565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242682610f8c565b73ffffffffffffffffffffffffffffffffffffffff161461247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390613ee9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e390613d29565b60405180910390fd5b6124f7838383612c8d565b61250260008261226f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125529190614135565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a991906140ae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61266a610f75565b6126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090613c89565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126ed612267565b6040516126fa9190613b8a565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127d2610f75565b15612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990613da9565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612856612267565b6040516128639190613b8a565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d390613d49565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129cd9190613bf1565b60405180910390a3505050565b6129e5848484612406565b6129f184848484612ce5565b612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790613cc9565b60405180910390fd5b50505050565b60008060098054612a469061424d565b905011905090565b60606000821415612a96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612baa565b600082905060005b60008214612ac8578080612ab1906142b0565b915050600a82612ac19190614104565b9150612a9e565b60008167ffffffffffffffff811115612ae457612ae361441e565b5b6040519080825280601f01601f191660200182016040528015612b165781602001600182028036833780820191505090505b5090505b60008514612ba357600182612b2f9190614135565b9150600a85612b3e9190614331565b6030612b4a91906140ae565b60f81b818381518110612b6057612b5f6143ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b9c9190614104565b9450612b1a565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008282604051602001612c58929190613b5e565b60405160208183030381529060405280519060200120905092915050565b600082612c838584612e7c565b1490509392505050565b612c98838383612f2f565b612ca0610f75565b15612ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd790613c69565b60405180910390fd5b505050565b6000612d068473ffffffffffffffffffffffffffffffffffffffff16612f34565b15612e6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2f612267565b8786866040518563ffffffff1660e01b8152600401612d519493929190613ba5565b602060405180830381600087803b158015612d6b57600080fd5b505af1925050508015612d9c57506040513d601f19601f82011682018060405250810190612d9991906133e5565b60015b612e1f573d8060008114612dcc576040519150601f19603f3d011682016040523d82523d6000602084013e612dd1565b606091505b50600081511415612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e90613cc9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e74565b600190505b949350505050565b60008082905060005b8451811015612f24576000858281518110612ea357612ea26143ef565b5b60200260200101519050808311612ee4578281604051602001612ec7929190613af9565b604051602081830303815290604052805190602001209250612f10565b8083604051602001612ef7929190613af9565b6040516020818303038152906040528051906020012092505b508080612f1c906142b0565b915050612e85565b508091505092915050565b505050565b600080823b905060008111915050919050565b828054612f539061424d565b90600052602060002090601f016020900481019282612f755760008555612fbc565b82601f10612f8e57805160ff1916838001178555612fbc565b82800160010185558215612fbc579182015b82811115612fbb578251825591602001919060010190612fa0565b5b509050612fc99190612fcd565b5090565b5b80821115612fe6576000816000905550600101612fce565b5090565b6000612ffd612ff884613fe9565b613fc4565b9050828152602081018484840111156130195761301861445c565b5b61302484828561420b565b509392505050565b600061303f61303a8461401a565b613fc4565b90508281526020810184848401111561305b5761305a61445c565b5b61306684828561420b565b509392505050565b60008135905061307d81614acd565b92915050565b60008083601f84011261309957613098614452565b5b8235905067ffffffffffffffff8111156130b6576130b561444d565b5b6020830191508360208202830111156130d2576130d1614457565b5b9250929050565b6000813590506130e881614ae4565b92915050565b6000813590506130fd81614afb565b92915050565b60008135905061311281614b12565b92915050565b60008151905061312781614b12565b92915050565b600082601f83011261314257613141614452565b5b8135613152848260208601612fea565b91505092915050565b60008151905061316a81614b29565b92915050565b600082601f83011261318557613184614452565b5b813561319584826020860161302c565b91505092915050565b6000813590506131ad81614b40565b92915050565b6000815190506131c281614b40565b92915050565b6000602082840312156131de576131dd614466565b5b60006131ec8482850161306e565b91505092915050565b6000806040838503121561320c5761320b614466565b5b600061321a8582860161306e565b925050602061322b8582860161306e565b9150509250929050565b60008060006060848603121561324e5761324d614466565b5b600061325c8682870161306e565b935050602061326d8682870161306e565b925050604061327e8682870161319e565b9150509250925092565b600080600080608085870312156132a2576132a1614466565b5b60006132b08782880161306e565b94505060206132c18782880161306e565b93505060406132d28782880161319e565b925050606085013567ffffffffffffffff8111156132f3576132f2614461565b5b6132ff8782880161312d565b91505092959194509250565b6000806040838503121561332257613321614466565b5b60006133308582860161306e565b9250506020613341858286016130d9565b9150509250929050565b6000806040838503121561336257613361614466565b5b60006133708582860161306e565b92505060206133818582860161319e565b9150509250929050565b6000602082840312156133a1576133a0614466565b5b60006133af848285016130ee565b91505092915050565b6000602082840312156133ce576133cd614466565b5b60006133dc84828501613103565b91505092915050565b6000602082840312156133fb576133fa614466565b5b600061340984828501613118565b91505092915050565b60006020828403121561342857613427614466565b5b60006134368482850161315b565b91505092915050565b60006020828403121561345557613454614466565b5b600082013567ffffffffffffffff81111561347357613472614461565b5b61347f84828501613170565b91505092915050565b60006020828403121561349e5761349d614466565b5b60006134ac8482850161319e565b91505092915050565b6000602082840312156134cb576134ca614466565b5b60006134d9848285016131b3565b91505092915050565b6000806000604084860312156134fb576134fa614466565b5b60006135098682870161319e565b935050602084013567ffffffffffffffff81111561352a57613529614461565b5b61353686828701613083565b92509250509250925092565b6000806040838503121561355957613558614466565b5b6000613567858286016131b3565b9250506020613578858286016131b3565b9150509250929050565b61358b81614169565b82525050565b6135a261359d82614169565b6142f9565b82525050565b6135b18161417b565b82525050565b6135c86135c382614187565b61430b565b82525050565b60006135d982614060565b6135e38185614076565b93506135f381856020860161421a565b6135fc8161446b565b840191505092915050565b613610816141f9565b82525050565b60006136218261406b565b61362b8185614092565b935061363b81856020860161421a565b6136448161446b565b840191505092915050565b600061365a8261406b565b61366481856140a3565b935061367481856020860161421a565b80840191505092915050565b6000815461368d8161424d565b61369781866140a3565b945060018216600081146136b257600181146136c3576136f6565b60ff198316865281860193506136f6565b6136cc8561404b565b60005b838110156136ee578154818901526001820191506020810190506136cf565b838801955050505b50505092915050565b600061370c600e83614092565b915061371782614489565b602082019050919050565b600061372f602b83614092565b915061373a826144b2565b604082019050919050565b6000613752601483614092565b915061375d82614501565b602082019050919050565b6000613775602083614092565b91506137808261452a565b602082019050919050565b6000613798603283614092565b91506137a382614553565b604082019050919050565b60006137bb602683614092565b91506137c6826145a2565b604082019050919050565b60006137de601c83614092565b91506137e9826145f1565b602082019050919050565b6000613801602483614092565b915061380c8261461a565b604082019050919050565b6000613824601983614092565b915061382f82614669565b602082019050919050565b6000613847602c83614092565b915061385282614692565b604082019050919050565b600061386a601f83614092565b9150613875826146e1565b602082019050919050565b600061388d601083614092565b91506138988261470a565b602082019050919050565b60006138b0603883614092565b91506138bb82614733565b604082019050919050565b60006138d3602a83614092565b91506138de82614782565b604082019050919050565b60006138f6602983614092565b9150613901826147d1565b604082019050919050565b6000613919602483614092565b915061392482614820565b604082019050919050565b600061393c602083614092565b91506139478261486f565b602082019050919050565b600061395f601983614092565b915061396a82614898565b602082019050919050565b6000613982600e83614092565b915061398d826148c1565b602082019050919050565b60006139a5602c83614092565b91506139b0826148ea565b604082019050919050565b60006139c8602083614092565b91506139d382614939565b602082019050919050565b60006139eb602983614092565b91506139f682614962565b604082019050919050565b6000613a0e602183614092565b9150613a19826149b1565b604082019050919050565b6000613a31600d83614092565b9150613a3c82614a00565b602082019050919050565b6000613a54600083614087565b9150613a5f82614a29565b600082019050919050565b6000613a77601083614092565b9150613a8282614a2c565b602082019050919050565b6000613a9a603183614092565b9150613aa582614a55565b604082019050919050565b6000613abd601d83614092565b9150613ac882614aa4565b602082019050919050565b613adc816141ef565b82525050565b613af3613aee826141ef565b614327565b82525050565b6000613b0582856135b7565b602082019150613b1582846135b7565b6020820191508190509392505050565b6000613b318285613680565b9150613b3d828461364f565b91508190509392505050565b6000613b5482613a47565b9150819050919050565b6000613b6a8285613ae2565b602082019150613b7a8284613591565b6014820191508190509392505050565b6000602082019050613b9f6000830184613582565b92915050565b6000608082019050613bba6000830187613582565b613bc76020830186613582565b613bd46040830185613ad3565b8181036060830152613be681846135ce565b905095945050505050565b6000602082019050613c0660008301846135a8565b92915050565b6000602082019050613c216000830184613607565b92915050565b60006020820190508181036000830152613c418184613616565b905092915050565b60006020820190508181036000830152613c62816136ff565b9050919050565b60006020820190508181036000830152613c8281613722565b9050919050565b60006020820190508181036000830152613ca281613745565b9050919050565b60006020820190508181036000830152613cc281613768565b9050919050565b60006020820190508181036000830152613ce28161378b565b9050919050565b60006020820190508181036000830152613d02816137ae565b9050919050565b60006020820190508181036000830152613d22816137d1565b9050919050565b60006020820190508181036000830152613d42816137f4565b9050919050565b60006020820190508181036000830152613d6281613817565b9050919050565b60006020820190508181036000830152613d828161383a565b9050919050565b60006020820190508181036000830152613da28161385d565b9050919050565b60006020820190508181036000830152613dc281613880565b9050919050565b60006020820190508181036000830152613de2816138a3565b9050919050565b60006020820190508181036000830152613e02816138c6565b9050919050565b60006020820190508181036000830152613e22816138e9565b9050919050565b60006020820190508181036000830152613e428161390c565b9050919050565b60006020820190508181036000830152613e628161392f565b9050919050565b60006020820190508181036000830152613e8281613952565b9050919050565b60006020820190508181036000830152613ea281613975565b9050919050565b60006020820190508181036000830152613ec281613998565b9050919050565b60006020820190508181036000830152613ee2816139bb565b9050919050565b60006020820190508181036000830152613f02816139de565b9050919050565b60006020820190508181036000830152613f2281613a01565b9050919050565b60006020820190508181036000830152613f4281613a24565b9050919050565b60006020820190508181036000830152613f6281613a6a565b9050919050565b60006020820190508181036000830152613f8281613a8d565b9050919050565b60006020820190508181036000830152613fa281613ab0565b9050919050565b6000602082019050613fbe6000830184613ad3565b92915050565b6000613fce613fdf565b9050613fda828261427f565b919050565b6000604051905090565b600067ffffffffffffffff8211156140045761400361441e565b5b61400d8261446b565b9050602081019050919050565b600067ffffffffffffffff8211156140355761403461441e565b5b61403e8261446b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140b9826141ef565b91506140c4836141ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140f9576140f8614362565b5b828201905092915050565b600061410f826141ef565b915061411a836141ef565b92508261412a57614129614391565b5b828204905092915050565b6000614140826141ef565b915061414b836141ef565b92508282101561415e5761415d614362565b5b828203905092915050565b6000614174826141cf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006141c882614169565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614204826141ef565b9050919050565b82818337600083830152505050565b60005b8381101561423857808201518184015260208101905061421d565b83811115614247576000848401525b50505050565b6000600282049050600182168061426557607f821691505b60208210811415614279576142786143c0565b5b50919050565b6142888261446b565b810181811067ffffffffffffffff821117156142a7576142a661441e565b5b80604052505050565b60006142bb826141ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ee576142ed614362565b5b600182019050919050565b600061430482614315565b9050919050565b6000819050919050565b60006143208261447c565b9050919050565b6000819050919050565b600061433c826141ef565b9150614347836141ef565b92508261435757614356614391565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f547279696e6720746f206d696e74206d6f7265207468616e20616c6c6f776564600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420696e207468652077686974656c69737400600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420696e207468652066726565206d696e742060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920616464656400000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820726573657276656420676f6473206c656674000000600082015250565b614ad681614169565b8114614ae157600080fd5b50565b614aed8161417b565b8114614af857600080fd5b50565b614b0481614187565b8114614b0f57600080fd5b50565b614b1b81614191565b8114614b2657600080fd5b50565b614b32816141bd565b8114614b3d57600080fd5b50565b614b49816141ef565b8114614b5457600080fd5b5056fe68747470733a2f2f697066732e696f2f697066732f516d625a77505a674b5336594a6b54325534566d7038377564413643667934547536334b4b447634516e6e635532a2646970667358221220a34fb039c49ffcc627441498dd3d29b66e05bfd864675b2aa400723537cd88c064736f6c63430008070033

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.