ETH Price: $3,047.09 (+2.24%)
Gas: 2 Gwei

Token

InventoryNFT (INVENTORY)
 

Overview

Max Total Supply

7,000 INVENTORY

Holders

1,080

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 INVENTORY
0x1967f926a27c8B96fC99FD24d185A435e3dA54B4
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:
InventoryNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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);
}

/**
 * @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;
}

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);
    }
}

/**
 * @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;
    }
}

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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-Adadress-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);
            }
        }
    }
}

/**
 * @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;
    }
}

/**
 * @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 {}
}

/**
 * @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);
}

/**
 * @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();
    }
}

/**
 * @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);
    }
}

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

    uint256 public constant MAX_TOKENS = 7000;
    uint256 public constant PRICE = 0.00 ether;
    uint256 public constant MAX_PER_MINT = 10;
    uint256 public constant PRESALE_MAX_MINT = 10;
    uint256 public constant MAX_TOKENS_MINT = 30;
    uint256 public constant RESERVED_TOKENS = 300;
    address public constant founderAddress = 0xB3A88B3b682316Dcd1e45f60C6ECd012fe73a473;
    address public constant devAddress = 0x17a18727dB777776Ab5A3Bf686AA5fCfaf2b2738;

    uint256 public reservedClaimed;

    uint256 public numTokensMinted;

    string public baseTokenURI;

    bool public publicSaleStarted;
    bool public presaleStarted;

    mapping(address => bool) private _presaleEligible;
    mapping(address => uint256) private _totalClaimed;

    event BaseURIChanged(string baseURI);
    event PresaleMint(address minter, uint256 amountOfTokens);
    event PublicSaleMint(address minter, uint256 amountOfTokens);

    modifier whenPresaleStarted() {
        require(presaleStarted, "Presale has not started");
        _;
    }

    modifier whenPublicSaleStarted() {
        require(publicSaleStarted, "Public sale has not started");
        _;
    }

    constructor(string memory baseURI) ERC721("InventoryNFT", "INVENTORY") {
        baseTokenURI = baseURI;
    }

    function claimReserved(address recipient, uint256 amount) external onlyOwner {
        require(reservedClaimed != RESERVED_TOKENS, "Already have claimed all reserved tokens");
        require(reservedClaimed + amount <= RESERVED_TOKENS, "Minting would exceed max reserved tokens");
        require(recipient != address(0), "Cannot add null address");
        require(totalSupply() < MAX_TOKENS, "All tokens have been minted");
        require(totalSupply() + amount <= MAX_TOKENS, "Minting would exceed max supply");

        uint256 _nextTokenId = numTokensMinted + 1;

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(recipient, _nextTokenId + i);
        }
        numTokensMinted += amount;
        reservedClaimed += amount;
    }

    function addToPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            _presaleEligible[addresses[i]] = true;

            _totalClaimed[addresses[i]] > 0 ? _totalClaimed[addresses[i]] : 0;
        }
    }

    function checkPresaleEligiblity(address addr) external view returns (bool) {
        return _presaleEligible[addr];
    }

    function amountClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Cannot add null address");

        return _totalClaimed[owner];
    }

    function mintPresale(uint256 amountOfTokens) external payable whenPresaleStarted {
        require(_presaleEligible[msg.sender], "You are not eligible for the presale");
        require(totalSupply() < MAX_TOKENS, "All tokens have been minted");
        require(amountOfTokens <= PRESALE_MAX_MINT, "Cannot purchase this many tokens during presale");
        require(totalSupply() + amountOfTokens <= MAX_TOKENS, "Minting would exceed max supply");
        require(_totalClaimed[msg.sender] + amountOfTokens <= PRESALE_MAX_MINT, "Purchase exceeds max allowed");
        require(amountOfTokens > 0, "Must mint at least one token");
        require(PRICE * amountOfTokens == msg.value, "ETH amount is incorrect");

        for (uint256 i = 0; i < amountOfTokens; i++) {
            uint256 tokenId = numTokensMinted + 1;

            numTokensMinted += 1;
            _totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
        }

        emit PresaleMint(msg.sender, amountOfTokens);
    }

    function mint(uint256 amountOfTokens) external payable whenPublicSaleStarted {
        require(totalSupply() < MAX_TOKENS, "All tokens have been minted");
        require(amountOfTokens <= MAX_PER_MINT, "Cannot purchase this many tokens in a transaction");
        require(totalSupply() + amountOfTokens <= MAX_TOKENS, "Minting would exceed max supply");
        require(_totalClaimed[msg.sender] + amountOfTokens <= MAX_TOKENS_MINT, "Purchase exceeds max allowed per address");
        require(amountOfTokens > 0, "Must mint at least one token");
        require(PRICE * amountOfTokens == msg.value, "ETH amount is incorrect");

        for (uint256 i = 0; i < amountOfTokens; i++) {
            uint256 tokenId = numTokensMinted + 1;

            numTokensMinted += 1;
            _totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
        }

        emit PublicSaleMint(msg.sender, amountOfTokens);
    }

    function togglePresaleStarted() external onlyOwner {
        presaleStarted = !presaleStarted;
    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
        emit BaseURIChanged(baseURI);
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _widthdraw(devAddress, ((balance * 15) / 100));
        _widthdraw(founderAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to widthdraw Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"PublicSaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"amountClaimedBy","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkPresaleEligiblity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founderAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedClaimed","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":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003278380380620032788339810160408190526200003491620001d5565b604080518082018252600c81526b125b9d995b9d1bdc9e53919560a21b602080830191825283518085019094526009845268494e56454e544f525960b81b90840152815191929162000089916000916200012f565b5080516200009f9060019060208401906200012f565b505050620000bc620000b6620000d960201b60201c565b620000dd565b8051620000d190600d9060208401906200012f565b5050620002f7565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013d90620002a4565b90600052602060002090601f016020900481019282620001615760008555620001ac565b82601f106200017c57805160ff1916838001178555620001ac565b82800160010185558215620001ac579182015b82811115620001ac5782518255916020019190600101906200018f565b50620001ba929150620001be565b5090565b5b80821115620001ba5760008155600101620001bf565b60006020808385031215620001e8578182fd5b82516001600160401b0380821115620001ff578384fd5b818501915085601f83011262000213578384fd5b815181811115620002285762000228620002e1565b604051601f8201601f19168101850183811182821017156200024e576200024e620002e1565b604052818152838201850188101562000265578586fd5b8592505b8183101562000288578383018501518184018601529184019162000269565b818311156200029957858583830101525b979650505050505050565b600281046001821680620002b957607f821691505b60208210811415620002db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f7180620003076000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063a22cb465116100b6578063d547cfb71161007a578063d547cfb71461062d578063e985e9c514610642578063ed1fc2a214610662578063f2fde38b14610677578063f47c84c514610697578063f759867a146106ac57610251565b8063a22cb46514610598578063a2e91477146105b8578063aef6ee1f146105cd578063b88d4fde146105ed578063c87b56dd1461060d57610251565b8063853828b6116100fd578063853828b6146105315780638d859f3e146105465780638da5cb5b1461055b57806395d89b4114610570578063a0712d681461058557610251565b80636352211e146104b257806368fc68c7146104d257806370a08231146104e7578063715018a6146105075780637d7cd0481461051c57610251565b806323b872dd116101d25780634230baee116101965780634230baee1461042857806342842e0e1461043d57806346bb28331461045d5780634f6ccce714610472578063549527c31461031257806355f804b31461049257610251565b806323b872dd146103a957806324510043146103c95780632f745c59146103de5780632f814575146103fe5780633ad10ef61461041357610251565b806309d42b301161021957806309d42b301461031257806318160ddd14610334578063191f65ac146103495780631978f469146103695780631b5757f21461038957610251565b806301ffc9a71461025657806304549d6f1461028c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102f0575b600080fd5b34801561026257600080fd5b50610276610271366004612391565b6106bf565b60405161028391906124ef565b60405180910390f35b34801561029857600080fd5b506102766106ec565b3480156102ad57600080fd5b506102b66106fa565b60405161028391906124fa565b3480156102cf57600080fd5b506102e36102de36600461240f565b61078c565b6040516102839190612485565b3480156102fc57600080fd5b5061031061030b3660046122f9565b6107d8565b005b34801561031e57600080fd5b50610327610870565b6040516102839190612de2565b34801561034057600080fd5b50610327610875565b34801561035557600080fd5b506102766103643660046121bf565b61087b565b34801561037557600080fd5b506103276103843660046121bf565b610899565b34801561039557600080fd5b506103106103a43660046122f9565b6108dd565b3480156103b557600080fd5b506103106103c436600461220b565b610a6a565b3480156103d557600080fd5b50610327610aa2565b3480156103ea57600080fd5b506103276103f93660046122f9565b610aa8565b34801561040a57600080fd5b50610310610afa565b34801561041f57600080fd5b506102e3610b4d565b34801561043457600080fd5b50610327610b65565b34801561044957600080fd5b5061031061045836600461220b565b610b6b565b34801561046957600080fd5b506102e3610b86565b34801561047e57600080fd5b5061032761048d36600461240f565b610b9e565b34801561049e57600080fd5b506103106104ad3660046123c9565b610bf9565b3480156104be57600080fd5b506102e36104cd36600461240f565b610c86565b3480156104de57600080fd5b50610327610cbb565b3480156104f357600080fd5b506103276105023660046121bf565b610cc1565b34801561051357600080fd5b50610310610d05565b34801561052857600080fd5b50610327610d50565b34801561053d57600080fd5b50610310610d55565b34801561055257600080fd5b50610327610e07565b34801561056757600080fd5b506102e3610e0c565b34801561057c57600080fd5b506102b6610e1b565b61031061059336600461240f565b610e2a565b3480156105a457600080fd5b506103106105b33660046122bf565b610ff9565b3480156105c457600080fd5b506102766110c7565b3480156105d957600080fd5b506103106105e8366004612322565b6110d0565b3480156105f957600080fd5b50610310610608366004612246565b6112b1565b34801561061957600080fd5b506102b661062836600461240f565b6112f0565b34801561063957600080fd5b506102b6611373565b34801561064e57600080fd5b5061027661065d3660046121d9565b611401565b34801561066e57600080fd5b5061031061142f565b34801561068357600080fd5b506103106106923660046121bf565b61148b565b3480156106a357600080fd5b506103276114f9565b6103106106ba36600461240f565b6114ff565b60006001600160e01b0319821663780e9d6360e01b14806106e457506106e482611702565b90505b919050565b600e54610100900460ff1681565b60606000805461070990612e79565b80601f016020809104026020016040519081016040528092919081815260200182805461073590612e79565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b600061079782611742565b6107bc5760405162461bcd60e51b81526004016107b390612a1b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107e382610c86565b9050806001600160a01b0316836001600160a01b031614156108175760405162461bcd60e51b81526004016107b390612c17565b806001600160a01b031661082961175f565b6001600160a01b0316148061084557506108458161065d61175f565b6108615760405162461bcd60e51b81526004016107b3906127ef565b61086b8383611763565b505050565b600a81565b60085490565b6001600160a01b03166000908152600f602052604090205460ff1690565b60006001600160a01b0382166108c15760405162461bcd60e51b81526004016107b390612c58565b506001600160a01b031660009081526010602052604090205490565b6108e561175f565b6001600160a01b03166108f6610e0c565b6001600160a01b03161461091c5760405162461bcd60e51b81526004016107b390612a94565b61012c600b5414156109405760405162461bcd60e51b81526004016107b390612d2c565b61012c81600b546109519190612deb565b111561096f5760405162461bcd60e51b81526004016107b390612916565b6001600160a01b0382166109955760405162461bcd60e51b81526004016107b390612c58565b611b586109a0610875565b106109bd5760405162461bcd60e51b81526004016107b390612dab565b611b58816109c9610875565b6109d39190612deb565b11156109f15760405162461bcd60e51b81526004016107b3906128df565b6000600c546001610a029190612deb565b905060005b82811015610a3457610a2284610a1d8385612deb565b6117d1565b80610a2c81612eb4565b915050610a07565b5081600c6000828254610a479190612deb565b9250508190555081600b6000828254610a609190612deb565b9091555050505050565b610a7b610a7561175f565b826117ef565b610a975760405162461bcd60e51b81526004016107b390612c8f565b61086b838383611874565b600b5481565b6000610ab383610cc1565b8210610ad15760405162461bcd60e51b81526004016107b390612593565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b0261175f565b6001600160a01b0316610b13610e0c565b6001600160a01b031614610b395760405162461bcd60e51b81526004016107b390612a94565b600e805460ff19811660ff90911615179055565b7317a18727db777776ab5a3bf686aa5fcfaf2b273881565b600c5481565b61086b838383604051806020016040528060008152506112b1565b73b3a88b3b682316dcd1e45f60c6ecd012fe73a47381565b6000610ba8610875565b8210610bc65760405162461bcd60e51b81526004016107b390612ce0565b60088281548110610be757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610c0161175f565b6001600160a01b0316610c12610e0c565b6001600160a01b031614610c385760405162461bcd60e51b81526004016107b390612a94565b8051610c4b90600d90602084019061209f565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610c7b91906124fa565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806106e45760405162461bcd60e51b81526004016107b390612896565b61012c81565b60006001600160a01b038216610ce95760405162461bcd60e51b81526004016107b39061284c565b506001600160a01b031660009081526003602052604090205490565b610d0d61175f565b6001600160a01b0316610d1e610e0c565b6001600160a01b031614610d445760405162461bcd60e51b81526004016107b390612a94565b610d4e60006119a1565b565b601e81565b610d5d61175f565b6001600160a01b0316610d6e610e0c565b6001600160a01b031614610d945760405162461bcd60e51b81526004016107b390612a94565b4780610db25760405162461bcd60e51b81526004016107b390612a67565b610de67317a18727db777776ab5a3bf686aa5fcfaf2b27386064610dd784600f612e17565b610de19190612e03565b6119f3565b610e0473b3a88b3b682316dcd1e45f60c6ecd012fe73a473476119f3565b50565b600081565b600a546001600160a01b031690565b60606001805461070990612e79565b600e5460ff16610e4c5760405162461bcd60e51b81526004016107b3906126ad565b611b58610e57610875565b10610e745760405162461bcd60e51b81526004016107b390612dab565b600a811115610e955760405162461bcd60e51b81526004016107b39061295e565b611b5881610ea1610875565b610eab9190612deb565b1115610ec95760405162461bcd60e51b81526004016107b3906128df565b33600090815260106020526040902054601e90610ee7908390612deb565b1115610f055760405162461bcd60e51b81526004016107b390612bcf565b60008111610f255760405162461bcd60e51b81526004016107b390612b61565b34610f31826000612e17565b14610f4e5760405162461bcd60e51b81526004016107b3906129e4565b60005b81811015610fc7576000600c546001610f6a9190612deb565b90506001600c6000828254610f7f9190612deb565b9091555050336000908152601060205260408120805460019290610fa4908490612deb565b90915550610fb4905033826117d1565b5080610fbf81612eb4565b915050610f51565b507f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b53382604051610c7b9291906124d6565b61100161175f565b6001600160a01b0316826001600160a01b031614156110325760405162461bcd60e51b81526004016107b390612728565b806005600061103f61175f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561108361175f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110bb91906124ef565b60405180910390a35050565b600e5460ff1681565b6110d861175f565b6001600160a01b03166110e9610e0c565b6001600160a01b03161461110f5760405162461bcd60e51b81526004016107b390612a94565b60005b8181101561086b57600083838381811061113c57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061115191906121bf565b6001600160a01b031614156111785760405162461bcd60e51b81526004016107b390612c58565b6001600f600085858581811061119e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111b391906121bf565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560108185858581811061120157634e487b7160e01b600052603260045260246000fd5b905060200201602081019061121691906121bf565b6001600160a01b03166001600160a01b03168152602001908152602001600020541161124357600061129e565b6010600084848481811061126757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061127c91906121bf565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806112a981612eb4565b915050611112565b6112c26112bc61175f565b836117ef565b6112de5760405162461bcd60e51b81526004016107b390612c8f565b6112ea84848484611a6f565b50505050565b60606112fb82611742565b6113175760405162461bcd60e51b81526004016107b390612b12565b6000611321611aa2565b90506000815111611341576040518060200160405280600081525061136c565b8061134b84611ab1565b60405160200161135c929190612453565b6040516020818303038152906040525b9392505050565b600d805461138090612e79565b80601f01602080910402602001604051908101604052809291908181526020018280546113ac90612e79565b80156113f95780601f106113ce576101008083540402835291602001916113f9565b820191906000526020600020905b8154815290600101906020018083116113dc57829003601f168201915b505050505081565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61143761175f565b6001600160a01b0316611448610e0c565b6001600160a01b03161461146e5760405162461bcd60e51b81526004016107b390612a94565b600e805461ff001981166101009182900460ff1615909102179055565b61149361175f565b6001600160a01b03166114a4610e0c565b6001600160a01b0316146114ca5760405162461bcd60e51b81526004016107b390612a94565b6001600160a01b0381166114f05760405162461bcd60e51b81526004016107b390612630565b610e04816119a1565b611b5881565b600e54610100900460ff166115265760405162461bcd60e51b81526004016107b39061250d565b336000908152600f602052604090205460ff166115555760405162461bcd60e51b81526004016107b39061275f565b611b58611560610875565b1061157d5760405162461bcd60e51b81526004016107b390612dab565b600a81111561159e5760405162461bcd60e51b81526004016107b390612544565b611b58816115aa610875565b6115b49190612deb565b11156115d25760405162461bcd60e51b81526004016107b3906128df565b33600090815260106020526040902054600a906115f0908390612deb565b111561160e5760405162461bcd60e51b81526004016107b390612d74565b6000811161162e5760405162461bcd60e51b81526004016107b390612b61565b3461163a826000612e17565b146116575760405162461bcd60e51b81526004016107b3906129e4565b60005b818110156116d0576000600c5460016116739190612deb565b90506001600c60008282546116889190612deb565b90915550503360009081526010602052604081208054600192906116ad908490612deb565b909155506116bd905033826117d1565b50806116c881612eb4565b91505061165a565b507ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a33382604051610c7b9291906124d6565b60006001600160e01b031982166380ac58cd60e01b148061173357506001600160e01b03198216635b5e139f60e01b145b806106e457506106e482611bcc565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179882610c86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6117eb828260405180602001604052806000815250611be5565b5050565b60006117fa82611742565b6118165760405162461bcd60e51b81526004016107b3906127a3565b600061182183610c86565b9050806001600160a01b0316846001600160a01b0316148061185c5750836001600160a01b03166118518461078c565b6001600160a01b0316145b8061186c575061186c8185611401565b949350505050565b826001600160a01b031661188782610c86565b6001600160a01b0316146118ad5760405162461bcd60e51b81526004016107b390612ac9565b6001600160a01b0382166118d35760405162461bcd60e51b81526004016107b3906126e4565b6118de838383611c18565b6118e9600082611763565b6001600160a01b0383166000908152600360205260408120805460019290611912908490612e36565b90915550506001600160a01b0382166000908152600360205260408120805460019290611940908490612deb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b031682604051611a0c90612482565b60006040518083038185875af1925050503d8060008114611a49576040519150601f19603f3d011682016040523d82523d6000602084013e611a4e565b606091505b505090508061086b5760405162461bcd60e51b81526004016107b390612b98565b611a7a848484611874565b611a8684848484611ca1565b6112ea5760405162461bcd60e51b81526004016107b3906125de565b6060600d805461070990612e79565b606081611ad657506040805180820190915260018152600360fc1b60208201526106e7565b8160005b8115611b005780611aea81612eb4565b9150611af99050600a83612e03565b9150611ada565b60008167ffffffffffffffff811115611b2957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b53576020820181803683370190505b5090505b841561186c57611b68600183612e36565b9150611b75600a86612ecf565b611b80906030612deb565b60f81b818381518110611ba357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611bc5600a86612e03565b9450611b57565b6001600160e01b031981166301ffc9a760e01b14919050565b611bef8383611dbc565b611bfc6000848484611ca1565b61086b5760405162461bcd60e51b81526004016107b3906125de565b611c2383838361086b565b6001600160a01b038316611c3f57611c3a81611e9b565b611c62565b816001600160a01b0316836001600160a01b031614611c6257611c628382611edf565b6001600160a01b038216611c7e57611c7981611f7c565b61086b565b826001600160a01b0316826001600160a01b03161461086b5761086b8282612055565b6000611cb5846001600160a01b0316612099565b15611db157836001600160a01b031663150b7a02611cd161175f565b8786866040518563ffffffff1660e01b8152600401611cf39493929190612499565b602060405180830381600087803b158015611d0d57600080fd5b505af1925050508015611d3d575060408051601f3d908101601f19168201909252611d3a918101906123ad565b60015b611d97573d808015611d6b576040519150601f19603f3d011682016040523d82523d6000602084013e611d70565b606091505b508051611d8f5760405162461bcd60e51b81526004016107b3906125de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061186c565b506001949350505050565b6001600160a01b038216611de25760405162461bcd60e51b81526004016107b3906129af565b611deb81611742565b15611e085760405162461bcd60e51b81526004016107b390612676565b611e1460008383611c18565b6001600160a01b0382166000908152600360205260408120805460019290611e3d908490612deb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611eec84610cc1565b611ef69190612e36565b600083815260076020526040902054909150808214611f49576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f8e90600190612e36565b60008381526009602052604081205460088054939450909284908110611fc457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ff357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061203957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061206083610cc1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b8280546120ab90612e79565b90600052602060002090601f0160209004810192826120cd5760008555612113565b82601f106120e657805160ff1916838001178555612113565b82800160010185558215612113579182015b828111156121135782518255916020019190600101906120f8565b5061211f929150612123565b5090565b5b8082111561211f5760008155600101612124565b600067ffffffffffffffff8084111561215357612153612f0f565b604051601f8501601f19168101602001828111828210171561217757612177612f0f565b60405284815291508183850186101561218f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106e757600080fd5b6000602082840312156121d0578081fd5b61136c826121a8565b600080604083850312156121eb578081fd5b6121f4836121a8565b9150612202602084016121a8565b90509250929050565b60008060006060848603121561221f578081fd5b612228846121a8565b9250612236602085016121a8565b9150604084013590509250925092565b6000806000806080858703121561225b578081fd5b612264856121a8565b9350612272602086016121a8565b925060408501359150606085013567ffffffffffffffff811115612294578182fd5b8501601f810187136122a4578182fd5b6122b387823560208401612138565b91505092959194509250565b600080604083850312156122d1578182fd5b6122da836121a8565b9150602083013580151581146122ee578182fd5b809150509250929050565b6000806040838503121561230b578182fd5b612314836121a8565b946020939093013593505050565b60008060208385031215612334578182fd5b823567ffffffffffffffff8082111561234b578384fd5b818501915085601f83011261235e578384fd5b81358181111561236c578485fd5b866020808302850101111561237f578485fd5b60209290920196919550909350505050565b6000602082840312156123a2578081fd5b813561136c81612f25565b6000602082840312156123be578081fd5b815161136c81612f25565b6000602082840312156123da578081fd5b813567ffffffffffffffff8111156123f0578182fd5b8201601f81018413612400578182fd5b61186c84823560208401612138565b600060208284031215612420578081fd5b5035919050565b6000815180845261243f816020860160208601612e4d565b601f01601f19169290920160200192915050565b60008351612465818460208801612e4d565b835190830190612479818360208801612e4d565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124cc90830184612427565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825261136c6020830184612427565b60208082526017908201527f50726573616c6520686173206e6f742073746172746564000000000000000000604082015260600190565b6020808252602f908201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360408201526e20647572696e672070726573616c6560881b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f5075626c69632073616c6520686173206e6f7420737461727465640000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560408201526373616c6560e01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526028908201527f4d696e74696e6720776f756c6420657863656564206d617820726573657276656040820152676420746f6b656e7360c01b606082015260800190565b60208082526031908201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736040820152701034b71030903a3930b739b0b1ba34b7b760791b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601c908201527f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000604082015260600190565b60208082526019908201527f4661696c656420746f2077696474686472617720457468657200000000000000604082015260600190565b60208082526028908201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604082015267206164647265737360c01b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526028908201527f416c7265616479206861766520636c61696d656420616c6c20726573657276656040820152676420746f6b656e7360c01b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b90815260200190565b60008219821115612dfe57612dfe612ee3565b500190565b600082612e1257612e12612ef9565b500490565b6000816000190483118215151615612e3157612e31612ee3565b500290565b600082821015612e4857612e48612ee3565b500390565b60005b83811015612e68578181015183820152602001612e50565b838111156112ea5750506000910152565b600281046001821680612e8d57607f821691505b60208210811415612eae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ec857612ec8612ee3565b5060010190565b600082612ede57612ede612ef9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0457600080fdfea2646970667358221220a20a74369ff3ee1ccc770bcb0aae69bc74b99d803995838750658ba379713b7264736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556e7a76744a70555a4539576f6d75784a65584d71376a41736a57784e52563132325850554c4d52363373332f00000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063a22cb465116100b6578063d547cfb71161007a578063d547cfb71461062d578063e985e9c514610642578063ed1fc2a214610662578063f2fde38b14610677578063f47c84c514610697578063f759867a146106ac57610251565b8063a22cb46514610598578063a2e91477146105b8578063aef6ee1f146105cd578063b88d4fde146105ed578063c87b56dd1461060d57610251565b8063853828b6116100fd578063853828b6146105315780638d859f3e146105465780638da5cb5b1461055b57806395d89b4114610570578063a0712d681461058557610251565b80636352211e146104b257806368fc68c7146104d257806370a08231146104e7578063715018a6146105075780637d7cd0481461051c57610251565b806323b872dd116101d25780634230baee116101965780634230baee1461042857806342842e0e1461043d57806346bb28331461045d5780634f6ccce714610472578063549527c31461031257806355f804b31461049257610251565b806323b872dd146103a957806324510043146103c95780632f745c59146103de5780632f814575146103fe5780633ad10ef61461041357610251565b806309d42b301161021957806309d42b301461031257806318160ddd14610334578063191f65ac146103495780631978f469146103695780631b5757f21461038957610251565b806301ffc9a71461025657806304549d6f1461028c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102f0575b600080fd5b34801561026257600080fd5b50610276610271366004612391565b6106bf565b60405161028391906124ef565b60405180910390f35b34801561029857600080fd5b506102766106ec565b3480156102ad57600080fd5b506102b66106fa565b60405161028391906124fa565b3480156102cf57600080fd5b506102e36102de36600461240f565b61078c565b6040516102839190612485565b3480156102fc57600080fd5b5061031061030b3660046122f9565b6107d8565b005b34801561031e57600080fd5b50610327610870565b6040516102839190612de2565b34801561034057600080fd5b50610327610875565b34801561035557600080fd5b506102766103643660046121bf565b61087b565b34801561037557600080fd5b506103276103843660046121bf565b610899565b34801561039557600080fd5b506103106103a43660046122f9565b6108dd565b3480156103b557600080fd5b506103106103c436600461220b565b610a6a565b3480156103d557600080fd5b50610327610aa2565b3480156103ea57600080fd5b506103276103f93660046122f9565b610aa8565b34801561040a57600080fd5b50610310610afa565b34801561041f57600080fd5b506102e3610b4d565b34801561043457600080fd5b50610327610b65565b34801561044957600080fd5b5061031061045836600461220b565b610b6b565b34801561046957600080fd5b506102e3610b86565b34801561047e57600080fd5b5061032761048d36600461240f565b610b9e565b34801561049e57600080fd5b506103106104ad3660046123c9565b610bf9565b3480156104be57600080fd5b506102e36104cd36600461240f565b610c86565b3480156104de57600080fd5b50610327610cbb565b3480156104f357600080fd5b506103276105023660046121bf565b610cc1565b34801561051357600080fd5b50610310610d05565b34801561052857600080fd5b50610327610d50565b34801561053d57600080fd5b50610310610d55565b34801561055257600080fd5b50610327610e07565b34801561056757600080fd5b506102e3610e0c565b34801561057c57600080fd5b506102b6610e1b565b61031061059336600461240f565b610e2a565b3480156105a457600080fd5b506103106105b33660046122bf565b610ff9565b3480156105c457600080fd5b506102766110c7565b3480156105d957600080fd5b506103106105e8366004612322565b6110d0565b3480156105f957600080fd5b50610310610608366004612246565b6112b1565b34801561061957600080fd5b506102b661062836600461240f565b6112f0565b34801561063957600080fd5b506102b6611373565b34801561064e57600080fd5b5061027661065d3660046121d9565b611401565b34801561066e57600080fd5b5061031061142f565b34801561068357600080fd5b506103106106923660046121bf565b61148b565b3480156106a357600080fd5b506103276114f9565b6103106106ba36600461240f565b6114ff565b60006001600160e01b0319821663780e9d6360e01b14806106e457506106e482611702565b90505b919050565b600e54610100900460ff1681565b60606000805461070990612e79565b80601f016020809104026020016040519081016040528092919081815260200182805461073590612e79565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b600061079782611742565b6107bc5760405162461bcd60e51b81526004016107b390612a1b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107e382610c86565b9050806001600160a01b0316836001600160a01b031614156108175760405162461bcd60e51b81526004016107b390612c17565b806001600160a01b031661082961175f565b6001600160a01b0316148061084557506108458161065d61175f565b6108615760405162461bcd60e51b81526004016107b3906127ef565b61086b8383611763565b505050565b600a81565b60085490565b6001600160a01b03166000908152600f602052604090205460ff1690565b60006001600160a01b0382166108c15760405162461bcd60e51b81526004016107b390612c58565b506001600160a01b031660009081526010602052604090205490565b6108e561175f565b6001600160a01b03166108f6610e0c565b6001600160a01b03161461091c5760405162461bcd60e51b81526004016107b390612a94565b61012c600b5414156109405760405162461bcd60e51b81526004016107b390612d2c565b61012c81600b546109519190612deb565b111561096f5760405162461bcd60e51b81526004016107b390612916565b6001600160a01b0382166109955760405162461bcd60e51b81526004016107b390612c58565b611b586109a0610875565b106109bd5760405162461bcd60e51b81526004016107b390612dab565b611b58816109c9610875565b6109d39190612deb565b11156109f15760405162461bcd60e51b81526004016107b3906128df565b6000600c546001610a029190612deb565b905060005b82811015610a3457610a2284610a1d8385612deb565b6117d1565b80610a2c81612eb4565b915050610a07565b5081600c6000828254610a479190612deb565b9250508190555081600b6000828254610a609190612deb565b9091555050505050565b610a7b610a7561175f565b826117ef565b610a975760405162461bcd60e51b81526004016107b390612c8f565b61086b838383611874565b600b5481565b6000610ab383610cc1565b8210610ad15760405162461bcd60e51b81526004016107b390612593565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b0261175f565b6001600160a01b0316610b13610e0c565b6001600160a01b031614610b395760405162461bcd60e51b81526004016107b390612a94565b600e805460ff19811660ff90911615179055565b7317a18727db777776ab5a3bf686aa5fcfaf2b273881565b600c5481565b61086b838383604051806020016040528060008152506112b1565b73b3a88b3b682316dcd1e45f60c6ecd012fe73a47381565b6000610ba8610875565b8210610bc65760405162461bcd60e51b81526004016107b390612ce0565b60088281548110610be757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610c0161175f565b6001600160a01b0316610c12610e0c565b6001600160a01b031614610c385760405162461bcd60e51b81526004016107b390612a94565b8051610c4b90600d90602084019061209f565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610c7b91906124fa565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806106e45760405162461bcd60e51b81526004016107b390612896565b61012c81565b60006001600160a01b038216610ce95760405162461bcd60e51b81526004016107b39061284c565b506001600160a01b031660009081526003602052604090205490565b610d0d61175f565b6001600160a01b0316610d1e610e0c565b6001600160a01b031614610d445760405162461bcd60e51b81526004016107b390612a94565b610d4e60006119a1565b565b601e81565b610d5d61175f565b6001600160a01b0316610d6e610e0c565b6001600160a01b031614610d945760405162461bcd60e51b81526004016107b390612a94565b4780610db25760405162461bcd60e51b81526004016107b390612a67565b610de67317a18727db777776ab5a3bf686aa5fcfaf2b27386064610dd784600f612e17565b610de19190612e03565b6119f3565b610e0473b3a88b3b682316dcd1e45f60c6ecd012fe73a473476119f3565b50565b600081565b600a546001600160a01b031690565b60606001805461070990612e79565b600e5460ff16610e4c5760405162461bcd60e51b81526004016107b3906126ad565b611b58610e57610875565b10610e745760405162461bcd60e51b81526004016107b390612dab565b600a811115610e955760405162461bcd60e51b81526004016107b39061295e565b611b5881610ea1610875565b610eab9190612deb565b1115610ec95760405162461bcd60e51b81526004016107b3906128df565b33600090815260106020526040902054601e90610ee7908390612deb565b1115610f055760405162461bcd60e51b81526004016107b390612bcf565b60008111610f255760405162461bcd60e51b81526004016107b390612b61565b34610f31826000612e17565b14610f4e5760405162461bcd60e51b81526004016107b3906129e4565b60005b81811015610fc7576000600c546001610f6a9190612deb565b90506001600c6000828254610f7f9190612deb565b9091555050336000908152601060205260408120805460019290610fa4908490612deb565b90915550610fb4905033826117d1565b5080610fbf81612eb4565b915050610f51565b507f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b53382604051610c7b9291906124d6565b61100161175f565b6001600160a01b0316826001600160a01b031614156110325760405162461bcd60e51b81526004016107b390612728565b806005600061103f61175f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561108361175f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110bb91906124ef565b60405180910390a35050565b600e5460ff1681565b6110d861175f565b6001600160a01b03166110e9610e0c565b6001600160a01b03161461110f5760405162461bcd60e51b81526004016107b390612a94565b60005b8181101561086b57600083838381811061113c57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061115191906121bf565b6001600160a01b031614156111785760405162461bcd60e51b81526004016107b390612c58565b6001600f600085858581811061119e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111b391906121bf565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560108185858581811061120157634e487b7160e01b600052603260045260246000fd5b905060200201602081019061121691906121bf565b6001600160a01b03166001600160a01b03168152602001908152602001600020541161124357600061129e565b6010600084848481811061126757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061127c91906121bf565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806112a981612eb4565b915050611112565b6112c26112bc61175f565b836117ef565b6112de5760405162461bcd60e51b81526004016107b390612c8f565b6112ea84848484611a6f565b50505050565b60606112fb82611742565b6113175760405162461bcd60e51b81526004016107b390612b12565b6000611321611aa2565b90506000815111611341576040518060200160405280600081525061136c565b8061134b84611ab1565b60405160200161135c929190612453565b6040516020818303038152906040525b9392505050565b600d805461138090612e79565b80601f01602080910402602001604051908101604052809291908181526020018280546113ac90612e79565b80156113f95780601f106113ce576101008083540402835291602001916113f9565b820191906000526020600020905b8154815290600101906020018083116113dc57829003601f168201915b505050505081565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61143761175f565b6001600160a01b0316611448610e0c565b6001600160a01b03161461146e5760405162461bcd60e51b81526004016107b390612a94565b600e805461ff001981166101009182900460ff1615909102179055565b61149361175f565b6001600160a01b03166114a4610e0c565b6001600160a01b0316146114ca5760405162461bcd60e51b81526004016107b390612a94565b6001600160a01b0381166114f05760405162461bcd60e51b81526004016107b390612630565b610e04816119a1565b611b5881565b600e54610100900460ff166115265760405162461bcd60e51b81526004016107b39061250d565b336000908152600f602052604090205460ff166115555760405162461bcd60e51b81526004016107b39061275f565b611b58611560610875565b1061157d5760405162461bcd60e51b81526004016107b390612dab565b600a81111561159e5760405162461bcd60e51b81526004016107b390612544565b611b58816115aa610875565b6115b49190612deb565b11156115d25760405162461bcd60e51b81526004016107b3906128df565b33600090815260106020526040902054600a906115f0908390612deb565b111561160e5760405162461bcd60e51b81526004016107b390612d74565b6000811161162e5760405162461bcd60e51b81526004016107b390612b61565b3461163a826000612e17565b146116575760405162461bcd60e51b81526004016107b3906129e4565b60005b818110156116d0576000600c5460016116739190612deb565b90506001600c60008282546116889190612deb565b90915550503360009081526010602052604081208054600192906116ad908490612deb565b909155506116bd905033826117d1565b50806116c881612eb4565b91505061165a565b507ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a33382604051610c7b9291906124d6565b60006001600160e01b031982166380ac58cd60e01b148061173357506001600160e01b03198216635b5e139f60e01b145b806106e457506106e482611bcc565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179882610c86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6117eb828260405180602001604052806000815250611be5565b5050565b60006117fa82611742565b6118165760405162461bcd60e51b81526004016107b3906127a3565b600061182183610c86565b9050806001600160a01b0316846001600160a01b0316148061185c5750836001600160a01b03166118518461078c565b6001600160a01b0316145b8061186c575061186c8185611401565b949350505050565b826001600160a01b031661188782610c86565b6001600160a01b0316146118ad5760405162461bcd60e51b81526004016107b390612ac9565b6001600160a01b0382166118d35760405162461bcd60e51b81526004016107b3906126e4565b6118de838383611c18565b6118e9600082611763565b6001600160a01b0383166000908152600360205260408120805460019290611912908490612e36565b90915550506001600160a01b0382166000908152600360205260408120805460019290611940908490612deb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b031682604051611a0c90612482565b60006040518083038185875af1925050503d8060008114611a49576040519150601f19603f3d011682016040523d82523d6000602084013e611a4e565b606091505b505090508061086b5760405162461bcd60e51b81526004016107b390612b98565b611a7a848484611874565b611a8684848484611ca1565b6112ea5760405162461bcd60e51b81526004016107b3906125de565b6060600d805461070990612e79565b606081611ad657506040805180820190915260018152600360fc1b60208201526106e7565b8160005b8115611b005780611aea81612eb4565b9150611af99050600a83612e03565b9150611ada565b60008167ffffffffffffffff811115611b2957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b53576020820181803683370190505b5090505b841561186c57611b68600183612e36565b9150611b75600a86612ecf565b611b80906030612deb565b60f81b818381518110611ba357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611bc5600a86612e03565b9450611b57565b6001600160e01b031981166301ffc9a760e01b14919050565b611bef8383611dbc565b611bfc6000848484611ca1565b61086b5760405162461bcd60e51b81526004016107b3906125de565b611c2383838361086b565b6001600160a01b038316611c3f57611c3a81611e9b565b611c62565b816001600160a01b0316836001600160a01b031614611c6257611c628382611edf565b6001600160a01b038216611c7e57611c7981611f7c565b61086b565b826001600160a01b0316826001600160a01b03161461086b5761086b8282612055565b6000611cb5846001600160a01b0316612099565b15611db157836001600160a01b031663150b7a02611cd161175f565b8786866040518563ffffffff1660e01b8152600401611cf39493929190612499565b602060405180830381600087803b158015611d0d57600080fd5b505af1925050508015611d3d575060408051601f3d908101601f19168201909252611d3a918101906123ad565b60015b611d97573d808015611d6b576040519150601f19603f3d011682016040523d82523d6000602084013e611d70565b606091505b508051611d8f5760405162461bcd60e51b81526004016107b3906125de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061186c565b506001949350505050565b6001600160a01b038216611de25760405162461bcd60e51b81526004016107b3906129af565b611deb81611742565b15611e085760405162461bcd60e51b81526004016107b390612676565b611e1460008383611c18565b6001600160a01b0382166000908152600360205260408120805460019290611e3d908490612deb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611eec84610cc1565b611ef69190612e36565b600083815260076020526040902054909150808214611f49576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f8e90600190612e36565b60008381526009602052604081205460088054939450909284908110611fc457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ff357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061203957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061206083610cc1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b8280546120ab90612e79565b90600052602060002090601f0160209004810192826120cd5760008555612113565b82601f106120e657805160ff1916838001178555612113565b82800160010185558215612113579182015b828111156121135782518255916020019190600101906120f8565b5061211f929150612123565b5090565b5b8082111561211f5760008155600101612124565b600067ffffffffffffffff8084111561215357612153612f0f565b604051601f8501601f19168101602001828111828210171561217757612177612f0f565b60405284815291508183850186101561218f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106e757600080fd5b6000602082840312156121d0578081fd5b61136c826121a8565b600080604083850312156121eb578081fd5b6121f4836121a8565b9150612202602084016121a8565b90509250929050565b60008060006060848603121561221f578081fd5b612228846121a8565b9250612236602085016121a8565b9150604084013590509250925092565b6000806000806080858703121561225b578081fd5b612264856121a8565b9350612272602086016121a8565b925060408501359150606085013567ffffffffffffffff811115612294578182fd5b8501601f810187136122a4578182fd5b6122b387823560208401612138565b91505092959194509250565b600080604083850312156122d1578182fd5b6122da836121a8565b9150602083013580151581146122ee578182fd5b809150509250929050565b6000806040838503121561230b578182fd5b612314836121a8565b946020939093013593505050565b60008060208385031215612334578182fd5b823567ffffffffffffffff8082111561234b578384fd5b818501915085601f83011261235e578384fd5b81358181111561236c578485fd5b866020808302850101111561237f578485fd5b60209290920196919550909350505050565b6000602082840312156123a2578081fd5b813561136c81612f25565b6000602082840312156123be578081fd5b815161136c81612f25565b6000602082840312156123da578081fd5b813567ffffffffffffffff8111156123f0578182fd5b8201601f81018413612400578182fd5b61186c84823560208401612138565b600060208284031215612420578081fd5b5035919050565b6000815180845261243f816020860160208601612e4d565b601f01601f19169290920160200192915050565b60008351612465818460208801612e4d565b835190830190612479818360208801612e4d565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124cc90830184612427565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825261136c6020830184612427565b60208082526017908201527f50726573616c6520686173206e6f742073746172746564000000000000000000604082015260600190565b6020808252602f908201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360408201526e20647572696e672070726573616c6560881b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f5075626c69632073616c6520686173206e6f7420737461727465640000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560408201526373616c6560e01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526028908201527f4d696e74696e6720776f756c6420657863656564206d617820726573657276656040820152676420746f6b656e7360c01b606082015260800190565b60208082526031908201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736040820152701034b71030903a3930b739b0b1ba34b7b760791b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601c908201527f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000604082015260600190565b60208082526019908201527f4661696c656420746f2077696474686472617720457468657200000000000000604082015260600190565b60208082526028908201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604082015267206164647265737360c01b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526028908201527f416c7265616479206861766520636c61696d656420616c6c20726573657276656040820152676420746f6b656e7360c01b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b90815260200190565b60008219821115612dfe57612dfe612ee3565b500190565b600082612e1257612e12612ef9565b500490565b6000816000190483118215151615612e3157612e31612ee3565b500290565b600082821015612e4857612e48612ee3565b500390565b60005b83811015612e68578181015183820152602001612e50565b838111156112ea5750506000910152565b600281046001821680612e8d57607f821691505b60208210811415612eae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ec857612ec8612ee3565b5060010190565b600082612ede57612ede612ef9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0457600080fdfea2646970667358221220a20a74369ff3ee1ccc770bcb0aae69bc74b99d803995838750658ba379713b7264736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556e7a76744a70555a4539576f6d75784a65584d71376a41736a57784e52563132325850554c4d52363373332f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmUnzvtJpUZE9WomuxJeXMq7jAsjWxNRV122XPULMR63s3/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d556e7a76744a70555a4539576f6d75784a65584d71376a
Arg [3] : 41736a57784e52563132325850554c4d52363373332f00000000000000000000


Deployed Bytecode Sourcemap

43258:5847:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34920:224;;;;;;;;;;-1:-1:-1;34920:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43977:26;;;;;;;;;;;;;:::i;22052:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23611:221::-;;;;;;;;;;-1:-1:-1;23611:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23134:411::-;;;;;;;;;;-1:-1:-1;23134:411:0;;;;;:::i;:::-;;:::i;:::-;;43447:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35560:113::-;;;;;;;;;;;;;:::i;45816:123::-;;;;;;;;;;-1:-1:-1;45816:123:0;;;;;:::i;:::-;;:::i;45947:186::-;;;;;;;;;;-1:-1:-1;45947:186:0;;;;;:::i;:::-;;:::i;44670:769::-;;;;;;;;;;-1:-1:-1;44670:769:0;;;;;:::i;:::-;;:::i;24501:339::-;;;;;;;;;;-1:-1:-1;24501:339:0;;;;;:::i;:::-;;:::i;43828:30::-;;;;;;;;;;;;;:::i;35228:256::-;;;;;;;;;;-1:-1:-1;35228:256:0;;;;;:::i;:::-;;:::i;48245:111::-;;;;;;;;;;;;;:::i;43740:79::-;;;;;;;;;;;;;:::i;43867:30::-;;;;;;;;;;;;;:::i;24911:185::-;;;;;;;;;;-1:-1:-1;24911:185:0;;;;;:::i;:::-;;:::i;43650:83::-;;;;;;;;;;;;;:::i;35750:233::-;;;;;;;;;;-1:-1:-1;35750:233:0;;;;;:::i;:::-;;:::i;48485:140::-;;;;;;;;;;-1:-1:-1;48485:140:0;;;;;:::i;:::-;;:::i;21746:239::-;;;;;;;;;;-1:-1:-1;21746:239:0;;;;;:::i;:::-;;:::i;43598:45::-;;;;;;;;;;;;;:::i;21476:208::-;;;;;;;;;;-1:-1:-1;21476:208:0;;;;;:::i;:::-;;:::i;42629:94::-;;;;;;;;;;;;;:::i;43547:44::-;;;;;;;;;;;;;:::i;48633:269::-;;;;;;;;;;;;;:::i;43398:42::-;;;;;;;;;;;;;:::i;41978:87::-;;;;;;;;;;;;;:::i;22221:104::-;;;;;;;;;;;;;:::i;47178:949::-;;;;;;:::i;:::-;;:::i;23904:295::-;;;;;;;;;;-1:-1:-1;23904:295:0;;;;;:::i;:::-;;:::i;43941:29::-;;;;;;;;;;;;;:::i;45447:361::-;;;;;;;;;;-1:-1:-1;45447:361:0;;;;;:::i;:::-;;:::i;25167:328::-;;;;;;;;;;-1:-1:-1;25167:328:0;;;;;:::i;:::-;;:::i;22396:334::-;;;;;;;;;;-1:-1:-1;22396:334:0;;;;;:::i;:::-;;:::i;43906:26::-;;;;;;;;;;;;;:::i;24270:164::-;;;;;;;;;;-1:-1:-1;24270:164:0;;;;;:::i;:::-;;:::i;48135:102::-;;;;;;;;;;;;;:::i;42878:192::-;;;;;;;;;;-1:-1:-1;42878:192:0;;;;;:::i;:::-;;:::i;43350:41::-;;;;;;;;;;;;;:::i;46141:1029::-;;;;;;:::i;:::-;;:::i;34920:224::-;35022:4;-1:-1:-1;;;;;;35046:50:0;;-1:-1:-1;;;35046:50:0;;:90;;;35100:36;35124:11;35100:23;:36::i;:::-;35039:97;;34920:224;;;;:::o;43977:26::-;;;;;;;;;:::o;22052:100::-;22106:13;22139:5;22132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22052:100;:::o;23611:221::-;23687:7;23715:16;23723:7;23715;:16::i;:::-;23707:73;;;;-1:-1:-1;;;23707:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23800:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23800:24:0;;23611:221::o;23134:411::-;23215:13;23231:23;23246:7;23231:14;:23::i;:::-;23215:39;;23279:5;-1:-1:-1;;;;;23273:11:0;:2;-1:-1:-1;;;;;23273:11:0;;;23265:57;;;;-1:-1:-1;;;23265:57:0;;;;;;;:::i;:::-;23373:5;-1:-1:-1;;;;;23357:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23357:21:0;;:62;;;;23382:37;23399:5;23406:12;:10;:12::i;23382:37::-;23335:168;;;;-1:-1:-1;;;23335:168:0;;;;;;;:::i;:::-;23516:21;23525:2;23529:7;23516:8;:21::i;:::-;23134:411;;;:::o;43447:41::-;43486:2;43447:41;:::o;35560:113::-;35648:10;:17;35560:113;:::o;45816:123::-;-1:-1:-1;;;;;45909:22:0;45885:4;45909:22;;;:16;:22;;;;;;;;;45816:123::o;45947:186::-;46010:7;-1:-1:-1;;;;;46038:19:0;;46030:55;;;;-1:-1:-1;;;46030:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;46105:20:0;;;;;:13;:20;;;;;;;45947:186::o;44670:769::-;42209:12;:10;:12::i;:::-;-1:-1:-1;;;;;42198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42198:23:0;;42190:68;;;;-1:-1:-1;;;42190:68:0;;;;;;;:::i;:::-;43640:3:::1;44766:15;;:34;;44758:87;;;;-1:-1:-1::0;;;44758:87:0::1;;;;;;;:::i;:::-;43640:3;44882:6;44864:15;;:24;;;;:::i;:::-;:43;;44856:96;;;;-1:-1:-1::0;;;44856:96:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44971:23:0;::::1;44963:59;;;;-1:-1:-1::0;;;44963:59:0::1;;;;;;;:::i;:::-;43387:4;45041:13;:11;:13::i;:::-;:26;45033:66;;;;-1:-1:-1::0;;;45033:66:0::1;;;;;;;:::i;:::-;43387:4;45134:6;45118:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;45110:80;;;;-1:-1:-1::0;;;45110:80:0::1;;;;;;;:::i;:::-;45203:20;45226:15;;45244:1;45226:19;;;;:::i;:::-;45203:42;;45263:9;45258:102;45282:6;45278:1;:10;45258:102;;;45310:38;45320:9:::0;45331:16:::1;45346:1:::0;45331:12;:16:::1;:::i;:::-;45310:9;:38::i;:::-;45290:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45258:102;;;;45389:6;45370:15;;:25;;;;;;;:::i;:::-;;;;;;;;45425:6;45406:15;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;44670:769:0:o;24501:339::-;24696:41;24715:12;:10;:12::i;:::-;24729:7;24696:18;:41::i;:::-;24688:103;;;;-1:-1:-1;;;24688:103:0;;;;;;;:::i;:::-;24804:28;24814:4;24820:2;24824:7;24804:9;:28::i;43828:30::-;;;;:::o;35228:256::-;35325:7;35361:23;35378:5;35361:16;:23::i;:::-;35353:5;:31;35345:87;;;;-1:-1:-1;;;35345:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35450:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35228:256::o;48245:111::-;42209:12;:10;:12::i;:::-;-1:-1:-1;;;;;42198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42198:23:0;;42190:68;;;;-1:-1:-1;;;42190:68:0;;;;;;;:::i;:::-;48331:17:::1;::::0;;-1:-1:-1;;48310:38:0;::::1;48331:17;::::0;;::::1;48330:18;48310:38;::::0;;48245:111::o;43740:79::-;43777:42;43740:79;:::o;43867:30::-;;;;:::o;24911:185::-;25049:39;25066:4;25072:2;25076:7;25049:39;;;;;;;;;;;;:16;:39::i;43650:83::-;43691:42;43650:83;:::o;35750:233::-;35825:7;35861:30;:28;:30::i;:::-;35853:5;:38;35845:95;;;;-1:-1:-1;;;35845:95:0;;;;;;;:::i;:::-;35958:10;35969:5;35958:17;;;;;;-1:-1:-1;;;35958:17:0;;;;;;;;;;;;;;;;;35951:24;;35750:233;;;:::o;48485:140::-;42209:12;:10;:12::i;:::-;-1:-1:-1;;;;;42198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42198:23:0;;42190:68;;;;-1:-1:-1;;;42190:68:0;;;;;;;:::i;:::-;48556:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48594:23;48609:7;48594:23;;;;;;:::i;:::-;;;;;;;;48485:140:::0;:::o;21746:239::-;21818:7;21854:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21854:16:0;21889:19;21881:73;;;;-1:-1:-1;;;21881:73:0;;;;;;;:::i;43598:45::-;43640:3;43598:45;:::o;21476:208::-;21548:7;-1:-1:-1;;;;;21576:19:0;;21568:74;;;;-1:-1:-1;;;21568:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21660:16:0;;;;;:9;:16;;;;;;;21476:208::o;42629:94::-;42209:12;:10;:12::i;:::-;-1:-1:-1;;;;;42198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42198:23:0;;42190:68;;;;-1:-1:-1;;;42190:68:0;;;;;;;:::i;:::-;42694:21:::1;42712:1;42694:9;:21::i;:::-;42629:94::o:0;43547:44::-;43589:2;43547:44;:::o;48633:269::-;42209:12;:10;:12::i;:::-;-1:-1:-1;;;;;42198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42198:23:0;;42190:68;;;;-1:-1:-1;;;42190:68:0;;;;;;;:::i;:::-;48702:21:::1;48742:11:::0;48734:43:::1;;;;-1:-1:-1::0;;;48734:43:0::1;;;;;;;:::i;:::-;48788:46;43777:42;48829:3;48813:12;:7:::0;48823:2:::1;48813:12;:::i;:::-;48812:20;;;;:::i;:::-;48788:10;:46::i;:::-;48845:49;43691:42;48872:21;48845:10;:49::i;:::-;42269:1;48633:269::o:0;43398:42::-;43430:10;43398:42;:::o;41978:87::-;42051:6;;-1:-1:-1;;;;;42051:6:0;41978:87;:::o;22221:104::-;22277:13;22310:7;22303:14;;;;;:::i;47178:949::-;44473:17;;;;44465:57;;;;-1:-1:-1;;;44465:57:0;;;;;;;:::i;:::-;43387:4:::1;47274:13;:11;:13::i;:::-;:26;47266:66;;;;-1:-1:-1::0;;;47266:66:0::1;;;;;;;:::i;:::-;43486:2;47351:14;:30;;47343:92;;;;-1:-1:-1::0;;;47343:92:0::1;;;;;;;:::i;:::-;43387:4;47470:14;47454:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;47446:88;;;;-1:-1:-1::0;;;47446:88:0::1;;;;;;;:::i;:::-;47567:10;47553:25;::::0;;;:13:::1;:25;::::0;;;;;43589:2:::1;::::0;47553:42:::1;::::0;47581:14;;47553:42:::1;:::i;:::-;:61;;47545:114;;;;-1:-1:-1::0;;;47545:114:0::1;;;;;;;:::i;:::-;47695:1;47678:14;:18;47670:59;;;;-1:-1:-1::0;;;47670:59:0::1;;;;;;;:::i;:::-;47774:9;47748:22;47756:14:::0;43430:10:::1;47748:22;:::i;:::-;:35;47740:71;;;;-1:-1:-1::0;;;47740:71:0::1;;;;;;;:::i;:::-;47829:9;47824:236;47848:14;47844:1;:18;47824:236;;;47884:15;47902;;47920:1;47902:19;;;;:::i;:::-;47884:37;;47957:1;47938:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;47987:10:0::1;47973:25;::::0;;;:13:::1;:25;::::0;;;;:30;;48002:1:::1;::::0;47973:25;:30:::1;::::0;48002:1;;47973:30:::1;:::i;:::-;::::0;;;-1:-1:-1;48018:30:0::1;::::0;-1:-1:-1;48028:10:0::1;48040:7:::0;48018:9:::1;:30::i;:::-;-1:-1:-1::0;47864:3:0;::::1;::::0;::::1;:::i;:::-;;;;47824:236;;;;48077:42;48092:10;48104:14;48077:42;;;;;;;:::i;23904:295::-:0;24019:12;:10;:12::i;:::-;-1:-1:-1;;;;;24007:24:0;:8;-1:-1:-1;;;;;24007:24:0;;;23999:62;;;;-1:-1:-1;;;23999:62:0;;;;;;;:::i;:::-;24119:8;24074:18;:32;24093:12;:10;:12::i;:::-;-1:-1:-1;;;;;24074:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24074:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24074:53:0;;;;;;;;;;;24158:12;:10;:12::i;:::-;-1:-1:-1;;;;;24143:48:0;;24182:8;24143:48;;;;;;:::i;:::-;;;;;;;;23904:295;;:::o;43941:29::-;;;;;;:::o;45447:361::-;42209:12;:10;:12::i;:::-;-1:-1:-1;;;;;42198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42198:23:0;;42190:68;;;;-1:-1:-1;;;42190:68:0;;;;;;;:::i;:::-;45534:9:::1;45529:272;45549:20:::0;;::::1;45529:272;;;45623:1;45599:9:::0;;45609:1;45599:12;;::::1;;;-1:-1:-1::0;;;45599:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45599:26:0::1;;;45591:62;;;;-1:-1:-1::0;;;45591:62:0::1;;;;;;;:::i;:::-;45703:4;45670:16;:30;45687:9;;45697:1;45687:12;;;;;-1:-1:-1::0;;;45687:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45670:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45670:30:0;;;:37;;-1:-1:-1;;45670:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;45724:13:::1;-1:-1:-1::0;45738:9:0;;45748:1;45738:12;;::::1;;;-1:-1:-1::0;;;45738:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45724:27:0::1;-1:-1:-1::0;;;;;45724:27:0::1;;;;;;;;;;;;;:31;:65;;45788:1;45724:65;;;45758:13;:27;45772:9;;45782:1;45772:12;;;;;-1:-1:-1::0;;;45772:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45758:27:0::1;-1:-1:-1::0;;;;;45758:27:0::1;;;;;;;;;;;;;45724:65;-1:-1:-1::0;45571:3:0;::::1;::::0;::::1;:::i;:::-;;;;45529:272;;25167:328:::0;25342:41;25361:12;:10;:12::i;:::-;25375:7;25342:18;:41::i;:::-;25334:103;;;;-1:-1:-1;;;25334:103:0;;;;;;;:::i;:::-;25448:39;25462:4;25468:2;25472:7;25481:5;25448:13;:39::i;:::-;25167:328;;;;:::o;22396:334::-;22469:13;22503:16;22511:7;22503;:16::i;:::-;22495:76;;;;-1:-1:-1;;;22495:76:0;;;;;;;:::i;:::-;22584:21;22608:10;:8;:10::i;:::-;22584:34;;22660:1;22642:7;22636:21;:25;:86;;;;;;;;;;;;;;;;;22688:7;22697:18;:7;:16;:18::i;:::-;22671:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22636:86;22629:93;22396:334;-1:-1:-1;;;22396:334:0:o;43906:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24270:164::-;-1:-1:-1;;;;;24391:25:0;;;24367:4;24391:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24270:164::o;48135:102::-;42209:12;:10;:12::i;:::-;-1:-1:-1;;;;;42198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42198:23:0;;42190:68;;;;-1:-1:-1;;;42190:68:0;;;;;;;:::i;:::-;48215:14:::1;::::0;;-1:-1:-1;;48197:32:0;::::1;48215:14;::::0;;;::::1;;;48214:15;48197:32:::0;;::::1;;::::0;;48135:102::o;42878:192::-;42209:12;:10;:12::i;:::-;-1:-1:-1;;;;;42198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42198:23:0;;42190:68;;;;-1:-1:-1;;;42190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42967:22:0;::::1;42959:73;;;;-1:-1:-1::0;;;42959:73:0::1;;;;;;;:::i;:::-;43043:19;43053:8;43043:9;:19::i;43350:41::-:0;43387:4;43350:41;:::o;46141:1029::-;44351:14;;;;;;;44343:50;;;;-1:-1:-1;;;44343:50:0;;;;;;;:::i;:::-;46258:10:::1;46241:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;46233:77;;;;-1:-1:-1::0;;;46233:77:0::1;;;;;;;:::i;:::-;43387:4;46329:13;:11;:13::i;:::-;:26;46321:66;;;;-1:-1:-1::0;;;46321:66:0::1;;;;;;;:::i;:::-;43538:2;46406:14;:34;;46398:94;;;;-1:-1:-1::0;;;46398:94:0::1;;;;;;;:::i;:::-;43387:4;46527:14;46511:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;46503:88;;;;-1:-1:-1::0;;;46503:88:0::1;;;;;;;:::i;:::-;46624:10;46610:25;::::0;;;:13:::1;:25;::::0;;;;;43538:2:::1;::::0;46610:42:::1;::::0;46638:14;;46610:42:::1;:::i;:::-;:62;;46602:103;;;;-1:-1:-1::0;;;46602:103:0::1;;;;;;;:::i;:::-;46741:1;46724:14;:18;46716:59;;;;-1:-1:-1::0;;;46716:59:0::1;;;;;;;:::i;:::-;46820:9;46794:22;46802:14:::0;43430:10:::1;46794:22;:::i;:::-;:35;46786:71;;;;-1:-1:-1::0;;;46786:71:0::1;;;;;;;:::i;:::-;46875:9;46870:236;46894:14;46890:1;:18;46870:236;;;46930:15;46948;;46966:1;46948:19;;;;:::i;:::-;46930:37;;47003:1;46984:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;47033:10:0::1;47019:25;::::0;;;:13:::1;:25;::::0;;;;:30;;47048:1:::1;::::0;47019:25;:30:::1;::::0;47048:1;;47019:30:::1;:::i;:::-;::::0;;;-1:-1:-1;47064:30:0::1;::::0;-1:-1:-1;47074:10:0::1;47086:7:::0;47064:9:::1;:30::i;:::-;-1:-1:-1::0;46910:3:0;::::1;::::0;::::1;:::i;:::-;;;;46870:236;;;;47123:39;47135:10;47147:14;47123:39;;;;;;;:::i;21107:305::-:0;21209:4;-1:-1:-1;;;;;;21246:40:0;;-1:-1:-1;;;21246:40:0;;:105;;-1:-1:-1;;;;;;;21303:48:0;;-1:-1:-1;;;21303:48:0;21246:105;:158;;;;21368:36;21392:11;21368:23;:36::i;27005:127::-;27070:4;27094:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27094:16:0;:30;;;27005:127::o;9309:98::-;9389:10;9309:98;:::o;30987:174::-;31062:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31062:29:0;-1:-1:-1;;;;;31062:29:0;;;;;;;;:24;;31116:23;31062:24;31116:14;:23::i;:::-;-1:-1:-1;;;;;31107:46:0;;;;;;;;;;;30987:174;;:::o;27989:110::-;28065:26;28075:2;28079:7;28065:26;;;;;;;;;;;;:9;:26::i;:::-;27989:110;;:::o;27299:348::-;27392:4;27417:16;27425:7;27417;:16::i;:::-;27409:73;;;;-1:-1:-1;;;27409:73:0;;;;;;;:::i;:::-;27493:13;27509:23;27524:7;27509:14;:23::i;:::-;27493:39;;27562:5;-1:-1:-1;;;;;27551:16:0;:7;-1:-1:-1;;;;;27551:16:0;;:51;;;;27595:7;-1:-1:-1;;;;;27571:31:0;:20;27583:7;27571:11;:20::i;:::-;-1:-1:-1;;;;;27571:31:0;;27551:51;:87;;;;27606:32;27623:5;27630:7;27606:16;:32::i;:::-;27543:96;27299:348;-1:-1:-1;;;;27299:348:0:o;30291:578::-;30450:4;-1:-1:-1;;;;;30423:31:0;:23;30438:7;30423:14;:23::i;:::-;-1:-1:-1;;;;;30423:31:0;;30415:85;;;;-1:-1:-1;;;30415:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30519:16:0;;30511:65;;;;-1:-1:-1;;;30511:65:0;;;;;;;:::i;:::-;30589:39;30610:4;30616:2;30620:7;30589:20;:39::i;:::-;30693:29;30710:1;30714:7;30693:8;:29::i;:::-;-1:-1:-1;;;;;30735:15:0;;;;;;:9;:15;;;;;:20;;30754:1;;30735:15;:20;;30754:1;;30735:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30766:13:0;;;;;;:9;:13;;;;;:18;;30783:1;;30766:13;:18;;30783:1;;30766:18;:::i;:::-;;;;-1:-1:-1;;30795:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30795:21:0;-1:-1:-1;;;;;30795:21:0;;;;;;;;;30834:27;;30795:16;;30834:27;;;;;;;30291:578;;;:::o;43078:173::-;43153:6;;;-1:-1:-1;;;;;43170:17:0;;;-1:-1:-1;;;;;;43170:17:0;;;;;;;43203:40;;43153:6;;;43170:17;43153:6;;43203:40;;43134:16;;43203:40;43078:173;;:::o;48910:192::-;48985:12;49003:8;-1:-1:-1;;;;;49003:13:0;49025:7;49003:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48984:54;;;49057:7;49049:45;;;;-1:-1:-1;;;49049:45:0;;;;;;;:::i;26377:315::-;26534:28;26544:4;26550:2;26554:7;26534:9;:28::i;:::-;26581:48;26604:4;26610:2;26614:7;26623:5;26581:22;:48::i;:::-;26573:111;;;;-1:-1:-1;;;26573:111:0;;;;;;;:::i;48364:113::-;48424:13;48457:12;48450:19;;;;;:::i;7010:723::-;7066:13;7287:10;7283:53;;-1:-1:-1;7314:10:0;;;;;;;;;;;;-1:-1:-1;;;7314:10:0;;;;;;7283:53;7361:5;7346:12;7402:78;7409:9;;7402:78;;7435:8;;;;:::i;:::-;;-1:-1:-1;7458:10:0;;-1:-1:-1;7466:2:0;7458:10;;:::i;:::-;;;7402:78;;;7490:19;7522:6;7512:17;;;;;;-1:-1:-1;;;7512:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7512:17:0;;7490:39;;7540:154;7547:10;;7540:154;;7574:11;7584:1;7574:11;;:::i;:::-;;-1:-1:-1;7643:10:0;7651:2;7643:5;:10;:::i;:::-;7630:24;;:2;:24;:::i;:::-;7617:39;;7600:6;7607;7600:14;;;;;;-1:-1:-1;;;7600:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;7600:56:0;;;;;;;;-1:-1:-1;7671:11:0;7680:2;7671:11;;:::i;:::-;;;7540:154;;19716:157;-1:-1:-1;;;;;;19825:40:0;;-1:-1:-1;;;19825:40:0;19716:157;;;:::o;28326:321::-;28456:18;28462:2;28466:7;28456:5;:18::i;:::-;28507:54;28538:1;28542:2;28546:7;28555:5;28507:22;:54::i;:::-;28485:154;;;;-1:-1:-1;;;28485:154:0;;;;;;;:::i;36596:589::-;36740:45;36767:4;36773:2;36777:7;36740:26;:45::i;:::-;-1:-1:-1;;;;;36802:18:0;;36798:187;;36837:40;36869:7;36837:31;:40::i;:::-;36798:187;;;36907:2;-1:-1:-1;;;;;36899:10:0;:4;-1:-1:-1;;;;;36899:10:0;;36895:90;;36926:47;36959:4;36965:7;36926:32;:47::i;:::-;-1:-1:-1;;;;;36999:16:0;;36995:183;;37032:45;37069:7;37032:36;:45::i;:::-;36995:183;;;37105:4;-1:-1:-1;;;;;37099:10:0;:2;-1:-1:-1;;;;;37099:10:0;;37095:83;;37126:40;37154:2;37158:7;37126:27;:40::i;31726:799::-;31881:4;31902:15;:2;-1:-1:-1;;;;;31902:13:0;;:15::i;:::-;31898:620;;;31954:2;-1:-1:-1;;;;;31938:36:0;;31975:12;:10;:12::i;:::-;31989:4;31995:7;32004:5;31938:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31938:72:0;;;;;;;;-1:-1:-1;;31938:72:0;;;;;;;;;;;;:::i;:::-;;;31934:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32180:13:0;;32176:272;;32223:60;;-1:-1:-1;;;32223:60:0;;;;;;;:::i;32176:272::-;32398:6;32392:13;32383:6;32379:2;32375:15;32368:38;31934:529;-1:-1:-1;;;;;;32061:51:0;-1:-1:-1;;;32061:51:0;;-1:-1:-1;32054:58:0;;31898:620;-1:-1:-1;32502:4:0;31726:799;;;;;;:::o;28983:382::-;-1:-1:-1;;;;;29063:16:0;;29055:61;;;;-1:-1:-1;;;29055:61:0;;;;;;;:::i;:::-;29136:16;29144:7;29136;:16::i;:::-;29135:17;29127:58;;;;-1:-1:-1;;;29127:58:0;;;;;;;:::i;:::-;29198:45;29227:1;29231:2;29235:7;29198:20;:45::i;:::-;-1:-1:-1;;;;;29256:13:0;;;;;;:9;:13;;;;;:18;;29273:1;;29256:13;:18;;29273:1;;29256:18;:::i;:::-;;;;-1:-1:-1;;29285:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29285:21:0;-1:-1:-1;;;;;29285:21:0;;;;;;;;29324:33;;29285:16;;;29324:33;;29285:16;;29324:33;28983:382;;:::o;37908:164::-;38012:10;:17;;37985:24;;;;:15;:24;;;;;:44;;;38040:24;;;;;;;;;;;;37908:164::o;38699:988::-;38965:22;39015:1;38990:22;39007:4;38990:16;:22::i;:::-;:26;;;;:::i;:::-;39027:18;39048:26;;;:17;:26;;;;;;38965:51;;-1:-1:-1;39181:28:0;;;39177:328;;-1:-1:-1;;;;;39248:18:0;;39226:19;39248:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39299:30;;;;;;:44;;;39416:30;;:17;:30;;;;;:43;;;39177:328;-1:-1:-1;39601:26:0;;;;:17;:26;;;;;;;;39594:33;;;-1:-1:-1;;;;;39645:18:0;;;;;:12;:18;;;;;:34;;;;;;;39638:41;38699:988::o;39982:1079::-;40260:10;:17;40235:22;;40260:21;;40280:1;;40260:21;:::i;:::-;40292:18;40313:24;;;:15;:24;;;;;;40686:10;:26;;40235:46;;-1:-1:-1;40313:24:0;;40235:46;;40686:26;;;;-1:-1:-1;;;40686:26:0;;;;;;;;;;;;;;;;;40664:48;;40750:11;40725:10;40736;40725:22;;;;;;-1:-1:-1;;;40725:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40830:28;;;:15;:28;;;;;;;:41;;;41002:24;;;;;40995:31;41037:10;:16;;;;;-1:-1:-1;;;41037:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39982:1079;;;;:::o;37486:221::-;37571:14;37588:20;37605:2;37588:16;:20::i;:::-;-1:-1:-1;;;;;37619:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37664:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37486:221:0:o;11686:387::-;12009:20;12057:8;;;11686:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:259::-;;4949:5;4943:12;4976:6;4971:3;4964:19;4992:63;5048:6;5041:4;5036:3;5032:14;5025:4;5018:5;5014:16;4992:63;:::i;:::-;5109:2;5088:15;-1:-1:-1;;5084:29:1;5075:39;;;;5116:4;5071:50;;4919:208;-1:-1:-1;;4919:208:1:o;5132:470::-;;5349:6;5343:13;5365:53;5411:6;5406:3;5399:4;5391:6;5387:17;5365:53;:::i;:::-;5481:13;;5440:16;;;;5503:57;5481:13;5440:16;5537:4;5525:17;;5503:57;:::i;:::-;5576:20;;5319:283;-1:-1:-1;;;;5319:283:1:o;5607:205::-;5807:3;5798:14::o;5817:203::-;-1:-1:-1;;;;;5981:32:1;;;;5963:51;;5951:2;5936:18;;5918:102::o;6025:490::-;-1:-1:-1;;;;;6294:15:1;;;6276:34;;6346:15;;6341:2;6326:18;;6319:43;6393:2;6378:18;;6371:34;;;6441:3;6436:2;6421:18;;6414:31;;;6025:490;;6462:47;;6489:19;;6481:6;6462:47;:::i;:::-;6454:55;6228:287;-1:-1:-1;;;;;;6228:287:1:o;6520:274::-;-1:-1:-1;;;;;6712:32:1;;;;6694:51;;6776:2;6761:18;;6754:34;6682:2;6667:18;;6649:145::o;6799:187::-;6964:14;;6957:22;6939:41;;6927:2;6912:18;;6894:92::o;6991:221::-;;7140:2;7129:9;7122:21;7160:46;7202:2;7191:9;7187:18;7179:6;7160:46;:::i;7217:347::-;7419:2;7401:21;;;7458:2;7438:18;;;7431:30;7497:25;7492:2;7477:18;;7470:53;7555:2;7540:18;;7391:173::o;7569:411::-;7771:2;7753:21;;;7810:2;7790:18;;;7783:30;7849:34;7844:2;7829:18;;7822:62;-1:-1:-1;;;7915:2:1;7900:18;;7893:45;7970:3;7955:19;;7743:237::o;7985:407::-;8187:2;8169:21;;;8226:2;8206:18;;;8199:30;8265:34;8260:2;8245:18;;8238:62;-1:-1:-1;;;8331:2:1;8316:18;;8309:41;8382:3;8367:19;;8159:233::o;8397:414::-;8599:2;8581:21;;;8638:2;8618:18;;;8611:30;8677:34;8672:2;8657:18;;8650:62;-1:-1:-1;;;8743:2:1;8728:18;;8721:48;8801:3;8786:19;;8571:240::o;8816:402::-;9018:2;9000:21;;;9057:2;9037:18;;;9030:30;9096:34;9091:2;9076:18;;9069:62;-1:-1:-1;;;9162:2:1;9147:18;;9140:36;9208:3;9193:19;;8990:228::o;9223:352::-;9425:2;9407:21;;;9464:2;9444:18;;;9437:30;9503;9498:2;9483:18;;9476:58;9566:2;9551:18;;9397:178::o;9580:351::-;9782:2;9764:21;;;9821:2;9801:18;;;9794:30;9860:29;9855:2;9840:18;;9833:57;9922:2;9907:18;;9754:177::o;9936:400::-;10138:2;10120:21;;;10177:2;10157:18;;;10150:30;10216:34;10211:2;10196:18;;10189:62;-1:-1:-1;;;10282:2:1;10267:18;;10260:34;10326:3;10311:19;;10110:226::o;10341:349::-;10543:2;10525:21;;;10582:2;10562:18;;;10555:30;10621:27;10616:2;10601:18;;10594:55;10681:2;10666:18;;10515:175::o;10695:400::-;10897:2;10879:21;;;10936:2;10916:18;;;10909:30;10975:34;10970:2;10955:18;;10948:62;-1:-1:-1;;;11041:2:1;11026:18;;11019:34;11085:3;11070:19;;10869:226::o;11100:408::-;11302:2;11284:21;;;11341:2;11321:18;;;11314:30;11380:34;11375:2;11360:18;;11353:62;-1:-1:-1;;;11446:2:1;11431:18;;11424:42;11498:3;11483:19;;11274:234::o;11513:420::-;11715:2;11697:21;;;11754:2;11734:18;;;11727:30;11793:34;11788:2;11773:18;;11766:62;11864:26;11859:2;11844:18;;11837:54;11923:3;11908:19;;11687:246::o;11938:406::-;12140:2;12122:21;;;12179:2;12159:18;;;12152:30;12218:34;12213:2;12198:18;;12191:62;-1:-1:-1;;;12284:2:1;12269:18;;12262:40;12334:3;12319:19;;12112:232::o;12349:405::-;12551:2;12533:21;;;12590:2;12570:18;;;12563:30;12629:34;12624:2;12609:18;;12602:62;-1:-1:-1;;;12695:2:1;12680:18;;12673:39;12744:3;12729:19;;12523:231::o;12759:355::-;12961:2;12943:21;;;13000:2;12980:18;;;12973:30;13039:33;13034:2;13019:18;;13012:61;13105:2;13090:18;;12933:181::o;13119:404::-;13321:2;13303:21;;;13360:2;13340:18;;;13333:30;13399:34;13394:2;13379:18;;13372:62;-1:-1:-1;;;13465:2:1;13450:18;;13443:38;13513:3;13498:19;;13293:230::o;13528:413::-;13730:2;13712:21;;;13769:2;13749:18;;;13742:30;13808:34;13803:2;13788:18;;13781:62;-1:-1:-1;;;13874:2:1;13859:18;;13852:47;13931:3;13916:19;;13702:239::o;13946:356::-;14148:2;14130:21;;;14167:18;;;14160:30;14226:34;14221:2;14206:18;;14199:62;14293:2;14278:18;;14120:182::o;14307:347::-;14509:2;14491:21;;;14548:2;14528:18;;;14521:30;14587:25;14582:2;14567:18;;14560:53;14645:2;14630:18;;14481:173::o;14659:408::-;14861:2;14843:21;;;14900:2;14880:18;;;14873:30;14939:34;14934:2;14919:18;;14912:62;-1:-1:-1;;;15005:2:1;14990:18;;14983:42;15057:3;15042:19;;14833:234::o;15072:343::-;15274:2;15256:21;;;15313:2;15293:18;;;15286:30;-1:-1:-1;;;15347:2:1;15332:18;;15325:49;15406:2;15391:18;;15246:169::o;15420:356::-;15622:2;15604:21;;;15641:18;;;15634:30;15700:34;15695:2;15680:18;;15673:62;15767:2;15752:18;;15594:182::o;15781:405::-;15983:2;15965:21;;;16022:2;16002:18;;;15995:30;16061:34;16056:2;16041:18;;16034:62;-1:-1:-1;;;16127:2:1;16112:18;;16105:39;16176:3;16161:19;;15955:231::o;16191:411::-;16393:2;16375:21;;;16432:2;16412:18;;;16405:30;16471:34;16466:2;16451:18;;16444:62;-1:-1:-1;;;16537:2:1;16522:18;;16515:45;16592:3;16577:19;;16365:237::o;16607:352::-;16809:2;16791:21;;;16848:2;16828:18;;;16821:30;16887;16882:2;16867:18;;16860:58;16950:2;16935:18;;16781:178::o;16964:349::-;17166:2;17148:21;;;17205:2;17185:18;;;17178:30;17244:27;17239:2;17224:18;;17217:55;17304:2;17289:18;;17138:175::o;17318:404::-;17520:2;17502:21;;;17559:2;17539:18;;;17532:30;17598:34;17593:2;17578:18;;17571:62;-1:-1:-1;;;17664:2:1;17649:18;;17642:38;17712:3;17697:19;;17492:230::o;17727:397::-;17929:2;17911:21;;;17968:2;17948:18;;;17941:30;18007:34;18002:2;17987:18;;17980:62;-1:-1:-1;;;18073:2:1;18058:18;;18051:31;18114:3;18099:19;;17901:223::o;18129:347::-;18331:2;18313:21;;;18370:2;18350:18;;;18343:30;18409:25;18404:2;18389:18;;18382:53;18467:2;18452:18;;18303:173::o;18481:413::-;18683:2;18665:21;;;18722:2;18702:18;;;18695:30;18761:34;18756:2;18741:18;;18734:62;-1:-1:-1;;;18827:2:1;18812:18;;18805:47;18884:3;18869:19;;18655:239::o;18899:408::-;19101:2;19083:21;;;19140:2;19120:18;;;19113:30;19179:34;19174:2;19159:18;;19152:62;-1:-1:-1;;;19245:2:1;19230:18;;19223:42;19297:3;19282:19;;19073:234::o;19312:404::-;19514:2;19496:21;;;19553:2;19533:18;;;19526:30;19592:34;19587:2;19572:18;;19565:62;-1:-1:-1;;;19658:2:1;19643:18;;19636:38;19706:3;19691:19;;19486:230::o;19721:352::-;19923:2;19905:21;;;19962:2;19942:18;;;19935:30;20001;19996:2;19981:18;;19974:58;20064:2;20049:18;;19895:178::o;20078:351::-;20280:2;20262:21;;;20319:2;20299:18;;;20292:30;20358:29;20353:2;20338:18;;20331:57;20420:2;20405:18;;20252:177::o;20434:::-;20580:25;;;20568:2;20553:18;;20535:76::o;20616:128::-;;20687:1;20683:6;20680:1;20677:13;20674:2;;;20693:18;;:::i;:::-;-1:-1:-1;20729:9:1;;20664:80::o;20749:120::-;;20815:1;20805:2;;20820:18;;:::i;:::-;-1:-1:-1;20854:9:1;;20795:74::o;20874:168::-;;20980:1;20976;20972:6;20968:14;20965:1;20962:21;20957:1;20950:9;20943:17;20939:45;20936:2;;;20987:18;;:::i;:::-;-1:-1:-1;21027:9:1;;20926:116::o;21047:125::-;;21115:1;21112;21109:8;21106:2;;;21120:18;;:::i;:::-;-1:-1:-1;21157:9:1;;21096:76::o;21177:258::-;21249:1;21259:113;21273:6;21270:1;21267:13;21259:113;;;21349:11;;;21343:18;21330:11;;;21323:39;21295:2;21288:10;21259:113;;;21390:6;21387:1;21384:13;21381:2;;;-1:-1:-1;;21425:1:1;21407:16;;21400:27;21230:205::o;21440:380::-;21525:1;21515:12;;21572:1;21562:12;;;21583:2;;21637:4;21629:6;21625:17;21615:27;;21583:2;21690;21682:6;21679:14;21659:18;21656:38;21653:2;;;21736:10;21731:3;21727:20;21724:1;21717:31;21771:4;21768:1;21761:15;21799:4;21796:1;21789:15;21653:2;;21495:325;;;:::o;21825:135::-;;-1:-1:-1;;21885:17:1;;21882:2;;;21905:18;;:::i;:::-;-1:-1:-1;21952:1:1;21941:13;;21872:88::o;21965:112::-;;22023:1;22013:2;;22028:18;;:::i;:::-;-1:-1:-1;22062:9:1;;22003:74::o;22082:127::-;22143:10;22138:3;22134:20;22131:1;22124:31;22174:4;22171:1;22164:15;22198:4;22195:1;22188:15;22214:127;22275:10;22270:3;22266:20;22263:1;22256:31;22306:4;22303:1;22296:15;22330:4;22327:1;22320:15;22346:127;22407:10;22402:3;22398:20;22395:1;22388:31;22438:4;22435:1;22428:15;22462:4;22459:1;22452:15;22478:133;-1:-1:-1;;;;;;22554:32:1;;22544:43;;22534:2;;22601:1;22598;22591:12

Swarm Source

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