ETH Price: $4,008.72 (+3.09%)

Token

XNFT (XNFT)
 

Overview

Max Total Supply

25 XNFT

Holders

9

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
XNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-07
*/

/**
 *Submitted for verification at BscScan.com on 2022-05-18
*/

/**
 *Submitted for verification at BscScan.com on 2022-05-18
*/

/**
 *Submitted for verification at BscScan.com on 2022-05-14
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol
// SPDX-License-Identifier: GPL-3.0
// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.3.2 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.3.2 (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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.3.2 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol

interface IERC20 {
  function totalSupply() external view returns (uint256);
  function decimals() external view returns (uint8);
  function symbol() external view returns (string memory);
  function name() external view returns (string memory);
  function getOwner() external view returns (address);
  function balanceOf(address account) external view returns (uint256);
  function transfer(address recipient, uint256 amount) external returns (bool);
  function allowance(address _owner, address spender) external view returns (uint256);
  function approve(address spender, uint256 amount) external returns (bool);
  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

// OpenZeppelin Contracts v4.3.2 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity >=0.7.0 <0.9.0;

contract XNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public ethCost = 0.05 ether;
  address public erc20ContractAddress=payable(0xe80471aC40b9c985f6Bbd15c0ac5807eB49374C0);
  uint256 public erc20Cost = 1000000000000000;
  uint256 public maxSupply = 100;
  uint256 public maxMintAmount = 10;
  uint256 public nftPerAddressLimit = 100;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = false;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    mint(5);
  }

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

  function erc20Checker(address toCheck) private view returns(uint) {
      IERC20 erc20Contract = IERC20(erc20ContractAddress);
      return erc20Contract.balanceOf(toCheck);
  }

  function erc20Transfer(uint256 amount) private {
      IERC20 erc20Contract = IERC20(erc20ContractAddress);
      erc20Contract.transferFrom(msg.sender,0x000000000000000000000000000000000000dEaD,amount);
  }

  // public

    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        uint256 ercTotal = erc20Cost * _mintAmount;
        uint256 ethTotal = ethCost * _mintAmount;
        uint256 erc20Balance = erc20Checker(msg.sender);
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= ethTotal, "Insufficient ETH.");
        require(erc20Balance >= ercTotal, "Insufficient X Tokens.");
        erc20Transfer(ercTotal);
                }
    
        for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
        }
    }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    ethCost = _newCost * 10**18;
  }

  function setERC20Cost(uint256 _newERC20Cost) external onlyOwner {
      erc20Cost = _newERC20Cost;
  }

  function setERC20Address(address _newERC20) external onlyOwner {
      erc20ContractAddress = _newERC20;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);

  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20ContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20Cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newERC20","type":"address"}],"name":"setERC20Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newERC20Cost","type":"uint256"}],"name":"setERC20Cost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000e25565b5066b1a2bc2ec50000600e55600f80546001600160a01b03191673e80471ac40b9c985f6bbd15c0ac5807eb49374c017905566038d7ea4c6800060105560646011819055600a6012556013556014805462ffffff191690553480156200008d57600080fd5b5060405162003f8d38038062003f8d833981016040819052620000b09162000fa6565b835184908490620000c990600090602085019062000e25565b508051620000df90600190602084019062000e25565b505050620000fc620000f66200012860201b60201c565b6200012c565b62000107826200017e565b6200011281620001e6565b6200011e600562000246565b50505050620011da565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001cd5760405162461bcd60e51b8152602060048201819052602482015260008051602062003f6d83398151915260448201526064015b60405180910390fd5b8051620001e290600b90602084019062000e25565b5050565b600a546001600160a01b03163314620002315760405162461bcd60e51b8152602060048201819052602482015260008051602062003f6d8339815191526044820152606401620001c4565b8051620001e290600d90602084019062000e25565b60145460ff16156200029b5760405162461bcd60e51b815260206004820152601660248201527f74686520636f6e747261637420697320706175736564000000000000000000006044820152606401620001c4565b6000620002a760085490565b9050600082601054620002bb9190620010e4565b9050600083600e54620002cf9190620010e4565b90506000620002de33620005ea565b905060008511620003325760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401620001c4565b601254851115620003925760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401620001c4565b601154620003a18686620010c9565b1115620003f15760405162461bcd60e51b815260206004820152601660248201527f6d6178204e4654206c696d6974206578636565646564000000000000000000006044820152606401620001c4565b600a546001600160a01b03163314620005885760145462010000900460ff16151560011415620004e557620004263362000675565b620004745760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401620001c4565b33600090815260166020526040902054601354620004938783620010c9565b1115620004e35760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401620001c4565b505b813410156200052b5760405162461bcd60e51b815260206004820152601160248201527024b739bab33334b1b4b2b73a1022aa241760791b6044820152606401620001c4565b828110156200057d5760405162461bcd60e51b815260206004820152601660248201527f496e73756666696369656e74205820546f6b656e732e000000000000000000006044820152606401620001c4565b6200058883620006f3565b60015b858111620005e257336000908152601660205260408120805491620005b08362001190565b90915550620005cd905033620005c78388620010c9565b6200078a565b80620005d98162001190565b9150506200058b565b505050505050565b600f546040516370a0823160e01b81526001600160a01b038381166004830152600092169081906370a082319060240160206040518083038186803b1580156200063357600080fd5b505afa15801562000648573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200066e91906200105a565b9392505050565b6000805b601554811015620006ea57826001600160a01b031660158281548110620006b057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415620006d55750600192915050565b80620006e18162001190565b91505062000679565b50600092915050565b600f546040516323b872dd60e01b815233600482015261dead6024820152604481018390526001600160a01b039091169081906323b872dd90606401602060405180830381600087803b1580156200074a57600080fd5b505af11580156200075f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000785919062000f5a565b505050565b620001e2828260405180602001604052806000815250620007ac60201b60201c565b620007b883836200081f565b620007c7600084848462000975565b620007855760405162461bcd60e51b8152602060048201526032602482015260008051602062003f4d83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001c4565b6001600160a01b038216620008775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001c4565b6000818152600260205260409020546001600160a01b031615620008de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001c4565b620008ec6000838362000ade565b6001600160a01b038216600090815260036020526040812080546001929062000917908490620010c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000996846001600160a01b031662000bba60201b620019191760201c565b1562000ad257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620009d090339089908890889060040162001073565b602060405180830381600087803b158015620009eb57600080fd5b505af192505050801562000a1e575060408051601f3d908101601f1916820190925262000a1b9181019062000f7c565b60015b62000ab7573d80801562000a4f576040519150601f19603f3d011682016040523d82523d6000602084013e62000a54565b606091505b50805162000aaf5760405162461bcd60e51b8152602060048201526032602482015260008051602062003f4d83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001c4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000ad6565b5060015b949350505050565b62000af68383836200078560201b62000bdf1760201c565b6001600160a01b03831662000b545762000b4e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000b7a565b816001600160a01b0316836001600160a01b03161462000b7a5762000b7a838262000bc0565b6001600160a01b03821662000b9457620007858162000c6d565b826001600160a01b0316826001600160a01b031614620007855762000785828262000d4b565b3b151590565b6000600162000bda8462000d9c60201b620010d41760201c565b62000be6919062001106565b60008381526007602052604090205490915080821462000c3a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000c819060019062001106565b6000838152600960205260408120546008805493945090928490811062000cb857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811062000ce857634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000d2f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000d638362000d9c60201b620010d41760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000e095760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001c4565b506001600160a01b031660009081526003602052604090205490565b82805462000e339062001153565b90600052602060002090601f01602090048101928262000e57576000855562000ea2565b82601f1062000e7257805160ff191683800117855562000ea2565b8280016001018555821562000ea2579182015b8281111562000ea257825182559160200191906001019062000e85565b5062000eb092915062000eb4565b5090565b5b8082111562000eb0576000815560010162000eb5565b600082601f83011262000edc578081fd5b81516001600160401b038082111562000ef95762000ef9620011c4565b604051601f8301601f19908116603f0116810190828211818310171562000f245762000f24620011c4565b8160405283815286602085880101111562000f3d578485fd5b62000f5084602083016020890162001120565b9695505050505050565b60006020828403121562000f6c578081fd5b815180151581146200066e578182fd5b60006020828403121562000f8e578081fd5b81516001600160e01b0319811681146200066e578182fd5b6000806000806080858703121562000fbc578283fd5b84516001600160401b038082111562000fd3578485fd5b62000fe18883890162000ecb565b9550602087015191508082111562000ff7578485fd5b620010058883890162000ecb565b945060408701519150808211156200101b578384fd5b620010298883890162000ecb565b935060608701519150808211156200103f578283fd5b506200104e8782880162000ecb565b91505092959194509250565b6000602082840312156200106c578081fd5b5051919050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620010b28160a085016020870162001120565b601f01601f19169190910160a00195945050505050565b60008219821115620010df57620010df620011ae565b500190565b6000816000190483118215151615620011015762001101620011ae565b500290565b6000828210156200111b576200111b620011ae565b500390565b60005b838110156200113d57818101518382015260200162001123565b838111156200114d576000848401525b50505050565b600181811c908216806200116857607f821691505b602082108114156200118a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620011a757620011a7620011ae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612d6380620011ea6000396000f3fe6080604052600436106102ae5760003560e01c80636c0360eb11610175578063b88d4fde116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c5146107ff578063edec5f2714610848578063f2c4ce1e14610868578063f2fde38b1461088857600080fd5b8063d5abeb01146107a9578063da3ef23f146107bf578063e486df15146107df57600080fd5b8063b88d4fde146106fe578063ba4e5c491461071e578063ba7d2c761461073e578063c668286214610754578063c87b56dd14610769578063d0eb26b01461078957600080fd5b80638ed5c9101161012e5780638ed5c9101461066b57806395d89b41146106815780639c70b51214610696578063a0712d68146106b6578063a22cb465146106c9578063a475b5dd146106e957600080fd5b80636c0360eb146105c357806370a08231146105d8578063715018a6146105f85780637f00c7a61461060d57806380929d6c1461062d5780638da5cb5b1461064d57600080fd5b80633af32abf1161021957806344a0d68a116101d257806344a0d68a1461050a5780634f6ccce71461052a578063518302271461054a57806355f804b3146105695780635c975abb146105895780636352211e146105a357600080fd5b80633af32abf146104555780633c952764146104755780633ccfd60b1461049557806341bec0d21461049d57806342842e0e146104bd578063438b6300146104dd57600080fd5b8063095ea7b31161026b578063095ea7b31461039d57806318160ddd146103bd57806318cae269146103d2578063239c70ae146103ff57806323b872dd146104155780632f745c591461043557600080fd5b806301ffc9a7146102b357806302329a29146102e85780630435e2f91461030a57806306fdde031461032e578063081812fc14610350578063081c8c4414610388575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046128c7565b6108a8565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b5061030861030336600461288f565b6108d3565b005b34801561031657600080fd5b50610320600e5481565b6040519081526020016102df565b34801561033a57600080fd5b50610343610919565b6040516102df9190612ae4565b34801561035c57600080fd5b5061037061036b366004612945565b6109ab565b6040516001600160a01b0390911681526020016102df565b34801561039457600080fd5b50610343610a40565b3480156103a957600080fd5b506103086103b83660046127f6565b610ace565b3480156103c957600080fd5b50600854610320565b3480156103de57600080fd5b506103206103ed3660046126c0565b60166020526000908152604090205481565b34801561040b57600080fd5b5061032060125481565b34801561042157600080fd5b5061030861043036600461270c565b610be4565b34801561044157600080fd5b506103206104503660046127f6565b610c15565b34801561046157600080fd5b506102d36104703660046126c0565b610cab565b34801561048157600080fd5b5061030861049036600461288f565b610d23565b610308610d69565b3480156104a957600080fd5b506103086104b83660046126c0565b610e07565b3480156104c957600080fd5b506103086104d836600461270c565b610e53565b3480156104e957600080fd5b506104fd6104f83660046126c0565b610e6e565b6040516102df9190612aa0565b34801561051657600080fd5b50610308610525366004612945565b610f2c565b34801561053657600080fd5b50610320610545366004612945565b610f6e565b34801561055657600080fd5b506014546102d390610100900460ff1681565b34801561057557600080fd5b506103086105843660046128ff565b61100f565b34801561059557600080fd5b506014546102d39060ff1681565b3480156105af57600080fd5b506103706105be366004612945565b611050565b3480156105cf57600080fd5b506103436110c7565b3480156105e457600080fd5b506103206105f33660046126c0565b6110d4565b34801561060457600080fd5b5061030861115b565b34801561061957600080fd5b50610308610628366004612945565b611191565b34801561063957600080fd5b50610308610648366004612945565b6111c0565b34801561065957600080fd5b50600a546001600160a01b0316610370565b34801561067757600080fd5b5061032060105481565b34801561068d57600080fd5b506103436111ef565b3480156106a257600080fd5b506014546102d39062010000900460ff1681565b6103086106c4366004612945565b6111fe565b3480156106d557600080fd5b506103086106e43660046127c0565b611562565b3480156106f557600080fd5b5061030861156d565b34801561070a57600080fd5b50610308610719366004612747565b6115a8565b34801561072a57600080fd5b50610370610739366004612945565b6115e0565b34801561074a57600080fd5b5061032060135481565b34801561076057600080fd5b5061034361160a565b34801561077557600080fd5b50610343610784366004612945565b611617565b34801561079557600080fd5b506103086107a4366004612945565b611796565b3480156107b557600080fd5b5061032060115481565b3480156107cb57600080fd5b506103086107da3660046128ff565b6117c5565b3480156107eb57600080fd5b50600f54610370906001600160a01b031681565b34801561080b57600080fd5b506102d361081a3660046126da565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561085457600080fd5b5061030861086336600461281f565b611802565b34801561087457600080fd5b506103086108833660046128ff565b611844565b34801561089457600080fd5b506103086108a33660046126c0565b611881565b60006001600160e01b0319821663780e9d6360e01b14806108cd57506108cd8261191f565b92915050565b600a546001600160a01b031633146109065760405162461bcd60e51b81526004016108fd90612b49565b60405180910390fd5b6014805460ff1916911515919091179055565b60606000805461092890612c5d565b80601f016020809104026020016040519081016040528092919081815260200182805461095490612c5d565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fd565b506000908152600460205260409020546001600160a01b031690565b600d8054610a4d90612c5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990612c5d565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b6000610ad982611050565b9050806001600160a01b0316836001600160a01b03161415610b475760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fd565b336001600160a01b0382161480610b635750610b63813361081a565b610bd55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fd565b610bdf838361196f565b505050565b610bee33826119dd565b610c0a5760405162461bcd60e51b81526004016108fd90612b7e565b610bdf838383611ad4565b6000610c20836110d4565b8210610c825760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108fd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601554811015610d1a57826001600160a01b031660158281548110610ce457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610d085750600192915050565b80610d1281612c98565b915050610caf565b50600092915050565b600a546001600160a01b03163314610d4d5760405162461bcd60e51b81526004016108fd90612b49565b60148054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610d935760405162461bcd60e51b81526004016108fd90612b49565b6000610da7600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610df1576040519150601f19603f3d011682016040523d82523d6000602084013e610df6565b606091505b5050905080610e0457600080fd5b50565b600a546001600160a01b03163314610e315760405162461bcd60e51b81526004016108fd90612b49565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610bdf838383604051806020016040528060008152506115a8565b60606000610e7b836110d4565b905060008167ffffffffffffffff811115610ea657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ecf578160200160208202803683370190505b50905060005b82811015610f2457610ee78582610c15565b828281518110610f0757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f1c81612c98565b915050610ed5565b509392505050565b600a546001600160a01b03163314610f565760405162461bcd60e51b81526004016108fd90612b49565b610f6881670de0b6b3a7640000612bfb565b600e5550565b6000610f7960085490565b8210610fdc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108fd565b60088281548110610ffd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146110395760405162461bcd60e51b81526004016108fd90612b49565b805161104c90600b906020840190612524565b5050565b6000818152600260205260408120546001600160a01b0316806108cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fd565b600b8054610a4d90612c5d565b60006001600160a01b03821661113f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108fd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111855760405162461bcd60e51b81526004016108fd90612b49565b61118f6000611c7f565b565b600a546001600160a01b031633146111bb5760405162461bcd60e51b81526004016108fd90612b49565b601255565b600a546001600160a01b031633146111ea5760405162461bcd60e51b81526004016108fd90612b49565b601055565b60606001805461092890612c5d565b60145460ff161561124a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108fd565b600061125560085490565b90506000826010546112679190612bfb565b9050600083600e546112799190612bfb565b9050600061128633611cd1565b9050600085116112d85760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108fd565b6012548511156113365760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108fd565b6011546113438686612bcf565b111561138a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108fd565b600a546001600160a01b0316331461150a5760145462010000900460ff16151560011415611474576113bb33610cab565b6114075760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108fd565b336000908152601660205260409020546013546114248783612bcf565b11156114725760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108fd565b505b813410156114b85760405162461bcd60e51b815260206004820152601160248201527024b739bab33334b1b4b2b73a1022aa241760791b60448201526064016108fd565b828110156115015760405162461bcd60e51b815260206004820152601660248201527524b739bab33334b1b4b2b73a102c102a37b5b2b7399760511b60448201526064016108fd565b61150a83611d51565b60015b85811161155a5733600090815260166020526040812080549161152f83612c98565b909155506115489050336115438388612bcf565b611ddf565b8061155281612c98565b91505061150d565b505050505050565b61104c338383611df9565b600a546001600160a01b031633146115975760405162461bcd60e51b81526004016108fd90612b49565b6014805461ff001916610100179055565b6115b233836119dd565b6115ce5760405162461bcd60e51b81526004016108fd90612b7e565b6115da84848484611ec8565b50505050565b601581815481106115f057600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610a4d90612c5d565b6000818152600260205260409020546060906001600160a01b03166116965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fd565b601454610100900460ff1661173757600d80546116b290612c5d565b80601f01602080910402602001604051908101604052809291908181526020018280546116de90612c5d565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b50505050509050919050565b6000611741611efb565b90506000815111611761576040518060200160405280600081525061178f565b8061176b84611f0a565b600c60405160200161177f939291906129a1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117c05760405162461bcd60e51b81526004016108fd90612b49565b601355565b600a546001600160a01b031633146117ef5760405162461bcd60e51b81526004016108fd90612b49565b805161104c90600c906020840190612524565b600a546001600160a01b0316331461182c5760405162461bcd60e51b81526004016108fd90612b49565b611838601560006125a8565b610bdf601583836125c6565b600a546001600160a01b0316331461186e5760405162461bcd60e51b81526004016108fd90612b49565b805161104c90600d906020840190612524565b600a546001600160a01b031633146118ab5760405162461bcd60e51b81526004016108fd90612b49565b6001600160a01b0381166119105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fd565b610e0481611c7f565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061195057506001600160e01b03198216635b5e139f60e01b145b806108cd57506301ffc9a760e01b6001600160e01b03198316146108cd565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119a482611050565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fd565b6000611a6183611050565b9050806001600160a01b0316846001600160a01b03161480611a9c5750836001600160a01b0316611a91846109ab565b6001600160a01b0316145b80611acc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae782611050565b6001600160a01b031614611b4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108fd565b6001600160a01b038216611bb15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fd565b611bbc838383612024565b611bc760008261196f565b6001600160a01b0383166000908152600360205260408120805460019290611bf0908490612c1a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c1e908490612bcf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f546040516370a0823160e01b81526001600160a01b038381166004830152600092169081906370a082319060240160206040518083038186803b158015611d1957600080fd5b505afa158015611d2d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178f919061295d565b600f546040516323b872dd60e01b815233600482015261dead6024820152604481018390526001600160a01b039091169081906323b872dd90606401602060405180830381600087803b158015611da757600080fd5b505af1158015611dbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdf91906128ab565b61104c8282604051806020016040528060008152506120dc565b816001600160a01b0316836001600160a01b03161415611e5b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ed3848484611ad4565b611edf8484848461210f565b6115da5760405162461bcd60e51b81526004016108fd90612af7565b6060600b805461092890612c5d565b606081611f2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f585780611f4281612c98565b9150611f519050600a83612be7565b9150611f32565b60008167ffffffffffffffff811115611f8157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fab576020820181803683370190505b5090505b8415611acc57611fc0600183612c1a565b9150611fcd600a86612cb3565b611fd8906030612bcf565b60f81b818381518110611ffb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061201d600a86612be7565b9450611faf565b6001600160a01b03831661207f5761207a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120a2565b816001600160a01b0316836001600160a01b0316146120a2576120a2838261221c565b6001600160a01b0382166120b957610bdf816122b9565b826001600160a01b0316826001600160a01b031614610bdf57610bdf8282612392565b6120e683836123d6565b6120f3600084848461210f565b610bdf5760405162461bcd60e51b81526004016108fd90612af7565b60006001600160a01b0384163b1561221157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612153903390899088908890600401612a63565b602060405180830381600087803b15801561216d57600080fd5b505af192505050801561219d575060408051601f3d908101601f1916820190925261219a918101906128e3565b60015b6121f7573d8080156121cb576040519150601f19603f3d011682016040523d82523d6000602084013e6121d0565b606091505b5080516121ef5760405162461bcd60e51b81526004016108fd90612af7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611acc565b506001949350505050565b60006001612229846110d4565b6122339190612c1a565b600083815260076020526040902054909150808214612286576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122cb90600190612c1a565b6000838152600960205260408120546008805493945090928490811061230157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061233057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061237657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061239d836110d4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661242c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fd565b6000818152600260205260409020546001600160a01b0316156124915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fd565b61249d60008383612024565b6001600160a01b03821660009081526003602052604081208054600192906124c6908490612bcf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461253090612c5d565b90600052602060002090601f0160209004810192826125525760008555612598565b82601f1061256b57805160ff1916838001178555612598565b82800160010185558215612598579182015b8281111561259857825182559160200191906001019061257d565b506125a4929150612619565b5090565b5080546000825590600052602060002090810190610e049190612619565b828054828255906000526020600020908101928215612598579160200282015b828111156125985781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906125e6565b5b808211156125a4576000815560010161261a565b600067ffffffffffffffff8084111561264957612649612cf3565b604051601f8501601f19908116603f0116810190828211818310171561267157612671612cf3565b8160405280935085815286868601111561268a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126bb57600080fd5b919050565b6000602082840312156126d1578081fd5b61178f826126a4565b600080604083850312156126ec578081fd5b6126f5836126a4565b9150612703602084016126a4565b90509250929050565b600080600060608486031215612720578081fd5b612729846126a4565b9250612737602085016126a4565b9150604084013590509250925092565b6000806000806080858703121561275c578081fd5b612765856126a4565b9350612773602086016126a4565b925060408501359150606085013567ffffffffffffffff811115612795578182fd5b8501601f810187136127a5578182fd5b6127b48782356020840161262e565b91505092959194509250565b600080604083850312156127d2578182fd5b6127db836126a4565b915060208301356127eb81612d09565b809150509250929050565b60008060408385031215612808578182fd5b612811836126a4565b946020939093013593505050565b60008060208385031215612831578182fd5b823567ffffffffffffffff80821115612848578384fd5b818501915085601f83011261285b578384fd5b813581811115612869578485fd5b8660208260051b850101111561287d578485fd5b60209290920196919550909350505050565b6000602082840312156128a0578081fd5b813561178f81612d09565b6000602082840312156128bc578081fd5b815161178f81612d09565b6000602082840312156128d8578081fd5b813561178f81612d17565b6000602082840312156128f4578081fd5b815161178f81612d17565b600060208284031215612910578081fd5b813567ffffffffffffffff811115612926578182fd5b8201601f81018413612936578182fd5b611acc8482356020840161262e565b600060208284031215612956578081fd5b5035919050565b60006020828403121561296e578081fd5b5051919050565b6000815180845261298d816020860160208601612c31565b601f01601f19169290920160200192915050565b6000845160206129b48285838a01612c31565b8551918401916129c78184848a01612c31565b85549201918390600181811c90808316806129e357607f831692505b858310811415612a0157634e487b7160e01b88526022600452602488fd5b808015612a155760018114612a2657612a52565b60ff19851688528388019550612a52565b60008b815260209020895b85811015612a4a5781548a820152908401908801612a31565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9690830184612975565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ad857835183529284019291840191600101612abc565b50909695505050505050565b60208152600061178f6020830184612975565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612be257612be2612cc7565b500190565b600082612bf657612bf6612cdd565b500490565b6000816000190483118215151615612c1557612c15612cc7565b500290565b600082821015612c2c57612c2c612cc7565b500390565b60005b83811015612c4c578181015183820152602001612c34565b838111156115da5750506000910152565b600181811c90821680612c7157607f821691505b60208210811415612c9257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cac57612cac612cc7565b5060010190565b600082612cc257612cc2612cdd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610e0457600080fd5b6001600160e01b031981168114610e0457600080fdfea2646970667358221220da9ba79eb874631604877166d2b593d3f7347fb387daf09e4d5d4040623949e864736f6c634300080400334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000004584e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004584e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001168747470733a2f2f746f70736563726574000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001268747470733a2f2f77696c6c7570646174650000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636c0360eb11610175578063b88d4fde116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c5146107ff578063edec5f2714610848578063f2c4ce1e14610868578063f2fde38b1461088857600080fd5b8063d5abeb01146107a9578063da3ef23f146107bf578063e486df15146107df57600080fd5b8063b88d4fde146106fe578063ba4e5c491461071e578063ba7d2c761461073e578063c668286214610754578063c87b56dd14610769578063d0eb26b01461078957600080fd5b80638ed5c9101161012e5780638ed5c9101461066b57806395d89b41146106815780639c70b51214610696578063a0712d68146106b6578063a22cb465146106c9578063a475b5dd146106e957600080fd5b80636c0360eb146105c357806370a08231146105d8578063715018a6146105f85780637f00c7a61461060d57806380929d6c1461062d5780638da5cb5b1461064d57600080fd5b80633af32abf1161021957806344a0d68a116101d257806344a0d68a1461050a5780634f6ccce71461052a578063518302271461054a57806355f804b3146105695780635c975abb146105895780636352211e146105a357600080fd5b80633af32abf146104555780633c952764146104755780633ccfd60b1461049557806341bec0d21461049d57806342842e0e146104bd578063438b6300146104dd57600080fd5b8063095ea7b31161026b578063095ea7b31461039d57806318160ddd146103bd57806318cae269146103d2578063239c70ae146103ff57806323b872dd146104155780632f745c591461043557600080fd5b806301ffc9a7146102b357806302329a29146102e85780630435e2f91461030a57806306fdde031461032e578063081812fc14610350578063081c8c4414610388575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046128c7565b6108a8565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b5061030861030336600461288f565b6108d3565b005b34801561031657600080fd5b50610320600e5481565b6040519081526020016102df565b34801561033a57600080fd5b50610343610919565b6040516102df9190612ae4565b34801561035c57600080fd5b5061037061036b366004612945565b6109ab565b6040516001600160a01b0390911681526020016102df565b34801561039457600080fd5b50610343610a40565b3480156103a957600080fd5b506103086103b83660046127f6565b610ace565b3480156103c957600080fd5b50600854610320565b3480156103de57600080fd5b506103206103ed3660046126c0565b60166020526000908152604090205481565b34801561040b57600080fd5b5061032060125481565b34801561042157600080fd5b5061030861043036600461270c565b610be4565b34801561044157600080fd5b506103206104503660046127f6565b610c15565b34801561046157600080fd5b506102d36104703660046126c0565b610cab565b34801561048157600080fd5b5061030861049036600461288f565b610d23565b610308610d69565b3480156104a957600080fd5b506103086104b83660046126c0565b610e07565b3480156104c957600080fd5b506103086104d836600461270c565b610e53565b3480156104e957600080fd5b506104fd6104f83660046126c0565b610e6e565b6040516102df9190612aa0565b34801561051657600080fd5b50610308610525366004612945565b610f2c565b34801561053657600080fd5b50610320610545366004612945565b610f6e565b34801561055657600080fd5b506014546102d390610100900460ff1681565b34801561057557600080fd5b506103086105843660046128ff565b61100f565b34801561059557600080fd5b506014546102d39060ff1681565b3480156105af57600080fd5b506103706105be366004612945565b611050565b3480156105cf57600080fd5b506103436110c7565b3480156105e457600080fd5b506103206105f33660046126c0565b6110d4565b34801561060457600080fd5b5061030861115b565b34801561061957600080fd5b50610308610628366004612945565b611191565b34801561063957600080fd5b50610308610648366004612945565b6111c0565b34801561065957600080fd5b50600a546001600160a01b0316610370565b34801561067757600080fd5b5061032060105481565b34801561068d57600080fd5b506103436111ef565b3480156106a257600080fd5b506014546102d39062010000900460ff1681565b6103086106c4366004612945565b6111fe565b3480156106d557600080fd5b506103086106e43660046127c0565b611562565b3480156106f557600080fd5b5061030861156d565b34801561070a57600080fd5b50610308610719366004612747565b6115a8565b34801561072a57600080fd5b50610370610739366004612945565b6115e0565b34801561074a57600080fd5b5061032060135481565b34801561076057600080fd5b5061034361160a565b34801561077557600080fd5b50610343610784366004612945565b611617565b34801561079557600080fd5b506103086107a4366004612945565b611796565b3480156107b557600080fd5b5061032060115481565b3480156107cb57600080fd5b506103086107da3660046128ff565b6117c5565b3480156107eb57600080fd5b50600f54610370906001600160a01b031681565b34801561080b57600080fd5b506102d361081a3660046126da565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561085457600080fd5b5061030861086336600461281f565b611802565b34801561087457600080fd5b506103086108833660046128ff565b611844565b34801561089457600080fd5b506103086108a33660046126c0565b611881565b60006001600160e01b0319821663780e9d6360e01b14806108cd57506108cd8261191f565b92915050565b600a546001600160a01b031633146109065760405162461bcd60e51b81526004016108fd90612b49565b60405180910390fd5b6014805460ff1916911515919091179055565b60606000805461092890612c5d565b80601f016020809104026020016040519081016040528092919081815260200182805461095490612c5d565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fd565b506000908152600460205260409020546001600160a01b031690565b600d8054610a4d90612c5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990612c5d565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b6000610ad982611050565b9050806001600160a01b0316836001600160a01b03161415610b475760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fd565b336001600160a01b0382161480610b635750610b63813361081a565b610bd55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fd565b610bdf838361196f565b505050565b610bee33826119dd565b610c0a5760405162461bcd60e51b81526004016108fd90612b7e565b610bdf838383611ad4565b6000610c20836110d4565b8210610c825760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108fd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601554811015610d1a57826001600160a01b031660158281548110610ce457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610d085750600192915050565b80610d1281612c98565b915050610caf565b50600092915050565b600a546001600160a01b03163314610d4d5760405162461bcd60e51b81526004016108fd90612b49565b60148054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610d935760405162461bcd60e51b81526004016108fd90612b49565b6000610da7600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610df1576040519150601f19603f3d011682016040523d82523d6000602084013e610df6565b606091505b5050905080610e0457600080fd5b50565b600a546001600160a01b03163314610e315760405162461bcd60e51b81526004016108fd90612b49565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610bdf838383604051806020016040528060008152506115a8565b60606000610e7b836110d4565b905060008167ffffffffffffffff811115610ea657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ecf578160200160208202803683370190505b50905060005b82811015610f2457610ee78582610c15565b828281518110610f0757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f1c81612c98565b915050610ed5565b509392505050565b600a546001600160a01b03163314610f565760405162461bcd60e51b81526004016108fd90612b49565b610f6881670de0b6b3a7640000612bfb565b600e5550565b6000610f7960085490565b8210610fdc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108fd565b60088281548110610ffd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146110395760405162461bcd60e51b81526004016108fd90612b49565b805161104c90600b906020840190612524565b5050565b6000818152600260205260408120546001600160a01b0316806108cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fd565b600b8054610a4d90612c5d565b60006001600160a01b03821661113f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108fd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111855760405162461bcd60e51b81526004016108fd90612b49565b61118f6000611c7f565b565b600a546001600160a01b031633146111bb5760405162461bcd60e51b81526004016108fd90612b49565b601255565b600a546001600160a01b031633146111ea5760405162461bcd60e51b81526004016108fd90612b49565b601055565b60606001805461092890612c5d565b60145460ff161561124a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108fd565b600061125560085490565b90506000826010546112679190612bfb565b9050600083600e546112799190612bfb565b9050600061128633611cd1565b9050600085116112d85760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108fd565b6012548511156113365760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108fd565b6011546113438686612bcf565b111561138a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108fd565b600a546001600160a01b0316331461150a5760145462010000900460ff16151560011415611474576113bb33610cab565b6114075760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108fd565b336000908152601660205260409020546013546114248783612bcf565b11156114725760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108fd565b505b813410156114b85760405162461bcd60e51b815260206004820152601160248201527024b739bab33334b1b4b2b73a1022aa241760791b60448201526064016108fd565b828110156115015760405162461bcd60e51b815260206004820152601660248201527524b739bab33334b1b4b2b73a102c102a37b5b2b7399760511b60448201526064016108fd565b61150a83611d51565b60015b85811161155a5733600090815260166020526040812080549161152f83612c98565b909155506115489050336115438388612bcf565b611ddf565b8061155281612c98565b91505061150d565b505050505050565b61104c338383611df9565b600a546001600160a01b031633146115975760405162461bcd60e51b81526004016108fd90612b49565b6014805461ff001916610100179055565b6115b233836119dd565b6115ce5760405162461bcd60e51b81526004016108fd90612b7e565b6115da84848484611ec8565b50505050565b601581815481106115f057600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610a4d90612c5d565b6000818152600260205260409020546060906001600160a01b03166116965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fd565b601454610100900460ff1661173757600d80546116b290612c5d565b80601f01602080910402602001604051908101604052809291908181526020018280546116de90612c5d565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b50505050509050919050565b6000611741611efb565b90506000815111611761576040518060200160405280600081525061178f565b8061176b84611f0a565b600c60405160200161177f939291906129a1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117c05760405162461bcd60e51b81526004016108fd90612b49565b601355565b600a546001600160a01b031633146117ef5760405162461bcd60e51b81526004016108fd90612b49565b805161104c90600c906020840190612524565b600a546001600160a01b0316331461182c5760405162461bcd60e51b81526004016108fd90612b49565b611838601560006125a8565b610bdf601583836125c6565b600a546001600160a01b0316331461186e5760405162461bcd60e51b81526004016108fd90612b49565b805161104c90600d906020840190612524565b600a546001600160a01b031633146118ab5760405162461bcd60e51b81526004016108fd90612b49565b6001600160a01b0381166119105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fd565b610e0481611c7f565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061195057506001600160e01b03198216635b5e139f60e01b145b806108cd57506301ffc9a760e01b6001600160e01b03198316146108cd565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119a482611050565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fd565b6000611a6183611050565b9050806001600160a01b0316846001600160a01b03161480611a9c5750836001600160a01b0316611a91846109ab565b6001600160a01b0316145b80611acc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae782611050565b6001600160a01b031614611b4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108fd565b6001600160a01b038216611bb15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fd565b611bbc838383612024565b611bc760008261196f565b6001600160a01b0383166000908152600360205260408120805460019290611bf0908490612c1a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c1e908490612bcf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f546040516370a0823160e01b81526001600160a01b038381166004830152600092169081906370a082319060240160206040518083038186803b158015611d1957600080fd5b505afa158015611d2d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178f919061295d565b600f546040516323b872dd60e01b815233600482015261dead6024820152604481018390526001600160a01b039091169081906323b872dd90606401602060405180830381600087803b158015611da757600080fd5b505af1158015611dbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdf91906128ab565b61104c8282604051806020016040528060008152506120dc565b816001600160a01b0316836001600160a01b03161415611e5b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ed3848484611ad4565b611edf8484848461210f565b6115da5760405162461bcd60e51b81526004016108fd90612af7565b6060600b805461092890612c5d565b606081611f2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f585780611f4281612c98565b9150611f519050600a83612be7565b9150611f32565b60008167ffffffffffffffff811115611f8157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fab576020820181803683370190505b5090505b8415611acc57611fc0600183612c1a565b9150611fcd600a86612cb3565b611fd8906030612bcf565b60f81b818381518110611ffb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061201d600a86612be7565b9450611faf565b6001600160a01b03831661207f5761207a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120a2565b816001600160a01b0316836001600160a01b0316146120a2576120a2838261221c565b6001600160a01b0382166120b957610bdf816122b9565b826001600160a01b0316826001600160a01b031614610bdf57610bdf8282612392565b6120e683836123d6565b6120f3600084848461210f565b610bdf5760405162461bcd60e51b81526004016108fd90612af7565b60006001600160a01b0384163b1561221157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612153903390899088908890600401612a63565b602060405180830381600087803b15801561216d57600080fd5b505af192505050801561219d575060408051601f3d908101601f1916820190925261219a918101906128e3565b60015b6121f7573d8080156121cb576040519150601f19603f3d011682016040523d82523d6000602084013e6121d0565b606091505b5080516121ef5760405162461bcd60e51b81526004016108fd90612af7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611acc565b506001949350505050565b60006001612229846110d4565b6122339190612c1a565b600083815260076020526040902054909150808214612286576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122cb90600190612c1a565b6000838152600960205260408120546008805493945090928490811061230157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061233057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061237657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061239d836110d4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661242c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fd565b6000818152600260205260409020546001600160a01b0316156124915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fd565b61249d60008383612024565b6001600160a01b03821660009081526003602052604081208054600192906124c6908490612bcf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461253090612c5d565b90600052602060002090601f0160209004810192826125525760008555612598565b82601f1061256b57805160ff1916838001178555612598565b82800160010185558215612598579182015b8281111561259857825182559160200191906001019061257d565b506125a4929150612619565b5090565b5080546000825590600052602060002090810190610e049190612619565b828054828255906000526020600020908101928215612598579160200282015b828111156125985781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906125e6565b5b808211156125a4576000815560010161261a565b600067ffffffffffffffff8084111561264957612649612cf3565b604051601f8501601f19908116603f0116810190828211818310171561267157612671612cf3565b8160405280935085815286868601111561268a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126bb57600080fd5b919050565b6000602082840312156126d1578081fd5b61178f826126a4565b600080604083850312156126ec578081fd5b6126f5836126a4565b9150612703602084016126a4565b90509250929050565b600080600060608486031215612720578081fd5b612729846126a4565b9250612737602085016126a4565b9150604084013590509250925092565b6000806000806080858703121561275c578081fd5b612765856126a4565b9350612773602086016126a4565b925060408501359150606085013567ffffffffffffffff811115612795578182fd5b8501601f810187136127a5578182fd5b6127b48782356020840161262e565b91505092959194509250565b600080604083850312156127d2578182fd5b6127db836126a4565b915060208301356127eb81612d09565b809150509250929050565b60008060408385031215612808578182fd5b612811836126a4565b946020939093013593505050565b60008060208385031215612831578182fd5b823567ffffffffffffffff80821115612848578384fd5b818501915085601f83011261285b578384fd5b813581811115612869578485fd5b8660208260051b850101111561287d578485fd5b60209290920196919550909350505050565b6000602082840312156128a0578081fd5b813561178f81612d09565b6000602082840312156128bc578081fd5b815161178f81612d09565b6000602082840312156128d8578081fd5b813561178f81612d17565b6000602082840312156128f4578081fd5b815161178f81612d17565b600060208284031215612910578081fd5b813567ffffffffffffffff811115612926578182fd5b8201601f81018413612936578182fd5b611acc8482356020840161262e565b600060208284031215612956578081fd5b5035919050565b60006020828403121561296e578081fd5b5051919050565b6000815180845261298d816020860160208601612c31565b601f01601f19169290920160200192915050565b6000845160206129b48285838a01612c31565b8551918401916129c78184848a01612c31565b85549201918390600181811c90808316806129e357607f831692505b858310811415612a0157634e487b7160e01b88526022600452602488fd5b808015612a155760018114612a2657612a52565b60ff19851688528388019550612a52565b60008b815260209020895b85811015612a4a5781548a820152908401908801612a31565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9690830184612975565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ad857835183529284019291840191600101612abc565b50909695505050505050565b60208152600061178f6020830184612975565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612be257612be2612cc7565b500190565b600082612bf657612bf6612cdd565b500490565b6000816000190483118215151615612c1557612c15612cc7565b500290565b600082821015612c2c57612c2c612cc7565b500390565b60005b83811015612c4c578181015183820152602001612c34565b838111156115da5750506000910152565b600181811c90821680612c7157607f821691505b60208210811415612c9257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cac57612cac612cc7565b5060010190565b600082612cc257612cc2612cdd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610e0457600080fd5b6001600160e01b031981168114610e0457600080fdfea2646970667358221220da9ba79eb874631604877166d2b593d3f7347fb387daf09e4d5d4040623949e864736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000004584e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004584e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001168747470733a2f2f746f70736563726574000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001268747470733a2f2f77696c6c7570646174650000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): XNFT
Arg [1] : _symbol (string): XNFT
Arg [2] : _initBaseURI (string): https://topsecret
Arg [3] : _initNotRevealedUri (string): https://willupdate

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 584e465400000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 584e465400000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [9] : 68747470733a2f2f746f70736563726574000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [11] : 68747470733a2f2f77696c6c7570646174650000000000000000000000000000


Deployed Bytecode Sourcemap

46218:5339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40033:224;;;;;;;;;;-1:-1:-1;40033:224:0;;;;;:::i;:::-;;:::i;:::-;;;9430:14:1;;9423:22;9405:41;;9393:2;9378:18;40033:224:0;;;;;;;;51070:73;;;;;;;;;;-1:-1:-1;51070:73:0;;;;;:::i;:::-;;:::i;:::-;;46399:35;;;;;;;;;;;;;;;;;;;19903:25:1;;;19891:2;19876:18;46399:35:0;19858:76:1;27474:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29033:221::-;;;;;;;;;;-1:-1:-1;29033:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7708:32:1;;;7690:51;;7678:2;7663:18;29033:221:0;7645:102:1;46366:28:0;;;;;;;;;;;;;:::i;28556:411::-;;;;;;;;;;-1:-1:-1;28556:411:0;;;;;:::i;:::-;;:::i;40673:113::-;;;;;;;;;;-1:-1:-1;40761:10:0;:17;40673:113;;46842:55;;;;;;;;;;-1:-1:-1;46842:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;46614:33;;;;;;;;;;;;;;;;29783:339;;;;;;;;;;-1:-1:-1;29783:339:0;;;;;:::i;:::-;;:::i;40341:256::-;;;;;;;;;;-1:-1:-1;40341:256:0;;;;;:::i;:::-;;:::i;48961:239::-;;;;;;;;;;-1:-1:-1;48961:239:0;;;;;:::i;:::-;;:::i;51151:95::-;;;;;;;;;;-1:-1:-1;51151:95:0;;;;;:::i;:::-;;:::i;51405:149::-;;;:::i;50472:110::-;;;;;;;;;;-1:-1:-1;50472:110:0;;;;;:::i;:::-;;:::i;30193:185::-;;;;;;;;;;-1:-1:-1;30193:185:0;;;;;:::i;:::-;;:::i;49206:348::-;;;;;;;;;;-1:-1:-1;49206:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50264:92::-;;;;;;;;;;-1:-1:-1;50264:92:0;;;;;:::i;:::-;;:::i;40863:233::-;;;;;;;;;;-1:-1:-1;40863:233:0;;;;;:::i;:::-;;:::i;46727:28::-;;;;;;;;;;-1:-1:-1;46727:28:0;;;;;;;;;;;50710:98;;;;;;;;;;-1:-1:-1;50710:98:0;;;;;:::i;:::-;;:::i;46696:26::-;;;;;;;;;;-1:-1:-1;46696:26:0;;;;;;;;27168:239;;;;;;;;;;-1:-1:-1;27168:239:0;;;;;:::i;:::-;;:::i;46298:21::-;;;;;;;;;;;;;:::i;26898:208::-;;;;;;;;;;-1:-1:-1;26898:208:0;;;;;:::i;:::-;;:::i;5132:103::-;;;;;;;;;;;;;:::i;50588:116::-;;;;;;;;;;-1:-1:-1;50588:116:0;;;;;:::i;:::-;;:::i;50362:104::-;;;;;;;;;;-1:-1:-1;50362:104:0;;;;;:::i;:::-;;:::i;4481:87::-;;;;;;;;;;-1:-1:-1;4554:6:0;;-1:-1:-1;;;;;4554:6:0;4481:87;;46531:43;;;;;;;;;;;;;;;;27643:104;;;;;;;;;;;;;:::i;46760:35::-;;;;;;;;;;-1:-1:-1;46760:35:0;;;;;;;;;;;47715:1238;;;;;;:::i;:::-;;:::i;29326:155::-;;;;;;;;;;-1:-1:-1;29326:155:0;;;;;:::i;:::-;;:::i;50079:65::-;;;;;;;;;;;;;:::i;30449:328::-;;;;;;;;;;-1:-1:-1;30449:328:0;;;;;:::i;:::-;;:::i;46800:37::-;;;;;;;;;;-1:-1:-1;46800:37:0;;;;;:::i;:::-;;:::i;46652:39::-;;;;;;;;;;;;;;;;46324:37;;;;;;;;;;;;;:::i;49560:497::-;;;;;;;;;;-1:-1:-1;49560:497:0;;;;;:::i;:::-;;:::i;50152:104::-;;;;;;;;;;-1:-1:-1;50152:104:0;;;;;:::i;:::-;;:::i;46579:30::-;;;;;;;;;;;;;;;;50814:122;;;;;;;;;;-1:-1:-1;50814:122:0;;;;;:::i;:::-;;:::i;46439:87::-;;;;;;;;;;-1:-1:-1;46439:87:0;;;;-1:-1:-1;;;;;46439:87:0;;;29552:164;;;;;;;;;;-1:-1:-1;29552:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29673:25:0;;;29649:4;29673:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29552:164;51254:144;;;;;;;;;;-1:-1:-1;51254:144:0;;;;;:::i;:::-;;:::i;50944:120::-;;;;;;;;;;-1:-1:-1;50944:120:0;;;;;:::i;:::-;;:::i;5390:201::-;;;;;;;;;;-1:-1:-1;5390:201:0;;;;;:::i;:::-;;:::i;40033:224::-;40135:4;-1:-1:-1;;;;;;40159:50:0;;-1:-1:-1;;;40159:50:0;;:90;;;40213:36;40237:11;40213:23;:36::i;:::-;40152:97;40033:224;-1:-1:-1;;40033:224:0:o;51070:73::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;;;;;;;;;51122:6:::1;:15:::0;;-1:-1:-1;;51122:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51070:73::o;27474:100::-;27528:13;27561:5;27554:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27474:100;:::o;29033:221::-;29109:7;32376:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32376:16:0;29129:73;;;;-1:-1:-1;;;29129:73:0;;15370:2:1;29129:73:0;;;15352:21:1;15409:2;15389:18;;;15382:30;15448:34;15428:18;;;15421:62;-1:-1:-1;;;15499:18:1;;;15492:42;15551:19;;29129:73:0;15342:234:1;29129:73:0;-1:-1:-1;29222:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29222:24:0;;29033:221::o;46366:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28556:411::-;28637:13;28653:23;28668:7;28653:14;:23::i;:::-;28637:39;;28701:5;-1:-1:-1;;;;;28695:11:0;:2;-1:-1:-1;;;;;28695:11:0;;;28687:57;;;;-1:-1:-1;;;28687:57:0;;17667:2:1;28687:57:0;;;17649:21:1;17706:2;17686:18;;;17679:30;17745:34;17725:18;;;17718:62;-1:-1:-1;;;17796:18:1;;;17789:31;17837:19;;28687:57:0;17639:223:1;28687:57:0;3232:10;-1:-1:-1;;;;;28779:21:0;;;;:62;;-1:-1:-1;28804:37:0;28821:5;3232:10;29552:164;:::i;28804:37::-;28757:168;;;;-1:-1:-1;;;28757:168:0;;13007:2:1;28757:168:0;;;12989:21:1;13046:2;13026:18;;;13019:30;13085:34;13065:18;;;13058:62;13156:26;13136:18;;;13129:54;13200:19;;28757:168:0;12979:246:1;28757:168:0;28938:21;28947:2;28951:7;28938:8;:21::i;:::-;28556:411;;;:::o;29783:339::-;29978:41;3232:10;30011:7;29978:18;:41::i;:::-;29970:103;;;;-1:-1:-1;;;29970:103:0;;;;;;;:::i;:::-;30086:28;30096:4;30102:2;30106:7;30086:9;:28::i;40341:256::-;40438:7;40474:23;40491:5;40474:16;:23::i;:::-;40466:5;:31;40458:87;;;;-1:-1:-1;;;40458:87:0;;9883:2:1;40458:87:0;;;9865:21:1;9922:2;9902:18;;;9895:30;9961:34;9941:18;;;9934:62;-1:-1:-1;;;10012:18:1;;;10005:41;10063:19;;40458:87:0;9855:233:1;40458:87:0;-1:-1:-1;;;;;;40563:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40341:256::o;48961:239::-;49020:4;;49033:143;49054:20;:27;49050:31;;49033:143;;;49128:5;-1:-1:-1;;;;;49101:32:0;:20;49122:1;49101:23;;;;;;-1:-1:-1;;;49101:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49101:23:0;:32;49097:72;;;-1:-1:-1;49155:4:0;;48961:239;-1:-1:-1;;48961:239:0:o;49097:72::-;49083:3;;;;:::i;:::-;;;;49033:143;;;-1:-1:-1;49189:5:0;;48961:239;-1:-1:-1;;48961:239:0:o;51151:95::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;51216:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51216:24:0;;::::1;::::0;;;::::1;::::0;;51151:95::o;51405:149::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;51460:7:::1;51481;4554:6:::0;;-1:-1:-1;;;;;4554:6:0;;4481:87;51481:7:::1;-1:-1:-1::0;;;;;51473:21:0::1;51502;51473:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51459:69;;;51543:2;51535:11;;;::::0;::::1;;4772:1;51405:149::o:0;50472:110::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;50544:20:::1;:32:::0;;-1:-1:-1;;;;;;50544:32:0::1;-1:-1:-1::0;;;;;50544:32:0;;;::::1;::::0;;;::::1;::::0;;50472:110::o;30193:185::-;30331:39;30348:4;30354:2;30358:7;30331:39;;;;;;;;;;;;:16;:39::i;49206:348::-;49281:16;49309:23;49335:17;49345:6;49335:9;:17::i;:::-;49309:43;;49359:25;49401:15;49387:30;;;;;;-1:-1:-1;;;49387:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49387:30:0;;49359:58;;49429:9;49424:103;49444:15;49440:1;:19;49424:103;;;49489:30;49509:6;49517:1;49489:19;:30::i;:::-;49475:8;49484:1;49475:11;;;;;;-1:-1:-1;;;49475:11:0;;;;;;;;;;;;;;;;;;:44;49461:3;;;;:::i;:::-;;;;49424:103;;;-1:-1:-1;49540:8:0;49206:348;-1:-1:-1;;;49206:348:0:o;50264:92::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;50333:17:::1;:8:::0;50344:6:::1;50333:17;:::i;:::-;50323:7;:27:::0;-1:-1:-1;50264:92:0:o;40863:233::-;40938:7;40974:30;40761:10;:17;;40673:113;40974:30;40966:5;:38;40958:95;;;;-1:-1:-1;;;40958:95:0;;18487:2:1;40958:95:0;;;18469:21:1;18526:2;18506:18;;;18499:30;18565:34;18545:18;;;18538:62;-1:-1:-1;;;18616:18:1;;;18609:42;18668:19;;40958:95:0;18459:234:1;40958:95:0;41071:10;41082:5;41071:17;;;;;;-1:-1:-1;;;41071:17:0;;;;;;;;;;;;;;;;;41064:24;;40863:233;;;:::o;50710:98::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;50781:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50710:98:::0;:::o;27168:239::-;27240:7;27276:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27276:16:0;27311:19;27303:73;;;;-1:-1:-1;;;27303:73:0;;13843:2:1;27303:73:0;;;13825:21:1;13882:2;13862:18;;;13855:30;13921:34;13901:18;;;13894:62;-1:-1:-1;;;13972:18:1;;;13965:39;14021:19;;27303:73:0;13815:231:1;46298:21:0;;;;;;;:::i;26898:208::-;26970:7;-1:-1:-1;;;;;26998:19:0;;26990:74;;;;-1:-1:-1;;;26990:74:0;;13432:2:1;26990:74:0;;;13414:21:1;13471:2;13451:18;;;13444:30;13510:34;13490:18;;;13483:62;-1:-1:-1;;;13561:18:1;;;13554:40;13611:19;;26990:74:0;13404:232:1;26990:74:0;-1:-1:-1;;;;;;27082:16:0;;;;;:9;:16;;;;;;;26898:208::o;5132:103::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;5197:30:::1;5224:1;5197:18;:30::i;:::-;5132:103::o:0;50588:116::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;50665:13:::1;:33:::0;50588:116::o;50362:104::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;50435:9:::1;:25:::0;50362:104::o;27643:::-;27699:13;27732:7;27725:14;;;;;:::i;47715:1238::-;47785:6;;;;47784:7;47776:42;;;;-1:-1:-1;;;47776:42:0;;16490:2:1;47776:42:0;;;16472:21:1;16529:2;16509:18;;;16502:30;-1:-1:-1;;;16548:18:1;;;16541:52;16610:18;;47776:42:0;16462:172:1;47776:42:0;47829:14;47846:13;40761:10;:17;;40673:113;47846:13;47829:30;;47870:16;47901:11;47889:9;;:23;;;;:::i;:::-;47870:42;;47923:16;47952:11;47942:7;;:21;;;;:::i;:::-;47923:40;;47974:20;47997:24;48010:10;47997:12;:24::i;:::-;47974:47;;48054:1;48040:11;:15;48032:55;;;;-1:-1:-1;;;48032:55:0;;19252:2:1;48032:55:0;;;19234:21:1;19291:2;19271:18;;;19264:30;19330:29;19310:18;;;19303:57;19377:18;;48032:55:0;19224:177:1;48032:55:0;48121:13;;48106:11;:28;;48098:77;;;;-1:-1:-1;;;48098:77:0;;14604:2:1;48098:77:0;;;14586:21:1;14643:2;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;-1:-1:-1;;;14733:18:1;;;14726:34;14777:19;;48098:77:0;14576:226:1;48098:77:0;48218:9;;48194:20;48203:11;48194:6;:20;:::i;:::-;:33;;48186:68;;;;-1:-1:-1;;;48186:68:0;;14253:2:1;48186:68:0;;;14235:21:1;14292:2;14272:18;;;14265:30;-1:-1:-1;;;14311:18:1;;;14304:52;14373:18;;48186:68:0;14225:172:1;48186:68:0;4554:6;;-1:-1:-1;;;;;4554:6:0;48271:10;:21;48267:521;;48308:15;;;;;;;:23;;48327:4;48308:23;48305:298;;;48356:25;48370:10;48356:13;:25::i;:::-;48348:61;;;;-1:-1:-1;;;48348:61:0;;18900:2:1;48348:61:0;;;18882:21:1;18939:2;18919:18;;;18912:30;18978:25;18958:18;;;18951:53;19021:18;;48348:61:0;18872:173:1;48348:61:0;48472:10;48424:24;48451:32;;;:20;:32;;;;;;48540:18;;48506:30;48525:11;48451:32;48506:30;:::i;:::-;:52;;48498:93;;;;-1:-1:-1;;;48498:93:0;;11478:2:1;48498:93:0;;;11460:21:1;11517:2;11497:18;;;11490:30;11556;11536:18;;;11529:58;11604:18;;48498:93:0;11450:178:1;48498:93:0;48305:298;;48634:8;48621:9;:21;;48613:51;;;;-1:-1:-1;;;48613:51:0;;16144:2:1;48613:51:0;;;16126:21:1;16183:2;16163:18;;;16156:30;-1:-1:-1;;;16202:18:1;;;16195:47;16259:18;;48613:51:0;16116:167:1;48613:51:0;48699:8;48683:12;:24;;48675:59;;;;-1:-1:-1;;;48675:59:0;;19608:2:1;48675:59:0;;;19590:21:1;19647:2;19627:18;;;19620:30;-1:-1:-1;;;19666:18:1;;;19659:52;19728:18;;48675:59:0;19580:172:1;48675:59:0;48745:23;48759:8;48745:13;:23::i;:::-;48821:1;48804:142;48829:11;48824:1;:16;48804:142;;48879:10;48858:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;48901:33:0;;-1:-1:-1;48911:10:0;48923;48932:1;48923:6;:10;:::i;:::-;48901:9;:33::i;:::-;48842:3;;;;:::i;:::-;;;;48804:142;;;;47715:1238;;;;;:::o;29326:155::-;29421:52;3232:10;29454:8;29464;29421:18;:52::i;50079:65::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;50123:8:::1;:15:::0;;-1:-1:-1;;50123:15:0::1;;;::::0;;50079:65::o;30449:328::-;30624:41;3232:10;30657:7;30624:18;:41::i;:::-;30616:103;;;;-1:-1:-1;;;30616:103:0;;;;;;;:::i;:::-;30730:39;30744:4;30750:2;30754:7;30763:5;30730:13;:39::i;:::-;30449:328;;;;:::o;46800:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46800:37:0;;-1:-1:-1;46800:37:0;:::o;46324:::-;;;;;;;:::i;49560:497::-;32352:4;32376:16;;;:7;:16;;;;;;49658:13;;-1:-1:-1;;;;;32376:16:0;49683:97;;;;-1:-1:-1;;;49683:97:0;;17251:2:1;49683:97:0;;;17233:21:1;17290:2;17270:18;;;17263:30;17329:34;17309:18;;;17302:62;-1:-1:-1;;;17380:18:1;;;17373:45;17435:19;;49683:97:0;17223:237:1;49683:97:0;49796:8;;;;;;;49793:62;;49833:14;49826:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49560:497;;;:::o;49793:62::-;49863:28;49894:10;:8;:10::i;:::-;49863:41;;49949:1;49924:14;49918:28;:32;:133;;;;;;;;;;;;;;;;;49986:14;50002:18;:7;:16;:18::i;:::-;50022:13;49969:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49918:133;49911:140;49560:497;-1:-1:-1;;;49560:497:0:o;50152:104::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;50223:18:::1;:27:::0;50152:104::o;50814:122::-;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;50897:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;51254:144::-:0;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;51329:27:::1;51336:20;;51329:27;:::i;:::-;51363:29;:20;51386:6:::0;;51363:29:::1;:::i;50944:120::-:0;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;51026:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5390:201::-:0;4554:6;;-1:-1:-1;;;;;4554:6:0;3232:10;4701:23;4693:68;;;;-1:-1:-1;;;4693:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5479:22:0;::::1;5471:73;;;::::0;-1:-1:-1;;;5471:73:0;;10714:2:1;5471:73:0::1;::::0;::::1;10696:21:1::0;10753:2;10733:18;;;10726:30;10792:34;10772:18;;;10765:62;-1:-1:-1;;;10843:18:1;;;10836:36;10889:19;;5471:73:0::1;10686:228:1::0;5471:73:0::1;5555:28;5574:8;5555:18;:28::i;6822:387::-:0;7145:20;7193:8;;;6822:387::o;26529:305::-;26631:4;-1:-1:-1;;;;;;26668:40:0;;-1:-1:-1;;;26668:40:0;;:105;;-1:-1:-1;;;;;;;26725:48:0;;-1:-1:-1;;;26725:48:0;26668:105;:158;;;-1:-1:-1;;;;;;;;;;17234:40:0;;;26790:36;17125:157;36269:174;36344:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36344:29:0;-1:-1:-1;;;;;36344:29:0;;;;;;;;:24;;36398:23;36344:24;36398:14;:23::i;:::-;-1:-1:-1;;;;;36389:46:0;;;;;;;;;;;36269:174;;:::o;32581:348::-;32674:4;32376:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32376:16:0;32691:73;;;;-1:-1:-1;;;32691:73:0;;12594:2:1;32691:73:0;;;12576:21:1;12633:2;12613:18;;;12606:30;12672:34;12652:18;;;12645:62;-1:-1:-1;;;12723:18:1;;;12716:42;12775:19;;32691:73:0;12566:234:1;32691:73:0;32775:13;32791:23;32806:7;32791:14;:23::i;:::-;32775:39;;32844:5;-1:-1:-1;;;;;32833:16:0;:7;-1:-1:-1;;;;;32833:16:0;;:51;;;;32877:7;-1:-1:-1;;;;;32853:31:0;:20;32865:7;32853:11;:20::i;:::-;-1:-1:-1;;;;;32853:31:0;;32833:51;:87;;;-1:-1:-1;;;;;;29673:25:0;;;29649:4;29673:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32888:32;32825:96;32581:348;-1:-1:-1;;;;32581:348:0:o;35573:578::-;35732:4;-1:-1:-1;;;;;35705:31:0;:23;35720:7;35705:14;:23::i;:::-;-1:-1:-1;;;;;35705:31:0;;35697:85;;;;-1:-1:-1;;;35697:85:0;;16841:2:1;35697:85:0;;;16823:21:1;16880:2;16860:18;;;16853:30;16919:34;16899:18;;;16892:62;-1:-1:-1;;;16970:18:1;;;16963:39;17019:19;;35697:85:0;16813:231:1;35697:85:0;-1:-1:-1;;;;;35801:16:0;;35793:65;;;;-1:-1:-1;;;35793:65:0;;11835:2:1;35793:65:0;;;11817:21:1;11874:2;11854:18;;;11847:30;11913:34;11893:18;;;11886:62;-1:-1:-1;;;11964:18:1;;;11957:34;12008:19;;35793:65:0;11807:226:1;35793:65:0;35871:39;35892:4;35898:2;35902:7;35871:20;:39::i;:::-;35975:29;35992:1;35996:7;35975:8;:29::i;:::-;-1:-1:-1;;;;;36017:15:0;;;;;;:9;:15;;;;;:20;;36036:1;;36017:15;:20;;36036:1;;36017:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36048:13:0;;;;;;:9;:13;;;;;:18;;36065:1;;36048:13;:18;;36065:1;;36048:18;:::i;:::-;;;;-1:-1:-1;;36077:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36077:21:0;-1:-1:-1;;;;;36077:21:0;;;;;;;;;36116:27;;36077:16;;36116:27;;;;;;;35573:578;;;:::o;5751:191::-;5844:6;;;-1:-1:-1;;;;;5861:17:0;;;-1:-1:-1;;;;;;5861:17:0;;;;;;;5894:40;;5844:6;;;5861:17;5844:6;;5894:40;;5825:16;;5894:40;5751:191;;:::o;47296:180::-;47401:20;;47438:32;;-1:-1:-1;;;47438:32:0;;-1:-1:-1;;;;;7708:32:1;;;47438::0;;;7690:51:1;47356:4:0;;47401:20;;;;47438:23;;7663:18:1;;47438:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;47482:210::-;47568:20;;47598:88;;-1:-1:-1;;;47598:88:0;;47625:10;47598:88;;;7992:34:1;47636:42:0;8042:18:1;;;8035:43;8094:18;;;8087:34;;;-1:-1:-1;;;;;47568:20:0;;;;;;47598:26;;7927:18:1;;47598:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;33271:110::-;33347:26;33357:2;33361:7;33347:26;;;;;;;;;;;;:9;:26::i;36585:315::-;36740:8;-1:-1:-1;;;;;36731:17:0;:5;-1:-1:-1;;;;;36731:17:0;;;36723:55;;;;-1:-1:-1;;;36723:55:0;;12240:2:1;36723:55:0;;;12222:21:1;12279:2;12259:18;;;12252:30;12318:27;12298:18;;;12291:55;12363:18;;36723:55:0;12212:175:1;36723:55:0;-1:-1:-1;;;;;36789:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36789:46:0;;;;;;;;;;36851:41;;9405::1;;;36851::0;;9378:18:1;36851:41:0;;;;;;;36585:315;;;:::o;31659:::-;31816:28;31826:4;31832:2;31836:7;31816:9;:28::i;:::-;31863:48;31886:4;31892:2;31896:7;31905:5;31863:22;:48::i;:::-;31855:111;;;;-1:-1:-1;;;31855:111:0;;;;;;;:::i;47188:102::-;47248:13;47277:7;47270:14;;;;;:::i;661:723::-;717:13;938:10;934:53;;-1:-1:-1;;965:10:0;;;;;;;;;;;;-1:-1:-1;;;965:10:0;;;;;661:723::o;934:53::-;1012:5;997:12;1053:78;1060:9;;1053:78;;1086:8;;;;:::i;:::-;;-1:-1:-1;1109:10:0;;-1:-1:-1;1117:2:0;1109:10;;:::i;:::-;;;1053:78;;;1141:19;1173:6;1163:17;;;;;;-1:-1:-1;;;1163:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1163:17:0;;1141:39;;1191:154;1198:10;;1191:154;;1225:11;1235:1;1225:11;;:::i;:::-;;-1:-1:-1;1294:10:0;1302:2;1294:5;:10;:::i;:::-;1281:24;;:2;:24;:::i;:::-;1268:39;;1251:6;1258;1251:14;;;;;;-1:-1:-1;;;1251:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;1251:56:0;;;;;;;;-1:-1:-1;1322:11:0;1331:2;1322:11;;:::i;:::-;;;1191:154;;41709:589;-1:-1:-1;;;;;41915:18:0;;41911:187;;41950:40;41982:7;43125:10;:17;;43098:24;;;;:15;:24;;;;;:44;;;43153:24;;;;;;;;;;;;43021:164;41950:40;41911:187;;;42020:2;-1:-1:-1;;;;;42012:10:0;:4;-1:-1:-1;;;;;42012:10:0;;42008:90;;42039:47;42072:4;42078:7;42039:32;:47::i;:::-;-1:-1:-1;;;;;42112:16:0;;42108:183;;42145:45;42182:7;42145:36;:45::i;42108:183::-;42218:4;-1:-1:-1;;;;;42212:10:0;:2;-1:-1:-1;;;;;42212:10:0;;42208:83;;42239:40;42267:2;42271:7;42239:27;:40::i;33608:321::-;33738:18;33744:2;33748:7;33738:5;:18::i;:::-;33789:54;33820:1;33824:2;33828:7;33837:5;33789:22;:54::i;:::-;33767:154;;;;-1:-1:-1;;;33767:154:0;;;;;;;:::i;37465:799::-;37620:4;-1:-1:-1;;;;;37641:13:0;;7145:20;7193:8;37637:620;;37677:72;;-1:-1:-1;;;37677:72:0;;-1:-1:-1;;;;;37677:36:0;;;;;:72;;3232:10;;37728:4;;37734:7;;37743:5;;37677:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37677:72:0;;;;;;;;-1:-1:-1;;37677:72:0;;;;;;;;;;;;:::i;:::-;;;37673:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37919:13:0;;37915:272;;37962:60;;-1:-1:-1;;;37962:60:0;;;;;;;:::i;37915:272::-;38137:6;38131:13;38122:6;38118:2;38114:15;38107:38;37673:529;-1:-1:-1;;;;;;37800:51:0;-1:-1:-1;;;37800:51:0;;-1:-1:-1;37793:58:0;;37637:620;-1:-1:-1;38241:4:0;37465:799;;;;;;:::o;43812:988::-;44078:22;44128:1;44103:22;44120:4;44103:16;:22::i;:::-;:26;;;;:::i;:::-;44140:18;44161:26;;;:17;:26;;;;;;44078:51;;-1:-1:-1;44294:28:0;;;44290:328;;-1:-1:-1;;;;;44361:18:0;;44339:19;44361:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44412:30;;;;;;:44;;;44529:30;;:17;:30;;;;;:43;;;44290:328;-1:-1:-1;44714:26:0;;;;:17;:26;;;;;;;;44707:33;;;-1:-1:-1;;;;;44758:18:0;;;;;:12;:18;;;;;:34;;;;;;;44751:41;43812:988::o;45095:1079::-;45373:10;:17;45348:22;;45373:21;;45393:1;;45373:21;:::i;:::-;45405:18;45426:24;;;:15;:24;;;;;;45799:10;:26;;45348:46;;-1:-1:-1;45426:24:0;;45348:46;;45799:26;;;;-1:-1:-1;;;45799:26:0;;;;;;;;;;;;;;;;;45777:48;;45863:11;45838:10;45849;45838:22;;;;;;-1:-1:-1;;;45838:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;45943:28;;;:15;:28;;;;;;;:41;;;46115:24;;;;;46108:31;46150:10;:16;;;;;-1:-1:-1;;;46150:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45095:1079;;;;:::o;42599:221::-;42684:14;42701:20;42718:2;42701:16;:20::i;:::-;-1:-1:-1;;;;;42732:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42777:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42599:221:0:o;34265:382::-;-1:-1:-1;;;;;34345:16:0;;34337:61;;;;-1:-1:-1;;;34337:61:0;;15009:2:1;34337:61:0;;;14991:21:1;;;15028:18;;;15021:30;15087:34;15067:18;;;15060:62;15139:18;;34337:61:0;14981:182:1;34337:61:0;32352:4;32376:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32376:16:0;:30;34409:58;;;;-1:-1:-1;;;34409:58:0;;11121:2:1;34409:58:0;;;11103:21:1;11160:2;11140:18;;;11133:30;11199;11179:18;;;11172:58;11247:18;;34409:58:0;11093:178:1;34409:58:0;34480:45;34509:1;34513:2;34517:7;34480:20;:45::i;:::-;-1:-1:-1;;;;;34538:13:0;;;;;;:9;:13;;;;;:18;;34555:1;;34538:13;:18;;34555:1;;34538:18;:::i;:::-;;;;-1:-1:-1;;34567:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34567:21:0;-1:-1:-1;;;;;34567:21:0;;;;;;;;34606:33;;34567:16;;;34606:33;;34567:16;;34606:33;34265:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:325::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2615:28;2637:5;2615:28;:::i;:::-;2662:5;2652:15;;;2432:241;;;;;:::o;2678:264::-;2746:6;2754;2807:2;2795:9;2786:7;2782:23;2778:32;2775:2;;;2828:6;2820;2813:22;2775:2;2856:29;2875:9;2856:29;:::i;:::-;2846:39;2932:2;2917:18;;;;2904:32;;-1:-1:-1;;;2765:177:1:o;2947:665::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:2;;;3115:6;3107;3100:22;3062:2;3160:9;3147:23;3189:18;3230:2;3222:6;3219:14;3216:2;;;3251:6;3243;3236:22;3216:2;3294:6;3283:9;3279:22;3269:32;;3339:7;3332:4;3328:2;3324:13;3320:27;3310:2;;3366:6;3358;3351:22;3310:2;3411;3398:16;3437:2;3429:6;3426:14;3423:2;;;3458:6;3450;3443:22;3423:2;3516:7;3511:2;3501:6;3498:1;3494:14;3490:2;3486:23;3482:32;3479:45;3476:2;;;3542:6;3534;3527:22;3476:2;3578;3570:11;;;;;3600:6;;-1:-1:-1;3052:560:1;;-1:-1:-1;;;;3052:560:1:o;3617:251::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:2;;;3747:6;3739;3732:22;3694:2;3791:9;3778:23;3810:28;3832:5;3810:28;:::i;3873:255::-;3940:6;3993:2;3981:9;3972:7;3968:23;3964:32;3961:2;;;4014:6;4006;3999:22;3961:2;4051:9;4045:16;4070:28;4092:5;4070:28;:::i;4133:255::-;4191:6;4244:2;4232:9;4223:7;4219:23;4215:32;4212:2;;;4265:6;4257;4250:22;4212:2;4309:9;4296:23;4328:30;4352:5;4328:30;:::i;4393:259::-;4462:6;4515:2;4503:9;4494:7;4490:23;4486:32;4483:2;;;4536:6;4528;4521:22;4483:2;4573:9;4567:16;4592:30;4616:5;4592:30;:::i;4657:480::-;4726:6;4779:2;4767:9;4758:7;4754:23;4750:32;4747:2;;;4800:6;4792;4785:22;4747:2;4845:9;4832:23;4878:18;4870:6;4867:30;4864:2;;;4915:6;4907;4900:22;4864:2;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:2:1;;5030:6;5022;5015:22;4974:2;5058:73;5123:7;5118:2;5105:16;5100:2;5096;5092:11;5058:73;:::i;5142:190::-;5201:6;5254:2;5242:9;5233:7;5229:23;5225:32;5222:2;;;5275:6;5267;5260:22;5222:2;-1:-1:-1;5303:23:1;;5212:120;-1:-1:-1;5212:120:1:o;5337:194::-;5407:6;5460:2;5448:9;5439:7;5435:23;5431:32;5428:2;;;5481:6;5473;5466:22;5428:2;-1:-1:-1;5509:16:1;;5418:113;-1:-1:-1;5418:113:1:o;5536:257::-;5577:3;5615:5;5609:12;5642:6;5637:3;5630:19;5658:63;5714:6;5707:4;5702:3;5698:14;5691:4;5684:5;5680:16;5658:63;:::i;:::-;5775:2;5754:15;-1:-1:-1;;5750:29:1;5741:39;;;;5782:4;5737:50;;5585:208;-1:-1:-1;;5585:208:1:o;5798:1531::-;6022:3;6060:6;6054:13;6086:4;6099:51;6143:6;6138:3;6133:2;6125:6;6121:15;6099:51;:::i;:::-;6213:13;;6172:16;;;;6235:55;6213:13;6172:16;6257:15;;;6235:55;:::i;:::-;6381:13;;6312:20;;;6352:3;;6441:1;6463:18;;;;6516;;;;6543:2;;6621:4;6611:8;6607:19;6595:31;;6543:2;6684;6674:8;6671:16;6651:18;6648:40;6645:2;;;-1:-1:-1;;;6711:33:1;;6767:4;6764:1;6757:15;6797:4;6718:3;6785:17;6645:2;6828:18;6855:110;;;;6979:1;6974:330;;;;6821:483;;6855:110;-1:-1:-1;;6890:24:1;;6876:39;;6935:20;;;;-1:-1:-1;6855:110:1;;6974:330;19986:4;20005:17;;;20055:4;20039:21;;7069:3;7085:169;7099:8;7096:1;7093:15;7085:169;;;7181:14;;7166:13;;;7159:37;7224:16;;;;7116:10;;7085:169;;;7089:3;;7285:8;7278:5;7274:20;7267:27;;6821:483;-1:-1:-1;7320:3:1;;6030:1299;-1:-1:-1;;;;;;;;;;;6030:1299:1:o;8132:488::-;-1:-1:-1;;;;;8401:15:1;;;8383:34;;8453:15;;8448:2;8433:18;;8426:43;8500:2;8485:18;;8478:34;;;8548:3;8543:2;8528:18;;8521:31;;;8326:4;;8569:45;;8594:19;;8586:6;8569:45;:::i;:::-;8561:53;8335:285;-1:-1:-1;;;;;;8335:285:1:o;8625:635::-;8796:2;8848:21;;;8918:13;;8821:18;;;8940:22;;;8767:4;;8796:2;9019:15;;;;8993:2;8978:18;;;8767:4;9065:169;9079:6;9076:1;9073:13;9065:169;;;9140:13;;9128:26;;9209:15;;;;9174:12;;;;9101:1;9094:9;9065:169;;;-1:-1:-1;9251:3:1;;8776:484;-1:-1:-1;;;;;;8776:484:1:o;9457:219::-;9606:2;9595:9;9588:21;9569:4;9626:44;9666:2;9655:9;9651:18;9643:6;9626:44;:::i;10093:414::-;10295:2;10277:21;;;10334:2;10314:18;;;10307:30;10373:34;10368:2;10353:18;;10346:62;-1:-1:-1;;;10439:2:1;10424:18;;10417:48;10497:3;10482:19;;10267:240::o;15581:356::-;15783:2;15765:21;;;15802:18;;;15795:30;15861:34;15856:2;15841:18;;15834:62;15928:2;15913:18;;15755:182::o;17867:413::-;18069:2;18051:21;;;18108:2;18088:18;;;18081:30;18147:34;18142:2;18127:18;;18120:62;-1:-1:-1;;;18213:2:1;18198:18;;18191:47;18270:3;18255:19;;18041:239::o;20071:128::-;20111:3;20142:1;20138:6;20135:1;20132:13;20129:2;;;20148:18;;:::i;:::-;-1:-1:-1;20184:9:1;;20119:80::o;20204:120::-;20244:1;20270;20260:2;;20275:18;;:::i;:::-;-1:-1:-1;20309:9:1;;20250:74::o;20329:168::-;20369:7;20435:1;20431;20427:6;20423:14;20420:1;20417:21;20412:1;20405:9;20398:17;20394:45;20391:2;;;20442:18;;:::i;:::-;-1:-1:-1;20482:9:1;;20381:116::o;20502:125::-;20542:4;20570:1;20567;20564:8;20561:2;;;20575:18;;:::i;:::-;-1:-1:-1;20612:9:1;;20551:76::o;20632:258::-;20704:1;20714:113;20728:6;20725:1;20722:13;20714:113;;;20804:11;;;20798:18;20785:11;;;20778:39;20750:2;20743:10;20714:113;;;20845:6;20842:1;20839:13;20836:2;;;-1:-1:-1;;20880:1:1;20862:16;;20855:27;20685:205::o;20895:380::-;20974:1;20970:12;;;;21017;;;21038:2;;21092:4;21084:6;21080:17;21070:27;;21038:2;21145;21137:6;21134:14;21114:18;21111:38;21108:2;;;21191:10;21186:3;21182:20;21179:1;21172:31;21226:4;21223:1;21216:15;21254:4;21251:1;21244:15;21108:2;;20950:325;;;:::o;21280:135::-;21319:3;-1:-1:-1;;21340:17:1;;21337:2;;;21360:18;;:::i;:::-;-1:-1:-1;21407:1:1;21396:13;;21327:88::o;21420:112::-;21452:1;21478;21468:2;;21483:18;;:::i;:::-;-1:-1:-1;21517:9:1;;21458:74::o;21537:127::-;21598:10;21593:3;21589:20;21586:1;21579:31;21629:4;21626:1;21619:15;21653:4;21650:1;21643:15;21669:127;21730:10;21725:3;21721:20;21718:1;21711:31;21761:4;21758:1;21751:15;21785:4;21782:1;21775:15;21801:127;21862:10;21857:3;21853:20;21850:1;21843:31;21893:4;21890:1;21883:15;21917:4;21914:1;21907:15;21933:118;22019:5;22012:13;22005:21;21998:5;21995:32;21985:2;;22041:1;22038;22031:12;22056:131;-1:-1:-1;;;;;;22130:32:1;;22120:43;;22110:2;;22177:1;22174;22167:12

Swarm Source

ipfs://da9ba79eb874631604877166d2b593d3f7347fb387daf09e4d5d4040623949e8
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.