ETH Price: $3,165.57 (+1.80%)
Gas: 1 Gwei

Token

OCE Trick or Treat (ToT)
 

Overview

Max Total Supply

485 ToT

Holders

210

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
alexpr.eth
Balance
5 ToT
0x9fd050dd3F3c07369F38f52Df41876DCba84632E
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:
OCETrickorTreat

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

// File: @openzeppelin/contracts/utils/Strings.sol



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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

pragma solidity 0.8.9;

interface IOnChainGhost {
    function ownerOf(uint256 tokenId) external view returns (address);
    function balanceOf(address owner) external view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
}

pragma solidity >=0.7.0 <0.9.0;

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

  // --- Variables ---
  string public baseURI;
  string public baseExtension = "";
  string public notRevealedUri;
  uint256 public publicPrice = 0.05 ether;
  uint256 public maxSupply = 7000;
  uint256 public presaleMintAmount = 2;
  uint256 public presaleMinted = 0;
  uint256 public presaleSize = 4000;
  uint256 public claimMinted = 0;
  uint256 public claimSize = 3000;
  bool public isRevealed = false;
  
  address[] public whitelistedAddresses;
  address public ghostAddr = 0x180CE135FFFDc4e47c58AE7b7E5463B62FC4D4C2;

  //1 = Presale Claim / 1 Whitelist, 2 = Uncapped Whitelist, 3 = PUBLIC, 4 = CLOSED
  uint32 public mintPhase = 1;
 

  mapping(address => uint256) public addressMintedBalance;
  mapping(address => uint256) public addressClaimBalance;
  mapping(address => bool) public mintlist;

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

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

  //Phase Mint
  function mint(address _wallet, uint256 _mintAmount) public payable {
    require(mintPhase == 1 || mintPhase == 2 || mintPhase == 3, "Minting is not open.");


    uint256 supply = totalSupply();

    require(_mintAmount > 0, "Must mint at least one Trick or Treat!");

    if (mintPhase == 1) { // Whitelist can mint presaleMintAmount
        require(presaleMinted + _mintAmount <= presaleSize, "Max supply of presale has been minted!");
        uint256 ownerMintedCount = addressMintedBalance[_wallet];
        require(_mintAmount + ownerMintedCount <= presaleMintAmount, "You've already minted the maximum presale amount");

    } else if(mintPhase == 2) { // whitelist and ghostholders unlimited mint

      //Must be whitelisted or a Ghost Holder      
      if(isWhitelisted(msg.sender) || isHolder(_wallet)) {
        require(msg.value >= publicPrice * _mintAmount, "Not enough ETH supplied for transaction!");
        require(supply + _mintAmount <= maxSupply, "Max supply of Trick or Treat NFT already minted!");
      } else {
        require(isWhitelisted(msg.sender), "You must be whitelisted to mint in this phase");
      }

    }

    require(msg.value >= publicPrice * _mintAmount, "Not enough ETH supplied for transaction!");
    require(supply + _mintAmount <= maxSupply, "Max Trick or Treated NFTs mint would exceeded supply");

    //Mint
    for (uint256 i = 1; i <= _mintAmount; i++) {
      presaleMinted++;
      addressMintedBalance[_wallet]++;
      _safeMint(_wallet, supply + i);
    }
    
  }

   //Claim for Ghost Holders
  function claim(address _wallet, uint256 _mintAmount) public {
      //Check if Claims are still active...
      require(mintPhase == 1 || mintPhase == 2, "Claiming is no longer open.");
      

      uint256 supply = totalSupply();
      
      require(claimMinted + _mintAmount <= claimSize, "Max supply has been claimed!");
      //Check how many Ghost are in the holders balance
      uint256 amountCanMint = holderBalance(_wallet);
      uint256 ownerClaimCount = addressClaimBalance[_wallet];
      require(ownerClaimCount + _mintAmount <= amountCanMint, "You've already minted the maximum presale amount");
        
      for (uint256 i = 1; i <= _mintAmount; i++) {
        claimMinted++;
        addressClaimBalance[_wallet]++;
        _safeMint(_wallet, supply + i);
      }
  }

  function isHolder(address _wallet) public view returns (bool isGhostHolder) {
    ERC721Enumerable ghostHolder = ERC721Enumerable(ghostAddr);
    uint256 ghostHolderBalance = ghostHolder.balanceOf(_wallet);
    
    bool _isGhostHolder = false;
    if(ghostHolderBalance > 0) {
      _isGhostHolder = true;
    }
    
    return _isGhostHolder;
  }

  function holderBalance(address _wallet) public view returns( uint256 ghostHolderBalance) {
    ERC721Enumerable ghostHolder = ERC721Enumerable(ghostAddr);
    uint256 ghostBalance = ghostHolder.balanceOf(_wallet);
    return ghostBalance;
  }
  

  // admin can mint them for giveaways, airdrops etc
  function adminMint(uint256 qty, address to) public onlyOwner {
    require(qty > 0, "minimum 1 token");
    require(totalSupply() + qty <= maxSupply, "out of stock");
    for (uint256 i = 0; i < qty; i++) {
        _safeMint(to, totalSupply() + 1);
    }
  }
    
  //Check to see if user is whitelisted
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  //Get the tokens that exist for this wallet
  function walletOfOwner(address _owner) public view returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //Reveal NFTs
  function reveal() public onlyOwner() {
      isRevealed = true;
  }
  
  //Set Public Sale Cost
  function setCost(uint256 _newPrice) public onlyOwner() {
    publicPrice = _newPrice;
  }

  //Set New Presale Mint Amount
  function setPresaleMintAmount(uint256 _newAmount) public onlyOwner() {
    presaleMintAmount = _newAmount;
  }
  
  //Set Base URI for a NFT Object
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  //Update Base Extension if necessary
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  //Update Not Revealed URI
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function updateGhostHolderAddress(address ghostHolderAddress) public onlyOwner {
    ghostAddr = ghostHolderAddress;
  }
  
  //Array of whitelisted users []
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  //Set MintPhase to 0 to Pause sale
  function changeMintPhase(uint32 _mintPhase) public onlyOwner {
    mintPhase = _mintPhase;
  }
 
  //Withdraw balance from contract
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success, "Withdraw: The transfer failed");
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_mintPhase","type":"uint32"}],"name":"changeMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghostAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"holderBalance","outputs":[{"internalType":"uint256","name":"ghostHolderBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"isHolder","outputs":[{"internalType":"bool","name":"isGhostHolder","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPhase","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setPresaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ghostHolderAddress","type":"address"}],"name":"updateGhostHolderAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b91600c916200022e565b5066b1a2bc2ec50000600e55611b58600f55600260105560006011819055610fa0601255601355610bb86014556015805460ff19169055601780546001600160c01b0319167401180ce135fffdc4e47c58ae7b7e5463b62fc4d4c21790553480156200008657600080fd5b506040516200365538038062003655833981016040819052620000a991620003a1565b835184908490620000c29060009060208501906200022e565b508051620000d89060019060208401906200022e565b505050620000f5620000ef6200011560201b60201c565b62000119565b62000100826200016b565b6200010b81620001d3565b5050505062000497565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ba5760405162461bcd60e51b815260206004820181905260248201526000805160206200363583398151915260448201526064015b60405180910390fd5b8051620001cf90600b9060208401906200022e565b5050565b600a546001600160a01b031633146200021e5760405162461bcd60e51b81526020600482018190526024820152600080516020620036358339815191526044820152606401620001b1565b8051620001cf90600d9060208401905b8280546200023c906200045a565b90600052602060002090601f016020900481019282620002605760008555620002ab565b82601f106200027b57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002ab5782518255916020019190600101906200028e565b50620002b9929150620002bd565b5090565b5b80821115620002b95760008155600101620002be565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002fc57600080fd5b81516001600160401b0380821115620003195762000319620002d4565b604051601f8301601f19908116603f01168101908282118183101715620003445762000344620002d4565b816040528381526020925086838588010111156200036157600080fd5b600091505b8382101562000385578582018301518183018401529082019062000366565b83821115620003975760008385830101525b9695505050505050565b60008060008060808587031215620003b857600080fd5b84516001600160401b0380821115620003d057600080fd5b620003de88838901620002ea565b95506020870151915080821115620003f557600080fd5b6200040388838901620002ea565b945060408701519150808211156200041a57600080fd5b6200042888838901620002ea565b935060608701519150808211156200043f57600080fd5b506200044e87828801620002ea565b91505092959194509250565b600181811c908216806200046f57607f821691505b602082108114156200049157634e487b7160e01b600052602260045260246000fd5b50919050565b61318e80620004a76000396000f3fe60806040526004361061031a5760003560e01c806355f804b3116101ab578063aad3ec96116100f7578063d5abeb0111610095578063edec5f271161006f578063edec5f2714610941578063f2c4ce1e14610961578063f2fde38b14610981578063f4cda477146109a157600080fd5b8063d5abeb01146108c2578063da3ef23f146108d8578063e985e9c5146108f857600080fd5b8063ba4e5c49116100d1578063ba4e5c491461084d578063c66828621461086d578063c87b56dd14610882578063d4d7b19a146108a257600080fd5b8063aad3ec96146107ed578063ab6ddfa81461080d578063b88d4fde1461082d57600080fd5b806373aee9291161016457806395d89b411161013e57806395d89b411461078d578063a22cb465146107a2578063a475b5dd146107c2578063a945bf80146107d757600080fd5b806373aee929146107435780638d8be4b3146107595780638da5cb5b1461076f57600080fd5b806355f804b3146106895780636352211e146106a95780636c0360eb146106c95780636fc6cbc5146106de57806370a082311461070e578063715018a61461072e57600080fd5b806323b872dd1161026a57806340c10f191161022357806344a0d68a116101fd57806344a0d68a1461060f5780634dae327a1461062f5780634f6ccce71461064f57806354214f691461066f57600080fd5b806340c10f19146105af57806342842e0e146105c2578063438b6300146105e257600080fd5b806323b872dd1461051157806326e01913146105315780632bac0a9c146105475780632f745c59146105675780633af32abf146105875780633ccfd60b146105a757600080fd5b80630dc28efe116102d757806317881cbf116102b157806317881cbf1461046957806318160ddd146104a257806318cae269146104b75780631fbcd444146104e457600080fd5b80630dc28efe14610409578063103ae98814610429578063165f25521461044957600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063081c8c44146103ae578063095ea7b3146103c35780630d923003146103e5575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461298d565b6109b7565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b506103696109e2565b60405161034b9190612a02565b34801561038257600080fd5b50610396610391366004612a15565b610a74565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b50610369610b0e565b3480156103cf57600080fd5b506103e36103de366004612a4a565b610b9c565b005b3480156103f157600080fd5b506103fb60125481565b60405190815260200161034b565b34801561041557600080fd5b506103e3610424366004612a74565b610cb2565b34801561043557600080fd5b506103e3610444366004612aa0565b610dac565b34801561045557600080fd5b506103e3610464366004612a15565b610dfc565b34801561047557600080fd5b5060175461048d90600160a01b900463ffffffff1681565b60405163ffffffff909116815260200161034b565b3480156104ae57600080fd5b506008546103fb565b3480156104c357600080fd5b506103fb6104d2366004612ac6565b60186020526000908152604090205481565b3480156104f057600080fd5b506103fb6104ff366004612ac6565b60196020526000908152604090205481565b34801561051d57600080fd5b506103e361052c366004612ae1565b610e2b565b34801561053d57600080fd5b506103fb60145481565b34801561055357600080fd5b506103e3610562366004612ac6565b610e5c565b34801561057357600080fd5b506103fb610582366004612a4a565b610ea8565b34801561059357600080fd5b5061033f6105a2366004612ac6565b610f3e565b6103e3610fa8565b6103e36105bd366004612a4a565b61106d565b3480156105ce57600080fd5b506103e36105dd366004612ae1565b61148d565b3480156105ee57600080fd5b506106026105fd366004612ac6565b6114a8565b60405161034b9190612b1d565b34801561061b57600080fd5b506103e361062a366004612a15565b61154a565b34801561063b57600080fd5b50601754610396906001600160a01b031681565b34801561065b57600080fd5b506103fb61066a366004612a15565b611579565b34801561067b57600080fd5b5060155461033f9060ff1681565b34801561069557600080fd5b506103e36106a4366004612bed565b61160c565b3480156106b557600080fd5b506103966106c4366004612a15565b61164d565b3480156106d557600080fd5b506103696116c4565b3480156106ea57600080fd5b5061033f6106f9366004612ac6565b601a6020526000908152604090205460ff1681565b34801561071a57600080fd5b506103fb610729366004612ac6565b6116d1565b34801561073a57600080fd5b506103e3611758565b34801561074f57600080fd5b506103fb60115481565b34801561076557600080fd5b506103fb60105481565b34801561077b57600080fd5b50600a546001600160a01b0316610396565b34801561079957600080fd5b50610369611784565b3480156107ae57600080fd5b506103e36107bd366004612c36565b611793565b3480156107ce57600080fd5b506103e3611858565b3480156107e357600080fd5b506103fb600e5481565b3480156107f957600080fd5b506103e3610808366004612a4a565b611891565b34801561081957600080fd5b506103fb610828366004612ac6565b611a37565b34801561083957600080fd5b506103e3610848366004612c72565b611ac1565b34801561085957600080fd5b50610396610868366004612a15565b611af3565b34801561087957600080fd5b50610369611b1d565b34801561088e57600080fd5b5061036961089d366004612a15565b611b2a565b3480156108ae57600080fd5b5061033f6108bd366004612ac6565b611ca4565b3480156108ce57600080fd5b506103fb600f5481565b3480156108e457600080fd5b506103e36108f3366004612bed565b611d3b565b34801561090457600080fd5b5061033f610913366004612cee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561094d57600080fd5b506103e361095c366004612d18565b611d78565b34801561096d57600080fd5b506103e361097c366004612bed565b611dba565b34801561098d57600080fd5b506103e361099c366004612ac6565b611df7565b3480156109ad57600080fd5b506103fb60135481565b60006001600160e01b0319821663780e9d6360e01b14806109dc57506109dc82611e8f565b92915050565b6060600080546109f190612d8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d90612d8d565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610af25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d8054610b1b90612d8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4790612d8d565b8015610b945780601f10610b6957610100808354040283529160200191610b94565b820191906000526020600020905b815481529060010190602001808311610b7757829003601f168201915b505050505081565b6000610ba78261164d565b9050806001600160a01b0316836001600160a01b03161415610c155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ae9565b336001600160a01b0382161480610c315750610c318133610913565b610ca35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ae9565b610cad8383611edf565b505050565b600a546001600160a01b03163314610cdc5760405162461bcd60e51b8152600401610ae990612dc8565b60008211610d1e5760405162461bcd60e51b815260206004820152600f60248201526e36b4b734b6bab69018903a37b5b2b760891b6044820152606401610ae9565b600f5482610d2b60085490565b610d359190612e13565b1115610d725760405162461bcd60e51b815260206004820152600c60248201526b6f7574206f662073746f636b60a01b6044820152606401610ae9565b60005b82811015610cad57610d9a82610d8a60085490565b610d95906001612e13565b611f4d565b80610da481612e2b565b915050610d75565b600a546001600160a01b03163314610dd65760405162461bcd60e51b8152600401610ae990612dc8565b6017805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b600a546001600160a01b03163314610e265760405162461bcd60e51b8152600401610ae990612dc8565b601055565b610e353382611f67565b610e515760405162461bcd60e51b8152600401610ae990612e46565b610cad83838361205a565b600a546001600160a01b03163314610e865760405162461bcd60e51b8152600401610ae990612dc8565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610eb3836116d1565b8210610f155760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601654811015610f9f57826001600160a01b031660168281548110610f6957610f69612e97565b6000918252602090912001546001600160a01b03161415610f8d5750600192915050565b80610f9781612e2b565b915050610f42565b50600092915050565b600a546001600160a01b03163314610fd25760405162461bcd60e51b8152600401610ae990612dc8565b604051600090339047908381818185875af1925050503d8060008114611014576040519150601f19603f3d011682016040523d82523d6000602084013e611019565b606091505b505090508061106a5760405162461bcd60e51b815260206004820152601d60248201527f57697468647261773a20546865207472616e73666572206661696c65640000006044820152606401610ae9565b50565b601754600160a01b900463ffffffff166001148061109a5750601754600160a01b900463ffffffff166002145b806110b45750601754600160a01b900463ffffffff166003145b6110f75760405162461bcd60e51b815260206004820152601460248201527326b4b73a34b7339034b9903737ba1037b832b71760611b6044820152606401610ae9565b600061110260085490565b9050600082116111635760405162461bcd60e51b815260206004820152602660248201527f4d757374206d696e74206174206c65617374206f6e6520547269636b206f722060448201526554726561742160d01b6064820152608401610ae9565b601754600160a01b900463ffffffff1660011415611233576012548260115461118c9190612e13565b11156111e95760405162461bcd60e51b815260206004820152602660248201527f4d617820737570706c79206f662070726573616c6520686173206265656e206d604482015265696e7465642160d01b6064820152608401610ae9565b6001600160a01b03831660009081526018602052604090205460105461120f8285612e13565b111561122d5760405162461bcd60e51b8152600401610ae990612ead565b50611379565b601754600160a01b900463ffffffff16600214156113795761125433610f3e565b80611263575061126383611ca4565b1561130e5781600e546112769190612efd565b3410156112955760405162461bcd60e51b8152600401610ae990612f1c565b600f546112a28383612e13565b11156113095760405162461bcd60e51b815260206004820152603060248201527f4d617820737570706c79206f6620547269636b206f72205472656174204e465460448201526f20616c7265616479206d696e7465642160801b6064820152608401610ae9565b611379565b61131733610f3e565b6113795760405162461bcd60e51b815260206004820152602d60248201527f596f75206d7573742062652077686974656c697374656420746f206d696e742060448201526c696e207468697320706861736560981b6064820152608401610ae9565b81600e546113879190612efd565b3410156113a65760405162461bcd60e51b8152600401610ae990612f1c565b600f546113b38383612e13565b111561141e5760405162461bcd60e51b815260206004820152603460248201527f4d617820547269636b206f722054726561746564204e465473206d696e7420776044820152736f756c6420657863656564656420737570706c7960601b6064820152608401610ae9565b60015b828111611487576011805490600061143883612e2b565b90915550506001600160a01b038416600090815260186020526040812080549161146183612e2b565b90915550611475905084610d958385612e13565b8061147f81612e2b565b915050611421565b50505050565b610cad83838360405180602001604052806000815250611ac1565b606060006114b5836116d1565b905060008167ffffffffffffffff8111156114d2576114d2612b61565b6040519080825280602002602001820160405280156114fb578160200160208202803683370190505b50905060005b82811015611542576115138582610ea8565b82828151811061152557611525612e97565b60209081029190910101528061153a81612e2b565b915050611501565b509392505050565b600a546001600160a01b031633146115745760405162461bcd60e51b8152600401610ae990612dc8565b600e55565b600061158460085490565b82106115e75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ae9565b600882815481106115fa576115fa612e97565b90600052602060002001549050919050565b600a546001600160a01b031633146116365760405162461bcd60e51b8152600401610ae990612dc8565b805161164990600b90602084019061286d565b5050565b6000818152600260205260408120546001600160a01b0316806109dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ae9565b600b8054610b1b90612d8d565b60006001600160a01b03821661173c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ae9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117825760405162461bcd60e51b8152600401610ae990612dc8565b565b6060600180546109f190612d8d565b6001600160a01b0382163314156117ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ae9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146118825760405162461bcd60e51b8152600401610ae990612dc8565b6015805460ff19166001179055565b601754600160a01b900463ffffffff16600114806118be5750601754600160a01b900463ffffffff166002145b61190a5760405162461bcd60e51b815260206004820152601b60248201527f436c61696d696e67206973206e6f206c6f6e676572206f70656e2e00000000006044820152606401610ae9565b600061191560085490565b9050601454826013546119289190612e13565b11156119765760405162461bcd60e51b815260206004820152601c60248201527f4d617820737570706c7920686173206265656e20636c61696d656421000000006044820152606401610ae9565b600061198184611a37565b6001600160a01b038516600090815260196020526040902054909150816119a88583612e13565b11156119c65760405162461bcd60e51b8152600401610ae990612ead565b60015b848111611a2f57601380549060006119e083612e2b565b90915550506001600160a01b0386166000908152601960205260408120805491611a0983612e2b565b90915550611a1d905086610d958387612e13565b80611a2781612e2b565b9150506119c9565b505050505050565b6017546040516370a0823160e01b81526001600160a01b0383811660048301526000921690829082906370a082319060240160206040518083038186803b158015611a8157600080fd5b505afa158015611a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab99190612f64565b949350505050565b611acb3383611f67565b611ae75760405162461bcd60e51b8152600401610ae990612e46565b61148784848484612205565b60168181548110611b0357600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610b1b90612d8d565b6000818152600260205260409020546060906001600160a01b0316611ba95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ae9565b60155460ff16611c4557600d8054611bc090612d8d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bec90612d8d565b8015611c395780601f10611c0e57610100808354040283529160200191611c39565b820191906000526020600020905b815481529060010190602001808311611c1c57829003601f168201915b50505050509050919050565b6000611c4f612238565b90506000815111611c6f5760405180602001604052806000815250611c9d565b80611c7984612247565b600c604051602001611c8d93929190612f7d565b6040516020818303038152906040525b9392505050565b6017546040516370a0823160e01b81526001600160a01b0383811660048301526000921690829082906370a082319060240160206040518083038186803b158015611cee57600080fd5b505afa158015611d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d269190612f64565b905060008115611ab957506001949350505050565b600a546001600160a01b03163314611d655760405162461bcd60e51b8152600401610ae990612dc8565b805161164990600c90602084019061286d565b600a546001600160a01b03163314611da25760405162461bcd60e51b8152600401610ae990612dc8565b611dae601660006128f1565b610cad6016838361290f565b600a546001600160a01b03163314611de45760405162461bcd60e51b8152600401610ae990612dc8565b805161164990600d90602084019061286d565b600a546001600160a01b03163314611e215760405162461bcd60e51b8152600401610ae990612dc8565b6001600160a01b038116611e865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae9565b61106a81612345565b60006001600160e01b031982166380ac58cd60e01b1480611ec057506001600160e01b03198216635b5e139f60e01b145b806109dc57506301ffc9a760e01b6001600160e01b03198316146109dc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f148261164d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611649828260405180602001604052806000815250612397565b6000818152600260205260408120546001600160a01b0316611fe05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ae9565b6000611feb8361164d565b9050806001600160a01b0316846001600160a01b031614806120265750836001600160a01b031661201b84610a74565b6001600160a01b0316145b80611ab957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611ab9565b826001600160a01b031661206d8261164d565b6001600160a01b0316146120d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ae9565b6001600160a01b0382166121375760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ae9565b6121428383836123ca565b61214d600082611edf565b6001600160a01b0383166000908152600360205260408120805460019290612176908490613041565b90915550506001600160a01b03821660009081526003602052604081208054600192906121a4908490612e13565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61221084848461205a565b61221c84848484612482565b6114875760405162461bcd60e51b8152600401610ae990613058565b6060600b80546109f190612d8d565b60608161226b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612295578061227f81612e2b565b915061228e9050600a836130c0565b915061226f565b60008167ffffffffffffffff8111156122b0576122b0612b61565b6040519080825280601f01601f1916602001820160405280156122da576020820181803683370190505b5090505b8415611ab9576122ef600183613041565b91506122fc600a866130d4565b612307906030612e13565b60f81b81838151811061231c5761231c612e97565b60200101906001600160f81b031916908160001a90535061233e600a866130c0565b94506122de565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6123a1838361258f565b6123ae6000848484612482565b610cad5760405162461bcd60e51b8152600401610ae990613058565b6001600160a01b0383166124255761242081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612448565b816001600160a01b0316836001600160a01b0316146124485761244883826126dd565b6001600160a01b03821661245f57610cad8161277a565b826001600160a01b0316826001600160a01b031614610cad57610cad8282612829565b60006001600160a01b0384163b1561258457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124c69033908990889088906004016130e8565b602060405180830381600087803b1580156124e057600080fd5b505af1925050508015612510575060408051601f3d908101601f1916820190925261250d91810190613125565b60015b61256a573d80801561253e576040519150601f19603f3d011682016040523d82523d6000602084013e612543565b606091505b5080516125625760405162461bcd60e51b8152600401610ae990613058565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab9565b506001949350505050565b6001600160a01b0382166125e55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ae9565b6000818152600260205260409020546001600160a01b03161561264a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ae9565b612656600083836123ca565b6001600160a01b038216600090815260036020526040812080546001929061267f908490612e13565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016126ea846116d1565b6126f49190613041565b600083815260076020526040902054909150808214612747576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061278c90600190613041565b600083815260096020526040812054600880549394509092849081106127b4576127b4612e97565b9060005260206000200154905080600883815481106127d5576127d5612e97565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061280d5761280d613142565b6001900381819060005260206000200160009055905550505050565b6000612834836116d1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461287990612d8d565b90600052602060002090601f01602090048101928261289b57600085556128e1565b82601f106128b457805160ff19168380011785556128e1565b828001600101855582156128e1579182015b828111156128e15782518255916020019190600101906128c6565b506128ed929150612962565b5090565b508054600082559060005260206000209081019061106a9190612962565b8280548282559060005260206000209081019282156128e1579160200282015b828111156128e15781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061292f565b5b808211156128ed5760008155600101612963565b6001600160e01b03198116811461106a57600080fd5b60006020828403121561299f57600080fd5b8135611c9d81612977565b60005b838110156129c55781810151838201526020016129ad565b838111156114875750506000910152565b600081518084526129ee8160208601602086016129aa565b601f01601f19169290920160200192915050565b602081526000611c9d60208301846129d6565b600060208284031215612a2757600080fd5b5035919050565b80356001600160a01b0381168114612a4557600080fd5b919050565b60008060408385031215612a5d57600080fd5b612a6683612a2e565b946020939093013593505050565b60008060408385031215612a8757600080fd5b82359150612a9760208401612a2e565b90509250929050565b600060208284031215612ab257600080fd5b813563ffffffff81168114611c9d57600080fd5b600060208284031215612ad857600080fd5b611c9d82612a2e565b600080600060608486031215612af657600080fd5b612aff84612a2e565b9250612b0d60208501612a2e565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612b5557835183529284019291840191600101612b39565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612b9257612b92612b61565b604051601f8501601f19908116603f01168101908282118183101715612bba57612bba612b61565b81604052809350858152868686011115612bd357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612bff57600080fd5b813567ffffffffffffffff811115612c1657600080fd5b8201601f81018413612c2757600080fd5b611ab984823560208401612b77565b60008060408385031215612c4957600080fd5b612c5283612a2e565b915060208301358015158114612c6757600080fd5b809150509250929050565b60008060008060808587031215612c8857600080fd5b612c9185612a2e565b9350612c9f60208601612a2e565b925060408501359150606085013567ffffffffffffffff811115612cc257600080fd5b8501601f81018713612cd357600080fd5b612ce287823560208401612b77565b91505092959194509250565b60008060408385031215612d0157600080fd5b612d0a83612a2e565b9150612a9760208401612a2e565b60008060208385031215612d2b57600080fd5b823567ffffffffffffffff80821115612d4357600080fd5b818501915085601f830112612d5757600080fd5b813581811115612d6657600080fd5b8660208260051b8501011115612d7b57600080fd5b60209290920196919550909350505050565b600181811c90821680612da157607f821691505b60208210811415612dc257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e2657612e26612dfd565b500190565b6000600019821415612e3f57612e3f612dfd565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60208082526030908201527f596f7527766520616c7265616479206d696e74656420746865206d6178696d7560408201526f1b481c1c995cd85b1948185b5bdd5b9d60821b606082015260800190565b6000816000190483118215151615612f1757612f17612dfd565b500290565b60208082526028908201527f4e6f7420656e6f7567682045544820737570706c69656420666f72207472616e60408201526773616374696f6e2160c01b606082015260800190565b600060208284031215612f7657600080fd5b5051919050565b600084516020612f908285838a016129aa565b855191840191612fa38184848a016129aa565b8554920191600090600181811c9080831680612fc057607f831692505b858310811415612fde57634e487b7160e01b85526022600452602485fd5b808015612ff2576001811461300357613030565b60ff19851688528388019550613030565b60008b81526020902060005b858110156130285781548a82015290840190880161300f565b505083880195505b50939b9a5050505050505050505050565b60008282101561305357613053612dfd565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826130cf576130cf6130aa565b500490565b6000826130e3576130e36130aa565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061311b908301846129d6565b9695505050505050565b60006020828403121561313757600080fd5b8151611c9d81612977565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205a75911f3bda215fbd6b000ef49f64c00de24eeea6cb5f412a26943745d991f464736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000124f434520547269636b206f7220547265617400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003546f540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6f63652d747269636b2d6f722d74726561742e76657263656c2e6170702f6170692f756e72657665616c6564000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6f63652d747269636b2d6f722d74726561742e76657263656c2e6170702f6170692f756e72657665616c6564000000000000000000000000

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806355f804b3116101ab578063aad3ec96116100f7578063d5abeb0111610095578063edec5f271161006f578063edec5f2714610941578063f2c4ce1e14610961578063f2fde38b14610981578063f4cda477146109a157600080fd5b8063d5abeb01146108c2578063da3ef23f146108d8578063e985e9c5146108f857600080fd5b8063ba4e5c49116100d1578063ba4e5c491461084d578063c66828621461086d578063c87b56dd14610882578063d4d7b19a146108a257600080fd5b8063aad3ec96146107ed578063ab6ddfa81461080d578063b88d4fde1461082d57600080fd5b806373aee9291161016457806395d89b411161013e57806395d89b411461078d578063a22cb465146107a2578063a475b5dd146107c2578063a945bf80146107d757600080fd5b806373aee929146107435780638d8be4b3146107595780638da5cb5b1461076f57600080fd5b806355f804b3146106895780636352211e146106a95780636c0360eb146106c95780636fc6cbc5146106de57806370a082311461070e578063715018a61461072e57600080fd5b806323b872dd1161026a57806340c10f191161022357806344a0d68a116101fd57806344a0d68a1461060f5780634dae327a1461062f5780634f6ccce71461064f57806354214f691461066f57600080fd5b806340c10f19146105af57806342842e0e146105c2578063438b6300146105e257600080fd5b806323b872dd1461051157806326e01913146105315780632bac0a9c146105475780632f745c59146105675780633af32abf146105875780633ccfd60b146105a757600080fd5b80630dc28efe116102d757806317881cbf116102b157806317881cbf1461046957806318160ddd146104a257806318cae269146104b75780631fbcd444146104e457600080fd5b80630dc28efe14610409578063103ae98814610429578063165f25521461044957600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063081c8c44146103ae578063095ea7b3146103c35780630d923003146103e5575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461298d565b6109b7565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b506103696109e2565b60405161034b9190612a02565b34801561038257600080fd5b50610396610391366004612a15565b610a74565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b50610369610b0e565b3480156103cf57600080fd5b506103e36103de366004612a4a565b610b9c565b005b3480156103f157600080fd5b506103fb60125481565b60405190815260200161034b565b34801561041557600080fd5b506103e3610424366004612a74565b610cb2565b34801561043557600080fd5b506103e3610444366004612aa0565b610dac565b34801561045557600080fd5b506103e3610464366004612a15565b610dfc565b34801561047557600080fd5b5060175461048d90600160a01b900463ffffffff1681565b60405163ffffffff909116815260200161034b565b3480156104ae57600080fd5b506008546103fb565b3480156104c357600080fd5b506103fb6104d2366004612ac6565b60186020526000908152604090205481565b3480156104f057600080fd5b506103fb6104ff366004612ac6565b60196020526000908152604090205481565b34801561051d57600080fd5b506103e361052c366004612ae1565b610e2b565b34801561053d57600080fd5b506103fb60145481565b34801561055357600080fd5b506103e3610562366004612ac6565b610e5c565b34801561057357600080fd5b506103fb610582366004612a4a565b610ea8565b34801561059357600080fd5b5061033f6105a2366004612ac6565b610f3e565b6103e3610fa8565b6103e36105bd366004612a4a565b61106d565b3480156105ce57600080fd5b506103e36105dd366004612ae1565b61148d565b3480156105ee57600080fd5b506106026105fd366004612ac6565b6114a8565b60405161034b9190612b1d565b34801561061b57600080fd5b506103e361062a366004612a15565b61154a565b34801561063b57600080fd5b50601754610396906001600160a01b031681565b34801561065b57600080fd5b506103fb61066a366004612a15565b611579565b34801561067b57600080fd5b5060155461033f9060ff1681565b34801561069557600080fd5b506103e36106a4366004612bed565b61160c565b3480156106b557600080fd5b506103966106c4366004612a15565b61164d565b3480156106d557600080fd5b506103696116c4565b3480156106ea57600080fd5b5061033f6106f9366004612ac6565b601a6020526000908152604090205460ff1681565b34801561071a57600080fd5b506103fb610729366004612ac6565b6116d1565b34801561073a57600080fd5b506103e3611758565b34801561074f57600080fd5b506103fb60115481565b34801561076557600080fd5b506103fb60105481565b34801561077b57600080fd5b50600a546001600160a01b0316610396565b34801561079957600080fd5b50610369611784565b3480156107ae57600080fd5b506103e36107bd366004612c36565b611793565b3480156107ce57600080fd5b506103e3611858565b3480156107e357600080fd5b506103fb600e5481565b3480156107f957600080fd5b506103e3610808366004612a4a565b611891565b34801561081957600080fd5b506103fb610828366004612ac6565b611a37565b34801561083957600080fd5b506103e3610848366004612c72565b611ac1565b34801561085957600080fd5b50610396610868366004612a15565b611af3565b34801561087957600080fd5b50610369611b1d565b34801561088e57600080fd5b5061036961089d366004612a15565b611b2a565b3480156108ae57600080fd5b5061033f6108bd366004612ac6565b611ca4565b3480156108ce57600080fd5b506103fb600f5481565b3480156108e457600080fd5b506103e36108f3366004612bed565b611d3b565b34801561090457600080fd5b5061033f610913366004612cee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561094d57600080fd5b506103e361095c366004612d18565b611d78565b34801561096d57600080fd5b506103e361097c366004612bed565b611dba565b34801561098d57600080fd5b506103e361099c366004612ac6565b611df7565b3480156109ad57600080fd5b506103fb60135481565b60006001600160e01b0319821663780e9d6360e01b14806109dc57506109dc82611e8f565b92915050565b6060600080546109f190612d8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d90612d8d565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610af25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d8054610b1b90612d8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4790612d8d565b8015610b945780601f10610b6957610100808354040283529160200191610b94565b820191906000526020600020905b815481529060010190602001808311610b7757829003601f168201915b505050505081565b6000610ba78261164d565b9050806001600160a01b0316836001600160a01b03161415610c155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ae9565b336001600160a01b0382161480610c315750610c318133610913565b610ca35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ae9565b610cad8383611edf565b505050565b600a546001600160a01b03163314610cdc5760405162461bcd60e51b8152600401610ae990612dc8565b60008211610d1e5760405162461bcd60e51b815260206004820152600f60248201526e36b4b734b6bab69018903a37b5b2b760891b6044820152606401610ae9565b600f5482610d2b60085490565b610d359190612e13565b1115610d725760405162461bcd60e51b815260206004820152600c60248201526b6f7574206f662073746f636b60a01b6044820152606401610ae9565b60005b82811015610cad57610d9a82610d8a60085490565b610d95906001612e13565b611f4d565b80610da481612e2b565b915050610d75565b600a546001600160a01b03163314610dd65760405162461bcd60e51b8152600401610ae990612dc8565b6017805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b600a546001600160a01b03163314610e265760405162461bcd60e51b8152600401610ae990612dc8565b601055565b610e353382611f67565b610e515760405162461bcd60e51b8152600401610ae990612e46565b610cad83838361205a565b600a546001600160a01b03163314610e865760405162461bcd60e51b8152600401610ae990612dc8565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610eb3836116d1565b8210610f155760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601654811015610f9f57826001600160a01b031660168281548110610f6957610f69612e97565b6000918252602090912001546001600160a01b03161415610f8d5750600192915050565b80610f9781612e2b565b915050610f42565b50600092915050565b600a546001600160a01b03163314610fd25760405162461bcd60e51b8152600401610ae990612dc8565b604051600090339047908381818185875af1925050503d8060008114611014576040519150601f19603f3d011682016040523d82523d6000602084013e611019565b606091505b505090508061106a5760405162461bcd60e51b815260206004820152601d60248201527f57697468647261773a20546865207472616e73666572206661696c65640000006044820152606401610ae9565b50565b601754600160a01b900463ffffffff166001148061109a5750601754600160a01b900463ffffffff166002145b806110b45750601754600160a01b900463ffffffff166003145b6110f75760405162461bcd60e51b815260206004820152601460248201527326b4b73a34b7339034b9903737ba1037b832b71760611b6044820152606401610ae9565b600061110260085490565b9050600082116111635760405162461bcd60e51b815260206004820152602660248201527f4d757374206d696e74206174206c65617374206f6e6520547269636b206f722060448201526554726561742160d01b6064820152608401610ae9565b601754600160a01b900463ffffffff1660011415611233576012548260115461118c9190612e13565b11156111e95760405162461bcd60e51b815260206004820152602660248201527f4d617820737570706c79206f662070726573616c6520686173206265656e206d604482015265696e7465642160d01b6064820152608401610ae9565b6001600160a01b03831660009081526018602052604090205460105461120f8285612e13565b111561122d5760405162461bcd60e51b8152600401610ae990612ead565b50611379565b601754600160a01b900463ffffffff16600214156113795761125433610f3e565b80611263575061126383611ca4565b1561130e5781600e546112769190612efd565b3410156112955760405162461bcd60e51b8152600401610ae990612f1c565b600f546112a28383612e13565b11156113095760405162461bcd60e51b815260206004820152603060248201527f4d617820737570706c79206f6620547269636b206f72205472656174204e465460448201526f20616c7265616479206d696e7465642160801b6064820152608401610ae9565b611379565b61131733610f3e565b6113795760405162461bcd60e51b815260206004820152602d60248201527f596f75206d7573742062652077686974656c697374656420746f206d696e742060448201526c696e207468697320706861736560981b6064820152608401610ae9565b81600e546113879190612efd565b3410156113a65760405162461bcd60e51b8152600401610ae990612f1c565b600f546113b38383612e13565b111561141e5760405162461bcd60e51b815260206004820152603460248201527f4d617820547269636b206f722054726561746564204e465473206d696e7420776044820152736f756c6420657863656564656420737570706c7960601b6064820152608401610ae9565b60015b828111611487576011805490600061143883612e2b565b90915550506001600160a01b038416600090815260186020526040812080549161146183612e2b565b90915550611475905084610d958385612e13565b8061147f81612e2b565b915050611421565b50505050565b610cad83838360405180602001604052806000815250611ac1565b606060006114b5836116d1565b905060008167ffffffffffffffff8111156114d2576114d2612b61565b6040519080825280602002602001820160405280156114fb578160200160208202803683370190505b50905060005b82811015611542576115138582610ea8565b82828151811061152557611525612e97565b60209081029190910101528061153a81612e2b565b915050611501565b509392505050565b600a546001600160a01b031633146115745760405162461bcd60e51b8152600401610ae990612dc8565b600e55565b600061158460085490565b82106115e75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ae9565b600882815481106115fa576115fa612e97565b90600052602060002001549050919050565b600a546001600160a01b031633146116365760405162461bcd60e51b8152600401610ae990612dc8565b805161164990600b90602084019061286d565b5050565b6000818152600260205260408120546001600160a01b0316806109dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ae9565b600b8054610b1b90612d8d565b60006001600160a01b03821661173c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ae9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117825760405162461bcd60e51b8152600401610ae990612dc8565b565b6060600180546109f190612d8d565b6001600160a01b0382163314156117ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ae9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146118825760405162461bcd60e51b8152600401610ae990612dc8565b6015805460ff19166001179055565b601754600160a01b900463ffffffff16600114806118be5750601754600160a01b900463ffffffff166002145b61190a5760405162461bcd60e51b815260206004820152601b60248201527f436c61696d696e67206973206e6f206c6f6e676572206f70656e2e00000000006044820152606401610ae9565b600061191560085490565b9050601454826013546119289190612e13565b11156119765760405162461bcd60e51b815260206004820152601c60248201527f4d617820737570706c7920686173206265656e20636c61696d656421000000006044820152606401610ae9565b600061198184611a37565b6001600160a01b038516600090815260196020526040902054909150816119a88583612e13565b11156119c65760405162461bcd60e51b8152600401610ae990612ead565b60015b848111611a2f57601380549060006119e083612e2b565b90915550506001600160a01b0386166000908152601960205260408120805491611a0983612e2b565b90915550611a1d905086610d958387612e13565b80611a2781612e2b565b9150506119c9565b505050505050565b6017546040516370a0823160e01b81526001600160a01b0383811660048301526000921690829082906370a082319060240160206040518083038186803b158015611a8157600080fd5b505afa158015611a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab99190612f64565b949350505050565b611acb3383611f67565b611ae75760405162461bcd60e51b8152600401610ae990612e46565b61148784848484612205565b60168181548110611b0357600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610b1b90612d8d565b6000818152600260205260409020546060906001600160a01b0316611ba95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ae9565b60155460ff16611c4557600d8054611bc090612d8d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bec90612d8d565b8015611c395780601f10611c0e57610100808354040283529160200191611c39565b820191906000526020600020905b815481529060010190602001808311611c1c57829003601f168201915b50505050509050919050565b6000611c4f612238565b90506000815111611c6f5760405180602001604052806000815250611c9d565b80611c7984612247565b600c604051602001611c8d93929190612f7d565b6040516020818303038152906040525b9392505050565b6017546040516370a0823160e01b81526001600160a01b0383811660048301526000921690829082906370a082319060240160206040518083038186803b158015611cee57600080fd5b505afa158015611d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d269190612f64565b905060008115611ab957506001949350505050565b600a546001600160a01b03163314611d655760405162461bcd60e51b8152600401610ae990612dc8565b805161164990600c90602084019061286d565b600a546001600160a01b03163314611da25760405162461bcd60e51b8152600401610ae990612dc8565b611dae601660006128f1565b610cad6016838361290f565b600a546001600160a01b03163314611de45760405162461bcd60e51b8152600401610ae990612dc8565b805161164990600d90602084019061286d565b600a546001600160a01b03163314611e215760405162461bcd60e51b8152600401610ae990612dc8565b6001600160a01b038116611e865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae9565b61106a81612345565b60006001600160e01b031982166380ac58cd60e01b1480611ec057506001600160e01b03198216635b5e139f60e01b145b806109dc57506301ffc9a760e01b6001600160e01b03198316146109dc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f148261164d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611649828260405180602001604052806000815250612397565b6000818152600260205260408120546001600160a01b0316611fe05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ae9565b6000611feb8361164d565b9050806001600160a01b0316846001600160a01b031614806120265750836001600160a01b031661201b84610a74565b6001600160a01b0316145b80611ab957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611ab9565b826001600160a01b031661206d8261164d565b6001600160a01b0316146120d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ae9565b6001600160a01b0382166121375760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ae9565b6121428383836123ca565b61214d600082611edf565b6001600160a01b0383166000908152600360205260408120805460019290612176908490613041565b90915550506001600160a01b03821660009081526003602052604081208054600192906121a4908490612e13565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61221084848461205a565b61221c84848484612482565b6114875760405162461bcd60e51b8152600401610ae990613058565b6060600b80546109f190612d8d565b60608161226b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612295578061227f81612e2b565b915061228e9050600a836130c0565b915061226f565b60008167ffffffffffffffff8111156122b0576122b0612b61565b6040519080825280601f01601f1916602001820160405280156122da576020820181803683370190505b5090505b8415611ab9576122ef600183613041565b91506122fc600a866130d4565b612307906030612e13565b60f81b81838151811061231c5761231c612e97565b60200101906001600160f81b031916908160001a90535061233e600a866130c0565b94506122de565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6123a1838361258f565b6123ae6000848484612482565b610cad5760405162461bcd60e51b8152600401610ae990613058565b6001600160a01b0383166124255761242081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612448565b816001600160a01b0316836001600160a01b0316146124485761244883826126dd565b6001600160a01b03821661245f57610cad8161277a565b826001600160a01b0316826001600160a01b031614610cad57610cad8282612829565b60006001600160a01b0384163b1561258457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124c69033908990889088906004016130e8565b602060405180830381600087803b1580156124e057600080fd5b505af1925050508015612510575060408051601f3d908101601f1916820190925261250d91810190613125565b60015b61256a573d80801561253e576040519150601f19603f3d011682016040523d82523d6000602084013e612543565b606091505b5080516125625760405162461bcd60e51b8152600401610ae990613058565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab9565b506001949350505050565b6001600160a01b0382166125e55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ae9565b6000818152600260205260409020546001600160a01b03161561264a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ae9565b612656600083836123ca565b6001600160a01b038216600090815260036020526040812080546001929061267f908490612e13565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016126ea846116d1565b6126f49190613041565b600083815260076020526040902054909150808214612747576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061278c90600190613041565b600083815260096020526040812054600880549394509092849081106127b4576127b4612e97565b9060005260206000200154905080600883815481106127d5576127d5612e97565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061280d5761280d613142565b6001900381819060005260206000200160009055905550505050565b6000612834836116d1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461287990612d8d565b90600052602060002090601f01602090048101928261289b57600085556128e1565b82601f106128b457805160ff19168380011785556128e1565b828001600101855582156128e1579182015b828111156128e15782518255916020019190600101906128c6565b506128ed929150612962565b5090565b508054600082559060005260206000209081019061106a9190612962565b8280548282559060005260206000209081019282156128e1579160200282015b828111156128e15781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061292f565b5b808211156128ed5760008155600101612963565b6001600160e01b03198116811461106a57600080fd5b60006020828403121561299f57600080fd5b8135611c9d81612977565b60005b838110156129c55781810151838201526020016129ad565b838111156114875750506000910152565b600081518084526129ee8160208601602086016129aa565b601f01601f19169290920160200192915050565b602081526000611c9d60208301846129d6565b600060208284031215612a2757600080fd5b5035919050565b80356001600160a01b0381168114612a4557600080fd5b919050565b60008060408385031215612a5d57600080fd5b612a6683612a2e565b946020939093013593505050565b60008060408385031215612a8757600080fd5b82359150612a9760208401612a2e565b90509250929050565b600060208284031215612ab257600080fd5b813563ffffffff81168114611c9d57600080fd5b600060208284031215612ad857600080fd5b611c9d82612a2e565b600080600060608486031215612af657600080fd5b612aff84612a2e565b9250612b0d60208501612a2e565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612b5557835183529284019291840191600101612b39565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612b9257612b92612b61565b604051601f8501601f19908116603f01168101908282118183101715612bba57612bba612b61565b81604052809350858152868686011115612bd357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612bff57600080fd5b813567ffffffffffffffff811115612c1657600080fd5b8201601f81018413612c2757600080fd5b611ab984823560208401612b77565b60008060408385031215612c4957600080fd5b612c5283612a2e565b915060208301358015158114612c6757600080fd5b809150509250929050565b60008060008060808587031215612c8857600080fd5b612c9185612a2e565b9350612c9f60208601612a2e565b925060408501359150606085013567ffffffffffffffff811115612cc257600080fd5b8501601f81018713612cd357600080fd5b612ce287823560208401612b77565b91505092959194509250565b60008060408385031215612d0157600080fd5b612d0a83612a2e565b9150612a9760208401612a2e565b60008060208385031215612d2b57600080fd5b823567ffffffffffffffff80821115612d4357600080fd5b818501915085601f830112612d5757600080fd5b813581811115612d6657600080fd5b8660208260051b8501011115612d7b57600080fd5b60209290920196919550909350505050565b600181811c90821680612da157607f821691505b60208210811415612dc257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e2657612e26612dfd565b500190565b6000600019821415612e3f57612e3f612dfd565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60208082526030908201527f596f7527766520616c7265616479206d696e74656420746865206d6178696d7560408201526f1b481c1c995cd85b1948185b5bdd5b9d60821b606082015260800190565b6000816000190483118215151615612f1757612f17612dfd565b500290565b60208082526028908201527f4e6f7420656e6f7567682045544820737570706c69656420666f72207472616e60408201526773616374696f6e2160c01b606082015260800190565b600060208284031215612f7657600080fd5b5051919050565b600084516020612f908285838a016129aa565b855191840191612fa38184848a016129aa565b8554920191600090600181811c9080831680612fc057607f831692505b858310811415612fde57634e487b7160e01b85526022600452602485fd5b808015612ff2576001811461300357613030565b60ff19851688528388019550613030565b60008b81526020902060005b858110156130285781548a82015290840190880161300f565b505083880195505b50939b9a5050505050505050505050565b60008282101561305357613053612dfd565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826130cf576130cf6130aa565b500490565b6000826130e3576130e36130aa565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061311b908301846129d6565b9695505050505050565b60006020828403121561313757600080fd5b8151611c9d81612977565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205a75911f3bda215fbd6b000ef49f64c00de24eeea6cb5f412a26943745d991f464736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000124f434520547269636b206f7220547265617400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003546f540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6f63652d747269636b2d6f722d74726561742e76657263656c2e6170702f6170692f756e72657665616c6564000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6f63652d747269636b2d6f722d74726561742e76657263656c2e6170702f6170692f756e72657665616c6564000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): OCE Trick or Treat
Arg [1] : _symbol (string): ToT
Arg [2] : _initBaseURI (string): https://oce-trick-or-treat.vercel.app/api/unrevealed
Arg [3] : _initNotRevealedUri (string): https://oce-trick-or-treat.vercel.app/api/unrevealed

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 4f434520547269636b206f722054726561740000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 546f540000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [9] : 68747470733a2f2f6f63652d747269636b2d6f722d74726561742e7665726365
Arg [10] : 6c2e6170702f6170692f756e72657665616c6564000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [12] : 68747470733a2f2f6f63652d747269636b2d6f722d74726561742e7665726365
Arg [13] : 6c2e6170702f6170692f756e72657665616c6564000000000000000000000000


Deployed Bytecode Sourcemap

43195:7263:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34433:224;;;;;;;;;;-1:-1:-1;34433:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34433:224:0;;;;;;;;22331:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23890:221::-;;;;;;;;;;-1:-1:-1;23890:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23890:221:0;1528:203:1;43373:28:0;;;;;;;;;;;;;:::i;23413:411::-;;;;;;;;;;-1:-1:-1;23413:411:0;;;;;:::i;:::-;;:::i;:::-;;43564:33;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;43564:33:0;2173:177:1;47551:264:0;;;;;;;;;;-1:-1:-1;47551:264:0;;;;;:::i;:::-;;:::i;50125:96::-;;;;;;;;;;-1:-1:-1;50125:96:0;;;;;:::i;:::-;;:::i;49188:112::-;;;;;;;;;;-1:-1:-1;49188:112:0;;;;;:::i;:::-;;:::i;43915:27::-;;;;;;;;;;-1:-1:-1;43915:27:0;;;;-1:-1:-1;;;43915:27:0;;;;;;;;;3069:10:1;3057:23;;;3039:42;;3027:2;3012:18;43915:27:0;2895:192:1;35073:113:0;;;;;;;;;;-1:-1:-1;35161:10:0;:17;35073:113;;43952:55;;;;;;;;;;-1:-1:-1;43952:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;44012:54;;;;;;;;;;-1:-1:-1;44012:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;24780:339;;;;;;;;;;-1:-1:-1;24780:339:0;;;;;:::i;:::-;;:::i;43637:31::-;;;;;;;;;;;;;;;;49772:122;;;;;;;;;;-1:-1:-1;49772:122:0;;;;;:::i;:::-;;:::i;34741:256::-;;;;;;;;;;-1:-1:-1;34741:256:0;;;;;:::i;:::-;;:::i;47866:239::-;;;;;;;;;;-1:-1:-1;47866:239:0;;;;;:::i;:::-;;:::i;50264:191::-;;;:::i;44473:1557::-;;;;;;:::i;:::-;;:::i;25190:185::-;;;;;;;;;;-1:-1:-1;25190:185:0;;;;;:::i;:::-;;:::i;48158:333::-;;;;;;;;;;-1:-1:-1;48158:333:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49058:91::-;;;;;;;;;;-1:-1:-1;49058:91:0;;;;;:::i;:::-;;:::i;43754:69::-;;;;;;;;;;-1:-1:-1;43754:69:0;;;;-1:-1:-1;;;;;43754:69:0;;;35263:233;;;;;;;;;;-1:-1:-1;35263:233:0;;;;;:::i;:::-;;:::i;43673:30::-;;;;;;;;;;-1:-1:-1;43673:30:0;;;;;;;;49343:98;;;;;;;;;;-1:-1:-1;49343:98:0;;;;;:::i;:::-;;:::i;22025:239::-;;;;;;;;;;-1:-1:-1;22025:239:0;;;;;:::i;:::-;;:::i;43310:21::-;;;;;;;;;;;;;:::i;44071:40::-;;;;;;;;;;-1:-1:-1;44071:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21755:208;;;;;;;;;;-1:-1:-1;21755:208:0;;;;;:::i;:::-;;:::i;42222:96::-;;;;;;;;;;;;;:::i;43527:32::-;;;;;;;;;;;;;;;;43486:36;;;;;;;;;;;;;;;;41571:87;;;;;;;;;;-1:-1:-1;41644:6:0;;-1:-1:-1;;;;;41644:6:0;41571:87;;22500:104;;;;;;;;;;;;;:::i;24183:295::-;;;;;;;;;;-1:-1:-1;24183:295:0;;;;;:::i;:::-;;:::i;48955:69::-;;;;;;;;;;;;;:::i;43406:39::-;;;;;;;;;;;;;;;;46066:805;;;;;;;;;;-1:-1:-1;46066:805:0;;;;;:::i;:::-;;:::i;47241:246::-;;;;;;;;;;-1:-1:-1;47241:246:0;;;;;:::i;:::-;;:::i;25446:328::-;;;;;;;;;;-1:-1:-1;25446:328:0;;;;;:::i;:::-;;:::i;43712:37::-;;;;;;;;;;-1:-1:-1;43712:37:0;;;;;:::i;:::-;;:::i;43336:32::-;;;;;;;;;;;;;:::i;48497:435::-;;;;;;;;;;-1:-1:-1;48497:435:0;;;;;:::i;:::-;;:::i;46877:358::-;;;;;;;;;;-1:-1:-1;46877:358:0;;;;;:::i;:::-;;:::i;43450:31::-;;;;;;;;;;;;;;;;49487:122;;;;;;;;;;-1:-1:-1;49487:122:0;;;;;:::i;:::-;;:::i;24549:164::-;;;;;;;;;;-1:-1:-1;24549:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24670:25:0;;;24646:4;24670:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24549:164;49937:144;;;;;;;;;;-1:-1:-1;49937:144:0;;;;;:::i;:::-;;:::i;49646:120::-;;;;;;;;;;-1:-1:-1;49646:120:0;;;;;:::i;:::-;;:::i;42473:192::-;;;;;;;;;;-1:-1:-1;42473:192:0;;;;;:::i;:::-;;:::i;43602:30::-;;;;;;;;;;;;;;;;34433:224;34535:4;-1:-1:-1;;;;;;34559:50:0;;-1:-1:-1;;;34559:50:0;;:90;;;34613:36;34637:11;34613:23;:36::i;:::-;34552:97;34433:224;-1:-1:-1;;34433:224:0:o;22331:100::-;22385:13;22418:5;22411:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22331:100;:::o;23890:221::-;23966:7;27373:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27373:16:0;23986:73;;;;-1:-1:-1;;;23986:73:0;;7974:2:1;23986:73:0;;;7956:21:1;8013:2;7993:18;;;7986:30;8052:34;8032:18;;;8025:62;-1:-1:-1;;;8103:18:1;;;8096:42;8155:19;;23986:73:0;;;;;;;;;-1:-1:-1;24079:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24079:24:0;;23890:221::o;43373:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23413:411::-;23494:13;23510:23;23525:7;23510:14;:23::i;:::-;23494:39;;23558:5;-1:-1:-1;;;;;23552:11:0;:2;-1:-1:-1;;;;;23552:11:0;;;23544:57;;;;-1:-1:-1;;;23544:57:0;;8387:2:1;23544:57:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:34;8445:18;;;8438:62;-1:-1:-1;;;8516:18:1;;;8509:31;8557:19;;23544:57:0;8185:397:1;23544:57:0;19940:10;-1:-1:-1;;;;;23636:21:0;;;;:62;;-1:-1:-1;23661:37:0;23678:5;19940:10;24549:164;:::i;23661:37::-;23614:168;;;;-1:-1:-1;;;23614:168:0;;8789:2:1;23614:168:0;;;8771:21:1;8828:2;8808:18;;;8801:30;8867:34;8847:18;;;8840:62;8938:26;8918:18;;;8911:54;8982:19;;23614:168:0;8587:420:1;23614:168:0;23795:21;23804:2;23808:7;23795:8;:21::i;:::-;23483:341;23413:411;;:::o;47551:264::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;47633:1:::1;47627:3;:7;47619:35;;;::::0;-1:-1:-1;;;47619:35:0;;9575:2:1;47619:35:0::1;::::0;::::1;9557:21:1::0;9614:2;9594:18;;;9587:30;-1:-1:-1;;;9633:18:1;;;9626:45;9688:18;;47619:35:0::1;9373:339:1::0;47619:35:0::1;47692:9;;47685:3;47669:13;35161:10:::0;:17;;35073:113;47669:13:::1;:19;;;;:::i;:::-;:32;;47661:57;;;::::0;-1:-1:-1;;;47661:57:0;;10184:2:1;47661:57:0::1;::::0;::::1;10166:21:1::0;10223:2;10203:18;;;10196:30;-1:-1:-1;;;10242:18:1;;;10235:42;10294:18;;47661:57:0::1;9982:336:1::0;47661:57:0::1;47730:9;47725:85;47749:3;47745:1;:7;47725:85;;;47770:32;47780:2;47784:13;35161:10:::0;:17;;35073:113;47784:13:::1;:17;::::0;47800:1:::1;47784:17;:::i;:::-;47770:9;:32::i;:::-;47754:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47725:85;;50125:96:::0;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;50193:9:::1;:22:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;50193:22:0::1;-1:-1:-1::0;;;;50193:22:0;;::::1;::::0;;;::::1;::::0;;50125:96::o;49188:112::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;49264:17:::1;:30:::0;49188:112::o;24780:339::-;24975:41;19940:10;25008:7;24975:18;:41::i;:::-;24967:103;;;;-1:-1:-1;;;24967:103:0;;;;;;;:::i;:::-;25083:28;25093:4;25099:2;25103:7;25083:9;:28::i;49772:122::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;49858:9:::1;:30:::0;;-1:-1:-1;;;;;;49858:30:0::1;-1:-1:-1::0;;;;;49858:30:0;;;::::1;::::0;;;::::1;::::0;;49772:122::o;34741:256::-;34838:7;34874:23;34891:5;34874:16;:23::i;:::-;34866:5;:31;34858:87;;;;-1:-1:-1;;;34858:87:0;;11083:2:1;34858:87:0;;;11065:21:1;11122:2;11102:18;;;11095:30;11161:34;11141:18;;;11134:62;-1:-1:-1;;;11212:18:1;;;11205:41;11263:19;;34858:87:0;10881:407:1;34858:87:0;-1:-1:-1;;;;;;34963:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34741:256::o;47866:239::-;47925:4;;47938:143;47959:20;:27;47955:31;;47938:143;;;48033:5;-1:-1:-1;;;;;48006:32:0;:20;48027:1;48006:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;48006:23:0;:32;48002:72;;;-1:-1:-1;48060:4:0;;47866:239;-1:-1:-1;;47866:239:0:o;48002:72::-;47988:3;;;;:::i;:::-;;;;47938:143;;;-1:-1:-1;48094:5:0;;47866:239;-1:-1:-1;;47866:239:0:o;50264:191::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;50335:58:::1;::::0;50317:12:::1;::::0;50343:10:::1;::::0;50367:21:::1;::::0;50317:12;50335:58;50317:12;50335:58;50367:21;50343:10;50335:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50316:77;;;50408:7;50400:49;;;::::0;-1:-1:-1;;;50400:49:0;;11837:2:1;50400:49:0::1;::::0;::::1;11819:21:1::0;11876:2;11856:18;;;11849:30;11915:31;11895:18;;;11888:59;11964:18;;50400:49:0::1;11635:353:1::0;50400:49:0::1;50309:146;50264:191::o:0;44473:1557::-;44555:9;;-1:-1:-1;;;44555:9:0;;;;44568:1;44555:14;;:32;;-1:-1:-1;44573:9:0;;-1:-1:-1;;;44573:9:0;;;;44586:1;44573:14;44555:32;:50;;;-1:-1:-1;44591:9:0;;-1:-1:-1;;;44591:9:0;;;;44604:1;44591:14;44555:50;44547:83;;;;-1:-1:-1;;;44547:83:0;;12195:2:1;44547:83:0;;;12177:21:1;12234:2;12214:18;;;12207:30;-1:-1:-1;;;12253:18:1;;;12246:50;12313:18;;44547:83:0;11993:344:1;44547:83:0;44641:14;44658:13;35161:10;:17;;35073:113;44658:13;44641:30;;44702:1;44688:11;:15;44680:66;;;;-1:-1:-1;;;44680:66:0;;12544:2:1;44680:66:0;;;12526:21:1;12583:2;12563:18;;;12556:30;12622:34;12602:18;;;12595:62;-1:-1:-1;;;12673:18:1;;;12666:36;12719:19;;44680:66:0;12342:402:1;44680:66:0;44759:9;;-1:-1:-1;;;44759:9:0;;;;44772:1;44759:14;44755:885;;;44865:11;;44850;44834:13;;:27;;;;:::i;:::-;:42;;44826:93;;;;-1:-1:-1;;;44826:93:0;;12951:2:1;44826:93:0;;;12933:21:1;12990:2;12970:18;;;12963:30;13029:34;13009:18;;;13002:62;-1:-1:-1;;;13080:18:1;;;13073:36;13126:19;;44826:93:0;12749:402:1;44826:93:0;-1:-1:-1;;;;;44957:29:0;;44930:24;44957:29;;;:20;:29;;;;;;45039:17;;45005:30;44957:29;45005:11;:30;:::i;:::-;:51;;44997:112;;;;-1:-1:-1;;;44997:112:0;;;;;;;:::i;:::-;44775:344;44755:885;;;45128:9;;-1:-1:-1;;;45128:9:0;;;;45141:1;45128:14;45125:515;;;45256:25;45270:10;45256:13;:25::i;:::-;:46;;;;45285:17;45294:7;45285:8;:17::i;:::-;45253:378;;;45350:11;45336;;:25;;;;:::i;:::-;45323:9;:38;;45315:91;;;;-1:-1:-1;;;45315:91:0;;;;;;;:::i;:::-;45449:9;;45425:20;45434:11;45425:6;:20;:::i;:::-;:33;;45417:94;;;;-1:-1:-1;;;45417:94:0;;14357:2:1;45417:94:0;;;14339:21:1;14396:2;14376:18;;;14369:30;14435:34;14415:18;;;14408:62;-1:-1:-1;;;14486:18:1;;;14479:46;14542:19;;45417:94:0;14155:412:1;45417:94:0;45253:378;;;45546:25;45560:10;45546:13;:25::i;:::-;45538:83;;;;-1:-1:-1;;;45538:83:0;;14774:2:1;45538:83:0;;;14756:21:1;14813:2;14793:18;;;14786:30;14852:34;14832:18;;;14825:62;-1:-1:-1;;;14903:18:1;;;14896:43;14956:19;;45538:83:0;14572:409:1;45538:83:0;45683:11;45669;;:25;;;;:::i;:::-;45656:9;:38;;45648:91;;;;-1:-1:-1;;;45648:91:0;;;;;;;:::i;:::-;45778:9;;45754:20;45763:11;45754:6;:20;:::i;:::-;:33;;45746:98;;;;-1:-1:-1;;;45746:98:0;;15188:2:1;45746:98:0;;;15170:21:1;15227:2;15207:18;;;15200:30;15266:34;15246:18;;;15239:62;-1:-1:-1;;;15317:18:1;;;15310:50;15377:19;;45746:98:0;14986:416:1;45746:98:0;45882:1;45865:154;45890:11;45885:1;:16;45865:154;;45917:13;:15;;;:13;:15;;;:::i;:::-;;;;-1:-1:-1;;;;;;;45941:29:0;;;;;;:20;:29;;;;;:31;;;;;;:::i;:::-;;;;-1:-1:-1;45981:30:0;;-1:-1:-1;45991:7:0;46000:10;46009:1;46000:6;:10;:::i;45981:30::-;45903:3;;;;:::i;:::-;;;;45865:154;;;;44540:1490;44473:1557;;:::o;25190:185::-;25328:39;25345:4;25351:2;25355:7;25328:39;;;;;;;;;;;;:16;:39::i;48158:333::-;48218:16;48246:23;48272:17;48282:6;48272:9;:17::i;:::-;48246:43;;48296:25;48338:15;48324:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48324:30:0;;48296:58;;48366:9;48361:103;48381:15;48377:1;:19;48361:103;;;48426:30;48446:6;48454:1;48426:19;:30::i;:::-;48412:8;48421:1;48412:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48398:3;;;;:::i;:::-;;;;48361:103;;;-1:-1:-1;48477:8:0;48158:333;-1:-1:-1;;;48158:333:0:o;49058:91::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;49120:11:::1;:23:::0;49058:91::o;35263:233::-;35338:7;35374:30;35161:10;:17;;35073:113;35374:30;35366:5;:38;35358:95;;;;-1:-1:-1;;;35358:95:0;;15609:2:1;35358:95:0;;;15591:21:1;15648:2;15628:18;;;15621:30;15687:34;15667:18;;;15660:62;-1:-1:-1;;;15738:18:1;;;15731:42;15790:19;;35358:95:0;15407:408:1;35358:95:0;35471:10;35482:5;35471:17;;;;;;;;:::i;:::-;;;;;;;;;35464:24;;35263:233;;;:::o;49343:98::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;49414:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49343:98:::0;:::o;22025:239::-;22097:7;22133:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22133:16:0;22168:19;22160:73;;;;-1:-1:-1;;;22160:73:0;;16022:2:1;22160:73:0;;;16004:21:1;16061:2;16041:18;;;16034:30;16100:34;16080:18;;;16073:62;-1:-1:-1;;;16151:18:1;;;16144:39;16200:19;;22160:73:0;15820:405:1;43310:21:0;;;;;;;:::i;21755:208::-;21827:7;-1:-1:-1;;;;;21855:19:0;;21847:74;;;;-1:-1:-1;;;21847:74:0;;16432:2:1;21847:74:0;;;16414:21:1;16471:2;16451:18;;;16444:30;16510:34;16490:18;;;16483:62;-1:-1:-1;;;16561:18:1;;;16554:40;16611:19;;21847:74:0;16230:406:1;21847:74:0;-1:-1:-1;;;;;;21939:16:0;;;;;:9;:16;;;;;;;21755:208::o;42222:96::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;42222:96::o;22500:104::-;22556:13;22589:7;22582:14;;;;;:::i;24183:295::-;-1:-1:-1;;;;;24286:24:0;;19940:10;24286:24;;24278:62;;;;-1:-1:-1;;;24278:62:0;;16843:2:1;24278:62:0;;;16825:21:1;16882:2;16862:18;;;16855:30;16921:27;16901:18;;;16894:55;16966:18;;24278:62:0;16641:349:1;24278:62:0;19940:10;24353:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24353:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24353:53:0;;;;;;;;;;24422:48;;540:41:1;;;24353:42:0;;19940:10;24422:48;;513:18:1;24422:48:0;;;;;;;24183:295;;:::o;48955:69::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;49001:10:::1;:17:::0;;-1:-1:-1;;49001:17:0::1;49014:4;49001:17;::::0;;48955:69::o;46066:805::-;46188:9;;-1:-1:-1;;;46188:9:0;;;;46201:1;46188:14;;:32;;-1:-1:-1;46206:9:0;;-1:-1:-1;;;46206:9:0;;;;46219:1;46206:14;46188:32;46180:72;;;;-1:-1:-1;;;46180:72:0;;17197:2:1;46180:72:0;;;17179:21:1;17236:2;17216:18;;;17209:30;17275:29;17255:18;;;17248:57;17322:18;;46180:72:0;16995:351:1;46180:72:0;46271:14;46288:13;35161:10;:17;;35073:113;46288:13;46271:30;;46355:9;;46340:11;46326;;:25;;;;:::i;:::-;:38;;46318:79;;;;-1:-1:-1;;;46318:79:0;;17553:2:1;46318:79:0;;;17535:21:1;17592:2;17572:18;;;17565:30;17631;17611:18;;;17604:58;17679:18;;46318:79:0;17351:352:1;46318:79:0;46463:21;46487:22;46501:7;46487:13;:22::i;:::-;-1:-1:-1;;;;;46544:28:0;;46518:23;46544:28;;;:19;:28;;;;;;46463:46;;-1:-1:-1;46463:46:0;46589:29;46607:11;46544:28;46589:29;:::i;:::-;:46;;46581:107;;;;-1:-1:-1;;;46581:107:0;;;;;;;:::i;:::-;46724:1;46707:159;46732:11;46727:1;:16;46707:159;;46761:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;;;;;;;46785:28:0;;;;;;:19;:28;;;;;:30;;;;;;:::i;:::-;;;;-1:-1:-1;46826:30:0;;-1:-1:-1;46836:7:0;46845:10;46854:1;46845:6;:10;:::i;46826:30::-;46745:3;;;;:::i;:::-;;;;46707:159;;;;46126:745;;;46066:805;;:::o;47241:246::-;47385:9;;47425:30;;-1:-1:-1;;;47425:30:0;;-1:-1:-1;;;;;1692:32:1;;;47425:30:0;;;1674:51:1;47302:26:0;;47385:9;;47302:26;;47385:9;;47425:21;;1647:18:1;;47425:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47402:53;47241:246;-1:-1:-1;;;;47241:246:0:o;25446:328::-;25621:41;19940:10;25654:7;25621:18;:41::i;:::-;25613:103;;;;-1:-1:-1;;;25613:103:0;;;;;;;:::i;:::-;25727:39;25741:4;25747:2;25751:7;25760:5;25727:13;:39::i;43712:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43712:37:0;;-1:-1:-1;43712:37:0;:::o;43336:32::-;;;;;;;:::i;48497:435::-;27349:4;27373:16;;;:7;:16;;;;;;48570:13;;-1:-1:-1;;;;;27373:16:0;48595:76;;;;-1:-1:-1;;;48595:76:0;;18099:2:1;48595:76:0;;;18081:21:1;18138:2;18118:18;;;18111:30;18177:34;18157:18;;;18150:62;-1:-1:-1;;;18228:18:1;;;18221:45;18283:19;;48595:76:0;17897:411:1;48595:76:0;48687:10;;;;48684:64;;48726:14;48719:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48497:435;;;:::o;48684:64::-;48756:28;48787:10;:8;:10::i;:::-;48756:41;;48842:1;48817:14;48811:28;:32;:115;;;;;;;;;;;;;;;;;48870:14;48886:18;:7;:16;:18::i;:::-;48906:13;48853:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48811:115;48804:122;48497:435;-1:-1:-1;;;48497:435:0:o;46877:358::-;47008:9;;47054:30;;-1:-1:-1;;;47054:30:0;;-1:-1:-1;;;;;1692:32:1;;;47054:30:0;;;1674:51:1;46933:18:0;;47008:9;;46933:18;;47008:9;;47054:21;;1647:18:1;;47054:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47025:59;-1:-1:-1;47097:19:0;47134:22;;47131:65;;-1:-1:-1;47184:4:0;47215:14;46877:358;-1:-1:-1;;;;46877:358:0:o;49487:122::-;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;49570:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49937:144::-:0;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;50012:27:::1;50019:20;;50012:27;:::i;:::-;50046:29;:20;50069:6:::0;;50046:29:::1;:::i;49646:120::-:0;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;49728:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42473:192::-:0;41644:6;;-1:-1:-1;;;;;41644:6:0;19940:10;41791:23;41783:68;;;;-1:-1:-1;;;41783:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42562:22:0;::::1;42554:73;;;::::0;-1:-1:-1;;;42554:73:0;;20173:2:1;42554:73:0::1;::::0;::::1;20155:21:1::0;20212:2;20192:18;;;20185:30;20251:34;20231:18;;;20224:62;-1:-1:-1;;;20302:18:1;;;20295:36;20348:19;;42554:73:0::1;19971:402:1::0;42554:73:0::1;42638:19;42648:8;42638:9;:19::i;21386:305::-:0;21488:4;-1:-1:-1;;;;;;21525:40:0;;-1:-1:-1;;;21525:40:0;;:105;;-1:-1:-1;;;;;;;21582:48:0;;-1:-1:-1;;;21582:48:0;21525:105;:158;;;-1:-1:-1;;;;;;;;;;7483:40:0;;;21647:36;7374:157;31266:174;31341:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31341:29:0;-1:-1:-1;;;;;31341:29:0;;;;;;;;:24;;31395:23;31341:24;31395:14;:23::i;:::-;-1:-1:-1;;;;;31386:46:0;;;;;;;;;;;31266:174;;:::o;28268:110::-;28344:26;28354:2;28358:7;28344:26;;;;;;;;;;;;:9;:26::i;27578:348::-;27671:4;27373:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27373:16:0;27688:73;;;;-1:-1:-1;;;27688:73:0;;20580:2:1;27688:73:0;;;20562:21:1;20619:2;20599:18;;;20592:30;20658:34;20638:18;;;20631:62;-1:-1:-1;;;20709:18:1;;;20702:42;20761:19;;27688:73:0;20378:408:1;27688:73:0;27772:13;27788:23;27803:7;27788:14;:23::i;:::-;27772:39;;27841:5;-1:-1:-1;;;;;27830:16:0;:7;-1:-1:-1;;;;;27830:16:0;;:51;;;;27874:7;-1:-1:-1;;;;;27850:31:0;:20;27862:7;27850:11;:20::i;:::-;-1:-1:-1;;;;;27850:31:0;;27830:51;:87;;;-1:-1:-1;;;;;;24670:25:0;;;24646:4;24670:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27885:32;24549:164;30570:578;30729:4;-1:-1:-1;;;;;30702:31:0;:23;30717:7;30702:14;:23::i;:::-;-1:-1:-1;;;;;30702:31:0;;30694:85;;;;-1:-1:-1;;;30694:85:0;;20993:2:1;30694:85:0;;;20975:21:1;21032:2;21012:18;;;21005:30;21071:34;21051:18;;;21044:62;-1:-1:-1;;;21122:18:1;;;21115:39;21171:19;;30694:85:0;20791:405:1;30694:85:0;-1:-1:-1;;;;;30798:16:0;;30790:65;;;;-1:-1:-1;;;30790:65:0;;21403:2:1;30790:65:0;;;21385:21:1;21442:2;21422:18;;;21415:30;21481:34;21461:18;;;21454:62;-1:-1:-1;;;21532:18:1;;;21525:34;21576:19;;30790:65:0;21201:400:1;30790:65:0;30868:39;30889:4;30895:2;30899:7;30868:20;:39::i;:::-;30972:29;30989:1;30993:7;30972:8;:29::i;:::-;-1:-1:-1;;;;;31014:15:0;;;;;;:9;:15;;;;;:20;;31033:1;;31014:15;:20;;31033:1;;31014:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31045:13:0;;;;;;:9;:13;;;;;:18;;31062:1;;31045:13;:18;;31062:1;;31045:18;:::i;:::-;;;;-1:-1:-1;;31074:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31074:21:0;-1:-1:-1;;;;;31074:21:0;;;;;;;;;31113:27;;31074:16;;31113:27;;;;;;;30570:578;;;:::o;26656:315::-;26813:28;26823:4;26829:2;26833:7;26813:9;:28::i;:::-;26860:48;26883:4;26889:2;26893:7;26902:5;26860:22;:48::i;:::-;26852:111;;;;-1:-1:-1;;;26852:111:0;;;;;;;:::i;44349:102::-;44409:13;44438:7;44431:14;;;;;:::i;7847:723::-;7903:13;8124:10;8120:53;;-1:-1:-1;;8151:10:0;;;;;;;;;;;;-1:-1:-1;;;8151:10:0;;;;;7847:723::o;8120:53::-;8198:5;8183:12;8239:78;8246:9;;8239:78;;8272:8;;;;:::i;:::-;;-1:-1:-1;8295:10:0;;-1:-1:-1;8303:2:0;8295:10;;:::i;:::-;;;8239:78;;;8327:19;8359:6;8349:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8349:17:0;;8327:39;;8377:154;8384:10;;8377:154;;8411:11;8421:1;8411:11;;:::i;:::-;;-1:-1:-1;8480:10:0;8488:2;8480:5;:10;:::i;:::-;8467:24;;:2;:24;:::i;:::-;8454:39;;8437:6;8444;8437:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8437:56:0;;;;;;;;-1:-1:-1;8508:11:0;8517:2;8508:11;;:::i;:::-;;;8377:154;;42673:173;42748:6;;;-1:-1:-1;;;;;42765:17:0;;;-1:-1:-1;;;;;;42765:17:0;;;;;;;42798:40;;42748:6;;;42765:17;42748:6;;42798:40;;42729:16;;42798:40;42718:128;42673:173;:::o;28605:321::-;28735:18;28741:2;28745:7;28735:5;:18::i;:::-;28786:54;28817:1;28821:2;28825:7;28834:5;28786:22;:54::i;:::-;28764:154;;;;-1:-1:-1;;;28764:154:0;;;;;;;:::i;36109:589::-;-1:-1:-1;;;;;36315:18:0;;36311:187;;36350:40;36382:7;37525:10;:17;;37498:24;;;;:15;:24;;;;;:44;;;37553:24;;;;;;;;;;;;37421:164;36350:40;36311:187;;;36420:2;-1:-1:-1;;;;;36412:10:0;:4;-1:-1:-1;;;;;36412:10:0;;36408:90;;36439:47;36472:4;36478:7;36439:32;:47::i;:::-;-1:-1:-1;;;;;36512:16:0;;36508:183;;36545:45;36582:7;36545:36;:45::i;36508:183::-;36618:4;-1:-1:-1;;;;;36612:10:0;:2;-1:-1:-1;;;;;36612:10:0;;36608:83;;36639:40;36667:2;36671:7;36639:27;:40::i;32005:799::-;32160:4;-1:-1:-1;;;;;32181:13:0;;10693:20;10741:8;32177:620;;32217:72;;-1:-1:-1;;;32217:72:0;;-1:-1:-1;;;;;32217:36:0;;;;;:72;;19940:10;;32268:4;;32274:7;;32283:5;;32217:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32217:72:0;;;;;;;;-1:-1:-1;;32217:72:0;;;;;;;;;;;;:::i;:::-;;;32213:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32459:13:0;;32455:272;;32502:60;;-1:-1:-1;;;32502:60:0;;;;;;;:::i;32455:272::-;32677:6;32671:13;32662:6;32658:2;32654:15;32647:38;32213:529;-1:-1:-1;;;;;;32340:51:0;-1:-1:-1;;;32340:51:0;;-1:-1:-1;32333:58:0;;32177:620;-1:-1:-1;32781:4:0;32005:799;;;;;;:::o;29262:382::-;-1:-1:-1;;;;;29342:16:0;;29334:61;;;;-1:-1:-1;;;29334:61:0;;23479:2:1;29334:61:0;;;23461:21:1;;;23498:18;;;23491:30;23557:34;23537:18;;;23530:62;23609:18;;29334:61:0;23277:356:1;29334:61:0;27349:4;27373:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27373:16:0;:30;29406:58;;;;-1:-1:-1;;;29406:58:0;;23840:2:1;29406:58:0;;;23822:21:1;23879:2;23859:18;;;23852:30;23918;23898:18;;;23891:58;23966:18;;29406:58:0;23638:352:1;29406:58:0;29477:45;29506:1;29510:2;29514:7;29477:20;:45::i;:::-;-1:-1:-1;;;;;29535:13:0;;;;;;:9;:13;;;;;:18;;29552:1;;29535:13;:18;;29552:1;;29535:18;:::i;:::-;;;;-1:-1:-1;;29564:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29564:21:0;-1:-1:-1;;;;;29564:21:0;;;;;;;;29603:33;;29564:16;;;29603:33;;29564:16;;29603:33;29262:382;;:::o;38212:988::-;38478:22;38528:1;38503:22;38520:4;38503:16;:22::i;:::-;:26;;;;:::i;:::-;38540:18;38561:26;;;:17;:26;;;;;;38478:51;;-1:-1:-1;38694:28:0;;;38690:328;;-1:-1:-1;;;;;38761:18:0;;38739:19;38761:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38812:30;;;;;;:44;;;38929:30;;:17;:30;;;;;:43;;;38690:328;-1:-1:-1;39114:26:0;;;;:17;:26;;;;;;;;39107:33;;;-1:-1:-1;;;;;39158:18:0;;;;;:12;:18;;;;;:34;;;;;;;39151:41;38212:988::o;39495:1079::-;39773:10;:17;39748:22;;39773:21;;39793:1;;39773:21;:::i;:::-;39805:18;39826:24;;;:15;:24;;;;;;40199:10;:26;;39748:46;;-1:-1:-1;39826:24:0;;39748:46;;40199:26;;;;;;:::i;:::-;;;;;;;;;40177:48;;40263:11;40238:10;40249;40238:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40343:28;;;:15;:28;;;;;;;:41;;;40515:24;;;;;40508:31;40550:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39566:1008;;;39495:1079;:::o;36999:221::-;37084:14;37101:20;37118:2;37101:16;:20::i;:::-;-1:-1:-1;;;;;37132:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37177:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36999:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:::-;2423:6;2431;2484:2;2472:9;2463:7;2459:23;2455:32;2452:52;;;2500:1;2497;2490:12;2452:52;2536:9;2523:23;2513:33;;2565:38;2599:2;2588:9;2584:18;2565:38;:::i;:::-;2555:48;;2355:254;;;;;:::o;2614:276::-;2672:6;2725:2;2713:9;2704:7;2700:23;2696:32;2693:52;;;2741:1;2738;2731:12;2693:52;2780:9;2767:23;2830:10;2823:5;2819:22;2812:5;2809:33;2799:61;;2856:1;2853;2846:12;3092:186;3151:6;3204:2;3192:9;3183:7;3179:23;3175:32;3172:52;;;3220:1;3217;3210:12;3172:52;3243:29;3262:9;3243:29;:::i;3283:328::-;3360:6;3368;3376;3429:2;3417:9;3408:7;3404:23;3400:32;3397:52;;;3445:1;3442;3435:12;3397:52;3468:29;3487:9;3468:29;:::i;:::-;3458:39;;3516:38;3550:2;3539:9;3535:18;3516:38;:::i;:::-;3506:48;;3601:2;3590:9;3586:18;3573:32;3563:42;;3283:328;;;;;:::o;3616:632::-;3787:2;3839:21;;;3909:13;;3812:18;;;3931:22;;;3758:4;;3787:2;4010:15;;;;3984:2;3969:18;;;3758:4;4053:169;4067:6;4064:1;4061:13;4053:169;;;4128:13;;4116:26;;4197:15;;;;4162:12;;;;4089:1;4082:9;4053:169;;;-1:-1:-1;4239:3:1;;3616:632;-1:-1:-1;;;;;;3616:632:1:o;4253:127::-;4314:10;4309:3;4305:20;4302:1;4295:31;4345:4;4342:1;4335:15;4369:4;4366:1;4359:15;4385:632;4450:5;4480:18;4521:2;4513:6;4510:14;4507:40;;;4527:18;;:::i;:::-;4602:2;4596:9;4570:2;4656:15;;-1:-1:-1;;4652:24:1;;;4678:2;4648:33;4644:42;4632:55;;;4702:18;;;4722:22;;;4699:46;4696:72;;;4748:18;;:::i;:::-;4788:10;4784:2;4777:22;4817:6;4808:15;;4847:6;4839;4832:22;4887:3;4878:6;4873:3;4869:16;4866:25;4863:45;;;4904:1;4901;4894:12;4863:45;4954:6;4949:3;4942:4;4934:6;4930:17;4917:44;5009:1;5002:4;4993:6;4985;4981:19;4977:30;4970:41;;;;4385:632;;;;;:::o;5022:451::-;5091:6;5144:2;5132:9;5123:7;5119:23;5115:32;5112:52;;;5160:1;5157;5150:12;5112:52;5200:9;5187:23;5233:18;5225:6;5222:30;5219:50;;;5265:1;5262;5255:12;5219:50;5288:22;;5341:4;5333:13;;5329:27;-1:-1:-1;5319:55:1;;5370:1;5367;5360:12;5319:55;5393:74;5459:7;5454:2;5441:16;5436:2;5432;5428:11;5393:74;:::i;5478:347::-;5543:6;5551;5604:2;5592:9;5583:7;5579:23;5575:32;5572:52;;;5620:1;5617;5610:12;5572:52;5643:29;5662:9;5643:29;:::i;:::-;5633:39;;5722:2;5711:9;5707:18;5694:32;5769:5;5762:13;5755:21;5748:5;5745:32;5735:60;;5791:1;5788;5781:12;5735:60;5814:5;5804:15;;;5478:347;;;;;:::o;5830:667::-;5925:6;5933;5941;5949;6002:3;5990:9;5981:7;5977:23;5973:33;5970:53;;;6019:1;6016;6009:12;5970:53;6042:29;6061:9;6042:29;:::i;:::-;6032:39;;6090:38;6124:2;6113:9;6109:18;6090:38;:::i;:::-;6080:48;;6175:2;6164:9;6160:18;6147:32;6137:42;;6230:2;6219:9;6215:18;6202:32;6257:18;6249:6;6246:30;6243:50;;;6289:1;6286;6279:12;6243:50;6312:22;;6365:4;6357:13;;6353:27;-1:-1:-1;6343:55:1;;6394:1;6391;6384:12;6343:55;6417:74;6483:7;6478:2;6465:16;6460:2;6456;6452:11;6417:74;:::i;:::-;6407:84;;;5830:667;;;;;;;:::o;6502:260::-;6570:6;6578;6631:2;6619:9;6610:7;6606:23;6602:32;6599:52;;;6647:1;6644;6637:12;6599:52;6670:29;6689:9;6670:29;:::i;:::-;6660:39;;6718:38;6752:2;6741:9;6737:18;6718:38;:::i;6767:615::-;6853:6;6861;6914:2;6902:9;6893:7;6889:23;6885:32;6882:52;;;6930:1;6927;6920:12;6882:52;6970:9;6957:23;6999:18;7040:2;7032:6;7029:14;7026:34;;;7056:1;7053;7046:12;7026:34;7094:6;7083:9;7079:22;7069:32;;7139:7;7132:4;7128:2;7124:13;7120:27;7110:55;;7161:1;7158;7151:12;7110:55;7201:2;7188:16;7227:2;7219:6;7216:14;7213:34;;;7243:1;7240;7233:12;7213:34;7296:7;7291:2;7281:6;7278:1;7274:14;7270:2;7266:23;7262:32;7259:45;7256:65;;;7317:1;7314;7307:12;7256:65;7348:2;7340:11;;;;;7370:6;;-1:-1:-1;6767:615:1;;-1:-1:-1;;;;6767:615:1:o;7387:380::-;7466:1;7462:12;;;;7509;;;7530:61;;7584:4;7576:6;7572:17;7562:27;;7530:61;7637:2;7629:6;7626:14;7606:18;7603:38;7600:161;;;7683:10;7678:3;7674:20;7671:1;7664:31;7718:4;7715:1;7708:15;7746:4;7743:1;7736:15;7600:161;;7387:380;;;:::o;9012:356::-;9214:2;9196:21;;;9233:18;;;9226:30;9292:34;9287:2;9272:18;;9265:62;9359:2;9344:18;;9012:356::o;9717:127::-;9778:10;9773:3;9769:20;9766:1;9759:31;9809:4;9806:1;9799:15;9833:4;9830:1;9823:15;9849:128;9889:3;9920:1;9916:6;9913:1;9910:13;9907:39;;;9926:18;;:::i;:::-;-1:-1:-1;9962:9:1;;9849:128::o;10323:135::-;10362:3;-1:-1:-1;;10383:17:1;;10380:43;;;10403:18;;:::i;:::-;-1:-1:-1;10450:1:1;10439:13;;10323:135::o;10463:413::-;10665:2;10647:21;;;10704:2;10684:18;;;10677:30;10743:34;10738:2;10723:18;;10716:62;-1:-1:-1;;;10809:2:1;10794:18;;10787:47;10866:3;10851:19;;10463:413::o;11293:127::-;11354:10;11349:3;11345:20;11342:1;11335:31;11385:4;11382:1;11375:15;11409:4;11406:1;11399:15;13156:412;13358:2;13340:21;;;13397:2;13377:18;;;13370:30;13436:34;13431:2;13416:18;;13409:62;-1:-1:-1;;;13502:2:1;13487:18;;13480:46;13558:3;13543:19;;13156:412::o;13573:168::-;13613:7;13679:1;13675;13671:6;13667:14;13664:1;13661:21;13656:1;13649:9;13642:17;13638:45;13635:71;;;13686:18;;:::i;:::-;-1:-1:-1;13726:9:1;;13573:168::o;13746:404::-;13948:2;13930:21;;;13987:2;13967:18;;;13960:30;14026:34;14021:2;14006:18;;13999:62;-1:-1:-1;;;14092:2:1;14077:18;;14070:38;14140:3;14125:19;;13746:404::o;17708:184::-;17778:6;17831:2;17819:9;17810:7;17806:23;17802:32;17799:52;;;17847:1;17844;17837:12;17799:52;-1:-1:-1;17870:16:1;;17708:184;-1:-1:-1;17708:184:1:o;18439:1527::-;18663:3;18701:6;18695:13;18727:4;18740:51;18784:6;18779:3;18774:2;18766:6;18762:15;18740:51;:::i;:::-;18854:13;;18813:16;;;;18876:55;18854:13;18813:16;18898:15;;;18876:55;:::i;:::-;19020:13;;18953:20;;;18993:1;;19080;19102:18;;;;19155;;;;19182:93;;19260:4;19250:8;19246:19;19234:31;;19182:93;19323:2;19313:8;19310:16;19290:18;19287:40;19284:167;;;-1:-1:-1;;;19350:33:1;;19406:4;19403:1;19396:15;19436:4;19357:3;19424:17;19284:167;19467:18;19494:110;;;;19618:1;19613:328;;;;19460:481;;19494:110;-1:-1:-1;;19529:24:1;;19515:39;;19574:20;;;;-1:-1:-1;19494:110:1;;19613:328;18386:1;18379:14;;;18423:4;18410:18;;19708:1;19722:169;19736:8;19733:1;19730:15;19722:169;;;19818:14;;19803:13;;;19796:37;19861:16;;;;19753:10;;19722:169;;;19726:3;;19922:8;19915:5;19911:20;19904:27;;19460:481;-1:-1:-1;19957:3:1;;18439:1527;-1:-1:-1;;;;;;;;;;;18439:1527:1:o;21606:125::-;21646:4;21674:1;21671;21668:8;21665:34;;;21679:18;;:::i;:::-;-1:-1:-1;21716:9:1;;21606:125::o;21736:414::-;21938:2;21920:21;;;21977:2;21957:18;;;21950:30;22016:34;22011:2;21996:18;;21989:62;-1:-1:-1;;;22082:2:1;22067:18;;22060:48;22140:3;22125:19;;21736:414::o;22155:127::-;22216:10;22211:3;22207:20;22204:1;22197:31;22247:4;22244:1;22237:15;22271:4;22268:1;22261:15;22287:120;22327:1;22353;22343:35;;22358:18;;:::i;:::-;-1:-1:-1;22392:9:1;;22287:120::o;22412:112::-;22444:1;22470;22460:35;;22475:18;;:::i;:::-;-1:-1:-1;22509:9:1;;22412:112::o;22529:489::-;-1:-1:-1;;;;;22798:15:1;;;22780:34;;22850:15;;22845:2;22830:18;;22823:43;22897:2;22882:18;;22875:34;;;22945:3;22940:2;22925:18;;22918:31;;;22723:4;;22966:46;;22992:19;;22984:6;22966:46;:::i;:::-;22958:54;22529:489;-1:-1:-1;;;;;;22529:489:1:o;23023:249::-;23092:6;23145:2;23133:9;23124:7;23120:23;23116:32;23113:52;;;23161:1;23158;23151:12;23113:52;23193:9;23187:16;23212:30;23236:5;23212:30;:::i;23995:127::-;24056:10;24051:3;24047:20;24044:1;24037:31;24087:4;24084:1;24077:15;24111:4;24108:1;24101:15

Swarm Source

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