ETH Price: $3,835.47 (+6.02%)

Token

ERC-20: Naga Pixel (NGP)
 

Overview

Max Total Supply

48 NGP

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NGP
0x5bc4e3853712cca33064c1d6403eb70eaee70788
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:
NFT_Presale

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-05
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/token/ERC721/ERC721.sol



// File: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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);
}


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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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: @openzeppelin/contracts/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();
    }
}


// File: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/NFT_Presale.sol




pragma solidity >=0.7.0 <0.9.0;




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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 1 ether;
  uint256 public maxSupply = 9999;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 5;
  bool public round1 = false;
  bool public round2 = false;
  bool public round3 = false;
  bool public round4 = false;
  bool public roundPause = true;
  bool public paused = false;
  bool public revealed = true;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    mint(3); //reserved for team members
    setRound4(true);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    if (msg.sender != owner()) {
    uint256 round = getRoundNumber();
    require(!paused, "the contract is paused");
    require(!roundPause, "the round is paused");
    require(round > 0, "please wait for next round");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    }
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "please check your ETH");
    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 >= cost * _mintAmount, "insufficient funds");
    }
    
    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 checkTotalSupply()public view returns (uint256){
    return totalSupply();
  }
  
  function checkWhitelist()public view returns (bool){
      return isWhitelisted(msg.sender);
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner() {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }
  
  function setmaxSupply(uint256 _newmaxSupply) public onlyOwner(){
      maxSupply = _newmaxSupply;
  }

  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 setRoundPause(bool _state) public onlyOwner {
    roundPause = _state;
    delete whitelistedAddresses;
    if (roundPause == true){
    maxMintAmount = 0;
    cost = 1 ether;
    maxSupply = 0;
    round1 = false;
    round2 = false;
    round3 = false;
    round4 = false;
    }
  }
  
  function getRoundNumber() public view returns (uint256){
    if (round1 == true){
        return 1;
    }else if(round2 == true){
        return 2;
    }else if(round3 == true){
        return 3;
    }else if(round4 == true){
        return 4;
    }else{
        return 0;
    }
  }
  
   function setRound1(bool _state) public onlyOwner {
    round1 = _state;
    if (round1 == true){
    setRoundPause(false);
    maxMintAmount = 1;
    cost = 0.005 ether;
    maxSupply = 503;
    nftPerAddressLimit = 1;
    setOnlyWhitelisted(true);
    }else{
    maxMintAmount = 0;
    cost = 0.02 ether;
    maxSupply = 0;
    }
  }
  
  function setRound2(bool _state) public onlyOwner {
    round2 = _state;
    round1 = false;
    round3 = false;
    round4 = false;
    if (round2 == true){
    setRoundPause(false);
    maxMintAmount = 2;
    cost = 0.01 ether;
    maxSupply = 2003;
    nftPerAddressLimit = 2;
    setOnlyWhitelisted(true);
    }else{
    maxMintAmount = 0;
    cost = 0.02 ether;
    maxSupply = 0;
    }
  }
  
  function setRound3(bool _state) public onlyOwner {
    round3 = _state;
    round1 = false;
    round2 = false;
    round4 = false;
    if (round3 == true){
    setRoundPause(false);
    maxMintAmount = 2;
    cost = 0.01 ether;
    maxSupply = 4003;
    nftPerAddressLimit = 2;
    setOnlyWhitelisted(true);
    }else{
    maxMintAmount = 0;
    cost = 0.02 ether;
    maxSupply = 0;
    }
  }
  
  function setRound4(bool _state) public onlyOwner {
    round4 = _state;
    round1 = false;
    round2 = false;
    round3 = false;
    if (round4 == true){
    setRoundPause(false);
    cost = 0.02 ether;
    maxSupply = 9999;
    nftPerAddressLimit = 5;
    setOnlyWhitelisted(false);
    }else{
    maxMintAmount = 0;
    cost = 0.02 ether;
    maxSupply = 0;
    }
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function setWhitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":"checkTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"getRoundNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"round1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"round2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"round3","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"round4","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roundPause","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":"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":"bool","name":"_state","type":"bool"}],"name":"setRound1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRound2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRound3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRound4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRoundPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"setWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"setmaxSupply","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":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000f38565b50670de0b6b3a7640000600e5561270f600f5560056010819055601155601280546001600160401b0319166701010001000000001790553480156200006c57600080fd5b506040516200443b3803806200443b8339810160408190526200008f91620010b9565b825183908390620000a890600090602085019062000f38565b508051620000be90600190602084019062000f38565b505050620000db620000d56200010760201b60201c565b6200010b565b620000e6816200015d565b620000f26003620001c5565b620000fe6001620005c3565b505050620012ad565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ac5760405162461bcd60e51b815260206004820181905260248201526000805160206200441b83398151915260448201526064015b60405180910390fd5b8051620001c190600b90602084019062000f38565b5050565b600a546001600160a01b0316331462000356576000620001e46200068a565b60125490915065010000000000900460ff1615620002455760405162461bcd60e51b815260206004820152601660248201527f74686520636f6e747261637420697320706175736564000000000000000000006044820152606401620001a3565b601254640100000000900460ff1615620002a25760405162461bcd60e51b815260206004820152601360248201527f74686520726f756e6420697320706175736564000000000000000000000000006044820152606401620001a3565b60008111620002f45760405162461bcd60e51b815260206004820152601a60248201527f706c65617365207761697420666f72206e65787420726f756e640000000000006044820152606401620001a3565b601054821115620003545760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401620001a3565b505b60006200036260085490565b905060008211620003b65760405162461bcd60e51b815260206004820152601560248201527f706c6561736520636865636b20796f75722045544800000000000000000000006044820152606401620001a3565b600f54620003c583836200119c565b1115620004155760405162461bcd60e51b815260206004820152601660248201527f6d6178204e4654206c696d6974206578636565646564000000000000000000006044820152606401620001a3565b600a546001600160a01b031633146200056457601254670100000000000000900460ff161515600114156200049d576200044f3362000702565b6200049d5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401620001a3565b33600090815260146020526040902054601154620004bc84836200119c565b11156200050c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401620001a3565b82600e546200051c9190620011b7565b341015620005625760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401620001a3565b505b60015b828111620005be573360009081526014602052604081208054916200058c8362001263565b90915550620005a9905033620005a383856200119c565b62000780565b80620005b58162001263565b91505062000567565b505050565b600a546001600160a01b031633146200060e5760405162461bcd60e51b815260206004820181905260248201526000805160206200441b8339815191526044820152606401620001a3565b6012805463ffffffff19166301000000831515810262ffffff1916919091179182905560ff91041615156001141562000672576200064d6000620007a2565b66470de4df820000600e5561270f600f5560056011556200066f600062000852565b50565b6000601081905566470de4df820000600e55600f5550565b60125460009060ff16151560011415620006a45750600190565b60125460ff61010090910416151560011415620006c15750600290565b60125462010000900460ff16151560011415620006de5750600390565b6012546301000000900460ff16151560011415620006fc5750600490565b50600090565b6000805b6013548110156200077757826001600160a01b0316601382815481106200073d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415620007625750600192915050565b806200076e8162001263565b91505062000706565b50600092915050565b620001c1828260405180602001604052806000815250620008bf60201b60201c565b600a546001600160a01b03163314620007ed5760405162461bcd60e51b815260206004820181905260248201526000805160206200441b8339815191526044820152606401620001a3565b6012805460ff60201b191664010000000083151502179055620008136013600062000fc7565b601254640100000000900460ff161515600114156200066f5760006010819055670de0b6b3a7640000600e55600f556012805463ffffffff1916905550565b600a546001600160a01b031633146200089d5760405162461bcd60e51b815260206004820181905260248201526000805160206200441b8339815191526044820152606401620001a3565b601280549115156701000000000000000260ff60381b19909216919091179055565b620008cb838362000932565b620008da600084848462000a88565b620005be5760405162461bcd60e51b81526020600482015260326024820152600080516020620043fb83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001a3565b6001600160a01b0382166200098a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001a3565b6000818152600260205260409020546001600160a01b031615620009f15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001a3565b620009ff6000838362000bf1565b6001600160a01b038216600090815260036020526040812080546001929062000a2a9084906200119c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000aa9846001600160a01b031662000ccd60201b62001f121760201c565b1562000be557604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000ae390339089908890889060040162001146565b602060405180830381600087803b15801562000afe57600080fd5b505af192505050801562000b31575060408051601f3d908101601f1916820190925262000b2e9181019062001088565b60015b62000bca573d80801562000b62576040519150601f19603f3d011682016040523d82523d6000602084013e62000b67565b606091505b50805162000bc25760405162461bcd60e51b81526020600482015260326024820152600080516020620043fb83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000be9565b5060015b949350505050565b62000c09838383620005be60201b62000e0c1760201c565b6001600160a01b03831662000c675762000c6181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000c8d565b816001600160a01b0316836001600160a01b03161462000c8d5762000c8d838262000cd3565b6001600160a01b03821662000ca757620005be8162000d80565b826001600160a01b0316826001600160a01b031614620005be57620005be828262000e5e565b3b151590565b6000600162000ced8462000eaf60201b620013fe1760201c565b62000cf99190620011d9565b60008381526007602052604090205490915080821462000d4d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000d9490600190620011d9565b6000838152600960205260408120546008805493945090928490811062000dcb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811062000dfb57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000e4257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000e768362000eaf60201b620013fe1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000f1c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001a3565b506001600160a01b031660009081526003602052604090205490565b82805462000f469062001226565b90600052602060002090601f01602090048101928262000f6a576000855562000fb5565b82601f1062000f8557805160ff191683800117855562000fb5565b8280016001018555821562000fb5579182015b8281111562000fb557825182559160200191906001019062000f98565b5062000fc392915062000fe2565b5090565b50805460008255906000526020600020908101906200066f91905b5b8082111562000fc3576000815560010162000fe3565b600082601f8301126200100a578081fd5b81516001600160401b038082111562001027576200102762001297565b604051601f8301601f19908116603f0116810190828211818310171562001052576200105262001297565b816040528381528660208588010111156200106b578485fd5b6200107e846020830160208901620011f3565b9695505050505050565b6000602082840312156200109a578081fd5b81516001600160e01b031981168114620010b2578182fd5b9392505050565b600080600060608486031215620010ce578182fd5b83516001600160401b0380821115620010e5578384fd5b620010f38783880162000ff9565b9450602086015191508082111562001109578384fd5b620011178783880162000ff9565b935060408601519150808211156200112d578283fd5b506200113c8682870162000ff9565b9150509250925092565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620011858160a0850160208701620011f3565b601f01601f19169190910160a00195945050505050565b60008219821115620011b257620011b262001281565b500190565b6000816000190483118215151615620011d457620011d462001281565b500290565b600082821015620011ee57620011ee62001281565b500390565b60005b8381101562001210578181015183820152602001620011f6565b8381111562001220576000848401525b50505050565b600181811c908216806200123b57607f821691505b602082108114156200125d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200127a576200127a62001281565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61313e80620012bd6000396000f3fe60806040526004361061038b5760003560e01c80635c975abb116101dc578063a475b5dd11610102578063c87b56dd116100a0578063e3e341e31161006f578063e3e341e314610a0d578063e985e9c514610a2d578063f2c4ce1e14610a76578063f2fde38b14610a9657600080fd5b8063c87b56dd14610997578063d0eb26b0146109b7578063d5abeb01146109d7578063da3ef23f146109ed57600080fd5b8063ba4e5c49116100dc578063ba4e5c491461092a578063ba7d2c761461094a578063c4db223014610960578063c66828621461098257600080fd5b8063a475b5dd146108e0578063a511eb2c146108f5578063b88d4fde1461090a57600080fd5b80637f00c7a61161017a57806395d89b411161014957806395d89b41146108775780639c70b5121461088c578063a0712d68146108ad578063a22cb465146108c057600080fd5b80637f00c7a6146107ff578063836e81801461081f5780638da5cb5b14610839578063923b020e1461085757600080fd5b806370a08231116101b657806370a082311461078a578063715018a6146107aa578063770d261c146107bf5780637b064a0f146107df57600080fd5b80635c975abb146107325780636352211e146107555780636c0360eb1461077557600080fd5b806323b872dd116102c1578063438b63001161025f578063532b581c1161022e578063532b581c146106b257806355f804b3146106d15780635820c9ae146106f157806359e19e751461071257600080fd5b8063438b63001461062457806344a0d68a146106515780634f6ccce714610671578063518302271461069157600080fd5b80633af32abf1161029b5780633af32abf146105bc5780633c952764146105dc5780633ccfd60b146105fc57806342842e0e1461060457600080fd5b806323b872dd1461055c5780632beab4b71461057c5780632f745c591461059c57600080fd5b8063095ea7b31161032e57806318160ddd1161030857806318160ddd146104e457806318cae269146104f9578063228025e814610526578063239c70ae1461054657600080fd5b8063095ea7b31461048b5780630cde0456146104ab57806313faede6146104ce57600080fd5b806306f2057a1161036a57806306f2057a1461040757806306fdde031461041c578063081812fc1461043e578063081c8c441461047657600080fd5b8062085d251461039057806301ffc9a7146103c557806302329a29146103e5575b600080fd5b34801561039c57600080fd5b506012546103b09062010000900460ff1681565b60405190151581526020015b60405180910390f35b3480156103d157600080fd5b506103b06103e0366004612cc8565b610ab6565b3480156103f157600080fd5b50610405610400366004612cae565b610ae1565b005b34801561041357600080fd5b506103b0610b36565b34801561042857600080fd5b50610431610b46565b6040516103bc9190612ecd565b34801561044a57600080fd5b5061045e610459366004612d46565b610bd8565b6040516001600160a01b0390911681526020016103bc565b34801561048257600080fd5b50610431610c6d565b34801561049757600080fd5b506104056104a6366004612c15565b610cfb565b3480156104b757600080fd5b506104c0610e11565b6040519081526020016103bc565b3480156104da57600080fd5b506104c0600e5481565b3480156104f057600080fd5b506008546104c0565b34801561050557600080fd5b506104c0610514366004612aec565b60146020526000908152604090205481565b34801561053257600080fd5b50610405610541366004612d46565b610e85565b34801561055257600080fd5b506104c060105481565b34801561056857600080fd5b50610405610577366004612b38565b610eb4565b34801561058857600080fd5b50610405610597366004612c3e565b610ee5565b3480156105a857600080fd5b506104c06105b7366004612c15565b610f27565b3480156105c857600080fd5b506103b06105d7366004612aec565b610fbd565b3480156105e857600080fd5b506104056105f7366004612cae565b611035565b610405611081565b34801561061057600080fd5b5061040561061f366004612b38565b611103565b34801561063057600080fd5b5061064461063f366004612aec565b61111e565b6040516103bc9190612e89565b34801561065d57600080fd5b5061040561066c366004612d46565b6111dc565b34801561067d57600080fd5b506104c061068c366004612d46565b61120b565b34801561069d57600080fd5b506012546103b090600160301b900460ff1681565b3480156106be57600080fd5b506012546103b090610100900460ff1681565b3480156106dd57600080fd5b506104056106ec366004612d00565b6112ac565b3480156106fd57600080fd5b506012546103b0906301000000900460ff1681565b34801561071e57600080fd5b5061040561072d366004612cae565b6112ed565b34801561073e57600080fd5b506012546103b09065010000000000900460ff1681565b34801561076157600080fd5b5061045e610770366004612d46565b61137a565b34801561078157600080fd5b506104316113f1565b34801561079657600080fd5b506104c06107a5366004612aec565b6113fe565b3480156107b657600080fd5b50610405611485565b3480156107cb57600080fd5b506104056107da366004612cae565b6114bb565b3480156107eb57600080fd5b506104056107fa366004612cae565b61154b565b34801561080b57600080fd5b5061040561081a366004612d46565b6115d5565b34801561082b57600080fd5b506012546103b09060ff1681565b34801561084557600080fd5b50600a546001600160a01b031661045e565b34801561086357600080fd5b50610405610872366004612cae565b611604565b34801561088357600080fd5b5061043161168a565b34801561089857600080fd5b506012546103b090600160381b900460ff1681565b6104056108bb366004612d46565b611699565b3480156108cc57600080fd5b506104056108db366004612bec565b611a44565b3480156108ec57600080fd5b50610405611b09565b34801561090157600080fd5b506104c0611b4b565b34801561091657600080fd5b50610405610925366004612b73565b611b56565b34801561093657600080fd5b5061045e610945366004612d46565b611b8e565b34801561095657600080fd5b506104c060115481565b34801561096c57600080fd5b506012546103b090640100000000900460ff1681565b34801561098e57600080fd5b50610431611bb8565b3480156109a357600080fd5b506104316109b2366004612d46565b611bc5565b3480156109c357600080fd5b506104056109d2366004612d46565b611d46565b3480156109e357600080fd5b506104c0600f5481565b3480156109f957600080fd5b50610405610a08366004612d00565b611d75565b348015610a1957600080fd5b50610405610a28366004612cae565b611db2565b348015610a3957600080fd5b506103b0610a48366004612b06565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a8257600080fd5b50610405610a91366004612d00565b611e3d565b348015610aa257600080fd5b50610405610ab1366004612aec565b611e7a565b60006001600160e01b0319821663780e9d6360e01b1480610adb5750610adb82611f18565b92915050565b600a546001600160a01b03163314610b145760405162461bcd60e51b8152600401610b0b90612f32565b60405180910390fd5b60128054911515650100000000000265ff000000000019909216919091179055565b6000610b4133610fbd565b905090565b606060008054610b5590613046565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8190613046565b8015610bce5780601f10610ba357610100808354040283529160200191610bce565b820191906000526020600020905b815481529060010190602001808311610bb157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0b565b506000908152600460205260409020546001600160a01b031690565b600d8054610c7a90613046565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca690613046565b8015610cf35780601f10610cc857610100808354040283529160200191610cf3565b820191906000526020600020905b815481529060010190602001808311610cd657829003601f168201915b505050505081565b6000610d068261137a565b9050806001600160a01b0316836001600160a01b03161415610d745760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b0b565b336001600160a01b0382161480610d905750610d908133610a48565b610e025760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b0b565b610e0c8383611f68565b505050565b60125460009060ff16151560011415610e2a5750600190565b60125460ff61010090910416151560011415610e465750600290565b60125462010000900460ff16151560011415610e625750600390565b6012546301000000900460ff16151560011415610e7f5750600490565b50600090565b600a546001600160a01b03163314610eaf5760405162461bcd60e51b8152600401610b0b90612f32565b600f55565b610ebe3382611fd6565b610eda5760405162461bcd60e51b8152600401610b0b90612f67565b610e0c8383836120cd565b600a546001600160a01b03163314610f0f5760405162461bcd60e51b8152600401610b0b90612f32565b610f1b60136000612940565b610e0c6013838361295e565b6000610f32836113fe565b8210610f945760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b0b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b60135481101561102c57826001600160a01b031660138281548110610ff657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561101a5750600192915050565b8061102481613081565b915050610fc1565b50600092915050565b600a546001600160a01b0316331461105f5760405162461bcd60e51b8152600401610b0b90612f32565b60128054911515600160381b0267ff0000000000000019909216919091179055565b600a546001600160a01b031633146110ab5760405162461bcd60e51b8152600401610b0b90612f32565b604051600090339047908381818185875af1925050503d80600081146110ed576040519150601f19603f3d011682016040523d82523d6000602084013e6110f2565b606091505b505090508061110057600080fd5b50565b610e0c83838360405180602001604052806000815250611b56565b6060600061112b836113fe565b905060008167ffffffffffffffff81111561115657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561117f578160200160208202803683370190505b50905060005b828110156111d4576111978582610f27565b8282815181106111b757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806111cc81613081565b915050611185565b509392505050565b600a546001600160a01b031633146112065760405162461bcd60e51b8152600401610b0b90612f32565b600e55565b600061121660085490565b82106112795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b0b565b6008828154811061129a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146112d65760405162461bcd60e51b8152600401610b0b90612f32565b80516112e990600b9060208401906129c1565b5050565b600a546001600160a01b031633146113175760405162461bcd60e51b8152600401610b0b90612f32565b6012805464ff0000000019166401000000008315150217905561133c60136000612940565b601254640100000000900460ff161515600114156111005760006010819055670de0b6b3a7640000600e55600f556012805463ffffffff1916905550565b6000818152600260205260408120546001600160a01b031680610adb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b0b565b600b8054610c7a90613046565b60006001600160a01b0382166114695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b0b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114af5760405162461bcd60e51b8152600401610b0b90612f32565b6114b96000612278565b565b600a546001600160a01b031633146114e55760405162461bcd60e51b8152600401610b0b90612f32565b6012805460ff191682151590811790915560ff161515600114156115335761150d60006112ed565b600160108190556611c37937e08000600e556101f7600f55601181905561110090611035565b6000601081905566470de4df820000600e55600f5550565b600a546001600160a01b031633146115755760405162461bcd60e51b8152600401610b0b90612f32565b6012805463ffffffff1916610100831515810263ffff00ff1916919091179182905560ff910416151560011415611533576115b060006112ed565b60026010819055662386f26fc10000600e556107d3600f556011556111006001611035565b600a546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610b0b90612f32565b601055565b600a546001600160a01b0316331461162e5760405162461bcd60e51b8152600401610b0b90612f32565b6012805463ffffffff19166301000000831515810262ffffff1916919091179182905560ff9104161515600114156115335761166a60006112ed565b66470de4df820000600e5561270f600f5560056011556111006000611035565b606060018054610b5590613046565b600a546001600160a01b0316331461180e5760006116b5610e11565b60125490915065010000000000900460ff161561170d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b0b565b601254640100000000900460ff161561175e5760405162461bcd60e51b81526020600482015260136024820152721d1a19481c9bdd5b99081a5cc81c185d5cd959606a1b6044820152606401610b0b565b600081116117ae5760405162461bcd60e51b815260206004820152601a60248201527f706c65617365207761697420666f72206e65787420726f756e640000000000006044820152606401610b0b565b60105482111561180c5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610b0b565b505b600061181960085490565b9050600082116118635760405162461bcd60e51b81526020600482015260156024820152740e0d8cac2e6ca40c6d0cac6d640f2deeae4408aa89605b1b6044820152606401610b0b565b600f546118708383612fb8565b11156118b75760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0b565b600a546001600160a01b031633146119f457601254600160381b900460ff16151560011415611935576118e933610fbd565b6119355760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b0b565b336000908152601460205260409020546011546119528483612fb8565b11156119a05760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b0b565b82600e546119ae9190612fe4565b3410156119f25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0b565b505b60015b828111610e0c57336000908152601460205260408120805491611a1983613081565b90915550611a32905033611a2d8385612fb8565b6122ca565b80611a3c81613081565b9150506119f7565b6001600160a01b038216331415611a9d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b0b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611b335760405162461bcd60e51b8152600401610b0b90612f32565b6012805466ff0000000000001916600160301b179055565b6000610b4160085490565b611b603383611fd6565b611b7c5760405162461bcd60e51b8152600401610b0b90612f67565b611b88848484846122e4565b50505050565b60138181548110611b9e57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610c7a90613046565b6000818152600260205260409020546060906001600160a01b0316611c445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b0b565b601254600160301b900460ff16611ce757600d8054611c6290613046565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8e90613046565b8015611cdb5780601f10611cb057610100808354040283529160200191611cdb565b820191906000526020600020905b815481529060010190602001808311611cbe57829003601f168201915b50505050509050919050565b6000611cf1612317565b90506000815111611d115760405180602001604052806000815250611d3f565b80611d1b84612326565b600c604051602001611d2f93929190612d8a565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611d705760405162461bcd60e51b8152600401610b0b90612f32565b601155565b600a546001600160a01b03163314611d9f5760405162461bcd60e51b8152600401610b0b90612f32565b80516112e990600c9060208401906129c1565b600a546001600160a01b03163314611ddc5760405162461bcd60e51b8152600401610b0b90612f32565b6012805463ffffffff191662010000831515810263ff00ffff1916919091179182905560ff91041615156001141561153357611e1860006112ed565b60026010819055662386f26fc10000600e55610fa3600f556011556111006001611035565b600a546001600160a01b03163314611e675760405162461bcd60e51b8152600401610b0b90612f32565b80516112e990600d9060208401906129c1565b600a546001600160a01b03163314611ea45760405162461bcd60e51b8152600401610b0b90612f32565b6001600160a01b038116611f095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0b565b61110081612278565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611f4957506001600160e01b03198216635b5e139f60e01b145b80610adb57506301ffc9a760e01b6001600160e01b0319831614610adb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f9d8261137a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661204f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0b565b600061205a8361137a565b9050806001600160a01b0316846001600160a01b031614806120955750836001600160a01b031661208a84610bd8565b6001600160a01b0316145b806120c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120e08261137a565b6001600160a01b0316146121485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b0b565b6001600160a01b0382166121aa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b0b565b6121b5838383612440565b6121c0600082611f68565b6001600160a01b03831660009081526003602052604081208054600192906121e9908490613003565b90915550506001600160a01b0382166000908152600360205260408120805460019290612217908490612fb8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112e98282604051806020016040528060008152506124f8565b6122ef8484846120cd565b6122fb8484848461252b565b611b885760405162461bcd60e51b8152600401610b0b90612ee0565b6060600b8054610b5590613046565b60608161234a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612374578061235e81613081565b915061236d9050600a83612fd0565b915061234e565b60008167ffffffffffffffff81111561239d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123c7576020820181803683370190505b5090505b84156120c5576123dc600183613003565b91506123e9600a8661309c565b6123f4906030612fb8565b60f81b81838151811061241757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612439600a86612fd0565b94506123cb565b6001600160a01b03831661249b5761249681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124be565b816001600160a01b0316836001600160a01b0316146124be576124be8382612638565b6001600160a01b0382166124d557610e0c816126d5565b826001600160a01b0316826001600160a01b031614610e0c57610e0c82826127ae565b61250283836127f2565b61250f600084848461252b565b610e0c5760405162461bcd60e51b8152600401610b0b90612ee0565b60006001600160a01b0384163b1561262d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061256f903390899088908890600401612e4c565b602060405180830381600087803b15801561258957600080fd5b505af19250505080156125b9575060408051601f3d908101601f191682019092526125b691810190612ce4565b60015b612613573d8080156125e7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ec565b606091505b50805161260b5760405162461bcd60e51b8152600401610b0b90612ee0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c5565b506001949350505050565b60006001612645846113fe565b61264f9190613003565b6000838152600760205260409020549091508082146126a2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126e790600190613003565b6000838152600960205260408120546008805493945090928490811061271d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061274c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061279257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127b9836113fe565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b0b565b6000818152600260205260409020546001600160a01b0316156128ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b0b565b6128b960008383612440565b6001600160a01b03821660009081526003602052604081208054600192906128e2908490612fb8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805460008255906000526020600020908101906111009190612a35565b8280548282559060005260206000209081019282156129b1579160200282015b828111156129b15781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061297e565b506129bd929150612a35565b5090565b8280546129cd90613046565b90600052602060002090601f0160209004810192826129ef57600085556129b1565b82601f10612a0857805160ff19168380011785556129b1565b828001600101855582156129b1579182015b828111156129b1578251825591602001919060010190612a1a565b5b808211156129bd5760008155600101612a36565b600067ffffffffffffffff80841115612a6557612a656130dc565b604051601f8501601f19908116603f01168101908282118183101715612a8d57612a8d6130dc565b81604052809350858152868686011115612aa657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612ad757600080fd5b919050565b80358015158114612ad757600080fd5b600060208284031215612afd578081fd5b611d3f82612ac0565b60008060408385031215612b18578081fd5b612b2183612ac0565b9150612b2f60208401612ac0565b90509250929050565b600080600060608486031215612b4c578081fd5b612b5584612ac0565b9250612b6360208501612ac0565b9150604084013590509250925092565b60008060008060808587031215612b88578081fd5b612b9185612ac0565b9350612b9f60208601612ac0565b925060408501359150606085013567ffffffffffffffff811115612bc1578182fd5b8501601f81018713612bd1578182fd5b612be087823560208401612a4a565b91505092959194509250565b60008060408385031215612bfe578182fd5b612c0783612ac0565b9150612b2f60208401612adc565b60008060408385031215612c27578182fd5b612c3083612ac0565b946020939093013593505050565b60008060208385031215612c50578182fd5b823567ffffffffffffffff80821115612c67578384fd5b818501915085601f830112612c7a578384fd5b813581811115612c88578485fd5b8660208260051b8501011115612c9c578485fd5b60209290920196919550909350505050565b600060208284031215612cbf578081fd5b611d3f82612adc565b600060208284031215612cd9578081fd5b8135611d3f816130f2565b600060208284031215612cf5578081fd5b8151611d3f816130f2565b600060208284031215612d11578081fd5b813567ffffffffffffffff811115612d27578182fd5b8201601f81018413612d37578182fd5b6120c584823560208401612a4a565b600060208284031215612d57578081fd5b5035919050565b60008151808452612d7681602086016020860161301a565b601f01601f19169290920160200192915050565b600084516020612d9d8285838a0161301a565b855191840191612db08184848a0161301a565b85549201918390600181811c9080831680612dcc57607f831692505b858310811415612dea57634e487b7160e01b88526022600452602488fd5b808015612dfe5760018114612e0f57612e3b565b60ff19851688528388019550612e3b565b60008b815260209020895b85811015612e335781548a820152908401908801612e1a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e7f90830184612d5e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ec157835183529284019291840191600101612ea5565b50909695505050505050565b602081526000611d3f6020830184612d5e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612fcb57612fcb6130b0565b500190565b600082612fdf57612fdf6130c6565b500490565b6000816000190483118215151615612ffe57612ffe6130b0565b500290565b600082821015613015576130156130b0565b500390565b60005b8381101561303557818101518382015260200161301d565b83811115611b885750506000910152565b600181811c9082168061305a57607f821691505b6020821081141561307b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613095576130956130b0565b5060010190565b6000826130ab576130ab6130c6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461110057600080fdfea26469706673582212208b6f37f9c25903cb51f225db9d394f5f208f7785e1e28abd7792a1503211d43564736f6c634300080400334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4e61676120506978656c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e475000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d614b7a5744636a777467563265574c74644173376568694d3861683739705938784835517a4e3463705879342f00000000000000000000

Deployed Bytecode

0x60806040526004361061038b5760003560e01c80635c975abb116101dc578063a475b5dd11610102578063c87b56dd116100a0578063e3e341e31161006f578063e3e341e314610a0d578063e985e9c514610a2d578063f2c4ce1e14610a76578063f2fde38b14610a9657600080fd5b8063c87b56dd14610997578063d0eb26b0146109b7578063d5abeb01146109d7578063da3ef23f146109ed57600080fd5b8063ba4e5c49116100dc578063ba4e5c491461092a578063ba7d2c761461094a578063c4db223014610960578063c66828621461098257600080fd5b8063a475b5dd146108e0578063a511eb2c146108f5578063b88d4fde1461090a57600080fd5b80637f00c7a61161017a57806395d89b411161014957806395d89b41146108775780639c70b5121461088c578063a0712d68146108ad578063a22cb465146108c057600080fd5b80637f00c7a6146107ff578063836e81801461081f5780638da5cb5b14610839578063923b020e1461085757600080fd5b806370a08231116101b657806370a082311461078a578063715018a6146107aa578063770d261c146107bf5780637b064a0f146107df57600080fd5b80635c975abb146107325780636352211e146107555780636c0360eb1461077557600080fd5b806323b872dd116102c1578063438b63001161025f578063532b581c1161022e578063532b581c146106b257806355f804b3146106d15780635820c9ae146106f157806359e19e751461071257600080fd5b8063438b63001461062457806344a0d68a146106515780634f6ccce714610671578063518302271461069157600080fd5b80633af32abf1161029b5780633af32abf146105bc5780633c952764146105dc5780633ccfd60b146105fc57806342842e0e1461060457600080fd5b806323b872dd1461055c5780632beab4b71461057c5780632f745c591461059c57600080fd5b8063095ea7b31161032e57806318160ddd1161030857806318160ddd146104e457806318cae269146104f9578063228025e814610526578063239c70ae1461054657600080fd5b8063095ea7b31461048b5780630cde0456146104ab57806313faede6146104ce57600080fd5b806306f2057a1161036a57806306f2057a1461040757806306fdde031461041c578063081812fc1461043e578063081c8c441461047657600080fd5b8062085d251461039057806301ffc9a7146103c557806302329a29146103e5575b600080fd5b34801561039c57600080fd5b506012546103b09062010000900460ff1681565b60405190151581526020015b60405180910390f35b3480156103d157600080fd5b506103b06103e0366004612cc8565b610ab6565b3480156103f157600080fd5b50610405610400366004612cae565b610ae1565b005b34801561041357600080fd5b506103b0610b36565b34801561042857600080fd5b50610431610b46565b6040516103bc9190612ecd565b34801561044a57600080fd5b5061045e610459366004612d46565b610bd8565b6040516001600160a01b0390911681526020016103bc565b34801561048257600080fd5b50610431610c6d565b34801561049757600080fd5b506104056104a6366004612c15565b610cfb565b3480156104b757600080fd5b506104c0610e11565b6040519081526020016103bc565b3480156104da57600080fd5b506104c0600e5481565b3480156104f057600080fd5b506008546104c0565b34801561050557600080fd5b506104c0610514366004612aec565b60146020526000908152604090205481565b34801561053257600080fd5b50610405610541366004612d46565b610e85565b34801561055257600080fd5b506104c060105481565b34801561056857600080fd5b50610405610577366004612b38565b610eb4565b34801561058857600080fd5b50610405610597366004612c3e565b610ee5565b3480156105a857600080fd5b506104c06105b7366004612c15565b610f27565b3480156105c857600080fd5b506103b06105d7366004612aec565b610fbd565b3480156105e857600080fd5b506104056105f7366004612cae565b611035565b610405611081565b34801561061057600080fd5b5061040561061f366004612b38565b611103565b34801561063057600080fd5b5061064461063f366004612aec565b61111e565b6040516103bc9190612e89565b34801561065d57600080fd5b5061040561066c366004612d46565b6111dc565b34801561067d57600080fd5b506104c061068c366004612d46565b61120b565b34801561069d57600080fd5b506012546103b090600160301b900460ff1681565b3480156106be57600080fd5b506012546103b090610100900460ff1681565b3480156106dd57600080fd5b506104056106ec366004612d00565b6112ac565b3480156106fd57600080fd5b506012546103b0906301000000900460ff1681565b34801561071e57600080fd5b5061040561072d366004612cae565b6112ed565b34801561073e57600080fd5b506012546103b09065010000000000900460ff1681565b34801561076157600080fd5b5061045e610770366004612d46565b61137a565b34801561078157600080fd5b506104316113f1565b34801561079657600080fd5b506104c06107a5366004612aec565b6113fe565b3480156107b657600080fd5b50610405611485565b3480156107cb57600080fd5b506104056107da366004612cae565b6114bb565b3480156107eb57600080fd5b506104056107fa366004612cae565b61154b565b34801561080b57600080fd5b5061040561081a366004612d46565b6115d5565b34801561082b57600080fd5b506012546103b09060ff1681565b34801561084557600080fd5b50600a546001600160a01b031661045e565b34801561086357600080fd5b50610405610872366004612cae565b611604565b34801561088357600080fd5b5061043161168a565b34801561089857600080fd5b506012546103b090600160381b900460ff1681565b6104056108bb366004612d46565b611699565b3480156108cc57600080fd5b506104056108db366004612bec565b611a44565b3480156108ec57600080fd5b50610405611b09565b34801561090157600080fd5b506104c0611b4b565b34801561091657600080fd5b50610405610925366004612b73565b611b56565b34801561093657600080fd5b5061045e610945366004612d46565b611b8e565b34801561095657600080fd5b506104c060115481565b34801561096c57600080fd5b506012546103b090640100000000900460ff1681565b34801561098e57600080fd5b50610431611bb8565b3480156109a357600080fd5b506104316109b2366004612d46565b611bc5565b3480156109c357600080fd5b506104056109d2366004612d46565b611d46565b3480156109e357600080fd5b506104c0600f5481565b3480156109f957600080fd5b50610405610a08366004612d00565b611d75565b348015610a1957600080fd5b50610405610a28366004612cae565b611db2565b348015610a3957600080fd5b506103b0610a48366004612b06565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a8257600080fd5b50610405610a91366004612d00565b611e3d565b348015610aa257600080fd5b50610405610ab1366004612aec565b611e7a565b60006001600160e01b0319821663780e9d6360e01b1480610adb5750610adb82611f18565b92915050565b600a546001600160a01b03163314610b145760405162461bcd60e51b8152600401610b0b90612f32565b60405180910390fd5b60128054911515650100000000000265ff000000000019909216919091179055565b6000610b4133610fbd565b905090565b606060008054610b5590613046565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8190613046565b8015610bce5780601f10610ba357610100808354040283529160200191610bce565b820191906000526020600020905b815481529060010190602001808311610bb157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0b565b506000908152600460205260409020546001600160a01b031690565b600d8054610c7a90613046565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca690613046565b8015610cf35780601f10610cc857610100808354040283529160200191610cf3565b820191906000526020600020905b815481529060010190602001808311610cd657829003601f168201915b505050505081565b6000610d068261137a565b9050806001600160a01b0316836001600160a01b03161415610d745760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b0b565b336001600160a01b0382161480610d905750610d908133610a48565b610e025760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b0b565b610e0c8383611f68565b505050565b60125460009060ff16151560011415610e2a5750600190565b60125460ff61010090910416151560011415610e465750600290565b60125462010000900460ff16151560011415610e625750600390565b6012546301000000900460ff16151560011415610e7f5750600490565b50600090565b600a546001600160a01b03163314610eaf5760405162461bcd60e51b8152600401610b0b90612f32565b600f55565b610ebe3382611fd6565b610eda5760405162461bcd60e51b8152600401610b0b90612f67565b610e0c8383836120cd565b600a546001600160a01b03163314610f0f5760405162461bcd60e51b8152600401610b0b90612f32565b610f1b60136000612940565b610e0c6013838361295e565b6000610f32836113fe565b8210610f945760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b0b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b60135481101561102c57826001600160a01b031660138281548110610ff657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561101a5750600192915050565b8061102481613081565b915050610fc1565b50600092915050565b600a546001600160a01b0316331461105f5760405162461bcd60e51b8152600401610b0b90612f32565b60128054911515600160381b0267ff0000000000000019909216919091179055565b600a546001600160a01b031633146110ab5760405162461bcd60e51b8152600401610b0b90612f32565b604051600090339047908381818185875af1925050503d80600081146110ed576040519150601f19603f3d011682016040523d82523d6000602084013e6110f2565b606091505b505090508061110057600080fd5b50565b610e0c83838360405180602001604052806000815250611b56565b6060600061112b836113fe565b905060008167ffffffffffffffff81111561115657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561117f578160200160208202803683370190505b50905060005b828110156111d4576111978582610f27565b8282815181106111b757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806111cc81613081565b915050611185565b509392505050565b600a546001600160a01b031633146112065760405162461bcd60e51b8152600401610b0b90612f32565b600e55565b600061121660085490565b82106112795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b0b565b6008828154811061129a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146112d65760405162461bcd60e51b8152600401610b0b90612f32565b80516112e990600b9060208401906129c1565b5050565b600a546001600160a01b031633146113175760405162461bcd60e51b8152600401610b0b90612f32565b6012805464ff0000000019166401000000008315150217905561133c60136000612940565b601254640100000000900460ff161515600114156111005760006010819055670de0b6b3a7640000600e55600f556012805463ffffffff1916905550565b6000818152600260205260408120546001600160a01b031680610adb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b0b565b600b8054610c7a90613046565b60006001600160a01b0382166114695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b0b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114af5760405162461bcd60e51b8152600401610b0b90612f32565b6114b96000612278565b565b600a546001600160a01b031633146114e55760405162461bcd60e51b8152600401610b0b90612f32565b6012805460ff191682151590811790915560ff161515600114156115335761150d60006112ed565b600160108190556611c37937e08000600e556101f7600f55601181905561110090611035565b6000601081905566470de4df820000600e55600f5550565b600a546001600160a01b031633146115755760405162461bcd60e51b8152600401610b0b90612f32565b6012805463ffffffff1916610100831515810263ffff00ff1916919091179182905560ff910416151560011415611533576115b060006112ed565b60026010819055662386f26fc10000600e556107d3600f556011556111006001611035565b600a546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610b0b90612f32565b601055565b600a546001600160a01b0316331461162e5760405162461bcd60e51b8152600401610b0b90612f32565b6012805463ffffffff19166301000000831515810262ffffff1916919091179182905560ff9104161515600114156115335761166a60006112ed565b66470de4df820000600e5561270f600f5560056011556111006000611035565b606060018054610b5590613046565b600a546001600160a01b0316331461180e5760006116b5610e11565b60125490915065010000000000900460ff161561170d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b0b565b601254640100000000900460ff161561175e5760405162461bcd60e51b81526020600482015260136024820152721d1a19481c9bdd5b99081a5cc81c185d5cd959606a1b6044820152606401610b0b565b600081116117ae5760405162461bcd60e51b815260206004820152601a60248201527f706c65617365207761697420666f72206e65787420726f756e640000000000006044820152606401610b0b565b60105482111561180c5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610b0b565b505b600061181960085490565b9050600082116118635760405162461bcd60e51b81526020600482015260156024820152740e0d8cac2e6ca40c6d0cac6d640f2deeae4408aa89605b1b6044820152606401610b0b565b600f546118708383612fb8565b11156118b75760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0b565b600a546001600160a01b031633146119f457601254600160381b900460ff16151560011415611935576118e933610fbd565b6119355760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b0b565b336000908152601460205260409020546011546119528483612fb8565b11156119a05760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b0b565b82600e546119ae9190612fe4565b3410156119f25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0b565b505b60015b828111610e0c57336000908152601460205260408120805491611a1983613081565b90915550611a32905033611a2d8385612fb8565b6122ca565b80611a3c81613081565b9150506119f7565b6001600160a01b038216331415611a9d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b0b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611b335760405162461bcd60e51b8152600401610b0b90612f32565b6012805466ff0000000000001916600160301b179055565b6000610b4160085490565b611b603383611fd6565b611b7c5760405162461bcd60e51b8152600401610b0b90612f67565b611b88848484846122e4565b50505050565b60138181548110611b9e57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610c7a90613046565b6000818152600260205260409020546060906001600160a01b0316611c445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b0b565b601254600160301b900460ff16611ce757600d8054611c6290613046565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8e90613046565b8015611cdb5780601f10611cb057610100808354040283529160200191611cdb565b820191906000526020600020905b815481529060010190602001808311611cbe57829003601f168201915b50505050509050919050565b6000611cf1612317565b90506000815111611d115760405180602001604052806000815250611d3f565b80611d1b84612326565b600c604051602001611d2f93929190612d8a565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611d705760405162461bcd60e51b8152600401610b0b90612f32565b601155565b600a546001600160a01b03163314611d9f5760405162461bcd60e51b8152600401610b0b90612f32565b80516112e990600c9060208401906129c1565b600a546001600160a01b03163314611ddc5760405162461bcd60e51b8152600401610b0b90612f32565b6012805463ffffffff191662010000831515810263ff00ffff1916919091179182905560ff91041615156001141561153357611e1860006112ed565b60026010819055662386f26fc10000600e55610fa3600f556011556111006001611035565b600a546001600160a01b03163314611e675760405162461bcd60e51b8152600401610b0b90612f32565b80516112e990600d9060208401906129c1565b600a546001600160a01b03163314611ea45760405162461bcd60e51b8152600401610b0b90612f32565b6001600160a01b038116611f095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0b565b61110081612278565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611f4957506001600160e01b03198216635b5e139f60e01b145b80610adb57506301ffc9a760e01b6001600160e01b0319831614610adb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f9d8261137a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661204f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0b565b600061205a8361137a565b9050806001600160a01b0316846001600160a01b031614806120955750836001600160a01b031661208a84610bd8565b6001600160a01b0316145b806120c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120e08261137a565b6001600160a01b0316146121485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b0b565b6001600160a01b0382166121aa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b0b565b6121b5838383612440565b6121c0600082611f68565b6001600160a01b03831660009081526003602052604081208054600192906121e9908490613003565b90915550506001600160a01b0382166000908152600360205260408120805460019290612217908490612fb8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112e98282604051806020016040528060008152506124f8565b6122ef8484846120cd565b6122fb8484848461252b565b611b885760405162461bcd60e51b8152600401610b0b90612ee0565b6060600b8054610b5590613046565b60608161234a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612374578061235e81613081565b915061236d9050600a83612fd0565b915061234e565b60008167ffffffffffffffff81111561239d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123c7576020820181803683370190505b5090505b84156120c5576123dc600183613003565b91506123e9600a8661309c565b6123f4906030612fb8565b60f81b81838151811061241757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612439600a86612fd0565b94506123cb565b6001600160a01b03831661249b5761249681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124be565b816001600160a01b0316836001600160a01b0316146124be576124be8382612638565b6001600160a01b0382166124d557610e0c816126d5565b826001600160a01b0316826001600160a01b031614610e0c57610e0c82826127ae565b61250283836127f2565b61250f600084848461252b565b610e0c5760405162461bcd60e51b8152600401610b0b90612ee0565b60006001600160a01b0384163b1561262d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061256f903390899088908890600401612e4c565b602060405180830381600087803b15801561258957600080fd5b505af19250505080156125b9575060408051601f3d908101601f191682019092526125b691810190612ce4565b60015b612613573d8080156125e7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ec565b606091505b50805161260b5760405162461bcd60e51b8152600401610b0b90612ee0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c5565b506001949350505050565b60006001612645846113fe565b61264f9190613003565b6000838152600760205260409020549091508082146126a2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126e790600190613003565b6000838152600960205260408120546008805493945090928490811061271d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061274c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061279257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127b9836113fe565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b0b565b6000818152600260205260409020546001600160a01b0316156128ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b0b565b6128b960008383612440565b6001600160a01b03821660009081526003602052604081208054600192906128e2908490612fb8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805460008255906000526020600020908101906111009190612a35565b8280548282559060005260206000209081019282156129b1579160200282015b828111156129b15781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061297e565b506129bd929150612a35565b5090565b8280546129cd90613046565b90600052602060002090601f0160209004810192826129ef57600085556129b1565b82601f10612a0857805160ff19168380011785556129b1565b828001600101855582156129b1579182015b828111156129b1578251825591602001919060010190612a1a565b5b808211156129bd5760008155600101612a36565b600067ffffffffffffffff80841115612a6557612a656130dc565b604051601f8501601f19908116603f01168101908282118183101715612a8d57612a8d6130dc565b81604052809350858152868686011115612aa657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612ad757600080fd5b919050565b80358015158114612ad757600080fd5b600060208284031215612afd578081fd5b611d3f82612ac0565b60008060408385031215612b18578081fd5b612b2183612ac0565b9150612b2f60208401612ac0565b90509250929050565b600080600060608486031215612b4c578081fd5b612b5584612ac0565b9250612b6360208501612ac0565b9150604084013590509250925092565b60008060008060808587031215612b88578081fd5b612b9185612ac0565b9350612b9f60208601612ac0565b925060408501359150606085013567ffffffffffffffff811115612bc1578182fd5b8501601f81018713612bd1578182fd5b612be087823560208401612a4a565b91505092959194509250565b60008060408385031215612bfe578182fd5b612c0783612ac0565b9150612b2f60208401612adc565b60008060408385031215612c27578182fd5b612c3083612ac0565b946020939093013593505050565b60008060208385031215612c50578182fd5b823567ffffffffffffffff80821115612c67578384fd5b818501915085601f830112612c7a578384fd5b813581811115612c88578485fd5b8660208260051b8501011115612c9c578485fd5b60209290920196919550909350505050565b600060208284031215612cbf578081fd5b611d3f82612adc565b600060208284031215612cd9578081fd5b8135611d3f816130f2565b600060208284031215612cf5578081fd5b8151611d3f816130f2565b600060208284031215612d11578081fd5b813567ffffffffffffffff811115612d27578182fd5b8201601f81018413612d37578182fd5b6120c584823560208401612a4a565b600060208284031215612d57578081fd5b5035919050565b60008151808452612d7681602086016020860161301a565b601f01601f19169290920160200192915050565b600084516020612d9d8285838a0161301a565b855191840191612db08184848a0161301a565b85549201918390600181811c9080831680612dcc57607f831692505b858310811415612dea57634e487b7160e01b88526022600452602488fd5b808015612dfe5760018114612e0f57612e3b565b60ff19851688528388019550612e3b565b60008b815260209020895b85811015612e335781548a820152908401908801612e1a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e7f90830184612d5e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ec157835183529284019291840191600101612ea5565b50909695505050505050565b602081526000611d3f6020830184612d5e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612fcb57612fcb6130b0565b500190565b600082612fdf57612fdf6130c6565b500490565b6000816000190483118215151615612ffe57612ffe6130b0565b500290565b600082821015613015576130156130b0565b500390565b60005b8381101561303557818101518382015260200161301d565b83811115611b885750506000910152565b600181811c9082168061305a57607f821691505b6020821081141561307b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613095576130956130b0565b5060010190565b6000826130ab576130ab6130c6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461110057600080fdfea26469706673582212208b6f37f9c25903cb51f225db9d394f5f208f7785e1e28abd7792a1503211d43564736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4e61676120506978656c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e475000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d614b7a5744636a777467563265574c74644173376568694d3861683739705938784835517a4e3463705879342f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Naga Pixel
Arg [1] : _symbol (string): NGP
Arg [2] : _initBaseURI (string): ipfs://QmaKzWDcjwtgV2eWLtdAs7ehiM8ah79pY8xH5QzN4cpXy4/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4e61676120506978656c00000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4e47500000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d614b7a5744636a777467563265574c7464417337656869
Arg [9] : 4d3861683739705938784835517a4e3463705879342f00000000000000000000


Deployed Bytecode Sourcemap

43247:7090:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43646:26;;;;;;;;;;-1:-1:-1;43646:26:0;;;;;;;;;;;;;;8634:14:1;;8627:22;8609:41;;8597:2;8582:18;43646:26:0;;;;;;;;34734:224;;;;;;;;;;-1:-1:-1;34734:224:0;;;;;:::i;:::-;;:::i;47629:73::-;;;;;;;;;;-1:-1:-1;47629:73:0;;;;;:::i;:::-;;:::i;:::-;;46726:98;;;;;;;;;;;;;:::i;22626:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24185:221::-;;;;;;;;;;-1:-1:-1;24185:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7292:32:1;;;7274:51;;7262:2;7247:18;24185:221:0;7229:102:1;43402:28:0;;;;;;;;;;;;;:::i;23708:411::-;;;;;;;;;;-1:-1:-1;23708:411:0;;;;;:::i;:::-;;:::i;48023:294::-;;;;;;;;;;;;;:::i;:::-;;;19454:25:1;;;19442:2;19427:18;48023:294:0;19409:76:1;43435:29:0;;;;;;;;;;;;;;;;35374:113;;;;;;;;;;-1:-1:-1;35462:10:0;:17;35374:113;;43886:55;;;;;;;;;;-1:-1:-1;43886:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;47036:103;;;;;;;;;;-1:-1:-1;47036:103:0;;;;;:::i;:::-;;:::i;43505:32::-;;;;;;;;;;;;;;;;25075:339;;;;;;;;;;-1:-1:-1;25075:339:0;;;;;:::i;:::-;;:::i;50019:147::-;;;;;;;;;;-1:-1:-1;50019:147:0;;;;;:::i;:::-;;:::i;35042:256::-;;;;;;;;;;-1:-1:-1;35042:256:0;;;;;:::i;:::-;;:::i;45436:239::-;;;;;;;;;;-1:-1:-1;45436:239:0;;;;;:::i;:::-;;:::i;49916:95::-;;;;;;;;;;-1:-1:-1;49916:95:0;;;;;:::i;:::-;;:::i;50176:158::-;;;:::i;25485:185::-;;;;;;;;;;-1:-1:-1;25485:185:0;;;;;:::i;:::-;;:::i;45681:348::-;;;;;;;;;;-1:-1:-1;45681:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46946:82::-;;;;;;;;;;-1:-1:-1;46946:82:0;;;;;:::i;:::-;;:::i;35564:233::-;;;;;;;;;;-1:-1:-1;35564:233:0;;;;;:::i;:::-;;:::i;43773:27::-;;;;;;;;;;-1:-1:-1;43773:27:0;;;;-1:-1:-1;;;43773:27:0;;;;;;43615:26;;;;;;;;;;-1:-1:-1;43615:26:0;;;;;;;;;;;47269:98;;;;;;;;;;-1:-1:-1;47269:98:0;;;;;:::i;:::-;;:::i;43677:26::-;;;;;;;;;;-1:-1:-1;43677:26:0;;;;;;;;;;;47710:305;;;;;;;;;;-1:-1:-1;47710:305:0;;;;;:::i;:::-;;:::i;43742:26::-;;;;;;;;;;-1:-1:-1;43742:26:0;;;;;;;;;;;22320:239;;;;;;;;;;-1:-1:-1;22320:239:0;;;;;:::i;:::-;;:::i;43334:21::-;;;;;;;;;;;;;:::i;22050:208::-;;;;;;;;;;-1:-1:-1;22050:208:0;;;;;:::i;:::-;;:::i;42533:94::-;;;;;;;;;;;;;:::i;48326:348::-;;;;;;;;;;-1:-1:-1;48326:348:0;;;;;:::i;:::-;;:::i;48682:411::-;;;;;;;;;;-1:-1:-1;48682:411:0;;;;;:::i;:::-;;:::i;47145:118::-;;;;;;;;;;-1:-1:-1;47145:118:0;;;;;:::i;:::-;;:::i;43584:26::-;;;;;;;;;;-1:-1:-1;43584:26:0;;;;;;;;41882:87;;;;;;;;;;-1:-1:-1;41955:6:0;;-1:-1:-1;;;;;41955:6:0;41882:87;;49520:388;;;;;;;;;;-1:-1:-1;49520:388:0;;;;;:::i;:::-;;:::i;22795:104::-;;;;;;;;;;;;;:::i;43805:34::-;;;;;;;;;;-1:-1:-1;43805:34:0;;;;-1:-1:-1;;;43805:34:0;;;;;;44318:1108;;;;;;:::i;:::-;;:::i;24478:295::-;;;;;;;;;;-1:-1:-1;24478:295:0;;;;;:::i;:::-;;:::i;46554:67::-;;;;;;;;;;;;;:::i;46629:89::-;;;;;;;;;;;;;:::i;25741:328::-;;;;;;;;;;-1:-1:-1;25741:328:0;;;;;:::i;:::-;;:::i;43844:37::-;;;;;;;;;;-1:-1:-1;43844:37:0;;;;;:::i;:::-;;:::i;43542:::-;;;;;;;;;;;;;;;;43708:29;;;;;;;;;;-1:-1:-1;43708:29:0;;;;;;;;;;;43360:37;;;;;;;;;;;;;:::i;46035:497::-;;;;;;;;;;-1:-1:-1;46035:497:0;;;;;:::i;:::-;;:::i;46832:106::-;;;;;;;;;;-1:-1:-1;46832:106:0;;;;;:::i;:::-;;:::i;43469:31::-;;;;;;;;;;;;;;;;47373:122;;;;;;;;;;-1:-1:-1;47373:122:0;;;;;:::i;:::-;;:::i;49101:411::-;;;;;;;;;;-1:-1:-1;49101:411:0;;;;;:::i;:::-;;:::i;24844:164::-;;;;;;;;;;-1:-1:-1;24844:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24965:25:0;;;24941:4;24965:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24844:164;47503:120;;;;;;;;;;-1:-1:-1;47503:120:0;;;;;:::i;:::-;;:::i;42782:192::-;;;;;;;;;;-1:-1:-1;42782:192:0;;;;;:::i;:::-;;:::i;34734:224::-;34836:4;-1:-1:-1;;;;;;34860:50:0;;-1:-1:-1;;;34860:50:0;;:90;;;34914:36;34938:11;34914:23;:36::i;:::-;34853:97;34734:224;-1:-1:-1;;34734:224:0:o;47629:73::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;;;;;;;;;47681:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47681:15:0;;::::1;::::0;;;::::1;::::0;;47629:73::o;46726:98::-;46772:4;46793:25;46807:10;46793:13;:25::i;:::-;46786:32;;46726:98;:::o;22626:100::-;22680:13;22713:5;22706:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22626:100;:::o;24185:221::-;24261:7;27668:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27668:16:0;24281:73;;;;-1:-1:-1;;;24281:73:0;;14929:2:1;24281:73:0;;;14911:21:1;14968:2;14948:18;;;14941:30;15007:34;14987:18;;;14980:62;-1:-1:-1;;;15058:18:1;;;15051:42;15110:19;;24281:73:0;14901:234:1;24281:73:0;-1:-1:-1;24374:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24374:24:0;;24185:221::o;43402:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23708:411::-;23789:13;23805:23;23820:7;23805:14;:23::i;:::-;23789:39;;23853:5;-1:-1:-1;;;;;23847:11:0;:2;-1:-1:-1;;;;;23847:11:0;;;23839:57;;;;-1:-1:-1;;;23839:57:0;;17228:2:1;23839:57:0;;;17210:21:1;17267:2;17247:18;;;17240:30;17306:34;17286:18;;;17279:62;-1:-1:-1;;;17357:18:1;;;17350:31;17398:19;;23839:57:0;17200:223:1;23839:57:0;744:10;-1:-1:-1;;;;;23931:21:0;;;;:62;;-1:-1:-1;23956:37:0;23973:5;744:10;24844:164;:::i;23956:37::-;23909:168;;;;-1:-1:-1;;;23909:168:0;;12566:2:1;23909:168:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;12715:26;12695:18;;;12688:54;12759:19;;23909:168:0;12538:246:1;23909:168:0;24090:21;24099:2;24103:7;24090:8;:21::i;:::-;23708:411;;;:::o;48023:294::-;48089:6;;48070:7;;48089:6;;:14;;:6;:14;48085:227;;;-1:-1:-1;48122:1:0;;48023:294::o;48085:227::-;48139:6;;;;;;;;:14;;:6;:14;48136:176;;;-1:-1:-1;48172:1:0;;48023:294::o;48136:176::-;48189:6;;;;;;;:14;;48199:4;48189:14;48186:126;;;-1:-1:-1;48222:1:0;;48023:294::o;48186:126::-;48239:6;;;;;;;:14;;48249:4;48239:14;48236:76;;;-1:-1:-1;48272:1:0;;48023:294::o;48236:76::-;-1:-1:-1;48303:1:0;;48023:294::o;47036:103::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;47108:9:::1;:25:::0;47036:103::o;25075:339::-;25270:41;744:10;25303:7;25270:18;:41::i;:::-;25262:103;;;;-1:-1:-1;;;25262:103:0;;;;;;;:::i;:::-;25378:28;25388:4;25394:2;25398:7;25378:9;:28::i;50019:147::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;50097:27:::1;50104:20;;50097:27;:::i;:::-;50131:29;:20;50154:6:::0;;50131:29:::1;:::i;35042:256::-:0;35139:7;35175:23;35192:5;35175:16;:23::i;:::-;35167:5;:31;35159:87;;;;-1:-1:-1;;;35159:87:0;;9087:2:1;35159:87:0;;;9069:21:1;9126:2;9106:18;;;9099:30;9165:34;9145:18;;;9138:62;-1:-1:-1;;;9216:18:1;;;9209:41;9267:19;;35159:87:0;9059:233:1;35159:87:0;-1:-1:-1;;;;;;35264:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35042:256::o;45436:239::-;45495:4;;45508:143;45529:20;:27;45525:31;;45508:143;;;45603:5;-1:-1:-1;;;;;45576:32:0;:20;45597:1;45576:23;;;;;;-1:-1:-1;;;45576:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45576:23:0;:32;45572:72;;;-1:-1:-1;45630:4:0;;45436:239;-1:-1:-1;;45436:239:0:o;45572:72::-;45558:3;;;;:::i;:::-;;;;45508:143;;;-1:-1:-1;45664:5:0;;45436:239;-1:-1:-1;;45436:239:0:o;49916:95::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;49981:15:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;49981:24:0::1;-1:-1:-1::0;;49981:24:0;;::::1;::::0;;;::::1;::::0;;49916:95::o;50176:158::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;50247:58:::1;::::0;50229:12:::1;::::0;50255:10:::1;::::0;50279:21:::1;::::0;50229:12;50247:58;50229:12;50247:58;50279:21;50255:10;50247:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50228:77;;;50320:7;50312:16;;;::::0;::::1;;42173:1;50176:158::o:0;25485:185::-;25623:39;25640:4;25646:2;25650:7;25623:39;;;;;;;;;;;;:16;:39::i;45681:348::-;45756:16;45784:23;45810:17;45820:6;45810:9;:17::i;:::-;45784:43;;45834:25;45876:15;45862:30;;;;;;-1:-1:-1;;;45862:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45862:30:0;;45834:58;;45904:9;45899:103;45919:15;45915:1;:19;45899:103;;;45964:30;45984:6;45992:1;45964:19;:30::i;:::-;45950:8;45959:1;45950:11;;;;;;-1:-1:-1;;;45950:11:0;;;;;;;;;;;;;;;;;;:44;45936:3;;;;:::i;:::-;;;;45899:103;;;-1:-1:-1;46015:8:0;45681:348;-1:-1:-1;;;45681:348:0:o;46946:82::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;47007:4:::1;:15:::0;46946:82::o;35564:233::-;35639:7;35675:30;35462:10;:17;;35374:113;35675:30;35667:5;:38;35659:95;;;;-1:-1:-1;;;35659:95:0;;18745:2:1;35659:95:0;;;18727:21:1;18784:2;18764:18;;;18757:30;18823:34;18803:18;;;18796:62;-1:-1:-1;;;18874:18:1;;;18867:42;18926:19;;35659:95:0;18717:234:1;35659:95:0;35772:10;35783:5;35772:17;;;;;;-1:-1:-1;;;35772:17:0;;;;;;;;;;;;;;;;;35765:24;;35564:233;;;:::o;47269:98::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;47340:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47269:98:::0;:::o;47710:305::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;47770:10:::1;:19:::0;;-1:-1:-1;;47770:19:0::1;::::0;;::::1;;;;::::0;;47796:27:::1;47803:20;-1:-1:-1::0;47796:27:0::1;:::i;:::-;47834:10;::::0;;;::::1;;;:18;;47848:4;47834:18;47830:180;;;47876:1;47860:13;:17:::0;;;47891:7:::1;47884:4;:14:::0;47905:9:::1;:13:::0;47925:6:::1;:14:::0;;-1:-1:-1;;47988:14:0;;;47710:305;:::o;22320:239::-;22392:7;22428:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22428:16:0;22463:19;22455:73;;;;-1:-1:-1;;;22455:73:0;;13402:2:1;22455:73:0;;;13384:21:1;13441:2;13421:18;;;13414:30;13480:34;13460:18;;;13453:62;-1:-1:-1;;;13531:18:1;;;13524:39;13580:19;;22455:73:0;13374:231:1;43334:21:0;;;;;;;:::i;22050:208::-;22122:7;-1:-1:-1;;;;;22150:19:0;;22142:74;;;;-1:-1:-1;;;22142:74:0;;12991:2:1;22142:74:0;;;12973:21:1;13030:2;13010:18;;;13003:30;13069:34;13049:18;;;13042:62;-1:-1:-1;;;13120:18:1;;;13113:40;13170:19;;22142:74:0;12963:232:1;22142:74:0;-1:-1:-1;;;;;;22234:16:0;;;;;:9;:16;;;;;;;22050:208::o;42533:94::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;42598:21:::1;42616:1;42598:9;:21::i;:::-;42533:94::o:0;48326:348::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;48382:6:::1;:15:::0;;-1:-1:-1;;48382:15:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;48408:6:::0;:14:::1;;-1:-1:-1::0;48408:14:0::1;48404:265;;;48430:20;48444:5;48430:13;:20::i;:::-;48473:1;48457:13;:17:::0;;;48488:11:::1;48481:4;:18:::0;48518:3:::1;48506:9;:15:::0;48528:18:::1;:22:::0;;;48557:24:::1;::::0;:18:::1;:24::i;48404:265::-;48616:1;48600:13;:17:::0;;;48631:10:::1;48624:4;:17:::0;48648:9:::1;:13:::0;48326:348;:::o;48682:411::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;48738:6:::1;:15:::0;;-1:-1:-1;;48802:14:0;48738:15:::1;::::0;::::1;;::::0;::::1;-1:-1:-1::0;;48802:14:0;;;;;;;;;48738:15:::1;48827:6:::0;::::1;;:14;;-1:-1:-1::0;48827:14:0::1;48823:265;;;48849:20;48863:5;48849:13;:20::i;:::-;48892:1;48876:13;:17:::0;;;48907:10:::1;48900:4;:17:::0;48936:4:::1;48924:9;:16:::0;48947:18:::1;:22:::0;48976:24:::1;-1:-1:-1::0;48976:18:0::1;:24::i;47145:118::-:0;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;47224:13:::1;:33:::0;47145:118::o;49520:388::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;49576:6:::1;:15:::0;;-1:-1:-1;;49640:14:0;49576:15;;::::1;;::::0;::::1;-1:-1:-1::0;;49640:14:0;;;;;;;;;49576:15:::1;49665:6:::0;::::1;;:14;;-1:-1:-1::0;49665:14:0::1;49661:242;;;49687:20;49701:5;49687:13;:20::i;:::-;49721:10;49714:4;:17:::0;49750:4:::1;49738:9;:16:::0;49782:1:::1;49761:18;:22:::0;49790:25:::1;-1:-1:-1::0;49790:18:0::1;:25::i;22795:104::-:0;22851:13;22884:7;22877:14;;;;;:::i;44318:1108::-;41955:6;;-1:-1:-1;;;;;41955:6:0;44379:10;:21;44375:312;;44409:13;44425:16;:14;:16::i;:::-;44457:6;;44409:32;;-1:-1:-1;44457:6:0;;;;;44456:7;44448:42;;;;-1:-1:-1;;;44448:42:0;;15703:2:1;44448:42:0;;;15685:21:1;15742:2;15722:18;;;15715:30;-1:-1:-1;;;15761:18:1;;;15754:52;15823:18;;44448:42:0;15675:172:1;44448:42:0;44506:10;;;;;;;44505:11;44497:43;;;;-1:-1:-1;;;44497:43:0;;16880:2:1;44497:43:0;;;16862:21:1;16919:2;16899:18;;;16892:30;-1:-1:-1;;;16938:18:1;;;16931:49;16997:18;;44497:43:0;16852:169:1;44497:43:0;44563:1;44555:5;:9;44547:48;;;;-1:-1:-1;;;44547:48:0;;12211:2:1;44547:48:0;;;12193:21:1;12250:2;12230:18;;;12223:30;12289:28;12269:18;;;12262:56;12335:18;;44547:48:0;12183:176:1;44547:48:0;44625:13;;44610:11;:28;;44602:77;;;;-1:-1:-1;;;44602:77:0;;14163:2:1;44602:77:0;;;14145:21:1;14202:2;14182:18;;;14175:30;14241:34;14221:18;;;14214:62;-1:-1:-1;;;14292:18:1;;;14285:34;14336:19;;44602:77:0;14135:226:1;44602:77:0;44375:312;;44693:14;44710:13;35462:10;:17;;35374:113;44710:13;44693:30;;44752:1;44738:11;:15;44730:49;;;;-1:-1:-1;;;44730:49:0;;17630:2:1;44730:49:0;;;17612:21:1;17669:2;17649:18;;;17642:30;-1:-1:-1;;;17688:18:1;;;17681:51;17749:18;;44730:49:0;17602:171:1;44730:49:0;44818:9;;44794:20;44803:11;44794:6;:20;:::i;:::-;:33;;44786:68;;;;-1:-1:-1;;;44786:68:0;;13812:2:1;44786:68:0;;;13794:21:1;13851:2;13831:18;;;13824:30;-1:-1:-1;;;13870:18:1;;;13863:52;13932:18;;44786:68:0;13784:172:1;44786:68:0;41955:6;;-1:-1:-1;;;;;41955:6:0;44867:10;:21;44863:408;;44904:15;;-1:-1:-1;;;44904:15:0;;;;:23;;44923:4;44904:23;44901:116;;;44952:25;44966:10;44952:13;:25::i;:::-;44944:61;;;;-1:-1:-1;;;44944:61:0;;19158:2:1;44944:61:0;;;19140:21:1;19197:2;19177:18;;;19170:30;19236:25;19216:18;;;19209:53;19279:18;;44944:61:0;19130:173:1;44944:61:0;45075:10;45027:24;45054:32;;;:20;:32;;;;;;45139:18;;45105:30;45124:11;45054:32;45105:30;:::i;:::-;:52;;45097:93;;;;-1:-1:-1;;;45097:93:0;;10682:2:1;45097:93:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760;10740:18;;;10733:58;10808:18;;45097:93:0;10654:178:1;45097:93:0;45229:11;45222:4;;:18;;;;:::i;:::-;45209:9;:31;;45201:62;;;;-1:-1:-1;;;45201:62:0;;17980:2:1;45201:62:0;;;17962:21:1;18019:2;17999:18;;;17992:30;-1:-1:-1;;;18038:18:1;;;18031:48;18096:18;;45201:62:0;17952:168:1;45201:62:0;44863:408;;45300:1;45283:138;45308:11;45303:1;:16;45283:138;;45358:10;45337:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;45380:33:0;;-1:-1:-1;45390:10:0;45402;45411:1;45402:6;:10;:::i;:::-;45380:9;:33::i;:::-;45321:3;;;;:::i;:::-;;;;45283:138;;24478:295;-1:-1:-1;;;;;24581:24:0;;744:10;24581:24;;24573:62;;;;-1:-1:-1;;;24573:62:0;;11444:2:1;24573:62:0;;;11426:21:1;11483:2;11463:18;;;11456:30;11522:27;11502:18;;;11495:55;11567:18;;24573:62:0;11416:175:1;24573:62:0;744:10;24648:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24648:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24648:53:0;;;;;;;;;;24717:48;;8609:41:1;;;24648:42:0;;744:10;24717:48;;8582:18:1;24717:48:0;;;;;;;24478:295;;:::o;46554:67::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;46600:8:::1;:15:::0;;-1:-1:-1;;46600:15:0::1;-1:-1:-1::0;;;46600:15:0::1;::::0;;46554:67::o;46629:89::-;46677:7;46699:13;35462:10;:17;;35374:113;25741:328;25916:41;744:10;25949:7;25916:18;:41::i;:::-;25908:103;;;;-1:-1:-1;;;25908:103:0;;;;;;;:::i;:::-;26022:39;26036:4;26042:2;26046:7;26055:5;26022:13;:39::i;:::-;25741:328;;;;:::o;43844:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43844:37:0;;-1:-1:-1;43844:37:0;:::o;43360:::-;;;;;;;:::i;46035:497::-;27644:4;27668:16;;;:7;:16;;;;;;46133:13;;-1:-1:-1;;;;;27668:16:0;46158:97;;;;-1:-1:-1;;;46158:97:0;;16464:2:1;46158:97:0;;;16446:21:1;16503:2;16483:18;;;16476:30;16542:34;16522:18;;;16515:62;-1:-1:-1;;;16593:18:1;;;16586:45;16648:19;;46158:97:0;16436:237:1;46158:97:0;46271:8;;-1:-1:-1;;;46271:8:0;;;;46268:62;;46308:14;46301:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46035:497;;;:::o;46268:62::-;46338:28;46369:10;:8;:10::i;:::-;46338:41;;46424:1;46399:14;46393:28;:32;:133;;;;;;;;;;;;;;;;;46461:14;46477:18;:7;:16;:18::i;:::-;46497:13;46444:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46393:133;46386:140;46035:497;-1:-1:-1;;;46035:497:0:o;46832:106::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;46905:18:::1;:27:::0;46832:106::o;47373:122::-;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;47456:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49101:411::-:0;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;49157:6:::1;:15:::0;;-1:-1:-1;;49221:14:0;49157:15;;::::1;;::::0;::::1;-1:-1:-1::0;;49221:14:0;;;;;;;;;49157:15:::1;49246:6:::0;::::1;;:14;;-1:-1:-1::0;49246:14:0::1;49242:265;;;49268:20;49282:5;49268:13;:20::i;:::-;49311:1;49295:13;:17:::0;;;49326:10:::1;49319:4;:17:::0;49355:4:::1;49343:9;:16:::0;49366:18:::1;:22:::0;49395:24:::1;-1:-1:-1::0;49395:18:0::1;:24::i;47503:120::-:0;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;47585:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42782:192::-:0;41955:6;;-1:-1:-1;;;;;41955:6:0;744:10;42102:23;42094:68;;;;-1:-1:-1;;;42094:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42871:22:0;::::1;42863:73;;;::::0;-1:-1:-1;;;42863:73:0;;9918:2:1;42863:73:0::1;::::0;::::1;9900:21:1::0;9957:2;9937:18;;;9930:30;9996:34;9976:18;;;9969:62;-1:-1:-1;;;10047:18:1;;;10040:36;10093:19;;42863:73:0::1;9890:228:1::0;42863:73:0::1;42947:19;42957:8;42947:9;:19::i;11385:387::-:0;11708:20;11756:8;;;11385:387::o;21681:305::-;21783:4;-1:-1:-1;;;;;;21820:40:0;;-1:-1:-1;;;21820:40:0;;:105;;-1:-1:-1;;;;;;;21877:48:0;;-1:-1:-1;;;21877:48:0;21820:105;:158;;;-1:-1:-1;;;;;;;;;;8494:40:0;;;21942:36;8385:157;31561:174;31636:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31636:29:0;-1:-1:-1;;;;;31636:29:0;;;;;;;;:24;;31690:23;31636:24;31690:14;:23::i;:::-;-1:-1:-1;;;;;31681:46:0;;;;;;;;;;;31561:174;;:::o;27873:348::-;27966:4;27668:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27668:16:0;27983:73;;;;-1:-1:-1;;;27983:73:0;;11798:2:1;27983:73:0;;;11780:21:1;11837:2;11817:18;;;11810:30;11876:34;11856:18;;;11849:62;-1:-1:-1;;;11927:18:1;;;11920:42;11979:19;;27983:73:0;11770:234:1;27983:73:0;28067:13;28083:23;28098:7;28083:14;:23::i;:::-;28067:39;;28136:5;-1:-1:-1;;;;;28125:16:0;:7;-1:-1:-1;;;;;28125:16:0;;:51;;;;28169:7;-1:-1:-1;;;;;28145:31:0;:20;28157:7;28145:11;:20::i;:::-;-1:-1:-1;;;;;28145:31:0;;28125:51;:87;;;-1:-1:-1;;;;;;24965:25:0;;;24941:4;24965:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28180:32;28117:96;27873:348;-1:-1:-1;;;;27873:348:0:o;30865:578::-;31024:4;-1:-1:-1;;;;;30997:31:0;:23;31012:7;30997:14;:23::i;:::-;-1:-1:-1;;;;;30997:31:0;;30989:85;;;;-1:-1:-1;;;30989:85:0;;16054:2:1;30989:85:0;;;16036:21:1;16093:2;16073:18;;;16066:30;16132:34;16112:18;;;16105:62;-1:-1:-1;;;16183:18:1;;;16176:39;16232:19;;30989:85:0;16026:231:1;30989:85:0;-1:-1:-1;;;;;31093:16:0;;31085:65;;;;-1:-1:-1;;;31085:65:0;;11039:2:1;31085:65:0;;;11021:21:1;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;-1:-1:-1;;;11168:18:1;;;11161:34;11212:19;;31085:65:0;11011:226:1;31085:65:0;31163:39;31184:4;31190:2;31194:7;31163:20;:39::i;:::-;31267:29;31284:1;31288:7;31267:8;:29::i;:::-;-1:-1:-1;;;;;31309:15:0;;;;;;:9;:15;;;;;:20;;31328:1;;31309:15;:20;;31328:1;;31309:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31340:13:0;;;;;;:9;:13;;;;;:18;;31357:1;;31340:13;:18;;31357:1;;31340:18;:::i;:::-;;;;-1:-1:-1;;31369:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31369:21:0;-1:-1:-1;;;;;31369:21:0;;;;;;;;;31408:27;;31369:16;;31408:27;;;;;;;30865:578;;;:::o;42982:173::-;43057:6;;;-1:-1:-1;;;;;43074:17:0;;;-1:-1:-1;;;;;;43074:17:0;;;;;;;43107:40;;43057:6;;;43074:17;43057:6;;43107:40;;43038:16;;43107:40;42982:173;;:::o;28563:110::-;28639:26;28649:2;28653:7;28639:26;;;;;;;;;;;;:9;:26::i;26951:315::-;27108:28;27118:4;27124:2;27128:7;27108:9;:28::i;:::-;27155:48;27178:4;27184:2;27188:7;27197:5;27155:22;:48::i;:::-;27147:111;;;;-1:-1:-1;;;27147:111:0;;;;;;;:::i;44197:102::-;44257:13;44286:7;44279:14;;;;;:::i;8860:723::-;8916:13;9137:10;9133:53;;-1:-1:-1;;9164:10:0;;;;;;;;;;;;-1:-1:-1;;;9164:10:0;;;;;8860:723::o;9133:53::-;9211:5;9196:12;9252:78;9259:9;;9252:78;;9285:8;;;;:::i;:::-;;-1:-1:-1;9308:10:0;;-1:-1:-1;9316:2:0;9308:10;;:::i;:::-;;;9252:78;;;9340:19;9372:6;9362:17;;;;;;-1:-1:-1;;;9362:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9362:17:0;;9340:39;;9390:154;9397:10;;9390:154;;9424:11;9434:1;9424:11;;:::i;:::-;;-1:-1:-1;9493:10:0;9501:2;9493:5;:10;:::i;:::-;9480:24;;:2;:24;:::i;:::-;9467:39;;9450:6;9457;9450:14;;;;;;-1:-1:-1;;;9450:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;9450:56:0;;;;;;;;-1:-1:-1;9521:11:0;9530:2;9521:11;;:::i;:::-;;;9390:154;;36410:589;-1:-1:-1;;;;;36616:18:0;;36612:187;;36651:40;36683:7;37826:10;:17;;37799:24;;;;:15;:24;;;;;:44;;;37854:24;;;;;;;;;;;;37722:164;36651:40;36612:187;;;36721:2;-1:-1:-1;;;;;36713:10:0;:4;-1:-1:-1;;;;;36713:10:0;;36709:90;;36740:47;36773:4;36779:7;36740:32;:47::i;:::-;-1:-1:-1;;;;;36813:16:0;;36809:183;;36846:45;36883:7;36846:36;:45::i;36809:183::-;36919:4;-1:-1:-1;;;;;36913:10:0;:2;-1:-1:-1;;;;;36913:10:0;;36909:83;;36940:40;36968:2;36972:7;36940:27;:40::i;28900:321::-;29030:18;29036:2;29040:7;29030:5;:18::i;:::-;29081:54;29112:1;29116:2;29120:7;29129:5;29081:22;:54::i;:::-;29059:154;;;;-1:-1:-1;;;29059:154:0;;;;;;;:::i;32300:799::-;32455:4;-1:-1:-1;;;;;32476:13:0;;11708:20;11756:8;32472:620;;32512:72;;-1:-1:-1;;;32512:72:0;;-1:-1:-1;;;;;32512:36:0;;;;;:72;;744:10;;32563:4;;32569:7;;32578:5;;32512:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32512:72:0;;;;;;;;-1:-1:-1;;32512:72:0;;;;;;;;;;;;:::i;:::-;;;32508:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32754:13:0;;32750:272;;32797:60;;-1:-1:-1;;;32797:60:0;;;;;;;:::i;32750:272::-;32972:6;32966:13;32957:6;32953:2;32949:15;32942:38;32508:529;-1:-1:-1;;;;;;32635:51:0;-1:-1:-1;;;32635:51:0;;-1:-1:-1;32628:58:0;;32472:620;-1:-1:-1;33076:4:0;32300:799;;;;;;:::o;38513:988::-;38779:22;38829:1;38804:22;38821:4;38804:16;:22::i;:::-;:26;;;;:::i;:::-;38841:18;38862:26;;;:17;:26;;;;;;38779:51;;-1:-1:-1;38995:28:0;;;38991:328;;-1:-1:-1;;;;;39062:18:0;;39040:19;39062:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39113:30;;;;;;:44;;;39230:30;;:17;:30;;;;;:43;;;38991:328;-1:-1:-1;39415:26:0;;;;:17;:26;;;;;;;;39408:33;;;-1:-1:-1;;;;;39459:18:0;;;;;:12;:18;;;;;:34;;;;;;;39452:41;38513:988::o;39796:1079::-;40074:10;:17;40049:22;;40074:21;;40094:1;;40074:21;:::i;:::-;40106:18;40127:24;;;:15;:24;;;;;;40500:10;:26;;40049:46;;-1:-1:-1;40127:24:0;;40049:46;;40500:26;;;;-1:-1:-1;;;40500:26:0;;;;;;;;;;;;;;;;;40478:48;;40564:11;40539:10;40550;40539:22;;;;;;-1:-1:-1;;;40539:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40644:28;;;:15;:28;;;;;;;:41;;;40816:24;;;;;40809:31;40851:10;:16;;;;;-1:-1:-1;;;40851:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39796:1079;;;;:::o;37300:221::-;37385:14;37402:20;37419:2;37402:16;:20::i;:::-;-1:-1:-1;;;;;37433:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37478:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37300:221:0:o;29557:382::-;-1:-1:-1;;;;;29637:16:0;;29629:61;;;;-1:-1:-1;;;29629:61:0;;14568:2:1;29629:61:0;;;14550:21:1;;;14587:18;;;14580:30;14646:34;14626:18;;;14619:62;14698:18;;29629:61:0;14540:182:1;29629:61:0;27644:4;27668:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27668:16:0;:30;29701:58;;;;-1:-1:-1;;;29701:58:0;;10325:2:1;29701:58:0;;;10307:21:1;10364:2;10344:18;;;10337:30;10403;10383:18;;;10376:58;10451:18;;29701:58:0;10297:178:1;29701:58:0;29772:45;29801:1;29805:2;29809:7;29772:20;:45::i;:::-;-1:-1:-1;;;;;29830:13:0;;;;;;:9;:13;;;;;:18;;29847:1;;29830:13;:18;;29847:1;;29830:18;:::i;:::-;;;;-1:-1:-1;;29859:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29859:21:0;-1:-1:-1;;;;;29859:21:0;;;;;;;;29898:33;;29859:16;;;29898:33;;29859:16;;29898:33;29557: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:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:665::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3620:7;3615:2;3605:6;3602:1;3598:14;3594:2;3590:23;3586:32;3583:45;3580:2;;;3646:6;3638;3631:22;3580:2;3682;3674:11;;;;;3704:6;;-1:-1:-1;3156:560:1;;-1:-1:-1;;;;3156:560:1:o;3721:190::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:2;;;3851:6;3843;3836:22;3798:2;3879:26;3895:9;3879:26;:::i;3916:255::-;3974:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:2;;;4048:6;4040;4033:22;3995:2;4092:9;4079:23;4111:30;4135:5;4111:30;:::i;4176:259::-;4245:6;4298:2;4286:9;4277:7;4273:23;4269:32;4266:2;;;4319:6;4311;4304:22;4266:2;4356:9;4350:16;4375:30;4399:5;4375:30;:::i;4440:480::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:2;;;4583:6;4575;4568:22;4530:2;4628:9;4615:23;4661:18;4653:6;4650:30;4647:2;;;4698:6;4690;4683:22;4647:2;4726:22;;4779:4;4771:13;;4767:27;-1:-1:-1;4757:2:1;;4813:6;4805;4798:22;4757:2;4841:73;4906:7;4901:2;4888:16;4883:2;4879;4875:11;4841:73;:::i;4925:190::-;4984:6;5037:2;5025:9;5016:7;5012:23;5008:32;5005:2;;;5058:6;5050;5043:22;5005:2;-1:-1:-1;5086:23:1;;4995:120;-1:-1:-1;4995:120:1:o;5120:257::-;5161:3;5199:5;5193:12;5226:6;5221:3;5214:19;5242:63;5298:6;5291:4;5286:3;5282:14;5275:4;5268:5;5264:16;5242:63;:::i;:::-;5359:2;5338:15;-1:-1:-1;;5334:29:1;5325:39;;;;5366:4;5321:50;;5169:208;-1:-1:-1;;5169:208:1:o;5382:1531::-;5606:3;5644:6;5638:13;5670:4;5683:51;5727:6;5722:3;5717:2;5709:6;5705:15;5683:51;:::i;:::-;5797:13;;5756:16;;;;5819:55;5797:13;5756:16;5841:15;;;5819:55;:::i;:::-;5965:13;;5896:20;;;5936:3;;6025:1;6047:18;;;;6100;;;;6127:2;;6205:4;6195:8;6191:19;6179:31;;6127:2;6268;6258:8;6255:16;6235:18;6232:40;6229:2;;;-1:-1:-1;;;6295:33:1;;6351:4;6348:1;6341:15;6381:4;6302:3;6369:17;6229:2;6412:18;6439:110;;;;6563:1;6558:330;;;;6405:483;;6439:110;-1:-1:-1;;6474:24:1;;6460:39;;6519:20;;;;-1:-1:-1;6439:110:1;;6558:330;19537:4;19556:17;;;19606:4;19590:21;;6653:3;6669:169;6683:8;6680:1;6677:15;6669:169;;;6765:14;;6750:13;;;6743:37;6808:16;;;;6700:10;;6669:169;;;6673:3;;6869:8;6862:5;6858:20;6851:27;;6405:483;-1:-1:-1;6904:3:1;;5614:1299;-1:-1:-1;;;;;;;;;;;5614:1299:1:o;7336:488::-;-1:-1:-1;;;;;7605:15:1;;;7587:34;;7657:15;;7652:2;7637:18;;7630:43;7704:2;7689:18;;7682:34;;;7752:3;7747:2;7732:18;;7725:31;;;7530:4;;7773:45;;7798:19;;7790:6;7773:45;:::i;:::-;7765:53;7539:285;-1:-1:-1;;;;;;7539:285:1:o;7829:635::-;8000:2;8052:21;;;8122:13;;8025:18;;;8144:22;;;7971:4;;8000:2;8223:15;;;;8197:2;8182:18;;;7971:4;8269:169;8283:6;8280:1;8277:13;8269:169;;;8344:13;;8332:26;;8413:15;;;;8378:12;;;;8305:1;8298:9;8269:169;;;-1:-1:-1;8455:3:1;;7980:484;-1:-1:-1;;;;;;7980:484:1:o;8661:219::-;8810:2;8799:9;8792:21;8773:4;8830:44;8870:2;8859:9;8855:18;8847:6;8830:44;:::i;9297:414::-;9499:2;9481:21;;;9538:2;9518:18;;;9511:30;9577:34;9572:2;9557:18;;9550:62;-1:-1:-1;;;9643:2:1;9628:18;;9621:48;9701:3;9686:19;;9471:240::o;15140:356::-;15342:2;15324:21;;;15361:18;;;15354:30;15420:34;15415:2;15400:18;;15393:62;15487:2;15472:18;;15314:182::o;18125:413::-;18327:2;18309:21;;;18366:2;18346:18;;;18339:30;18405:34;18400:2;18385:18;;18378:62;-1:-1:-1;;;18471:2:1;18456:18;;18449:47;18528:3;18513:19;;18299:239::o;19622:128::-;19662:3;19693:1;19689:6;19686:1;19683:13;19680:2;;;19699:18;;:::i;:::-;-1:-1:-1;19735:9:1;;19670:80::o;19755:120::-;19795:1;19821;19811:2;;19826:18;;:::i;:::-;-1:-1:-1;19860:9:1;;19801:74::o;19880:168::-;19920:7;19986:1;19982;19978:6;19974:14;19971:1;19968:21;19963:1;19956:9;19949:17;19945:45;19942:2;;;19993:18;;:::i;:::-;-1:-1:-1;20033:9:1;;19932:116::o;20053:125::-;20093:4;20121:1;20118;20115:8;20112:2;;;20126:18;;:::i;:::-;-1:-1:-1;20163:9:1;;20102:76::o;20183:258::-;20255:1;20265:113;20279:6;20276:1;20273:13;20265:113;;;20355:11;;;20349:18;20336:11;;;20329:39;20301:2;20294:10;20265:113;;;20396:6;20393:1;20390:13;20387:2;;;-1:-1:-1;;20431:1:1;20413:16;;20406:27;20236:205::o;20446:380::-;20525:1;20521:12;;;;20568;;;20589:2;;20643:4;20635:6;20631:17;20621:27;;20589:2;20696;20688:6;20685:14;20665:18;20662:38;20659:2;;;20742:10;20737:3;20733:20;20730:1;20723:31;20777:4;20774:1;20767:15;20805:4;20802:1;20795:15;20659:2;;20501:325;;;:::o;20831:135::-;20870:3;-1:-1:-1;;20891:17:1;;20888:2;;;20911:18;;:::i;:::-;-1:-1:-1;20958:1:1;20947:13;;20878:88::o;20971:112::-;21003:1;21029;21019:2;;21034:18;;:::i;:::-;-1:-1:-1;21068:9:1;;21009:74::o;21088:127::-;21149:10;21144:3;21140:20;21137:1;21130:31;21180:4;21177:1;21170:15;21204:4;21201:1;21194:15;21220:127;21281:10;21276:3;21272:20;21269:1;21262:31;21312:4;21309:1;21302:15;21336:4;21333:1;21326:15;21352:127;21413:10;21408:3;21404:20;21401:1;21394:31;21444:4;21441:1;21434:15;21468:4;21465:1;21458:15;21484:131;-1:-1:-1;;;;;;21558:32:1;;21548:43;;21538:2;;21605:1;21602;21595:12

Swarm Source

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