ETH Price: $3,510.82 (+4.15%)
Gas: 4 Gwei

Token

Mythics Genesis (MGEN)
 

Overview

Max Total Supply

1,077 MGEN

Holders

710

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hereliesmyhopesanddreams.eth
Balance
1 MGEN
0xba7933402348a902064499ed883c49843eeb7019
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Genesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : 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";
import "./interfaces/State.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, State {
    struct Airdrop {
        address to;
        uint256 count;
    }

    /**
     * Mint parameters
     */
    uint256 public constant WHITELIST_MINT_COUNT = 1;
    uint256 public price;
    string public baseTokenURI;
    mapping(address => bool) private addressToMint;

    /**
     * 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);
        baseTokenURI = unrevealedURI;
        price = _price;
        proxyRegistryAddress = _proxyRegistryAddress;
        _pause();
    }

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

    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 {
        require(mintState == MintState.Maintenance, "Mint not maintenance");
        // Set in Supply contract for the `getMetadataForTokenId` function
        supply.setIsRevealed(true);
        baseTokenURI = _baseTokenURI;
    }

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

    function setMintState(MintState _mintState) external onlyOwner {
        require(_mintState > mintState, "State can't go back");
        mintState = _mintState;
        supply.setMintState(_mintState);
    }

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

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

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

    /**
     * Airdrop tokens to an array of address
     * @param airdrops list of people to airdrop to
     */
    function airdrop(Airdrop[] calldata airdrops)
        external
        onlyOwner
        whenNotPaused
    {
        require(
            mintState == MintState.Closed || mintState == MintState.Active,
            "Not closed or active"
        );
        for (uint256 index = 0; index < airdrops.length; index++) {
            (uint256 startIndex, uint256 endIndex) = supply.mint(
                airdrops[index].count
            );
            for (uint256 i = startIndex; i < endIndex; i++) {
                _mint(airdrops[index].to, 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
        active
    {
        require(
            verifyProof(nonce, whiteListMerkleTreeRoot, proof),
            "Address is not in the whitelist"
        );
        require(addressToMint[msg.sender] == false, "Already minted");
        require(msg.value == price, "Not enough ETH");
        addressToMint[msg.sender] = true;
        (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
        whenNotPaused
        closed
    {
        (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);
        }
    }

    /**
     * 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 16 : 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 16 : 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 16 : 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 16 : 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 16 : GenesisSupplyInterface.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./State.sol";

// Supply ABI needed from Genesis Contract
contract DeployedSupply is State {
    function setMintState(MintState _mintState) external {}

    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 16 : State.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

abstract contract State {
    enum MintState {
        Closed,
        Active,
        Maintenance,
        Finalized
    }
    MintState public mintState = MintState.Closed;

    /**
     * Modifier that checks mint state to be closed
     */
    modifier closed() {
        require(mintState == MintState.Closed, "Mint not closed");
        _;
    }

    /**
     * Modifier that checks mint state to be active
     */
    modifier active() {
        require(mintState == MintState.Active, "Mint not active");
        _;
    }
}

File 8 of 16 : 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 9 of 16 : 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 10 of 16 : 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : 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 15 of 16 : 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 16 of 16 : 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":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"internalType":"struct Genesis.Airdrop[]","name":"airdrops","type":"tuple[]"}],"name":"airdrop","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":"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":[],"name":"mintState","outputs":[{"internalType":"enum State.MintState","name":"","type":"uint8"}],"stateMutability":"view","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":"enum State.MintState","name":"_mintState","type":"uint8"}],"name":"setMintState","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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600660156101000a81548160ff021916908360038111156200002d576200002c6200074d565b5b02179055503480156200003f57600080fd5b506040516200579d3803806200579d8339818101604052810190620000659190620004f5565b6040518060400160405280600f81526020017f4d7974686963732047656e6573697300000000000000000000000000000000008152506040518060400160405280600481526020017f4d47454e000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e992919062000399565b5080600190805190602001906200010292919062000399565b5050506000600660006101000a81548160ff0219169083151502179055506200014062000134620001fc60201b60201c565b6200020460201b60201c565b83600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600890805190602001906200019992919062000399565b508160078190555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f2620002ca60201b60201c565b505050506200085c565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002da6200038260201b60201c565b156200031d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031490620005db565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000369620001fc60201b60201c565b604051620003789190620005be565b60405180910390a1565b6000600660009054906101000a900460ff16905090565b828054620003a790620006e1565b90600052602060002090601f016020900481019282620003cb576000855562000417565b82601f10620003e657805160ff191683800117855562000417565b8280016001018555821562000417579182015b8281111562000416578251825591602001919060010190620003f9565b5b5090506200042691906200042a565b5090565b5b80821115620004455760008160009055506001016200042b565b5090565b6000620004606200045a8462000626565b620005fd565b9050828152602081018484840111156200047f576200047e620007df565b5b6200048c848285620006ab565b509392505050565b600081519050620004a58162000828565b92915050565b600082601f830112620004c357620004c2620007da565b5b8151620004d584826020860162000449565b91505092915050565b600081519050620004ef8162000842565b92915050565b60008060008060808587031215620005125762000511620007e9565b5b6000620005228782880162000494565b945050602085015167ffffffffffffffff811115620005465762000545620007e4565b5b6200055487828801620004ab565b93505060406200056787828801620004de565b92505060606200057a8782880162000494565b91505092959194509250565b62000591816200066d565b82525050565b6000620005a66010836200065c565b9150620005b382620007ff565b602082019050919050565b6000602082019050620005d5600083018462000586565b92915050565b60006020820190508181036000830152620005f68162000597565b9050919050565b6000620006096200061c565b905062000617828262000717565b919050565b6000604051905090565b600067ffffffffffffffff821115620006445762000643620007ab565b5b6200064f82620007ee565b9050602081019050919050565b600082825260208201905092915050565b60006200067a8262000681565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006cb578082015181840152602081019050620006ae565b83811115620006db576000848401525b50505050565b60006002820490506001821680620006fa57607f821691505b602082108114156200071157620007106200077c565b5b50919050565b6200072282620007ee565b810181811067ffffffffffffffff82111715620007445762000743620007ab565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b62000833816200066d565b81146200083f57600080fd5b50565b6200084d81620006a1565b81146200085957600080fd5b50565b614f31806200086c6000396000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063d547cfb711610095578063ea50e78c11610064578063ea50e78c1461068c578063f11cb0af146106b5578063f28ba283146106de578063f2fde38b14610709576101e3565b8063d547cfb7146105d0578063e0c9ffc6146105fb578063e8a3d48514610624578063e985e9c51461064f576101e3565b8063b88d4fde116100d1578063b88d4fde14610516578063bb1ee47b1461053f578063c051e38a14610568578063c87b56dd14610593576101e3565b80638da5cb5b1461046c57806395d89b4114610497578063a035b1fe146104c2578063a22cb465146104ed576101e3565b806342842e0e1161017a57806370a082311161014957806370a08231146103f7578063715018a6146104345780638456cb591461044b578063853828b614610462576101e3565b806342842e0e1461033d57806355f804b3146103665780635c975abb1461038f5780636352211e146103ba576101e3565b8063095ea7b3116101b6578063095ea7b3146102a957806318160ddd146102d257806323b872dd146102fd5780633f4ba83a14610326576101e3565b806301ffc9a7146101e8578063061431a81461022557806306fdde0314610241578063081812fc1461026c575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613598565b610732565b60405161021c9190613e53565b60405180910390f35b61023f600480360381019061023a91906136ef565b610814565b005b34801561024d57600080fd5b50610256610b50565b6040516102639190613ea4565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190613695565b610be2565b6040516102a09190613dec565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb91906134de565b610c67565b005b3480156102de57600080fd5b506102e7610d7f565b6040516102f49190614266565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906133c8565b610e26565b005b34801561033257600080fd5b5061033b610e86565b005b34801561034957600080fd5b50610364600480360381019061035f91906133c8565b610f0c565b005b34801561037257600080fd5b5061038d6004803603810190610388919061364c565b610f2c565b005b34801561039b57600080fd5b506103a46110c6565b6040516103b19190613e53565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190613695565b6110dd565b6040516103ee9190613dec565b60405180910390f35b34801561040357600080fd5b5061041e6004803603810190610419919061335b565b61118f565b60405161042b9190614266565b60405180910390f35b34801561044057600080fd5b50610449611247565b005b34801561045757600080fd5b506104606112cf565b005b61046a611355565b005b34801561047857600080fd5b506104816114c9565b60405161048e9190613dec565b60405180910390f35b3480156104a357600080fd5b506104ac6114f3565b6040516104b99190613ea4565b60405180910390f35b3480156104ce57600080fd5b506104d7611585565b6040516104e49190614266565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f919061349e565b61158b565b005b34801561052257600080fd5b5061053d6004803603810190610538919061341b565b6115a1565b005b34801561054b57600080fd5b506105666004803603810190610561919061356b565b611603565b005b34801561057457600080fd5b5061057d611689565b60405161058a9190613e6e565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613695565b61169c565b6040516105c79190613ea4565b60405180910390f35b3480156105dc57600080fd5b506105e56116d0565b6040516105f29190613ea4565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d919061351e565b61175e565b005b34801561063057600080fd5b50610639611a23565b6040516106469190613ea4565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190613388565b611a43565b6040516106839190613e53565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190613695565b611b45565b005b3480156106c157600080fd5b506106dc60048036038101906106d7919061361f565b611e3c565b005b3480156106ea57600080fd5b506106f3611fe7565b6040516107009190614266565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061335b565b611fec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080d575061080c826120e4565b5b9050919050565b61081c6110c6565b1561085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085390614046565b60405180910390fd5b600160038111156108705761086f6146a2565b5b600660159054906101000a900460ff166003811115610892576108916146a2565b5b146108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c990613f86565b60405180910390fd5b61092083600a54848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061214e565b61095f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095690614026565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990613ec6565b60405180910390fd5b6007543414610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90614126565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d6860016040518263ffffffff1660e01b8152600401610aec9190613e89565b6040805180830381600087803b158015610b0557600080fd5b505af1158015610b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3d919061374f565b509050610b4a338261216d565b50505050565b606060008054610b5f9061452f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b9061452f565b8015610bd85780601f10610bad57610100808354040283529160200191610bd8565b820191906000526020600020905b815481529060010190602001808311610bbb57829003601f168201915b5050505050905090565b6000610bed8261233b565b610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390614146565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c72826110dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda906141c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d026123a7565b73ffffffffffffffffffffffffffffffffffffffff161480610d315750610d3081610d2b6123a7565b611a43565b5b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614066565b60405180910390fd5b610d7a83836123af565b505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166326987b606040518163ffffffff1660e01b815260040160206040518083038186803b158015610de957600080fd5b505afa158015610dfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2191906136c2565b905090565b610e37610e316123a7565b82612468565b610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90614226565b60405180910390fd5b610e81838383612546565b505050565b610e8e6123a7565b73ffffffffffffffffffffffffffffffffffffffff16610eac6114c9565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990614166565b60405180910390fd5b610f0a6127a2565b565b610f27838383604051806020016040528060008152506115a1565b505050565b610f346123a7565b73ffffffffffffffffffffffffffffffffffffffff16610f526114c9565b73ffffffffffffffffffffffffffffffffffffffff1614610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90614166565b60405180910390fd5b60026003811115610fbc57610fbb6146a2565b5b600660159054906101000a900460ff166003811115610fde57610fdd6146a2565b5b1461101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590613fa6565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166349a5980a60016040518263ffffffff1660e01b815260040161107a9190613e53565b600060405180830381600087803b15801561109457600080fd5b505af11580156110a8573d6000803e3d6000fd5b5050505080600890805190602001906110c292919061306f565b5050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906140a6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790614086565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61124f6123a7565b73ffffffffffffffffffffffffffffffffffffffff1661126d6114c9565b73ffffffffffffffffffffffffffffffffffffffff16146112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90614166565b60405180910390fd5b6112cd6000612844565b565b6112d76123a7565b73ffffffffffffffffffffffffffffffffffffffff166112f56114c9565b73ffffffffffffffffffffffffffffffffffffffff161461134b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134290614166565b60405180910390fd5b61135361290a565b565b61135d6123a7565b73ffffffffffffffffffffffffffffffffffffffff1661137b6114c9565b73ffffffffffffffffffffffffffffffffffffffff16146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890614166565b60405180910390fd5b600047905060008111611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090614106565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff168260405161143f90613dab565b60006040518083038185875af1925050503d806000811461147c576040519150601f19603f3d011682016040523d82523d6000602084013e611481565b606091505b50509050806114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614206565b60405180910390fd5b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115029061452f565b80601f016020809104026020016040519081016040528092919081815260200182805461152e9061452f565b801561157b5780601f106115505761010080835404028352916020019161157b565b820191906000526020600020905b81548152906001019060200180831161155e57829003601f168201915b5050505050905090565b60075481565b61159d6115966123a7565b83836129ad565b5050565b6115b26115ac6123a7565b83612468565b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890614226565b60405180910390fd5b6115fd84848484612b1a565b50505050565b61160b6123a7565b73ffffffffffffffffffffffffffffffffffffffff166116296114c9565b73ffffffffffffffffffffffffffffffffffffffff161461167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167690614166565b60405180910390fd5b80600a8190555050565b600660159054906101000a900460ff1681565b606060086116a983612b76565b6040516020016116ba929190613d87565b6040516020818303038152906040529050919050565b600880546116dd9061452f565b80601f01602080910402602001604051908101604052809291908181526020018280546117099061452f565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b505050505081565b6117666123a7565b73ffffffffffffffffffffffffffffffffffffffff166117846114c9565b73ffffffffffffffffffffffffffffffffffffffff16146117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190614166565b60405180910390fd5b6117e26110c6565b15611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990614046565b60405180910390fd5b60006003811115611836576118356146a2565b5b600660159054906101000a900460ff166003811115611858576118576146a2565b5b1480611897575060016003811115611873576118726146a2565b5b600660159054906101000a900460ff166003811115611895576118946146a2565b5b145b6118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd906141e6565b60405180910390fd5b60005b82829050811015611a1e57600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d6886868681811061193857611937614700565b5b905060400201602001356040518263ffffffff1660e01b815260040161195e9190614266565b6040805180830381600087803b15801561197757600080fd5b505af115801561198b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119af919061374f565b9150915060008290505b81811015611a08576119f58686868181106119d7576119d6614700565b5b90506040020160000160208101906119ef919061335b565b8261216d565b8080611a0090614592565b9150506119b9565b5050508080611a1690614592565b9150506118d9565b505050565b6060604051806080016040528060438152602001614eb960439139905090565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611abb9190613dec565b60206040518083038186803b158015611ad357600080fd5b505afa158015611ae7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0b91906135f2565b73ffffffffffffffffffffffffffffffffffffffff161415611b31576001915050611b3f565b611b3b8484612cd7565b9150505b92915050565b611b4d6123a7565b73ffffffffffffffffffffffffffffffffffffffff16611b6b6114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890614166565b60405180910390fd5b611bc96110c6565b15611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090614046565b60405180910390fd5b60006003811115611c1d57611c1c6146a2565b5b600660159054906101000a900460ff166003811115611c3f57611c3e6146a2565b5b14611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906140c6565b60405180910390fd5b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3df656d6040518163ffffffff1660e01b8152600401604080518083038186803b158015611ce957600080fd5b505afa158015611cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d21919061374f565b91509150808383611d32919061436b565b1115611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a90614246565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ea50e78c846040518263ffffffff1660e01b8152600401611dce9190614266565b600060405180830381600087803b158015611de857600080fd5b505af1158015611dfc573d6000803e3d6000fd5b5050505060008290505b8284611e12919061436b565b811015611e3657611e23338261216d565b8080611e2e90614592565b915050611e06565b50505050565b611e446123a7565b73ffffffffffffffffffffffffffffffffffffffff16611e626114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90614166565b60405180910390fd5b600660159054906101000a900460ff166003811115611eda57611ed96146a2565b5b816003811115611eed57611eec6146a2565b5b11611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490614186565b60405180910390fd5b80600660156101000a81548160ff02191690836003811115611f5257611f516146a2565b5b0217905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f11cb0af826040518263ffffffff1660e01b8152600401611fb29190613e6e565b600060405180830381600087803b158015611fcc57600080fd5b505af1158015611fe0573d6000803e3d6000fd5b5050505050565b600181565b611ff46123a7565b73ffffffffffffffffffffffffffffffffffffffff166120126114c9565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614166565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90613f46565b60405180910390fd5b6120e181612844565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612164828461215f8733612d6b565b612d9e565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d4906140e6565b60405180910390fd5b6121e68161233b565b15612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90613f66565b60405180910390fd5b61223260008383612db5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612282919061436b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612422836110dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124738261233b565b6124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990614006565b60405180910390fd5b60006124bd836110dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061252c57508373ffffffffffffffffffffffffffffffffffffffff1661251484610be2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061253d575061253c8185611a43565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612566826110dd565b73ffffffffffffffffffffffffffffffffffffffff16146125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b3906141a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390613fc6565b60405180910390fd5b612637838383612db5565b6126426000826123af565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461269291906143f2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e9919061436b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6127aa6110c6565b6127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090613f06565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61282d6123a7565b60405161283a9190613dec565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129126110c6565b15612952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294990614046565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129966123a7565b6040516129a39190613dec565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1390613fe6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b0d9190613e53565b60405180910390a3505050565b612b25848484612546565b612b3184848484612e0d565b612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790613f26565b60405180910390fd5b50505050565b60606000821415612bbe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cd2565b600082905060005b60008214612bf0578080612bd990614592565b915050600a82612be991906143c1565b9150612bc6565b60008167ffffffffffffffff811115612c0c57612c0b61472f565b5b6040519080825280601f01601f191660200182016040528015612c3e5781602001600182028036833780820191505090505b5090505b60008514612ccb57600182612c5791906143f2565b9150600a85612c669190614613565b6030612c72919061436b565b60f81b818381518110612c8857612c87614700565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cc491906143c1565b9450612c42565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008282604051602001612d80929190613dc0565b60405160208183030381529060405280519060200120905092915050565b600082612dab8584612fa4565b1490509392505050565b612dc0838383613057565b612dc86110c6565b15612e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dff90613ee6565b60405180910390fd5b505050565b6000612e2e8473ffffffffffffffffffffffffffffffffffffffff1661305c565b15612f97578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e576123a7565b8786866040518563ffffffff1660e01b8152600401612e799493929190613e07565b602060405180830381600087803b158015612e9357600080fd5b505af1925050508015612ec457506040513d601f19601f82011682018060405250810190612ec191906135c5565b60015b612f47573d8060008114612ef4576040519150601f19603f3d011682016040523d82523d6000602084013e612ef9565b606091505b50600081511415612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3690613f26565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f9c565b600190505b949350505050565b60008082905060005b845181101561304c576000858281518110612fcb57612fca614700565b5b6020026020010151905080831161300c578281604051602001612fef929190613d5b565b604051602081830303815290604052805190602001209250613038565b808360405160200161301f929190613d5b565b6040516020818303038152906040528051906020012092505b50808061304490614592565b915050612fad565b508091505092915050565b505050565b600080823b905060008111915050919050565b82805461307b9061452f565b90600052602060002090601f01602090048101928261309d57600085556130e4565b82601f106130b657805160ff19168380011785556130e4565b828001600101855582156130e4579182015b828111156130e35782518255916020019190600101906130c8565b5b5090506130f191906130f5565b5090565b5b8082111561310e5760008160009055506001016130f6565b5090565b6000613125613120846142a6565b614281565b9050828152602081018484840111156131415761314061476d565b5b61314c8482856144ed565b509392505050565b6000613167613162846142d7565b614281565b9050828152602081018484840111156131835761318261476d565b5b61318e8482856144ed565b509392505050565b6000813590506131a581614e1e565b92915050565b60008083601f8401126131c1576131c0614763565b5b8235905067ffffffffffffffff8111156131de576131dd61475e565b5b6020830191508360208202830111156131fa576131f9614768565b5b9250929050565b60008083601f84011261321757613216614763565b5b8235905067ffffffffffffffff8111156132345761323361475e565b5b6020830191508360408202830111156132505761324f614768565b5b9250929050565b60008135905061326681614e35565b92915050565b60008135905061327b81614e4c565b92915050565b60008135905061329081614e63565b92915050565b6000815190506132a581614e63565b92915050565b600082601f8301126132c0576132bf614763565b5b81356132d0848260208601613112565b91505092915050565b6000815190506132e881614e7a565b92915050565b6000813590506132fd81614e91565b92915050565b600082601f83011261331857613317614763565b5b8135613328848260208601613154565b91505092915050565b60008135905061334081614ea1565b92915050565b60008151905061335581614ea1565b92915050565b60006020828403121561337157613370614777565b5b600061337f84828501613196565b91505092915050565b6000806040838503121561339f5761339e614777565b5b60006133ad85828601613196565b92505060206133be85828601613196565b9150509250929050565b6000806000606084860312156133e1576133e0614777565b5b60006133ef86828701613196565b935050602061340086828701613196565b925050604061341186828701613331565b9150509250925092565b6000806000806080858703121561343557613434614777565b5b600061344387828801613196565b945050602061345487828801613196565b935050604061346587828801613331565b925050606085013567ffffffffffffffff81111561348657613485614772565b5b613492878288016132ab565b91505092959194509250565b600080604083850312156134b5576134b4614777565b5b60006134c385828601613196565b92505060206134d485828601613257565b9150509250929050565b600080604083850312156134f5576134f4614777565b5b600061350385828601613196565b925050602061351485828601613331565b9150509250929050565b6000806020838503121561353557613534614777565b5b600083013567ffffffffffffffff81111561355357613552614772565b5b61355f85828601613201565b92509250509250929050565b60006020828403121561358157613580614777565b5b600061358f8482850161326c565b91505092915050565b6000602082840312156135ae576135ad614777565b5b60006135bc84828501613281565b91505092915050565b6000602082840312156135db576135da614777565b5b60006135e984828501613296565b91505092915050565b60006020828403121561360857613607614777565b5b6000613616848285016132d9565b91505092915050565b60006020828403121561363557613634614777565b5b6000613643848285016132ee565b91505092915050565b60006020828403121561366257613661614777565b5b600082013567ffffffffffffffff8111156136805761367f614772565b5b61368c84828501613303565b91505092915050565b6000602082840312156136ab576136aa614777565b5b60006136b984828501613331565b91505092915050565b6000602082840312156136d8576136d7614777565b5b60006136e684828501613346565b91505092915050565b60008060006040848603121561370857613707614777565b5b600061371686828701613331565b935050602084013567ffffffffffffffff81111561373757613736614772565b5b613743868287016131ab565b92509250509250925092565b6000806040838503121561376657613765614777565b5b600061377485828601613346565b925050602061378585828601613346565b9150509250929050565b61379881614426565b82525050565b6137af6137aa82614426565b6145db565b82525050565b6137be81614438565b82525050565b6137d56137d082614444565b6145ed565b82525050565b60006137e68261431d565b6137f08185614333565b93506138008185602086016144fc565b6138098161477c565b840191505092915050565b61381d816144c9565b82525050565b61382c816144db565b82525050565b600061383d82614328565b613847818561434f565b93506138578185602086016144fc565b6138608161477c565b840191505092915050565b600061387682614328565b6138808185614360565b93506138908185602086016144fc565b80840191505092915050565b600081546138a98161452f565b6138b38186614360565b945060018216600081146138ce57600181146138df57613912565b60ff19831686528186019350613912565b6138e885614308565b60005b8381101561390a578154818901526001820191506020810190506138eb565b838801955050505b50505092915050565b6000613928600e8361434f565b91506139338261479a565b602082019050919050565b600061394b602b8361434f565b9150613956826147c3565b604082019050919050565b600061396e60148361434f565b915061397982614812565b602082019050919050565b600061399160328361434f565b915061399c8261483b565b604082019050919050565b60006139b460268361434f565b91506139bf8261488a565b604082019050919050565b60006139d7601c8361434f565b91506139e2826148d9565b602082019050919050565b60006139fa600f8361434f565b9150613a0582614902565b602082019050919050565b6000613a1d60148361434f565b9150613a288261492b565b602082019050919050565b6000613a4060248361434f565b9150613a4b82614954565b604082019050919050565b6000613a6360198361434f565b9150613a6e826149a3565b602082019050919050565b6000613a86602c8361434f565b9150613a91826149cc565b604082019050919050565b6000613aa9601f8361434f565b9150613ab482614a1b565b602082019050919050565b6000613acc60108361434f565b9150613ad782614a44565b602082019050919050565b6000613aef60388361434f565b9150613afa82614a6d565b604082019050919050565b6000613b12602a8361434f565b9150613b1d82614abc565b604082019050919050565b6000613b3560298361434f565b9150613b4082614b0b565b604082019050919050565b6000613b58600f8361434f565b9150613b6382614b5a565b602082019050919050565b6000613b7b60208361434f565b9150613b8682614b83565b602082019050919050565b6000613b9e60198361434f565b9150613ba982614bac565b602082019050919050565b6000613bc1600e8361434f565b9150613bcc82614bd5565b602082019050919050565b6000613be4602c8361434f565b9150613bef82614bfe565b604082019050919050565b6000613c0760208361434f565b9150613c1282614c4d565b602082019050919050565b6000613c2a60138361434f565b9150613c3582614c76565b602082019050919050565b6000613c4d60298361434f565b9150613c5882614c9f565b604082019050919050565b6000613c7060218361434f565b9150613c7b82614cee565b604082019050919050565b6000613c9360148361434f565b9150613c9e82614d3d565b602082019050919050565b6000613cb6600083614344565b9150613cc182614d66565b600082019050919050565b6000613cd960108361434f565b9150613ce482614d69565b602082019050919050565b6000613cfc60318361434f565b9150613d0782614d92565b604082019050919050565b6000613d1f601d8361434f565b9150613d2a82614de1565b602082019050919050565b613d3e816144bf565b82525050565b613d55613d50826144bf565b614609565b82525050565b6000613d6782856137c4565b602082019150613d7782846137c4565b6020820191508190509392505050565b6000613d93828561389c565b9150613d9f828461386b565b91508190509392505050565b6000613db682613ca9565b9150819050919050565b6000613dcc8285613d44565b602082019150613ddc828461379e565b6014820191508190509392505050565b6000602082019050613e01600083018461378f565b92915050565b6000608082019050613e1c600083018761378f565b613e29602083018661378f565b613e366040830185613d35565b8181036060830152613e4881846137db565b905095945050505050565b6000602082019050613e6860008301846137b5565b92915050565b6000602082019050613e836000830184613814565b92915050565b6000602082019050613e9e6000830184613823565b92915050565b60006020820190508181036000830152613ebe8184613832565b905092915050565b60006020820190508181036000830152613edf8161391b565b9050919050565b60006020820190508181036000830152613eff8161393e565b9050919050565b60006020820190508181036000830152613f1f81613961565b9050919050565b60006020820190508181036000830152613f3f81613984565b9050919050565b60006020820190508181036000830152613f5f816139a7565b9050919050565b60006020820190508181036000830152613f7f816139ca565b9050919050565b60006020820190508181036000830152613f9f816139ed565b9050919050565b60006020820190508181036000830152613fbf81613a10565b9050919050565b60006020820190508181036000830152613fdf81613a33565b9050919050565b60006020820190508181036000830152613fff81613a56565b9050919050565b6000602082019050818103600083015261401f81613a79565b9050919050565b6000602082019050818103600083015261403f81613a9c565b9050919050565b6000602082019050818103600083015261405f81613abf565b9050919050565b6000602082019050818103600083015261407f81613ae2565b9050919050565b6000602082019050818103600083015261409f81613b05565b9050919050565b600060208201905081810360008301526140bf81613b28565b9050919050565b600060208201905081810360008301526140df81613b4b565b9050919050565b600060208201905081810360008301526140ff81613b6e565b9050919050565b6000602082019050818103600083015261411f81613b91565b9050919050565b6000602082019050818103600083015261413f81613bb4565b9050919050565b6000602082019050818103600083015261415f81613bd7565b9050919050565b6000602082019050818103600083015261417f81613bfa565b9050919050565b6000602082019050818103600083015261419f81613c1d565b9050919050565b600060208201905081810360008301526141bf81613c40565b9050919050565b600060208201905081810360008301526141df81613c63565b9050919050565b600060208201905081810360008301526141ff81613c86565b9050919050565b6000602082019050818103600083015261421f81613ccc565b9050919050565b6000602082019050818103600083015261423f81613cef565b9050919050565b6000602082019050818103600083015261425f81613d12565b9050919050565b600060208201905061427b6000830184613d35565b92915050565b600061428b61429c565b90506142978282614561565b919050565b6000604051905090565b600067ffffffffffffffff8211156142c1576142c061472f565b5b6142ca8261477c565b9050602081019050919050565b600067ffffffffffffffff8211156142f2576142f161472f565b5b6142fb8261477c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614376826144bf565b9150614381836144bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143b6576143b5614644565b5b828201905092915050565b60006143cc826144bf565b91506143d7836144bf565b9250826143e7576143e6614673565b5b828204905092915050565b60006143fd826144bf565b9150614408836144bf565b92508282101561441b5761441a614644565b5b828203905092915050565b60006144318261449f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061448582614426565b9050919050565b600081905061449a82614e0a565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006144d48261448c565b9050919050565b60006144e6826144bf565b9050919050565b82818337600083830152505050565b60005b8381101561451a5780820151818401526020810190506144ff565b83811115614529576000848401525b50505050565b6000600282049050600182168061454757607f821691505b6020821081141561455b5761455a6146d1565b5b50919050565b61456a8261477c565b810181811067ffffffffffffffff821117156145895761458861472f565b5b80604052505050565b600061459d826144bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145d0576145cf614644565b5b600182019050919050565b60006145e6826145f7565b9050919050565b6000819050919050565b60006146028261478d565b9050919050565b6000819050919050565b600061461e826144bf565b9150614629836144bf565b92508261463957614638614673565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4d696e74206e6f74206d61696e74656e616e6365000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420696e207468652077686974656c69737400600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74206e6f7420636c6f7365640000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53746174652063616e277420676f206261636b00000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420636c6f736564206f7220616374697665000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820726573657276656420676f6473206c656674000000600082015250565b60048110614e1b57614e1a6146a2565b5b50565b614e2781614426565b8114614e3257600080fd5b50565b614e3e81614438565b8114614e4957600080fd5b50565b614e5581614444565b8114614e6057600080fd5b50565b614e6c8161444e565b8114614e7757600080fd5b50565b614e838161447a565b8114614e8e57600080fd5b50565b60048110614e9e57600080fd5b50565b614eaa816144bf565b8114614eb557600080fd5b5056fe68747470733a2f2f697066732e696f2f697066732f516d625a77505a674b5336594a6b54325534566d7038377564413643667934547536334b4b447634516e6e635532a2646970667358221220a6d4453a34f81657fa3984878e37a7f8e52fa0e4516cc11c25b7454f4137f26b64736f6c63430008070033000000000000000000000000f34efcd569f41c0313a87bd19ac34073caeee9c2000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000001118f178fb48000000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62345543534e4d75447a35734e6b334e6768326b6b426b557a4e6372596e4e474b636b5a513443724a326b452f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063d547cfb711610095578063ea50e78c11610064578063ea50e78c1461068c578063f11cb0af146106b5578063f28ba283146106de578063f2fde38b14610709576101e3565b8063d547cfb7146105d0578063e0c9ffc6146105fb578063e8a3d48514610624578063e985e9c51461064f576101e3565b8063b88d4fde116100d1578063b88d4fde14610516578063bb1ee47b1461053f578063c051e38a14610568578063c87b56dd14610593576101e3565b80638da5cb5b1461046c57806395d89b4114610497578063a035b1fe146104c2578063a22cb465146104ed576101e3565b806342842e0e1161017a57806370a082311161014957806370a08231146103f7578063715018a6146104345780638456cb591461044b578063853828b614610462576101e3565b806342842e0e1461033d57806355f804b3146103665780635c975abb1461038f5780636352211e146103ba576101e3565b8063095ea7b3116101b6578063095ea7b3146102a957806318160ddd146102d257806323b872dd146102fd5780633f4ba83a14610326576101e3565b806301ffc9a7146101e8578063061431a81461022557806306fdde0314610241578063081812fc1461026c575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613598565b610732565b60405161021c9190613e53565b60405180910390f35b61023f600480360381019061023a91906136ef565b610814565b005b34801561024d57600080fd5b50610256610b50565b6040516102639190613ea4565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190613695565b610be2565b6040516102a09190613dec565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb91906134de565b610c67565b005b3480156102de57600080fd5b506102e7610d7f565b6040516102f49190614266565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906133c8565b610e26565b005b34801561033257600080fd5b5061033b610e86565b005b34801561034957600080fd5b50610364600480360381019061035f91906133c8565b610f0c565b005b34801561037257600080fd5b5061038d6004803603810190610388919061364c565b610f2c565b005b34801561039b57600080fd5b506103a46110c6565b6040516103b19190613e53565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190613695565b6110dd565b6040516103ee9190613dec565b60405180910390f35b34801561040357600080fd5b5061041e6004803603810190610419919061335b565b61118f565b60405161042b9190614266565b60405180910390f35b34801561044057600080fd5b50610449611247565b005b34801561045757600080fd5b506104606112cf565b005b61046a611355565b005b34801561047857600080fd5b506104816114c9565b60405161048e9190613dec565b60405180910390f35b3480156104a357600080fd5b506104ac6114f3565b6040516104b99190613ea4565b60405180910390f35b3480156104ce57600080fd5b506104d7611585565b6040516104e49190614266565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f919061349e565b61158b565b005b34801561052257600080fd5b5061053d6004803603810190610538919061341b565b6115a1565b005b34801561054b57600080fd5b506105666004803603810190610561919061356b565b611603565b005b34801561057457600080fd5b5061057d611689565b60405161058a9190613e6e565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613695565b61169c565b6040516105c79190613ea4565b60405180910390f35b3480156105dc57600080fd5b506105e56116d0565b6040516105f29190613ea4565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d919061351e565b61175e565b005b34801561063057600080fd5b50610639611a23565b6040516106469190613ea4565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190613388565b611a43565b6040516106839190613e53565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190613695565b611b45565b005b3480156106c157600080fd5b506106dc60048036038101906106d7919061361f565b611e3c565b005b3480156106ea57600080fd5b506106f3611fe7565b6040516107009190614266565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061335b565b611fec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080d575061080c826120e4565b5b9050919050565b61081c6110c6565b1561085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085390614046565b60405180910390fd5b600160038111156108705761086f6146a2565b5b600660159054906101000a900460ff166003811115610892576108916146a2565b5b146108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c990613f86565b60405180910390fd5b61092083600a54848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061214e565b61095f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095690614026565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990613ec6565b60405180910390fd5b6007543414610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90614126565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d6860016040518263ffffffff1660e01b8152600401610aec9190613e89565b6040805180830381600087803b158015610b0557600080fd5b505af1158015610b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3d919061374f565b509050610b4a338261216d565b50505050565b606060008054610b5f9061452f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b9061452f565b8015610bd85780601f10610bad57610100808354040283529160200191610bd8565b820191906000526020600020905b815481529060010190602001808311610bbb57829003601f168201915b5050505050905090565b6000610bed8261233b565b610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390614146565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c72826110dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda906141c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d026123a7565b73ffffffffffffffffffffffffffffffffffffffff161480610d315750610d3081610d2b6123a7565b611a43565b5b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614066565b60405180910390fd5b610d7a83836123af565b505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166326987b606040518163ffffffff1660e01b815260040160206040518083038186803b158015610de957600080fd5b505afa158015610dfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2191906136c2565b905090565b610e37610e316123a7565b82612468565b610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90614226565b60405180910390fd5b610e81838383612546565b505050565b610e8e6123a7565b73ffffffffffffffffffffffffffffffffffffffff16610eac6114c9565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990614166565b60405180910390fd5b610f0a6127a2565b565b610f27838383604051806020016040528060008152506115a1565b505050565b610f346123a7565b73ffffffffffffffffffffffffffffffffffffffff16610f526114c9565b73ffffffffffffffffffffffffffffffffffffffff1614610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90614166565b60405180910390fd5b60026003811115610fbc57610fbb6146a2565b5b600660159054906101000a900460ff166003811115610fde57610fdd6146a2565b5b1461101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590613fa6565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166349a5980a60016040518263ffffffff1660e01b815260040161107a9190613e53565b600060405180830381600087803b15801561109457600080fd5b505af11580156110a8573d6000803e3d6000fd5b5050505080600890805190602001906110c292919061306f565b5050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906140a6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790614086565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61124f6123a7565b73ffffffffffffffffffffffffffffffffffffffff1661126d6114c9565b73ffffffffffffffffffffffffffffffffffffffff16146112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90614166565b60405180910390fd5b6112cd6000612844565b565b6112d76123a7565b73ffffffffffffffffffffffffffffffffffffffff166112f56114c9565b73ffffffffffffffffffffffffffffffffffffffff161461134b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134290614166565b60405180910390fd5b61135361290a565b565b61135d6123a7565b73ffffffffffffffffffffffffffffffffffffffff1661137b6114c9565b73ffffffffffffffffffffffffffffffffffffffff16146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890614166565b60405180910390fd5b600047905060008111611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090614106565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff168260405161143f90613dab565b60006040518083038185875af1925050503d806000811461147c576040519150601f19603f3d011682016040523d82523d6000602084013e611481565b606091505b50509050806114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614206565b60405180910390fd5b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115029061452f565b80601f016020809104026020016040519081016040528092919081815260200182805461152e9061452f565b801561157b5780601f106115505761010080835404028352916020019161157b565b820191906000526020600020905b81548152906001019060200180831161155e57829003601f168201915b5050505050905090565b60075481565b61159d6115966123a7565b83836129ad565b5050565b6115b26115ac6123a7565b83612468565b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890614226565b60405180910390fd5b6115fd84848484612b1a565b50505050565b61160b6123a7565b73ffffffffffffffffffffffffffffffffffffffff166116296114c9565b73ffffffffffffffffffffffffffffffffffffffff161461167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167690614166565b60405180910390fd5b80600a8190555050565b600660159054906101000a900460ff1681565b606060086116a983612b76565b6040516020016116ba929190613d87565b6040516020818303038152906040529050919050565b600880546116dd9061452f565b80601f01602080910402602001604051908101604052809291908181526020018280546117099061452f565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b505050505081565b6117666123a7565b73ffffffffffffffffffffffffffffffffffffffff166117846114c9565b73ffffffffffffffffffffffffffffffffffffffff16146117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190614166565b60405180910390fd5b6117e26110c6565b15611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990614046565b60405180910390fd5b60006003811115611836576118356146a2565b5b600660159054906101000a900460ff166003811115611858576118576146a2565b5b1480611897575060016003811115611873576118726146a2565b5b600660159054906101000a900460ff166003811115611895576118946146a2565b5b145b6118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd906141e6565b60405180910390fd5b60005b82829050811015611a1e57600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d6886868681811061193857611937614700565b5b905060400201602001356040518263ffffffff1660e01b815260040161195e9190614266565b6040805180830381600087803b15801561197757600080fd5b505af115801561198b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119af919061374f565b9150915060008290505b81811015611a08576119f58686868181106119d7576119d6614700565b5b90506040020160000160208101906119ef919061335b565b8261216d565b8080611a0090614592565b9150506119b9565b5050508080611a1690614592565b9150506118d9565b505050565b6060604051806080016040528060438152602001614eb960439139905090565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611abb9190613dec565b60206040518083038186803b158015611ad357600080fd5b505afa158015611ae7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0b91906135f2565b73ffffffffffffffffffffffffffffffffffffffff161415611b31576001915050611b3f565b611b3b8484612cd7565b9150505b92915050565b611b4d6123a7565b73ffffffffffffffffffffffffffffffffffffffff16611b6b6114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890614166565b60405180910390fd5b611bc96110c6565b15611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090614046565b60405180910390fd5b60006003811115611c1d57611c1c6146a2565b5b600660159054906101000a900460ff166003811115611c3f57611c3e6146a2565b5b14611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906140c6565b60405180910390fd5b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3df656d6040518163ffffffff1660e01b8152600401604080518083038186803b158015611ce957600080fd5b505afa158015611cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d21919061374f565b91509150808383611d32919061436b565b1115611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a90614246565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ea50e78c846040518263ffffffff1660e01b8152600401611dce9190614266565b600060405180830381600087803b158015611de857600080fd5b505af1158015611dfc573d6000803e3d6000fd5b5050505060008290505b8284611e12919061436b565b811015611e3657611e23338261216d565b8080611e2e90614592565b915050611e06565b50505050565b611e446123a7565b73ffffffffffffffffffffffffffffffffffffffff16611e626114c9565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90614166565b60405180910390fd5b600660159054906101000a900460ff166003811115611eda57611ed96146a2565b5b816003811115611eed57611eec6146a2565b5b11611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490614186565b60405180910390fd5b80600660156101000a81548160ff02191690836003811115611f5257611f516146a2565b5b0217905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f11cb0af826040518263ffffffff1660e01b8152600401611fb29190613e6e565b600060405180830381600087803b158015611fcc57600080fd5b505af1158015611fe0573d6000803e3d6000fd5b5050505050565b600181565b611ff46123a7565b73ffffffffffffffffffffffffffffffffffffffff166120126114c9565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614166565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90613f46565b60405180910390fd5b6120e181612844565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612164828461215f8733612d6b565b612d9e565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d4906140e6565b60405180910390fd5b6121e68161233b565b15612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90613f66565b60405180910390fd5b61223260008383612db5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612282919061436b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612422836110dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124738261233b565b6124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990614006565b60405180910390fd5b60006124bd836110dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061252c57508373ffffffffffffffffffffffffffffffffffffffff1661251484610be2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061253d575061253c8185611a43565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612566826110dd565b73ffffffffffffffffffffffffffffffffffffffff16146125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b3906141a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390613fc6565b60405180910390fd5b612637838383612db5565b6126426000826123af565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461269291906143f2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e9919061436b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6127aa6110c6565b6127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090613f06565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61282d6123a7565b60405161283a9190613dec565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129126110c6565b15612952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294990614046565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129966123a7565b6040516129a39190613dec565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1390613fe6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b0d9190613e53565b60405180910390a3505050565b612b25848484612546565b612b3184848484612e0d565b612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790613f26565b60405180910390fd5b50505050565b60606000821415612bbe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cd2565b600082905060005b60008214612bf0578080612bd990614592565b915050600a82612be991906143c1565b9150612bc6565b60008167ffffffffffffffff811115612c0c57612c0b61472f565b5b6040519080825280601f01601f191660200182016040528015612c3e5781602001600182028036833780820191505090505b5090505b60008514612ccb57600182612c5791906143f2565b9150600a85612c669190614613565b6030612c72919061436b565b60f81b818381518110612c8857612c87614700565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cc491906143c1565b9450612c42565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008282604051602001612d80929190613dc0565b60405160208183030381529060405280519060200120905092915050565b600082612dab8584612fa4565b1490509392505050565b612dc0838383613057565b612dc86110c6565b15612e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dff90613ee6565b60405180910390fd5b505050565b6000612e2e8473ffffffffffffffffffffffffffffffffffffffff1661305c565b15612f97578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e576123a7565b8786866040518563ffffffff1660e01b8152600401612e799493929190613e07565b602060405180830381600087803b158015612e9357600080fd5b505af1925050508015612ec457506040513d601f19601f82011682018060405250810190612ec191906135c5565b60015b612f47573d8060008114612ef4576040519150601f19603f3d011682016040523d82523d6000602084013e612ef9565b606091505b50600081511415612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3690613f26565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f9c565b600190505b949350505050565b60008082905060005b845181101561304c576000858281518110612fcb57612fca614700565b5b6020026020010151905080831161300c578281604051602001612fef929190613d5b565b604051602081830303815290604052805190602001209250613038565b808360405160200161301f929190613d5b565b6040516020818303038152906040528051906020012092505b50808061304490614592565b915050612fad565b508091505092915050565b505050565b600080823b905060008111915050919050565b82805461307b9061452f565b90600052602060002090601f01602090048101928261309d57600085556130e4565b82601f106130b657805160ff19168380011785556130e4565b828001600101855582156130e4579182015b828111156130e35782518255916020019190600101906130c8565b5b5090506130f191906130f5565b5090565b5b8082111561310e5760008160009055506001016130f6565b5090565b6000613125613120846142a6565b614281565b9050828152602081018484840111156131415761314061476d565b5b61314c8482856144ed565b509392505050565b6000613167613162846142d7565b614281565b9050828152602081018484840111156131835761318261476d565b5b61318e8482856144ed565b509392505050565b6000813590506131a581614e1e565b92915050565b60008083601f8401126131c1576131c0614763565b5b8235905067ffffffffffffffff8111156131de576131dd61475e565b5b6020830191508360208202830111156131fa576131f9614768565b5b9250929050565b60008083601f84011261321757613216614763565b5b8235905067ffffffffffffffff8111156132345761323361475e565b5b6020830191508360408202830111156132505761324f614768565b5b9250929050565b60008135905061326681614e35565b92915050565b60008135905061327b81614e4c565b92915050565b60008135905061329081614e63565b92915050565b6000815190506132a581614e63565b92915050565b600082601f8301126132c0576132bf614763565b5b81356132d0848260208601613112565b91505092915050565b6000815190506132e881614e7a565b92915050565b6000813590506132fd81614e91565b92915050565b600082601f83011261331857613317614763565b5b8135613328848260208601613154565b91505092915050565b60008135905061334081614ea1565b92915050565b60008151905061335581614ea1565b92915050565b60006020828403121561337157613370614777565b5b600061337f84828501613196565b91505092915050565b6000806040838503121561339f5761339e614777565b5b60006133ad85828601613196565b92505060206133be85828601613196565b9150509250929050565b6000806000606084860312156133e1576133e0614777565b5b60006133ef86828701613196565b935050602061340086828701613196565b925050604061341186828701613331565b9150509250925092565b6000806000806080858703121561343557613434614777565b5b600061344387828801613196565b945050602061345487828801613196565b935050604061346587828801613331565b925050606085013567ffffffffffffffff81111561348657613485614772565b5b613492878288016132ab565b91505092959194509250565b600080604083850312156134b5576134b4614777565b5b60006134c385828601613196565b92505060206134d485828601613257565b9150509250929050565b600080604083850312156134f5576134f4614777565b5b600061350385828601613196565b925050602061351485828601613331565b9150509250929050565b6000806020838503121561353557613534614777565b5b600083013567ffffffffffffffff81111561355357613552614772565b5b61355f85828601613201565b92509250509250929050565b60006020828403121561358157613580614777565b5b600061358f8482850161326c565b91505092915050565b6000602082840312156135ae576135ad614777565b5b60006135bc84828501613281565b91505092915050565b6000602082840312156135db576135da614777565b5b60006135e984828501613296565b91505092915050565b60006020828403121561360857613607614777565b5b6000613616848285016132d9565b91505092915050565b60006020828403121561363557613634614777565b5b6000613643848285016132ee565b91505092915050565b60006020828403121561366257613661614777565b5b600082013567ffffffffffffffff8111156136805761367f614772565b5b61368c84828501613303565b91505092915050565b6000602082840312156136ab576136aa614777565b5b60006136b984828501613331565b91505092915050565b6000602082840312156136d8576136d7614777565b5b60006136e684828501613346565b91505092915050565b60008060006040848603121561370857613707614777565b5b600061371686828701613331565b935050602084013567ffffffffffffffff81111561373757613736614772565b5b613743868287016131ab565b92509250509250925092565b6000806040838503121561376657613765614777565b5b600061377485828601613346565b925050602061378585828601613346565b9150509250929050565b61379881614426565b82525050565b6137af6137aa82614426565b6145db565b82525050565b6137be81614438565b82525050565b6137d56137d082614444565b6145ed565b82525050565b60006137e68261431d565b6137f08185614333565b93506138008185602086016144fc565b6138098161477c565b840191505092915050565b61381d816144c9565b82525050565b61382c816144db565b82525050565b600061383d82614328565b613847818561434f565b93506138578185602086016144fc565b6138608161477c565b840191505092915050565b600061387682614328565b6138808185614360565b93506138908185602086016144fc565b80840191505092915050565b600081546138a98161452f565b6138b38186614360565b945060018216600081146138ce57600181146138df57613912565b60ff19831686528186019350613912565b6138e885614308565b60005b8381101561390a578154818901526001820191506020810190506138eb565b838801955050505b50505092915050565b6000613928600e8361434f565b91506139338261479a565b602082019050919050565b600061394b602b8361434f565b9150613956826147c3565b604082019050919050565b600061396e60148361434f565b915061397982614812565b602082019050919050565b600061399160328361434f565b915061399c8261483b565b604082019050919050565b60006139b460268361434f565b91506139bf8261488a565b604082019050919050565b60006139d7601c8361434f565b91506139e2826148d9565b602082019050919050565b60006139fa600f8361434f565b9150613a0582614902565b602082019050919050565b6000613a1d60148361434f565b9150613a288261492b565b602082019050919050565b6000613a4060248361434f565b9150613a4b82614954565b604082019050919050565b6000613a6360198361434f565b9150613a6e826149a3565b602082019050919050565b6000613a86602c8361434f565b9150613a91826149cc565b604082019050919050565b6000613aa9601f8361434f565b9150613ab482614a1b565b602082019050919050565b6000613acc60108361434f565b9150613ad782614a44565b602082019050919050565b6000613aef60388361434f565b9150613afa82614a6d565b604082019050919050565b6000613b12602a8361434f565b9150613b1d82614abc565b604082019050919050565b6000613b3560298361434f565b9150613b4082614b0b565b604082019050919050565b6000613b58600f8361434f565b9150613b6382614b5a565b602082019050919050565b6000613b7b60208361434f565b9150613b8682614b83565b602082019050919050565b6000613b9e60198361434f565b9150613ba982614bac565b602082019050919050565b6000613bc1600e8361434f565b9150613bcc82614bd5565b602082019050919050565b6000613be4602c8361434f565b9150613bef82614bfe565b604082019050919050565b6000613c0760208361434f565b9150613c1282614c4d565b602082019050919050565b6000613c2a60138361434f565b9150613c3582614c76565b602082019050919050565b6000613c4d60298361434f565b9150613c5882614c9f565b604082019050919050565b6000613c7060218361434f565b9150613c7b82614cee565b604082019050919050565b6000613c9360148361434f565b9150613c9e82614d3d565b602082019050919050565b6000613cb6600083614344565b9150613cc182614d66565b600082019050919050565b6000613cd960108361434f565b9150613ce482614d69565b602082019050919050565b6000613cfc60318361434f565b9150613d0782614d92565b604082019050919050565b6000613d1f601d8361434f565b9150613d2a82614de1565b602082019050919050565b613d3e816144bf565b82525050565b613d55613d50826144bf565b614609565b82525050565b6000613d6782856137c4565b602082019150613d7782846137c4565b6020820191508190509392505050565b6000613d93828561389c565b9150613d9f828461386b565b91508190509392505050565b6000613db682613ca9565b9150819050919050565b6000613dcc8285613d44565b602082019150613ddc828461379e565b6014820191508190509392505050565b6000602082019050613e01600083018461378f565b92915050565b6000608082019050613e1c600083018761378f565b613e29602083018661378f565b613e366040830185613d35565b8181036060830152613e4881846137db565b905095945050505050565b6000602082019050613e6860008301846137b5565b92915050565b6000602082019050613e836000830184613814565b92915050565b6000602082019050613e9e6000830184613823565b92915050565b60006020820190508181036000830152613ebe8184613832565b905092915050565b60006020820190508181036000830152613edf8161391b565b9050919050565b60006020820190508181036000830152613eff8161393e565b9050919050565b60006020820190508181036000830152613f1f81613961565b9050919050565b60006020820190508181036000830152613f3f81613984565b9050919050565b60006020820190508181036000830152613f5f816139a7565b9050919050565b60006020820190508181036000830152613f7f816139ca565b9050919050565b60006020820190508181036000830152613f9f816139ed565b9050919050565b60006020820190508181036000830152613fbf81613a10565b9050919050565b60006020820190508181036000830152613fdf81613a33565b9050919050565b60006020820190508181036000830152613fff81613a56565b9050919050565b6000602082019050818103600083015261401f81613a79565b9050919050565b6000602082019050818103600083015261403f81613a9c565b9050919050565b6000602082019050818103600083015261405f81613abf565b9050919050565b6000602082019050818103600083015261407f81613ae2565b9050919050565b6000602082019050818103600083015261409f81613b05565b9050919050565b600060208201905081810360008301526140bf81613b28565b9050919050565b600060208201905081810360008301526140df81613b4b565b9050919050565b600060208201905081810360008301526140ff81613b6e565b9050919050565b6000602082019050818103600083015261411f81613b91565b9050919050565b6000602082019050818103600083015261413f81613bb4565b9050919050565b6000602082019050818103600083015261415f81613bd7565b9050919050565b6000602082019050818103600083015261417f81613bfa565b9050919050565b6000602082019050818103600083015261419f81613c1d565b9050919050565b600060208201905081810360008301526141bf81613c40565b9050919050565b600060208201905081810360008301526141df81613c63565b9050919050565b600060208201905081810360008301526141ff81613c86565b9050919050565b6000602082019050818103600083015261421f81613ccc565b9050919050565b6000602082019050818103600083015261423f81613cef565b9050919050565b6000602082019050818103600083015261425f81613d12565b9050919050565b600060208201905061427b6000830184613d35565b92915050565b600061428b61429c565b90506142978282614561565b919050565b6000604051905090565b600067ffffffffffffffff8211156142c1576142c061472f565b5b6142ca8261477c565b9050602081019050919050565b600067ffffffffffffffff8211156142f2576142f161472f565b5b6142fb8261477c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614376826144bf565b9150614381836144bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143b6576143b5614644565b5b828201905092915050565b60006143cc826144bf565b91506143d7836144bf565b9250826143e7576143e6614673565b5b828204905092915050565b60006143fd826144bf565b9150614408836144bf565b92508282101561441b5761441a614644565b5b828203905092915050565b60006144318261449f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061448582614426565b9050919050565b600081905061449a82614e0a565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006144d48261448c565b9050919050565b60006144e6826144bf565b9050919050565b82818337600083830152505050565b60005b8381101561451a5780820151818401526020810190506144ff565b83811115614529576000848401525b50505050565b6000600282049050600182168061454757607f821691505b6020821081141561455b5761455a6146d1565b5b50919050565b61456a8261477c565b810181811067ffffffffffffffff821117156145895761458861472f565b5b80604052505050565b600061459d826144bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145d0576145cf614644565b5b600182019050919050565b60006145e6826145f7565b9050919050565b6000819050919050565b60006146028261478d565b9050919050565b6000819050919050565b600061461e826144bf565b9150614629836144bf565b92508261463957614638614673565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4d696e74206e6f74206d61696e74656e616e6365000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420696e207468652077686974656c69737400600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74206e6f7420636c6f7365640000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53746174652063616e277420676f206261636b00000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420636c6f736564206f7220616374697665000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820726573657276656420676f6473206c656674000000600082015250565b60048110614e1b57614e1a6146a2565b5b50565b614e2781614426565b8114614e3257600080fd5b50565b614e3e81614438565b8114614e4957600080fd5b50565b614e5581614444565b8114614e6057600080fd5b50565b614e6c8161444e565b8114614e7757600080fd5b50565b614e838161447a565b8114614e8e57600080fd5b50565b60048110614e9e57600080fd5b50565b614eaa816144bf565b8114614eb557600080fd5b5056fe68747470733a2f2f697066732e696f2f697066732f516d625a77505a674b5336594a6b54325534566d7038377564413643667934547536334b4b447634516e6e635532a2646970667358221220a6d4453a34f81657fa3984878e37a7f8e52fa0e4516cc11c25b7454f4137f26b64736f6c63430008070033

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

000000000000000000000000f34efcd569f41c0313a87bd19ac34073caeee9c2000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000001118f178fb48000000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62345543534e4d75447a35734e6b334e6768326b6b426b557a4e6372596e4e474b636b5a513443724a326b452f00000000000000000000

-----Decoded View---------------
Arg [0] : _genesisSupplyAddress (address): 0xF34eFCd569f41c0313A87BD19ac34073cAEEE9c2
Arg [1] : unrevealedURI (string): ipfs://Qmb4UCSNMuDz5sNk3Ngh2kkBkUzNcrYnNGKckZQ4CrJ2kE/
Arg [2] : _price (uint256): 77000000000000000
Arg [3] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000f34efcd569f41c0313a87bd19ac34073caeee9c2
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000001118f178fb48000
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [5] : 697066733a2f2f516d62345543534e4d75447a35734e6b334e6768326b6b426b
Arg [6] : 557a4e6372596e4e474b636b5a513443724a326b452f00000000000000000000


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.