ETH Price: $3,097.57 (+0.94%)
Gas: 7 Gwei

Token

Phantom Pals (PHANTOMPALS)
 

Overview

Max Total Supply

1,500 PHANTOMPALS

Holders

225

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
superflow.eth
Balance
2 PHANTOMPALS
0xe161d1D3e09273F81a8Ca3Fa772e16fF1CE3Ca83
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:
PhantomPals

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract PhantomPals is ERC721, Ownable {
    using Strings for uint256;

    address private mainWallet = 0x2f5DA370ba0837f111a3981712738d865b5Faf9E;
    uint256 public constant NFT_STOCK = 1500;
    uint256 public constant NFTS_PER_TRANS = 5;
    uint256 public constant NFTS_PER_WALLET = 25;

    string private _tokenBaseURI;
    string public _mysteryURI;

    bool public revealed = false;
    bool public giftLive = true;
    bool public firstSaleLive = false;
    bool public secondSaleLive = false;

    mapping(address => uint256) public addressMinted;

    uint256 public totalSupply;

    constructor(string memory tokenBaseURI, string memory mysteryURI) ERC721("Phantom Pals", "PHANTOMPALS") {
        _tokenBaseURI = tokenBaseURI;
        _mysteryURI = mysteryURI;
    }

    function mintGift(uint256 tokenQuantity, address wallet)
        external
        onlyOwner
    {
        require(giftLive, "GIFTING CLOSED");
        require(tokenQuantity > 0, "INVALID TOKEN QUANTITY");
        require(totalSupply <= NFT_STOCK, "OUT OF STOCK");
        require(totalSupply + tokenQuantity <= NFT_STOCK, "EXCEEDS STOCK");

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(wallet, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function mint(
        uint256 tokenQuantity
    ) external payable {
        require(totalSupply <= NFT_STOCK, "OUT OF STOCK");
        require(tokenQuantity > 0, "INVALID TOKEN QUANTITY");
        require(tokenQuantity <= NFTS_PER_TRANS, "EXCEEDS MINT AMT PER TRANSACTION");
        require(addressMinted[msg.sender] + tokenQuantity <= NFTS_PER_WALLET, "EXCEEDS YOUR 25 PALS MAX");
        if (firstSaleLive) require(totalSupply + tokenQuantity <= NFT_STOCK/2, "EXCEEDS FIRST SALE STOCK");
        else if (secondSaleLive) require(totalSupply + tokenQuantity <= NFT_STOCK, "EXCEEDS SECOND SALE STOCK");
        else require(firstSaleLive || secondSaleLive, "SALE NOT LIVE");
        
        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(msg.sender, totalSupply + i + 1);
        }

        addressMinted[msg.sender] += tokenQuantity;
        totalSupply += tokenQuantity;
    }

    function withdraw() external onlyOwner {
        uint256 currentBalance = address(this).balance;
        payable(mainWallet).transfer((currentBalance * 1000) / 1000);
    }

    function toggleFirstSaleStatus() public onlyOwner {
        firstSaleLive = !firstSaleLive;
    }

    function toggleSecondSaleStatus() public onlyOwner {
        secondSaleLive = !secondSaleLive;
    }

    function toggleGiftStatus() public onlyOwner {
        giftLive = !giftLive;
    }

    function toggleMysteryURI() public onlyOwner {
        revealed = !revealed;
    }

    function setMysteryURI(string calldata URI) public onlyOwner {
        _mysteryURI = URI;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Cannot query non-existent token");

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

        return
            string(
                abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json")
            );
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenBaseURI","type":"string"},{"internalType":"string","name":"mysteryURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NFTS_PER_TRANS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_STOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mysteryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secondSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFirstSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleGiftStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSecondSaleStatus","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052732f5da370ba0837f111a3981712738d865b5faf9e600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600a60036101000a81548160ff021916908315150217905550348015620000d257600080fd5b50604051620047ad380380620047ad8339818101604052810190620000f891906200050d565b6040518060400160405280600c81526020017f5068616e746f6d2050616c7300000000000000000000000000000000000000008152506040518060400160405280600b81526020017f5048414e544f4d50414c5300000000000000000000000000000000000000000081525081600090805190602001906200017c929190620002c0565b50806001908051906020019062000195929190620002c0565b505050620001b8620001ac620001f260201b60201c565b620001fa60201b60201c565b8160089080519060200190620001d0929190620002c0565b508060099080519060200190620001e9929190620002c0565b505050620005f7565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ce90620005c1565b90600052602060002090601f016020900481019282620002f257600085556200033e565b82601f106200030d57805160ff19168380011785556200033e565b828001600101855582156200033e579182015b828111156200033d57825182559160200191906001019062000320565b5b5090506200034d919062000351565b5090565b5b808211156200036c57600081600090555060010162000352565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003d9826200038e565b810181811067ffffffffffffffff82111715620003fb57620003fa6200039f565b5b80604052505050565b60006200041062000370565b90506200041e8282620003ce565b919050565b600067ffffffffffffffff8211156200044157620004406200039f565b5b6200044c826200038e565b9050602081019050919050565b60005b83811015620004795780820151818401526020810190506200045c565b8381111562000489576000848401525b50505050565b6000620004a6620004a08462000423565b62000404565b905082815260208101848484011115620004c557620004c462000389565b5b620004d284828562000459565b509392505050565b600082601f830112620004f257620004f162000384565b5b8151620005048482602086016200048f565b91505092915050565b600080604083850312156200052757620005266200037a565b5b600083015167ffffffffffffffff8111156200054857620005476200037f565b5b6200055685828601620004da565b925050602083015167ffffffffffffffff8111156200057a57620005796200037f565b5b6200058885828601620004da565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005da57607f821691505b60208210811415620005f157620005f062000592565b5b50919050565b6141a680620006076000396000f3fe6080604052600436106102045760003560e01c806379a94d8911610118578063bac34644116100a0578063e985e9c51161006f578063e985e9c5146106d8578063ee04064514610715578063f2fde38b1461073e578063f470eb0f14610767578063fa30297e1461079257610204565b8063bac3464414610644578063c87b56dd1461065b578063d9a2de9914610698578063e72be68a146106af57610204565b8063a22cb465116100e7578063a22cb46514610585578063a4f8eaeb146105ae578063ac57597a146105d9578063af0dd86714610604578063b88d4fde1461061b57610204565b806379a94d89146104e85780638da5cb5b1461051357806395d89b411461053e578063a0712d681461056957610204565b80633accbe221161019b578063518302271161016a578063518302271461040357806355f804b31461042e5780636352211e1461045757806370a0823114610494578063715018a6146104d157610204565b80633accbe22146103815780633ccfd60b146103ac57806342842e0e146103c357806345bcf17f146103ec57610204565b806318160ddd116101d757806318160ddd146102d757806322c072631461030257806323b872dd1461032d5780632cff9e061461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612a53565b6107cf565b60405161023d9190612a9b565b60405180910390f35b34801561025257600080fd5b5061025b6108b1565b6040516102689190612b4f565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612ba7565b610943565b6040516102a59190612c15565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612c5c565b6109c8565b005b3480156102e357600080fd5b506102ec610ae0565b6040516102f99190612cab565b60405180910390f35b34801561030e57600080fd5b50610317610ae6565b6040516103249190612cab565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612cc6565b610aeb565b005b34801561036257600080fd5b5061036b610b4b565b6040516103789190612a9b565b60405180910390f35b34801561038d57600080fd5b50610396610b5e565b6040516103a39190612cab565b60405180910390f35b3480156103b857600080fd5b506103c1610b64565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612cc6565b610c69565b005b3480156103f857600080fd5b50610401610c89565b005b34801561040f57600080fd5b50610418610d31565b6040516104259190612a9b565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612d7e565b610d44565b005b34801561046357600080fd5b5061047e60048036038101906104799190612ba7565b610dd6565b60405161048b9190612c15565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612dcb565b610e88565b6040516104c89190612cab565b60405180910390f35b3480156104dd57600080fd5b506104e6610f40565b005b3480156104f457600080fd5b506104fd610fc8565b60405161050a9190612a9b565b60405180910390f35b34801561051f57600080fd5b50610528610fdb565b6040516105359190612c15565b60405180910390f35b34801561054a57600080fd5b50610553611005565b6040516105609190612b4f565b60405180910390f35b610583600480360381019061057e9190612ba7565b611097565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612e24565b6113f3565b005b3480156105ba57600080fd5b506105c3611409565b6040516105d09190612b4f565b60405180910390f35b3480156105e557600080fd5b506105ee611497565b6040516105fb9190612a9b565b60405180910390f35b34801561061057600080fd5b506106196114aa565b005b34801561062757600080fd5b50610642600480360381019061063d9190612f94565b611552565b005b34801561065057600080fd5b506106596115b4565b005b34801561066757600080fd5b50610682600480360381019061067d9190612ba7565b61165c565b60405161068f9190612b4f565b60405180910390f35b3480156106a457600080fd5b506106ad611787565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612d7e565b61182f565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190613017565b6118c1565b60405161070c9190612a9b565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613057565b611955565b005b34801561074a57600080fd5b5061076560048036038101906107609190612dcb565b611b5b565b005b34801561077357600080fd5b5061077c611c53565b6040516107899190612cab565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190612dcb565b611c58565b6040516107c69190612cab565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611c70565b5b9050919050565b6060600080546108c0906130c6565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906130c6565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600061094e82611cda565b61098d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109849061316a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d382610dd6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906131fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a63611d46565b73ffffffffffffffffffffffffffffffffffffffff161480610a925750610a9181610a8c611d46565b6118c1565b5b610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac89061328e565b60405180910390fd5b610adb8383611d4e565b505050565b600c5481565b601981565b610afc610af6611d46565b82611e07565b610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290613320565b60405180910390fd5b610b46838383611ee5565b505050565b600a60019054906101000a900460ff1681565b6105dc81565b610b6c611d46565b73ffffffffffffffffffffffffffffffffffffffff16610b8a610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061338c565b60405180910390fd5b6000479050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e88084610c3091906133db565b610c3a9190613464565b9081150290604051600060405180830381858888f19350505050158015610c65573d6000803e3d6000fd5b5050565b610c8483838360405180602001604052806000815250611552565b505050565b610c91611d46565b73ffffffffffffffffffffffffffffffffffffffff16610caf610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc9061338c565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600a60009054906101000a900460ff1681565b610d4c611d46565b73ffffffffffffffffffffffffffffffffffffffff16610d6a610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db79061338c565b60405180910390fd5b818160089190610dd1929190612944565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690613507565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613599565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f48611d46565b73ffffffffffffffffffffffffffffffffffffffff16610f66610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb39061338c565b60405180910390fd5b610fc6600061214c565b565b600a60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611014906130c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611040906130c6565b801561108d5780601f106110625761010080835404028352916020019161108d565b820191906000526020600020905b81548152906001019060200180831161107057829003601f168201915b5050505050905090565b6105dc600c5411156110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613605565b60405180910390fd5b60008111611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613671565b60405180910390fd5b6005811115611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906136dd565b60405180910390fd5b601981600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111b291906136fd565b11156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea9061379f565b60405180910390fd5b600a60029054906101000a900460ff161561126b5760026105dc6112179190613464565b81600c5461122591906136fd565b1115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d9061380b565b60405180910390fd5b61133f565b600a60039054906101000a900460ff16156112d7576105dc81600c5461129191906136fd565b11156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990613877565b60405180910390fd5b61133e565b600a60029054906101000a900460ff16806112fe5750600a60039054906101000a900460ff165b61133d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611334906138e3565b60405180910390fd5b5b5b60005b818110156113805761136d33600183600c5461135e91906136fd565b61136891906136fd565b612212565b808061137890613903565b915050611342565b5080600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d091906136fd565b9250508190555080600c60008282546113e991906136fd565b9250508190555050565b6114056113fe611d46565b8383612230565b5050565b60098054611416906130c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611442906130c6565b801561148f5780601f106114645761010080835404028352916020019161148f565b820191906000526020600020905b81548152906001019060200180831161147257829003601f168201915b505050505081565b600a60039054906101000a900460ff1681565b6114b2611d46565b73ffffffffffffffffffffffffffffffffffffffff166114d0610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d9061338c565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b61156361155d611d46565b83611e07565b6115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990613320565b60405180910390fd5b6115ae8484848461239d565b50505050565b6115bc611d46565b73ffffffffffffffffffffffffffffffffffffffff166115da610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116279061338c565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b606061166782611cda565b6116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613998565b60405180910390fd5b60001515600a60009054906101000a900460ff161515141561175457600980546116cf906130c6565b80601f01602080910402602001604051908101604052809291908181526020018280546116fb906130c6565b80156117485780601f1061171d57610100808354040283529160200191611748565b820191906000526020600020905b81548152906001019060200180831161172b57829003601f168201915b50505050509050611782565b600861175f836123f9565b604051602001611770929190613ad4565b60405160208183030381529060405290505b919050565b61178f611d46565b73ffffffffffffffffffffffffffffffffffffffff166117ad610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa9061338c565b60405180910390fd5b600a60039054906101000a900460ff1615600a60036101000a81548160ff021916908315150217905550565b611837611d46565b73ffffffffffffffffffffffffffffffffffffffff16611855610fdb565b73ffffffffffffffffffffffffffffffffffffffff16146118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061338c565b60405180910390fd5b8181600991906118bc929190612944565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61195d611d46565b73ffffffffffffffffffffffffffffffffffffffff1661197b610fdb565b73ffffffffffffffffffffffffffffffffffffffff16146119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c89061338c565b60405180910390fd5b600a60019054906101000a900460ff16611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790613b4f565b60405180910390fd5b60008211611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90613671565b60405180910390fd5b6105dc600c541115611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190613605565b60405180910390fd5b6105dc82600c54611abb91906136fd565b1115611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390613bbb565b60405180910390fd5b60005b82811015611b3d57611b2a82600183600c54611b1b91906136fd565b611b2591906136fd565b612212565b8080611b3590613903565b915050611aff565b5081600c6000828254611b5091906136fd565b925050819055505050565b611b63611d46565b73ffffffffffffffffffffffffffffffffffffffff16611b81610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce9061338c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e90613c4d565b60405180910390fd5b611c508161214c565b50565b600581565b600b6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dc183610dd6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e1282611cda565b611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890613cdf565b60405180910390fd5b6000611e5c83610dd6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ecb57508373ffffffffffffffffffffffffffffffffffffffff16611eb384610943565b73ffffffffffffffffffffffffffffffffffffffff16145b80611edc5750611edb81856118c1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0582610dd6565b73ffffffffffffffffffffffffffffffffffffffff1614611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290613d71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290613e03565b60405180910390fd5b611fd683838361255a565b611fe1600082611d4e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120319190613e23565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461208891906136fd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214783838361255f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61222c828260405180602001604052806000815250612564565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690613ea3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123909190612a9b565b60405180910390a3505050565b6123a8848484611ee5565b6123b4848484846125bf565b6123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90613f35565b60405180910390fd5b50505050565b60606000821415612441576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612555565b600082905060005b6000821461247357808061245c90613903565b915050600a8261246c9190613464565b9150612449565b60008167ffffffffffffffff81111561248f5761248e612e69565b5b6040519080825280601f01601f1916602001820160405280156124c15781602001600182028036833780820191505090505b5090505b6000851461254e576001826124da9190613e23565b9150600a856124e99190613f55565b60306124f591906136fd565b60f81b81838151811061250b5761250a613f86565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125479190613464565b94506124c5565b8093505050505b919050565b505050565b505050565b61256e8383612747565b61257b60008484846125bf565b6125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190613f35565b60405180910390fd5b505050565b60006125e08473ffffffffffffffffffffffffffffffffffffffff16612921565b1561273a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612609611d46565b8786866040518563ffffffff1660e01b815260040161262b949392919061400a565b6020604051808303816000875af192505050801561266757506040513d601f19601f82011682018060405250810190612664919061406b565b60015b6126ea573d8060008114612697576040519150601f19603f3d011682016040523d82523d6000602084013e61269c565b606091505b506000815114156126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990613f35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061273f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae906140e4565b60405180910390fd5b6127c081611cda565b15612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790614150565b60405180910390fd5b61280c6000838361255a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285c91906136fd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291d6000838361255f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612950906130c6565b90600052602060002090601f01602090048101928261297257600085556129b9565b82601f1061298b57803560ff19168380011785556129b9565b828001600101855582156129b9579182015b828111156129b857823582559160200191906001019061299d565b5b5090506129c691906129ca565b5090565b5b808211156129e35760008160009055506001016129cb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a30816129fb565b8114612a3b57600080fd5b50565b600081359050612a4d81612a27565b92915050565b600060208284031215612a6957612a686129f1565b5b6000612a7784828501612a3e565b91505092915050565b60008115159050919050565b612a9581612a80565b82525050565b6000602082019050612ab06000830184612a8c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612af0578082015181840152602081019050612ad5565b83811115612aff576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b2182612ab6565b612b2b8185612ac1565b9350612b3b818560208601612ad2565b612b4481612b05565b840191505092915050565b60006020820190508181036000830152612b698184612b16565b905092915050565b6000819050919050565b612b8481612b71565b8114612b8f57600080fd5b50565b600081359050612ba181612b7b565b92915050565b600060208284031215612bbd57612bbc6129f1565b5b6000612bcb84828501612b92565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bff82612bd4565b9050919050565b612c0f81612bf4565b82525050565b6000602082019050612c2a6000830184612c06565b92915050565b612c3981612bf4565b8114612c4457600080fd5b50565b600081359050612c5681612c30565b92915050565b60008060408385031215612c7357612c726129f1565b5b6000612c8185828601612c47565b9250506020612c9285828601612b92565b9150509250929050565b612ca581612b71565b82525050565b6000602082019050612cc06000830184612c9c565b92915050565b600080600060608486031215612cdf57612cde6129f1565b5b6000612ced86828701612c47565b9350506020612cfe86828701612c47565b9250506040612d0f86828701612b92565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612d3e57612d3d612d19565b5b8235905067ffffffffffffffff811115612d5b57612d5a612d1e565b5b602083019150836001820283011115612d7757612d76612d23565b5b9250929050565b60008060208385031215612d9557612d946129f1565b5b600083013567ffffffffffffffff811115612db357612db26129f6565b5b612dbf85828601612d28565b92509250509250929050565b600060208284031215612de157612de06129f1565b5b6000612def84828501612c47565b91505092915050565b612e0181612a80565b8114612e0c57600080fd5b50565b600081359050612e1e81612df8565b92915050565b60008060408385031215612e3b57612e3a6129f1565b5b6000612e4985828601612c47565b9250506020612e5a85828601612e0f565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ea182612b05565b810181811067ffffffffffffffff82111715612ec057612ebf612e69565b5b80604052505050565b6000612ed36129e7565b9050612edf8282612e98565b919050565b600067ffffffffffffffff821115612eff57612efe612e69565b5b612f0882612b05565b9050602081019050919050565b82818337600083830152505050565b6000612f37612f3284612ee4565b612ec9565b905082815260208101848484011115612f5357612f52612e64565b5b612f5e848285612f15565b509392505050565b600082601f830112612f7b57612f7a612d19565b5b8135612f8b848260208601612f24565b91505092915050565b60008060008060808587031215612fae57612fad6129f1565b5b6000612fbc87828801612c47565b9450506020612fcd87828801612c47565b9350506040612fde87828801612b92565b925050606085013567ffffffffffffffff811115612fff57612ffe6129f6565b5b61300b87828801612f66565b91505092959194509250565b6000806040838503121561302e5761302d6129f1565b5b600061303c85828601612c47565b925050602061304d85828601612c47565b9150509250929050565b6000806040838503121561306e5761306d6129f1565b5b600061307c85828601612b92565b925050602061308d85828601612c47565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130de57607f821691505b602082108114156130f2576130f1613097565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613154602c83612ac1565b915061315f826130f8565b604082019050919050565b6000602082019050818103600083015261318381613147565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131e6602183612ac1565b91506131f18261318a565b604082019050919050565b60006020820190508181036000830152613215816131d9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613278603883612ac1565b91506132838261321c565b604082019050919050565b600060208201905081810360008301526132a78161326b565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061330a603183612ac1565b9150613315826132ae565b604082019050919050565b60006020820190508181036000830152613339816132fd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613376602083612ac1565b915061338182613340565b602082019050919050565b600060208201905081810360008301526133a581613369565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133e682612b71565b91506133f183612b71565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561342a576134296133ac565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061346f82612b71565b915061347a83612b71565b92508261348a57613489613435565b5b828204905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006134f1602983612ac1565b91506134fc82613495565b604082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613583602a83612ac1565b915061358e82613527565b604082019050919050565b600060208201905081810360008301526135b281613576565b9050919050565b7f4f5554204f462053544f434b0000000000000000000000000000000000000000600082015250565b60006135ef600c83612ac1565b91506135fa826135b9565b602082019050919050565b6000602082019050818103600083015261361e816135e2565b9050919050565b7f494e56414c494420544f4b454e205155414e5449545900000000000000000000600082015250565b600061365b601683612ac1565b915061366682613625565b602082019050919050565b6000602082019050818103600083015261368a8161364e565b9050919050565b7f45584345454453204d494e5420414d5420504552205452414e53414354494f4e600082015250565b60006136c7602083612ac1565b91506136d282613691565b602082019050919050565b600060208201905081810360008301526136f6816136ba565b9050919050565b600061370882612b71565b915061371383612b71565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613748576137476133ac565b5b828201905092915050565b7f4558434545445320594f55522032352050414c53204d41580000000000000000600082015250565b6000613789601883612ac1565b915061379482613753565b602082019050919050565b600060208201905081810360008301526137b88161377c565b9050919050565b7f455843454544532046495253542053414c452053544f434b0000000000000000600082015250565b60006137f5601883612ac1565b9150613800826137bf565b602082019050919050565b60006020820190508181036000830152613824816137e8565b9050919050565b7f45584345454453205345434f4e442053414c452053544f434b00000000000000600082015250565b6000613861601983612ac1565b915061386c8261382b565b602082019050919050565b6000602082019050818103600083015261389081613854565b9050919050565b7f53414c45204e4f54204c49564500000000000000000000000000000000000000600082015250565b60006138cd600d83612ac1565b91506138d882613897565b602082019050919050565b600060208201905081810360008301526138fc816138c0565b9050919050565b600061390e82612b71565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613941576139406133ac565b5b600182019050919050565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b6000613982601f83612ac1565b915061398d8261394c565b602082019050919050565b600060208201905081810360008301526139b181613975565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546139e5816130c6565b6139ef81866139b8565b94506001821660008114613a0a5760018114613a1b57613a4e565b60ff19831686528186019350613a4e565b613a24856139c3565b60005b83811015613a4657815481890152600182019150602081019050613a27565b838801955050505b50505092915050565b6000613a6282612ab6565b613a6c81856139b8565b9350613a7c818560208601612ad2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613abe6005836139b8565b9150613ac982613a88565b600582019050919050565b6000613ae082856139d8565b9150613aec8284613a57565b9150613af782613ab1565b91508190509392505050565b7f47494654494e4720434c4f534544000000000000000000000000000000000000600082015250565b6000613b39600e83612ac1565b9150613b4482613b03565b602082019050919050565b60006020820190508181036000830152613b6881613b2c565b9050919050565b7f455843454544532053544f434b00000000000000000000000000000000000000600082015250565b6000613ba5600d83612ac1565b9150613bb082613b6f565b602082019050919050565b60006020820190508181036000830152613bd481613b98565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c37602683612ac1565b9150613c4282613bdb565b604082019050919050565b60006020820190508181036000830152613c6681613c2a565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613cc9602c83612ac1565b9150613cd482613c6d565b604082019050919050565b60006020820190508181036000830152613cf881613cbc565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613d5b602583612ac1565b9150613d6682613cff565b604082019050919050565b60006020820190508181036000830152613d8a81613d4e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ded602483612ac1565b9150613df882613d91565b604082019050919050565b60006020820190508181036000830152613e1c81613de0565b9050919050565b6000613e2e82612b71565b9150613e3983612b71565b925082821015613e4c57613e4b6133ac565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e8d601983612ac1565b9150613e9882613e57565b602082019050919050565b60006020820190508181036000830152613ebc81613e80565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f1f603283612ac1565b9150613f2a82613ec3565b604082019050919050565b60006020820190508181036000830152613f4e81613f12565b9050919050565b6000613f6082612b71565b9150613f6b83612b71565b925082613f7b57613f7a613435565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613fdc82613fb5565b613fe68185613fc0565b9350613ff6818560208601612ad2565b613fff81612b05565b840191505092915050565b600060808201905061401f6000830187612c06565b61402c6020830186612c06565b6140396040830185612c9c565b818103606083015261404b8184613fd1565b905095945050505050565b60008151905061406581612a27565b92915050565b600060208284031215614081576140806129f1565b5b600061408f84828501614056565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006140ce602083612ac1565b91506140d982614098565b602082019050919050565b600060208201905081810360008301526140fd816140c1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061413a601c83612ac1565b915061414582614104565b602082019050919050565b600060208201905081810360008301526141698161412d565b905091905056fea26469706673582212203106528f1d945f84cb0acf90d474f5120fcee190375402c4f5e8bc550b78b16864736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d58566a46485a7679705847794a423852587a6b4e4545396e41697953574a42447636625654615a6f5a7279712f6d7973746572792e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d58566a46485a7679705847794a423852587a6b4e4545396e41697953574a42447636625654615a6f5a7279712f6d7973746572792e6a736f6e000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806379a94d8911610118578063bac34644116100a0578063e985e9c51161006f578063e985e9c5146106d8578063ee04064514610715578063f2fde38b1461073e578063f470eb0f14610767578063fa30297e1461079257610204565b8063bac3464414610644578063c87b56dd1461065b578063d9a2de9914610698578063e72be68a146106af57610204565b8063a22cb465116100e7578063a22cb46514610585578063a4f8eaeb146105ae578063ac57597a146105d9578063af0dd86714610604578063b88d4fde1461061b57610204565b806379a94d89146104e85780638da5cb5b1461051357806395d89b411461053e578063a0712d681461056957610204565b80633accbe221161019b578063518302271161016a578063518302271461040357806355f804b31461042e5780636352211e1461045757806370a0823114610494578063715018a6146104d157610204565b80633accbe22146103815780633ccfd60b146103ac57806342842e0e146103c357806345bcf17f146103ec57610204565b806318160ddd116101d757806318160ddd146102d757806322c072631461030257806323b872dd1461032d5780632cff9e061461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612a53565b6107cf565b60405161023d9190612a9b565b60405180910390f35b34801561025257600080fd5b5061025b6108b1565b6040516102689190612b4f565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612ba7565b610943565b6040516102a59190612c15565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612c5c565b6109c8565b005b3480156102e357600080fd5b506102ec610ae0565b6040516102f99190612cab565b60405180910390f35b34801561030e57600080fd5b50610317610ae6565b6040516103249190612cab565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612cc6565b610aeb565b005b34801561036257600080fd5b5061036b610b4b565b6040516103789190612a9b565b60405180910390f35b34801561038d57600080fd5b50610396610b5e565b6040516103a39190612cab565b60405180910390f35b3480156103b857600080fd5b506103c1610b64565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612cc6565b610c69565b005b3480156103f857600080fd5b50610401610c89565b005b34801561040f57600080fd5b50610418610d31565b6040516104259190612a9b565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612d7e565b610d44565b005b34801561046357600080fd5b5061047e60048036038101906104799190612ba7565b610dd6565b60405161048b9190612c15565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612dcb565b610e88565b6040516104c89190612cab565b60405180910390f35b3480156104dd57600080fd5b506104e6610f40565b005b3480156104f457600080fd5b506104fd610fc8565b60405161050a9190612a9b565b60405180910390f35b34801561051f57600080fd5b50610528610fdb565b6040516105359190612c15565b60405180910390f35b34801561054a57600080fd5b50610553611005565b6040516105609190612b4f565b60405180910390f35b610583600480360381019061057e9190612ba7565b611097565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612e24565b6113f3565b005b3480156105ba57600080fd5b506105c3611409565b6040516105d09190612b4f565b60405180910390f35b3480156105e557600080fd5b506105ee611497565b6040516105fb9190612a9b565b60405180910390f35b34801561061057600080fd5b506106196114aa565b005b34801561062757600080fd5b50610642600480360381019061063d9190612f94565b611552565b005b34801561065057600080fd5b506106596115b4565b005b34801561066757600080fd5b50610682600480360381019061067d9190612ba7565b61165c565b60405161068f9190612b4f565b60405180910390f35b3480156106a457600080fd5b506106ad611787565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612d7e565b61182f565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190613017565b6118c1565b60405161070c9190612a9b565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613057565b611955565b005b34801561074a57600080fd5b5061076560048036038101906107609190612dcb565b611b5b565b005b34801561077357600080fd5b5061077c611c53565b6040516107899190612cab565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190612dcb565b611c58565b6040516107c69190612cab565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611c70565b5b9050919050565b6060600080546108c0906130c6565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906130c6565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600061094e82611cda565b61098d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109849061316a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d382610dd6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906131fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a63611d46565b73ffffffffffffffffffffffffffffffffffffffff161480610a925750610a9181610a8c611d46565b6118c1565b5b610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac89061328e565b60405180910390fd5b610adb8383611d4e565b505050565b600c5481565b601981565b610afc610af6611d46565b82611e07565b610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290613320565b60405180910390fd5b610b46838383611ee5565b505050565b600a60019054906101000a900460ff1681565b6105dc81565b610b6c611d46565b73ffffffffffffffffffffffffffffffffffffffff16610b8a610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061338c565b60405180910390fd5b6000479050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e88084610c3091906133db565b610c3a9190613464565b9081150290604051600060405180830381858888f19350505050158015610c65573d6000803e3d6000fd5b5050565b610c8483838360405180602001604052806000815250611552565b505050565b610c91611d46565b73ffffffffffffffffffffffffffffffffffffffff16610caf610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc9061338c565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600a60009054906101000a900460ff1681565b610d4c611d46565b73ffffffffffffffffffffffffffffffffffffffff16610d6a610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db79061338c565b60405180910390fd5b818160089190610dd1929190612944565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690613507565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613599565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f48611d46565b73ffffffffffffffffffffffffffffffffffffffff16610f66610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb39061338c565b60405180910390fd5b610fc6600061214c565b565b600a60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611014906130c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611040906130c6565b801561108d5780601f106110625761010080835404028352916020019161108d565b820191906000526020600020905b81548152906001019060200180831161107057829003601f168201915b5050505050905090565b6105dc600c5411156110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613605565b60405180910390fd5b60008111611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613671565b60405180910390fd5b6005811115611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906136dd565b60405180910390fd5b601981600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111b291906136fd565b11156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea9061379f565b60405180910390fd5b600a60029054906101000a900460ff161561126b5760026105dc6112179190613464565b81600c5461122591906136fd565b1115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d9061380b565b60405180910390fd5b61133f565b600a60039054906101000a900460ff16156112d7576105dc81600c5461129191906136fd565b11156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990613877565b60405180910390fd5b61133e565b600a60029054906101000a900460ff16806112fe5750600a60039054906101000a900460ff165b61133d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611334906138e3565b60405180910390fd5b5b5b60005b818110156113805761136d33600183600c5461135e91906136fd565b61136891906136fd565b612212565b808061137890613903565b915050611342565b5080600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d091906136fd565b9250508190555080600c60008282546113e991906136fd565b9250508190555050565b6114056113fe611d46565b8383612230565b5050565b60098054611416906130c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611442906130c6565b801561148f5780601f106114645761010080835404028352916020019161148f565b820191906000526020600020905b81548152906001019060200180831161147257829003601f168201915b505050505081565b600a60039054906101000a900460ff1681565b6114b2611d46565b73ffffffffffffffffffffffffffffffffffffffff166114d0610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d9061338c565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b61156361155d611d46565b83611e07565b6115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990613320565b60405180910390fd5b6115ae8484848461239d565b50505050565b6115bc611d46565b73ffffffffffffffffffffffffffffffffffffffff166115da610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116279061338c565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b606061166782611cda565b6116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613998565b60405180910390fd5b60001515600a60009054906101000a900460ff161515141561175457600980546116cf906130c6565b80601f01602080910402602001604051908101604052809291908181526020018280546116fb906130c6565b80156117485780601f1061171d57610100808354040283529160200191611748565b820191906000526020600020905b81548152906001019060200180831161172b57829003601f168201915b50505050509050611782565b600861175f836123f9565b604051602001611770929190613ad4565b60405160208183030381529060405290505b919050565b61178f611d46565b73ffffffffffffffffffffffffffffffffffffffff166117ad610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa9061338c565b60405180910390fd5b600a60039054906101000a900460ff1615600a60036101000a81548160ff021916908315150217905550565b611837611d46565b73ffffffffffffffffffffffffffffffffffffffff16611855610fdb565b73ffffffffffffffffffffffffffffffffffffffff16146118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061338c565b60405180910390fd5b8181600991906118bc929190612944565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61195d611d46565b73ffffffffffffffffffffffffffffffffffffffff1661197b610fdb565b73ffffffffffffffffffffffffffffffffffffffff16146119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c89061338c565b60405180910390fd5b600a60019054906101000a900460ff16611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790613b4f565b60405180910390fd5b60008211611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90613671565b60405180910390fd5b6105dc600c541115611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190613605565b60405180910390fd5b6105dc82600c54611abb91906136fd565b1115611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390613bbb565b60405180910390fd5b60005b82811015611b3d57611b2a82600183600c54611b1b91906136fd565b611b2591906136fd565b612212565b8080611b3590613903565b915050611aff565b5081600c6000828254611b5091906136fd565b925050819055505050565b611b63611d46565b73ffffffffffffffffffffffffffffffffffffffff16611b81610fdb565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce9061338c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e90613c4d565b60405180910390fd5b611c508161214c565b50565b600581565b600b6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dc183610dd6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e1282611cda565b611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890613cdf565b60405180910390fd5b6000611e5c83610dd6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ecb57508373ffffffffffffffffffffffffffffffffffffffff16611eb384610943565b73ffffffffffffffffffffffffffffffffffffffff16145b80611edc5750611edb81856118c1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0582610dd6565b73ffffffffffffffffffffffffffffffffffffffff1614611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290613d71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290613e03565b60405180910390fd5b611fd683838361255a565b611fe1600082611d4e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120319190613e23565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461208891906136fd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214783838361255f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61222c828260405180602001604052806000815250612564565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690613ea3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123909190612a9b565b60405180910390a3505050565b6123a8848484611ee5565b6123b4848484846125bf565b6123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90613f35565b60405180910390fd5b50505050565b60606000821415612441576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612555565b600082905060005b6000821461247357808061245c90613903565b915050600a8261246c9190613464565b9150612449565b60008167ffffffffffffffff81111561248f5761248e612e69565b5b6040519080825280601f01601f1916602001820160405280156124c15781602001600182028036833780820191505090505b5090505b6000851461254e576001826124da9190613e23565b9150600a856124e99190613f55565b60306124f591906136fd565b60f81b81838151811061250b5761250a613f86565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125479190613464565b94506124c5565b8093505050505b919050565b505050565b505050565b61256e8383612747565b61257b60008484846125bf565b6125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190613f35565b60405180910390fd5b505050565b60006125e08473ffffffffffffffffffffffffffffffffffffffff16612921565b1561273a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612609611d46565b8786866040518563ffffffff1660e01b815260040161262b949392919061400a565b6020604051808303816000875af192505050801561266757506040513d601f19601f82011682018060405250810190612664919061406b565b60015b6126ea573d8060008114612697576040519150601f19603f3d011682016040523d82523d6000602084013e61269c565b606091505b506000815114156126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990613f35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061273f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae906140e4565b60405180910390fd5b6127c081611cda565b15612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790614150565b60405180910390fd5b61280c6000838361255a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285c91906136fd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291d6000838361255f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612950906130c6565b90600052602060002090601f01602090048101928261297257600085556129b9565b82601f1061298b57803560ff19168380011785556129b9565b828001600101855582156129b9579182015b828111156129b857823582559160200191906001019061299d565b5b5090506129c691906129ca565b5090565b5b808211156129e35760008160009055506001016129cb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a30816129fb565b8114612a3b57600080fd5b50565b600081359050612a4d81612a27565b92915050565b600060208284031215612a6957612a686129f1565b5b6000612a7784828501612a3e565b91505092915050565b60008115159050919050565b612a9581612a80565b82525050565b6000602082019050612ab06000830184612a8c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612af0578082015181840152602081019050612ad5565b83811115612aff576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b2182612ab6565b612b2b8185612ac1565b9350612b3b818560208601612ad2565b612b4481612b05565b840191505092915050565b60006020820190508181036000830152612b698184612b16565b905092915050565b6000819050919050565b612b8481612b71565b8114612b8f57600080fd5b50565b600081359050612ba181612b7b565b92915050565b600060208284031215612bbd57612bbc6129f1565b5b6000612bcb84828501612b92565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bff82612bd4565b9050919050565b612c0f81612bf4565b82525050565b6000602082019050612c2a6000830184612c06565b92915050565b612c3981612bf4565b8114612c4457600080fd5b50565b600081359050612c5681612c30565b92915050565b60008060408385031215612c7357612c726129f1565b5b6000612c8185828601612c47565b9250506020612c9285828601612b92565b9150509250929050565b612ca581612b71565b82525050565b6000602082019050612cc06000830184612c9c565b92915050565b600080600060608486031215612cdf57612cde6129f1565b5b6000612ced86828701612c47565b9350506020612cfe86828701612c47565b9250506040612d0f86828701612b92565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612d3e57612d3d612d19565b5b8235905067ffffffffffffffff811115612d5b57612d5a612d1e565b5b602083019150836001820283011115612d7757612d76612d23565b5b9250929050565b60008060208385031215612d9557612d946129f1565b5b600083013567ffffffffffffffff811115612db357612db26129f6565b5b612dbf85828601612d28565b92509250509250929050565b600060208284031215612de157612de06129f1565b5b6000612def84828501612c47565b91505092915050565b612e0181612a80565b8114612e0c57600080fd5b50565b600081359050612e1e81612df8565b92915050565b60008060408385031215612e3b57612e3a6129f1565b5b6000612e4985828601612c47565b9250506020612e5a85828601612e0f565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ea182612b05565b810181811067ffffffffffffffff82111715612ec057612ebf612e69565b5b80604052505050565b6000612ed36129e7565b9050612edf8282612e98565b919050565b600067ffffffffffffffff821115612eff57612efe612e69565b5b612f0882612b05565b9050602081019050919050565b82818337600083830152505050565b6000612f37612f3284612ee4565b612ec9565b905082815260208101848484011115612f5357612f52612e64565b5b612f5e848285612f15565b509392505050565b600082601f830112612f7b57612f7a612d19565b5b8135612f8b848260208601612f24565b91505092915050565b60008060008060808587031215612fae57612fad6129f1565b5b6000612fbc87828801612c47565b9450506020612fcd87828801612c47565b9350506040612fde87828801612b92565b925050606085013567ffffffffffffffff811115612fff57612ffe6129f6565b5b61300b87828801612f66565b91505092959194509250565b6000806040838503121561302e5761302d6129f1565b5b600061303c85828601612c47565b925050602061304d85828601612c47565b9150509250929050565b6000806040838503121561306e5761306d6129f1565b5b600061307c85828601612b92565b925050602061308d85828601612c47565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130de57607f821691505b602082108114156130f2576130f1613097565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613154602c83612ac1565b915061315f826130f8565b604082019050919050565b6000602082019050818103600083015261318381613147565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131e6602183612ac1565b91506131f18261318a565b604082019050919050565b60006020820190508181036000830152613215816131d9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613278603883612ac1565b91506132838261321c565b604082019050919050565b600060208201905081810360008301526132a78161326b565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061330a603183612ac1565b9150613315826132ae565b604082019050919050565b60006020820190508181036000830152613339816132fd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613376602083612ac1565b915061338182613340565b602082019050919050565b600060208201905081810360008301526133a581613369565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133e682612b71565b91506133f183612b71565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561342a576134296133ac565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061346f82612b71565b915061347a83612b71565b92508261348a57613489613435565b5b828204905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006134f1602983612ac1565b91506134fc82613495565b604082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613583602a83612ac1565b915061358e82613527565b604082019050919050565b600060208201905081810360008301526135b281613576565b9050919050565b7f4f5554204f462053544f434b0000000000000000000000000000000000000000600082015250565b60006135ef600c83612ac1565b91506135fa826135b9565b602082019050919050565b6000602082019050818103600083015261361e816135e2565b9050919050565b7f494e56414c494420544f4b454e205155414e5449545900000000000000000000600082015250565b600061365b601683612ac1565b915061366682613625565b602082019050919050565b6000602082019050818103600083015261368a8161364e565b9050919050565b7f45584345454453204d494e5420414d5420504552205452414e53414354494f4e600082015250565b60006136c7602083612ac1565b91506136d282613691565b602082019050919050565b600060208201905081810360008301526136f6816136ba565b9050919050565b600061370882612b71565b915061371383612b71565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613748576137476133ac565b5b828201905092915050565b7f4558434545445320594f55522032352050414c53204d41580000000000000000600082015250565b6000613789601883612ac1565b915061379482613753565b602082019050919050565b600060208201905081810360008301526137b88161377c565b9050919050565b7f455843454544532046495253542053414c452053544f434b0000000000000000600082015250565b60006137f5601883612ac1565b9150613800826137bf565b602082019050919050565b60006020820190508181036000830152613824816137e8565b9050919050565b7f45584345454453205345434f4e442053414c452053544f434b00000000000000600082015250565b6000613861601983612ac1565b915061386c8261382b565b602082019050919050565b6000602082019050818103600083015261389081613854565b9050919050565b7f53414c45204e4f54204c49564500000000000000000000000000000000000000600082015250565b60006138cd600d83612ac1565b91506138d882613897565b602082019050919050565b600060208201905081810360008301526138fc816138c0565b9050919050565b600061390e82612b71565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613941576139406133ac565b5b600182019050919050565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b6000613982601f83612ac1565b915061398d8261394c565b602082019050919050565b600060208201905081810360008301526139b181613975565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546139e5816130c6565b6139ef81866139b8565b94506001821660008114613a0a5760018114613a1b57613a4e565b60ff19831686528186019350613a4e565b613a24856139c3565b60005b83811015613a4657815481890152600182019150602081019050613a27565b838801955050505b50505092915050565b6000613a6282612ab6565b613a6c81856139b8565b9350613a7c818560208601612ad2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613abe6005836139b8565b9150613ac982613a88565b600582019050919050565b6000613ae082856139d8565b9150613aec8284613a57565b9150613af782613ab1565b91508190509392505050565b7f47494654494e4720434c4f534544000000000000000000000000000000000000600082015250565b6000613b39600e83612ac1565b9150613b4482613b03565b602082019050919050565b60006020820190508181036000830152613b6881613b2c565b9050919050565b7f455843454544532053544f434b00000000000000000000000000000000000000600082015250565b6000613ba5600d83612ac1565b9150613bb082613b6f565b602082019050919050565b60006020820190508181036000830152613bd481613b98565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c37602683612ac1565b9150613c4282613bdb565b604082019050919050565b60006020820190508181036000830152613c6681613c2a565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613cc9602c83612ac1565b9150613cd482613c6d565b604082019050919050565b60006020820190508181036000830152613cf881613cbc565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613d5b602583612ac1565b9150613d6682613cff565b604082019050919050565b60006020820190508181036000830152613d8a81613d4e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ded602483612ac1565b9150613df882613d91565b604082019050919050565b60006020820190508181036000830152613e1c81613de0565b9050919050565b6000613e2e82612b71565b9150613e3983612b71565b925082821015613e4c57613e4b6133ac565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e8d601983612ac1565b9150613e9882613e57565b602082019050919050565b60006020820190508181036000830152613ebc81613e80565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f1f603283612ac1565b9150613f2a82613ec3565b604082019050919050565b60006020820190508181036000830152613f4e81613f12565b9050919050565b6000613f6082612b71565b9150613f6b83612b71565b925082613f7b57613f7a613435565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613fdc82613fb5565b613fe68185613fc0565b9350613ff6818560208601612ad2565b613fff81612b05565b840191505092915050565b600060808201905061401f6000830187612c06565b61402c6020830186612c06565b6140396040830185612c9c565b818103606083015261404b8184613fd1565b905095945050505050565b60008151905061406581612a27565b92915050565b600060208284031215614081576140806129f1565b5b600061408f84828501614056565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006140ce602083612ac1565b91506140d982614098565b602082019050919050565b600060208201905081810360008301526140fd816140c1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061413a601c83612ac1565b915061414582614104565b602082019050919050565b600060208201905081810360008301526141698161412d565b905091905056fea26469706673582212203106528f1d945f84cb0acf90d474f5120fcee190375402c4f5e8bc550b78b16864736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d58566a46485a7679705847794a423852587a6b4e4545396e41697953574a42447636625654615a6f5a7279712f6d7973746572792e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d58566a46485a7679705847794a423852587a6b4e4545396e41697953574a42447636625654615a6f5a7279712f6d7973746572792e6a736f6e000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenBaseURI (string): ipfs://QmXVjFHZvypXGyJB8RXzkNEE9nAiySWJBDv6bVTaZoZryq/mystery.json
Arg [1] : mysteryURI (string): ipfs://QmXVjFHZvypXGyJB8RXzkNEE9nAiySWJBDv6bVTaZoZryq/mystery.json

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [3] : 697066733a2f2f516d58566a46485a7679705847794a423852587a6b4e454539
Arg [4] : 6e41697953574a42447636625654615a6f5a7279712f6d7973746572792e6a73
Arg [5] : 6f6e000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [7] : 697066733a2f2f516d58566a46485a7679705847794a423852587a6b4e454539
Arg [8] : 6e41697953574a42447636625654615a6f5a7279712f6d7973746572792e6a73
Arg [9] : 6f6e000000000000000000000000000000000000000000000000000000000000


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.