ETH Price: $2,617.13 (-1.23%)

Token

ZOGUE (ZOGUE)
 

Overview

Max Total Supply

70 ZOGUE

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZOGUE
0xe9fa3112590f49c8d6c9f9d086df7a445d80b808
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:
Main

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: Main_contract.sol

// https://Zoogue.Meta




//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

//import "hardhat/console.sol";


contract Main is ERC721Enumerable, Ownable {
    string private _baseURIPrefix;
    uint256 public TOTAL_LIMIT = 2550;
    uint256 public PUBLIC_LIMIT = 550;
    uint256 public PRESALE_LIMIT = 2000;
    uint256 public PRESALE_PRICE = 0.1 ether;
    uint256 public PUBLIC_SALE_PRICE = 0.14 ether;
    uint256 public MAX_MINT_PER_PRESALE = 2;
    uint256 public MAX_MINT_PER_PUBLICSALE = 4;
    address public FEE_RECIPIENT;
    bool public PRESALE_ACTIVE = false;
    bool public SALE_ACTIVE = false;

    uint256 public publicMinted = 0;
    uint256 public presaleMinted = 0;
    mapping(address=>bool) public presaleWhitelist;
    mapping(address=>uint) public presaleMint;
    mapping(address=>uint) public publicMint;
    constructor() ERC721("ZOGUE", "ZOGUE") {
        FEE_RECIPIENT = msg.sender;
    }
    function setTotalLimit(uint256 val) public onlyOwner {
        TOTAL_LIMIT = val;
    }
    function setPublicPrice(uint256 val) public onlyOwner {
        PUBLIC_SALE_PRICE = val;
    }
    function setPresalePrice(uint256 val) public onlyOwner {
        PRESALE_PRICE = val;
    }
    function setMaxMintPerPresale(uint256 val) public onlyOwner {
        MAX_MINT_PER_PRESALE = val;
    }
    function setMaxMintPerPublicSale(uint256 val) public onlyOwner {
        PUBLIC_SALE_PRICE = val;
    }
    function setPresaleLimit(uint256 val) public onlyOwner {
        PRESALE_LIMIT = val;
    }
    function setPublicSaleLimit(uint256 val) public onlyOwner {
        PUBLIC_LIMIT = val;
    }
    function setFeeRecipient(address to) public onlyOwner {
        FEE_RECIPIENT = to;
    }
    function setPresaleStatus(bool status) public onlyOwner {
        PRESALE_ACTIVE = status;
    }
    function setSaleStatus(bool status) public onlyOwner {
        SALE_ACTIVE = status;
    }
    function setWhitelist(address user, bool status) public onlyOwner {
        presaleWhitelist[user] = status;
    }
    function setWhiteLists(address[] calldata _addrs) external onlyOwner {
        for(uint256 i = 0 ; i < _addrs.length ; i ++) {
            presaleWhitelist[_addrs[i]] = true;
        }
    }



    function mintPresale(uint numberOfTokens) public payable {
        require(PRESALE_ACTIVE, "Pre-sale must be active to mint");
        if( presaleWhitelist[msg.sender] && presaleMint[msg.sender] < 2 ){
            // whitelisted & mint < 2
            require(presaleMinted+numberOfTokens <= PRESALE_LIMIT, "Purchase would exceed max supply of tokens");
            require(presaleMint[msg.sender]+numberOfTokens <= MAX_MINT_PER_PRESALE, "Can only mint 2 tokens at a time");
            require(PRESALE_PRICE*numberOfTokens == msg.value, "Ether value sent is not correct");
            for(uint i = 0; i < numberOfTokens; i++) {
                _safeMint(msg.sender, totalSupply());
                presaleMinted++;
                presaleMint[msg.sender]++;
            }
        }else if( presaleWhitelist[msg.sender] && presaleMint[msg.sender] >= 2 ){
            // whitelisted mint > 2
            require(publicMinted+numberOfTokens <= PUBLIC_LIMIT, "Purchase would exceed max supply of tokens");
            require(presaleMint[msg.sender]+numberOfTokens <= MAX_MINT_PER_PRESALE+MAX_MINT_PER_PUBLICSALE, "Can only mint 4 tokens at a time");
            require(PUBLIC_SALE_PRICE*numberOfTokens == msg.value, "Ether value sent is not correct");
            for(uint i = 0; i < numberOfTokens; i++) {
                _safeMint(msg.sender, totalSupply());
                publicMinted++;
                presaleMint[msg.sender]++;
            }
        }else{
            // non wl members
            require(publicMinted+numberOfTokens <= PUBLIC_LIMIT, "Purchase would exceed max public tokens");
            require(publicMint[msg.sender]+numberOfTokens <= MAX_MINT_PER_PUBLICSALE, "Can only mint 4 tokens at a time");
            require(PUBLIC_SALE_PRICE*numberOfTokens == msg.value, "Ether value sent is not correct");
            for(uint i = 0; i < numberOfTokens; i++) {
                _safeMint(msg.sender, totalSupply());
                publicMinted++;
                publicMint[msg.sender]++;
            }
        }
        internalSendFeeTo();
    }
    function mintPublic(uint numberOfTokens) public payable {
        require(SALE_ACTIVE, "Pre-sale must be active to mint");
        require(totalSupply()+numberOfTokens <= TOTAL_LIMIT, "Purchase would exceed max public tokens");
        require(publicMint[msg.sender]+numberOfTokens <= MAX_MINT_PER_PUBLICSALE, "Can only mint 4 tokens at a time");
        require(PUBLIC_SALE_PRICE*numberOfTokens == msg.value, "Ether value sent is not correct");
        for(uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
            publicMinted++;
            publicMint[msg.sender]++;
        }
        internalSendFeeTo();
    }
    function adminMint(uint numberOfTokens) public onlyOwner {
        for(uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }
    function internalSendFeeTo() internal{
        (bool transferStatus,) = FEE_RECIPIENT.call{value : msg.value}("");
        require(transferStatus, "Failed to send to FEE_RECIPIENT");
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseURIPrefix;
    }
    function tokenURI(uint256 tokenId)
    public
    view
    override(ERC721)
    returns (string memory)
    {
        return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURIPrefix = baseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FEE_RECIPIENT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_PUBLICSALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"setFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxMintPerPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxMintPerPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setPresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setPublicSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTotalLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"setWhiteLists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setWhitelist","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"}]

60806040526109f6600c55610226600d556107d0600e5567016345785d8a0000600f556701f161421c8e0000601055600260115560046012556013805461ffff60a01b19169055600060148190556015553480156200005d57600080fd5b506040805180820182526005808252645a4f47554560d81b6020808401828152855180870190965292855284015281519192916200009e916000916200013f565b508051620000b49060019060208401906200013f565b505050620000d1620000cb620000e960201b60201c565b620000ed565b601380546001600160a01b0319163317905562000221565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014d90620001e5565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600181811c90821680620001fa57607f821691505b6020821081036200021b57634e487b7160e01b600052602260045260246000fd5b50919050565b612c2880620002316000396000f3fe6080604052600436106102c95760003560e01c806373aee92911610175578063d897833e116100dc578063efd0cbf911610095578063f2fde38b1161006f578063f2fde38b14610882578063f759867a146108a2578063fa3b1686146108b5578063fc31f0bf146108cb57600080fd5b8063efd0cbf914610838578063f216ddfd1461084b578063f2587a551461086c57600080fd5b8063d897833e14610749578063e74b981b14610769578063e985e9c514610789578063eb8835ab146107d2578063ebd0905414610802578063eca17e041461082257600080fd5b8063a4f4f8af1161012e578063a4f4f8af146106bd578063a67d9c5e146106d3578063b88d4fde146106e9578063c1f2612314610709578063c6275255146103fb578063c87b56dd1461072957600080fd5b806373aee929146106145780637fd255f11461062a5780638895283f1461064a5780638da5cb5b1461066a57806395d89b4114610688578063a22cb4651461069d57600080fd5b806332a93a3a1161023457806353d6fd59116101ed5780636352211e116101c75780636352211e1461059f5780636d10cd9c146105bf57806370a08231146105df578063715018a6146105ff57600080fd5b806353d6fd591461054957806355f804b31461056957806362dc6e211461058957600080fd5b806332a93a3a1461047b5780633549345e146104a857806339d82c59146104c85780633fea6aae146104e857806342842e0e146105095780634f6ccce71461052957600080fd5b806318160ddd1161028657806318160ddd146103d05780631aee3f91146103e557806321298c23146103fb57806323b872dd1461041b5780632f745c591461043b5780633255c65b1461045b57600080fd5b806301ffc9a7146102ce57806306fdde03146103035780630779834a1461032557806307e89ec014610360578063081812fc14610376578063095ea7b3146103ae575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046124be565b6108eb565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610916565b6040516102fa9190612533565b34801561033157600080fd5b50610352610340366004612562565b60176020526000908152604090205481565b6040519081526020016102fa565b34801561036c57600080fd5b5061035260105481565b34801561038257600080fd5b5061039661039136600461257d565b6109a8565b6040516001600160a01b0390911681526020016102fa565b3480156103ba57600080fd5b506103ce6103c9366004612596565b610a42565b005b3480156103dc57600080fd5b50600854610352565b3480156103f157600080fd5b50610352600e5481565b34801561040757600080fd5b506103ce61041636600461257d565b610b57565b34801561042757600080fd5b506103ce6104363660046125c0565b610b86565b34801561044757600080fd5b50610352610456366004612596565b610bb7565b34801561046757600080fd5b506103ce61047636600461257d565b610c4d565b34801561048757600080fd5b50610352610496366004612562565b60186020526000908152604090205481565b3480156104b457600080fd5b506103ce6104c336600461257d565b610c7c565b3480156104d457600080fd5b506103ce6104e336600461257d565b610cab565b3480156104f457600080fd5b506013546102ee90600160a01b900460ff1681565b34801561051557600080fd5b506103ce6105243660046125c0565b610cda565b34801561053557600080fd5b5061035261054436600461257d565b610cf5565b34801561055557600080fd5b506103ce61056436600461260c565b610d88565b34801561057557600080fd5b506103ce6105843660046126cb565b610ddd565b34801561059557600080fd5b50610352600f5481565b3480156105ab57600080fd5b506103966105ba36600461257d565b610e1e565b3480156105cb57600080fd5b506103ce6105da36600461257d565b610e95565b3480156105eb57600080fd5b506103526105fa366004612562565b610ec4565b34801561060b57600080fd5b506103ce610f4b565b34801561062057600080fd5b5061035260155481565b34801561063657600080fd5b506103ce61064536600461257d565b610f81565b34801561065657600080fd5b506103ce610665366004612714565b610fb0565b34801561067657600080fd5b50600a546001600160a01b0316610396565b34801561069457600080fd5b50610318610ff8565b3480156106a957600080fd5b506103ce6106b836600461260c565b611007565b3480156106c957600080fd5b5061035260145481565b3480156106df57600080fd5b50610352600d5481565b3480156106f557600080fd5b506103ce61070436600461272f565b611012565b34801561071557600080fd5b506103ce61072436600461257d565b61104a565b34801561073557600080fd5b5061031861074436600461257d565b6110a3565b34801561075557600080fd5b506103ce610764366004612714565b6110d4565b34801561077557600080fd5b506103ce610784366004612562565b61111c565b34801561079557600080fd5b506102ee6107a43660046127ab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107de57600080fd5b506102ee6107ed366004612562565b60166020526000908152604090205460ff1681565b34801561080e57600080fd5b50601354610396906001600160a01b031681565b34801561082e57600080fd5b50610352600c5481565b6103ce61084636600461257d565b611168565b34801561085757600080fd5b506013546102ee90600160a81b900460ff1681565b34801561087857600080fd5b5061035260115481565b34801561088e57600080fd5b506103ce61089d366004612562565b6112ca565b6103ce6108b036600461257d565b611362565b3480156108c157600080fd5b5061035260125481565b3480156108d757600080fd5b506103ce6108e63660046127d5565b611752565b60006001600160e01b0319821663780e9d6360e01b14806109105750610910826117ee565b92915050565b6060600080546109259061284a565b80601f01602080910402602001604051908101604052809291908181526020018280546109519061284a565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a4d82610e1e565b9050806001600160a01b0316836001600160a01b031603610aba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a1d565b336001600160a01b0382161480610ad65750610ad681336107a4565b610b485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a1d565b610b52838361183e565b505050565b600a546001600160a01b03163314610b815760405162461bcd60e51b8152600401610a1d90612884565b601055565b610b9033826118ac565b610bac5760405162461bcd60e51b8152600401610a1d906128b9565b610b528383836119a3565b6000610bc283610ec4565b8210610c245760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a1d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c775760405162461bcd60e51b8152600401610a1d90612884565b601155565b600a546001600160a01b03163314610ca65760405162461bcd60e51b8152600401610a1d90612884565b600f55565b600a546001600160a01b03163314610cd55760405162461bcd60e51b8152600401610a1d90612884565b600d55565b610b5283838360405180602001604052806000815250611012565b6000610d0060085490565b8210610d635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a1d565b60088281548110610d7657610d7661290a565b90600052602060002001549050919050565b600a546001600160a01b03163314610db25760405162461bcd60e51b8152600401610a1d90612884565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314610e075760405162461bcd60e51b8152600401610a1d90612884565b8051610e1a90600b90602084019061240f565b5050565b6000818152600260205260408120546001600160a01b0316806109105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a1d565b600a546001600160a01b03163314610ebf5760405162461bcd60e51b8152600401610a1d90612884565b600c55565b60006001600160a01b038216610f2f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a1d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f755760405162461bcd60e51b8152600401610a1d90612884565b610f7f6000611b4a565b565b600a546001600160a01b03163314610fab5760405162461bcd60e51b8152600401610a1d90612884565b600e55565b600a546001600160a01b03163314610fda5760405162461bcd60e51b8152600401610a1d90612884565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6060600180546109259061284a565b610e1a338383611b9c565b61101c33836118ac565b6110385760405162461bcd60e51b8152600401610a1d906128b9565b61104484848484611c6a565b50505050565b600a546001600160a01b031633146110745760405162461bcd60e51b8152600401610a1d90612884565b60005b81811015610e1a576110913361108c60085490565b611c9d565b8061109b81612936565b915050611077565b60606110ae82611cb7565b6040516020016110be919061294f565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146110fe5760405162461bcd60e51b8152600401610a1d90612884565b60138054911515600160a81b0260ff60a81b19909216919091179055565b600a546001600160a01b031633146111465760405162461bcd60e51b8152600401610a1d90612884565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b601354600160a81b900460ff166111c15760405162461bcd60e51b815260206004820152601f60248201527f5072652d73616c65206d7573742062652061637469766520746f206d696e74006044820152606401610a1d565b600c54816111ce60085490565b6111d89190612978565b11156111f65760405162461bcd60e51b8152600401610a1d90612990565b60125433600090815260186020526040902054611214908390612978565b11156112325760405162461bcd60e51b8152600401610a1d906129d7565b34816010546112419190612a0c565b1461125e5760405162461bcd60e51b8152600401610a1d90612a2b565b60005b818110156112be576112763361108c60085490565b6014805490600061128683612936565b90915550503360009081526018602052604081208054916112a683612936565b919050555080806112b690612936565b915050611261565b506112c7611d92565b50565b600a546001600160a01b031633146112f45760405162461bcd60e51b8152600401610a1d90612884565b6001600160a01b0381166113595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1d565b6112c781611b4a565b601354600160a01b900460ff166113bb5760405162461bcd60e51b815260206004820152601f60248201527f5072652d73616c65206d7573742062652061637469766520746f206d696e74006044820152606401610a1d565b3360009081526016602052604090205460ff1680156113e95750336000908152601760205260409020546002115b1561151b57600e54816015546113ff9190612978565b111561141d5760405162461bcd60e51b8152600401610a1d90612a62565b6011543360009081526017602052604090205461143b908390612978565b11156114895760405162461bcd60e51b815260206004820181905260248201527f43616e206f6e6c79206d696e74203220746f6b656e7320617420612074696d656044820152606401610a1d565b3481600f546114989190612a0c565b146114b55760405162461bcd60e51b8152600401610a1d90612a2b565b60005b81811015611515576114cd3361108c60085490565b601580549060006114dd83612936565b90915550503360009081526017602052604081208054916114fd83612936565b9190505550808061150d90612936565b9150506114b8565b5061174a565b3360009081526016602052604090205460ff16801561154a575033600090815260176020526040902054600211155b1561165357600d54816014546115609190612978565b111561157e5760405162461bcd60e51b8152600401610a1d90612a62565b60125460115461158e9190612978565b336000908152601760205260409020546115a9908390612978565b11156115c75760405162461bcd60e51b8152600401610a1d906129d7565b34816010546115d69190612a0c565b146115f35760405162461bcd60e51b8152600401610a1d90612a2b565b60005b818110156115155761160b3361108c60085490565b6014805490600061161b83612936565b909155505033600090815260176020526040812080549161163b83612936565b9190505550808061164b90612936565b9150506115f6565b600d54816014546116649190612978565b11156116825760405162461bcd60e51b8152600401610a1d90612990565b601254336000908152601860205260409020546116a0908390612978565b11156116be5760405162461bcd60e51b8152600401610a1d906129d7565b34816010546116cd9190612a0c565b146116ea5760405162461bcd60e51b8152600401610a1d90612a2b565b60005b818110156112be576117023361108c60085490565b6014805490600061171283612936565b909155505033600090815260186020526040812080549161173283612936565b9190505550808061174290612936565b9150506116ed565b6112c7611d92565b600a546001600160a01b0316331461177c5760405162461bcd60e51b8152600401610a1d90612884565b60005b81811015610b525760016016600085858581811061179f5761179f61290a565b90506020020160208101906117b49190612562565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806117e681612936565b91505061177f565b60006001600160e01b031982166380ac58cd60e01b148061181f57506001600160e01b03198216635b5e139f60e01b145b8061091057506301ffc9a760e01b6001600160e01b0319831614610910565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187382610e1e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a1d565b600061193083610e1e565b9050806001600160a01b0316846001600160a01b0316148061196b5750836001600160a01b0316611960846109a8565b6001600160a01b0316145b8061199b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119b682610e1e565b6001600160a01b031614611a1a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a1d565b6001600160a01b038216611a7c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1d565b611a87838383611e35565b611a9260008261183e565b6001600160a01b0383166000908152600360205260408120805460019290611abb908490612aac565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ae9908490612978565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611bfd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a1d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c758484846119a3565b611c8184848484611eed565b6110445760405162461bcd60e51b8152600401610a1d90612ac3565b610e1a828260405180602001604052806000815250611fee565b6000818152600260205260409020546060906001600160a01b0316611d365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a1d565b6000611d40612021565b90506000815111611d605760405180602001604052806000815250611d8b565b80611d6a84612030565b604051602001611d7b929190612b15565b6040516020818303038152906040525b9392505050565b6013546040516000916001600160a01b03169034908381818185875af1925050503d8060008114611ddf576040519150601f19603f3d011682016040523d82523d6000602084013e611de4565b606091505b50509050806112c75760405162461bcd60e51b815260206004820152601f60248201527f4661696c656420746f2073656e6420746f204645455f524543495049454e54006044820152606401610a1d565b6001600160a01b038316611e9057611e8b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611eb3565b816001600160a01b0316836001600160a01b031614611eb357611eb38382612131565b6001600160a01b038216611eca57610b52816121ce565b826001600160a01b0316826001600160a01b031614610b5257610b52828261227d565b60006001600160a01b0384163b15611fe357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f31903390899088908890600401612b44565b6020604051808303816000875af1925050508015611f6c575060408051601f3d908101601f19168201909252611f6991810190612b81565b60015b611fc9573d808015611f9a576040519150601f19603f3d011682016040523d82523d6000602084013e611f9f565b606091505b508051600003611fc15760405162461bcd60e51b8152600401610a1d90612ac3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061199b565b506001949350505050565b611ff883836122c1565b6120056000848484611eed565b610b525760405162461bcd60e51b8152600401610a1d90612ac3565b6060600b80546109259061284a565b6060816000036120575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612081578061206b81612936565b915061207a9050600a83612bb4565b915061205b565b60008167ffffffffffffffff81111561209c5761209c61263f565b6040519080825280601f01601f1916602001820160405280156120c6576020820181803683370190505b5090505b841561199b576120db600183612aac565b91506120e8600a86612bc8565b6120f3906030612978565b60f81b8183815181106121085761210861290a565b60200101906001600160f81b031916908160001a90535061212a600a86612bb4565b94506120ca565b6000600161213e84610ec4565b6121489190612aac565b60008381526007602052604090205490915080821461219b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121e090600190612aac565b600083815260096020526040812054600880549394509092849081106122085761220861290a565b9060005260206000200154905080600883815481106122295761222961290a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061226157612261612bdc565b6001900381819060005260206000200160009055905550505050565b600061228883610ec4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123175760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a1d565b6000818152600260205260409020546001600160a01b03161561237c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a1d565b61238860008383611e35565b6001600160a01b03821660009081526003602052604081208054600192906123b1908490612978565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461241b9061284a565b90600052602060002090601f01602090048101928261243d5760008555612483565b82601f1061245657805160ff1916838001178555612483565b82800160010185558215612483579182015b82811115612483578251825591602001919060010190612468565b5061248f929150612493565b5090565b5b8082111561248f5760008155600101612494565b6001600160e01b0319811681146112c757600080fd5b6000602082840312156124d057600080fd5b8135611d8b816124a8565b60005b838110156124f65781810151838201526020016124de565b838111156110445750506000910152565b6000815180845261251f8160208601602086016124db565b601f01601f19169290920160200192915050565b602081526000611d8b6020830184612507565b80356001600160a01b038116811461255d57600080fd5b919050565b60006020828403121561257457600080fd5b611d8b82612546565b60006020828403121561258f57600080fd5b5035919050565b600080604083850312156125a957600080fd5b6125b283612546565b946020939093013593505050565b6000806000606084860312156125d557600080fd5b6125de84612546565b92506125ec60208501612546565b9150604084013590509250925092565b8035801515811461255d57600080fd5b6000806040838503121561261f57600080fd5b61262883612546565b9150612636602084016125fc565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156126705761267061263f565b604051601f8501601f19908116603f011681019082821181831017156126985761269861263f565b816040528093508581528686860111156126b157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126dd57600080fd5b813567ffffffffffffffff8111156126f457600080fd5b8201601f8101841361270557600080fd5b61199b84823560208401612655565b60006020828403121561272657600080fd5b611d8b826125fc565b6000806000806080858703121561274557600080fd5b61274e85612546565b935061275c60208601612546565b925060408501359150606085013567ffffffffffffffff81111561277f57600080fd5b8501601f8101871361279057600080fd5b61279f87823560208401612655565b91505092959194509250565b600080604083850312156127be57600080fd5b6127c783612546565b915061263660208401612546565b600080602083850312156127e857600080fd5b823567ffffffffffffffff8082111561280057600080fd5b818501915085601f83011261281457600080fd5b81358181111561282357600080fd5b8660208260051b850101111561283857600080fd5b60209290920196919550909350505050565b600181811c9082168061285e57607f821691505b60208210810361287e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161294857612948612920565b5060010190565b600082516129618184602087016124db565b64173539b7b760d91b920191825250600501919050565b6000821982111561298b5761298b612920565b500190565b60208082526027908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526620746f6b656e7360c81b606082015260800190565b6020808252818101527f43616e206f6e6c79206d696e74203420746f6b656e7320617420612074696d65604082015260600190565b6000816000190483118215151615612a2657612a26612920565b500290565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b600082821015612abe57612abe612920565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612b278184602088016124db565b835190830190612b3b8183602088016124db565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7790830184612507565b9695505050505050565b600060208284031215612b9357600080fd5b8151611d8b816124a8565b634e487b7160e01b600052601260045260246000fd5b600082612bc357612bc3612b9e565b500490565b600082612bd757612bd7612b9e565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b4e649def5035cf94f79a06769d65f73ffcae456dab5cd76b9f185caa8714e1664736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102c95760003560e01c806373aee92911610175578063d897833e116100dc578063efd0cbf911610095578063f2fde38b1161006f578063f2fde38b14610882578063f759867a146108a2578063fa3b1686146108b5578063fc31f0bf146108cb57600080fd5b8063efd0cbf914610838578063f216ddfd1461084b578063f2587a551461086c57600080fd5b8063d897833e14610749578063e74b981b14610769578063e985e9c514610789578063eb8835ab146107d2578063ebd0905414610802578063eca17e041461082257600080fd5b8063a4f4f8af1161012e578063a4f4f8af146106bd578063a67d9c5e146106d3578063b88d4fde146106e9578063c1f2612314610709578063c6275255146103fb578063c87b56dd1461072957600080fd5b806373aee929146106145780637fd255f11461062a5780638895283f1461064a5780638da5cb5b1461066a57806395d89b4114610688578063a22cb4651461069d57600080fd5b806332a93a3a1161023457806353d6fd59116101ed5780636352211e116101c75780636352211e1461059f5780636d10cd9c146105bf57806370a08231146105df578063715018a6146105ff57600080fd5b806353d6fd591461054957806355f804b31461056957806362dc6e211461058957600080fd5b806332a93a3a1461047b5780633549345e146104a857806339d82c59146104c85780633fea6aae146104e857806342842e0e146105095780634f6ccce71461052957600080fd5b806318160ddd1161028657806318160ddd146103d05780631aee3f91146103e557806321298c23146103fb57806323b872dd1461041b5780632f745c591461043b5780633255c65b1461045b57600080fd5b806301ffc9a7146102ce57806306fdde03146103035780630779834a1461032557806307e89ec014610360578063081812fc14610376578063095ea7b3146103ae575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046124be565b6108eb565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610916565b6040516102fa9190612533565b34801561033157600080fd5b50610352610340366004612562565b60176020526000908152604090205481565b6040519081526020016102fa565b34801561036c57600080fd5b5061035260105481565b34801561038257600080fd5b5061039661039136600461257d565b6109a8565b6040516001600160a01b0390911681526020016102fa565b3480156103ba57600080fd5b506103ce6103c9366004612596565b610a42565b005b3480156103dc57600080fd5b50600854610352565b3480156103f157600080fd5b50610352600e5481565b34801561040757600080fd5b506103ce61041636600461257d565b610b57565b34801561042757600080fd5b506103ce6104363660046125c0565b610b86565b34801561044757600080fd5b50610352610456366004612596565b610bb7565b34801561046757600080fd5b506103ce61047636600461257d565b610c4d565b34801561048757600080fd5b50610352610496366004612562565b60186020526000908152604090205481565b3480156104b457600080fd5b506103ce6104c336600461257d565b610c7c565b3480156104d457600080fd5b506103ce6104e336600461257d565b610cab565b3480156104f457600080fd5b506013546102ee90600160a01b900460ff1681565b34801561051557600080fd5b506103ce6105243660046125c0565b610cda565b34801561053557600080fd5b5061035261054436600461257d565b610cf5565b34801561055557600080fd5b506103ce61056436600461260c565b610d88565b34801561057557600080fd5b506103ce6105843660046126cb565b610ddd565b34801561059557600080fd5b50610352600f5481565b3480156105ab57600080fd5b506103966105ba36600461257d565b610e1e565b3480156105cb57600080fd5b506103ce6105da36600461257d565b610e95565b3480156105eb57600080fd5b506103526105fa366004612562565b610ec4565b34801561060b57600080fd5b506103ce610f4b565b34801561062057600080fd5b5061035260155481565b34801561063657600080fd5b506103ce61064536600461257d565b610f81565b34801561065657600080fd5b506103ce610665366004612714565b610fb0565b34801561067657600080fd5b50600a546001600160a01b0316610396565b34801561069457600080fd5b50610318610ff8565b3480156106a957600080fd5b506103ce6106b836600461260c565b611007565b3480156106c957600080fd5b5061035260145481565b3480156106df57600080fd5b50610352600d5481565b3480156106f557600080fd5b506103ce61070436600461272f565b611012565b34801561071557600080fd5b506103ce61072436600461257d565b61104a565b34801561073557600080fd5b5061031861074436600461257d565b6110a3565b34801561075557600080fd5b506103ce610764366004612714565b6110d4565b34801561077557600080fd5b506103ce610784366004612562565b61111c565b34801561079557600080fd5b506102ee6107a43660046127ab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107de57600080fd5b506102ee6107ed366004612562565b60166020526000908152604090205460ff1681565b34801561080e57600080fd5b50601354610396906001600160a01b031681565b34801561082e57600080fd5b50610352600c5481565b6103ce61084636600461257d565b611168565b34801561085757600080fd5b506013546102ee90600160a81b900460ff1681565b34801561087857600080fd5b5061035260115481565b34801561088e57600080fd5b506103ce61089d366004612562565b6112ca565b6103ce6108b036600461257d565b611362565b3480156108c157600080fd5b5061035260125481565b3480156108d757600080fd5b506103ce6108e63660046127d5565b611752565b60006001600160e01b0319821663780e9d6360e01b14806109105750610910826117ee565b92915050565b6060600080546109259061284a565b80601f01602080910402602001604051908101604052809291908181526020018280546109519061284a565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a4d82610e1e565b9050806001600160a01b0316836001600160a01b031603610aba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a1d565b336001600160a01b0382161480610ad65750610ad681336107a4565b610b485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a1d565b610b52838361183e565b505050565b600a546001600160a01b03163314610b815760405162461bcd60e51b8152600401610a1d90612884565b601055565b610b9033826118ac565b610bac5760405162461bcd60e51b8152600401610a1d906128b9565b610b528383836119a3565b6000610bc283610ec4565b8210610c245760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a1d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c775760405162461bcd60e51b8152600401610a1d90612884565b601155565b600a546001600160a01b03163314610ca65760405162461bcd60e51b8152600401610a1d90612884565b600f55565b600a546001600160a01b03163314610cd55760405162461bcd60e51b8152600401610a1d90612884565b600d55565b610b5283838360405180602001604052806000815250611012565b6000610d0060085490565b8210610d635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a1d565b60088281548110610d7657610d7661290a565b90600052602060002001549050919050565b600a546001600160a01b03163314610db25760405162461bcd60e51b8152600401610a1d90612884565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314610e075760405162461bcd60e51b8152600401610a1d90612884565b8051610e1a90600b90602084019061240f565b5050565b6000818152600260205260408120546001600160a01b0316806109105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a1d565b600a546001600160a01b03163314610ebf5760405162461bcd60e51b8152600401610a1d90612884565b600c55565b60006001600160a01b038216610f2f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a1d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f755760405162461bcd60e51b8152600401610a1d90612884565b610f7f6000611b4a565b565b600a546001600160a01b03163314610fab5760405162461bcd60e51b8152600401610a1d90612884565b600e55565b600a546001600160a01b03163314610fda5760405162461bcd60e51b8152600401610a1d90612884565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6060600180546109259061284a565b610e1a338383611b9c565b61101c33836118ac565b6110385760405162461bcd60e51b8152600401610a1d906128b9565b61104484848484611c6a565b50505050565b600a546001600160a01b031633146110745760405162461bcd60e51b8152600401610a1d90612884565b60005b81811015610e1a576110913361108c60085490565b611c9d565b8061109b81612936565b915050611077565b60606110ae82611cb7565b6040516020016110be919061294f565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146110fe5760405162461bcd60e51b8152600401610a1d90612884565b60138054911515600160a81b0260ff60a81b19909216919091179055565b600a546001600160a01b031633146111465760405162461bcd60e51b8152600401610a1d90612884565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b601354600160a81b900460ff166111c15760405162461bcd60e51b815260206004820152601f60248201527f5072652d73616c65206d7573742062652061637469766520746f206d696e74006044820152606401610a1d565b600c54816111ce60085490565b6111d89190612978565b11156111f65760405162461bcd60e51b8152600401610a1d90612990565b60125433600090815260186020526040902054611214908390612978565b11156112325760405162461bcd60e51b8152600401610a1d906129d7565b34816010546112419190612a0c565b1461125e5760405162461bcd60e51b8152600401610a1d90612a2b565b60005b818110156112be576112763361108c60085490565b6014805490600061128683612936565b90915550503360009081526018602052604081208054916112a683612936565b919050555080806112b690612936565b915050611261565b506112c7611d92565b50565b600a546001600160a01b031633146112f45760405162461bcd60e51b8152600401610a1d90612884565b6001600160a01b0381166113595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1d565b6112c781611b4a565b601354600160a01b900460ff166113bb5760405162461bcd60e51b815260206004820152601f60248201527f5072652d73616c65206d7573742062652061637469766520746f206d696e74006044820152606401610a1d565b3360009081526016602052604090205460ff1680156113e95750336000908152601760205260409020546002115b1561151b57600e54816015546113ff9190612978565b111561141d5760405162461bcd60e51b8152600401610a1d90612a62565b6011543360009081526017602052604090205461143b908390612978565b11156114895760405162461bcd60e51b815260206004820181905260248201527f43616e206f6e6c79206d696e74203220746f6b656e7320617420612074696d656044820152606401610a1d565b3481600f546114989190612a0c565b146114b55760405162461bcd60e51b8152600401610a1d90612a2b565b60005b81811015611515576114cd3361108c60085490565b601580549060006114dd83612936565b90915550503360009081526017602052604081208054916114fd83612936565b9190505550808061150d90612936565b9150506114b8565b5061174a565b3360009081526016602052604090205460ff16801561154a575033600090815260176020526040902054600211155b1561165357600d54816014546115609190612978565b111561157e5760405162461bcd60e51b8152600401610a1d90612a62565b60125460115461158e9190612978565b336000908152601760205260409020546115a9908390612978565b11156115c75760405162461bcd60e51b8152600401610a1d906129d7565b34816010546115d69190612a0c565b146115f35760405162461bcd60e51b8152600401610a1d90612a2b565b60005b818110156115155761160b3361108c60085490565b6014805490600061161b83612936565b909155505033600090815260176020526040812080549161163b83612936565b9190505550808061164b90612936565b9150506115f6565b600d54816014546116649190612978565b11156116825760405162461bcd60e51b8152600401610a1d90612990565b601254336000908152601860205260409020546116a0908390612978565b11156116be5760405162461bcd60e51b8152600401610a1d906129d7565b34816010546116cd9190612a0c565b146116ea5760405162461bcd60e51b8152600401610a1d90612a2b565b60005b818110156112be576117023361108c60085490565b6014805490600061171283612936565b909155505033600090815260186020526040812080549161173283612936565b9190505550808061174290612936565b9150506116ed565b6112c7611d92565b600a546001600160a01b0316331461177c5760405162461bcd60e51b8152600401610a1d90612884565b60005b81811015610b525760016016600085858581811061179f5761179f61290a565b90506020020160208101906117b49190612562565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806117e681612936565b91505061177f565b60006001600160e01b031982166380ac58cd60e01b148061181f57506001600160e01b03198216635b5e139f60e01b145b8061091057506301ffc9a760e01b6001600160e01b0319831614610910565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187382610e1e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a1d565b600061193083610e1e565b9050806001600160a01b0316846001600160a01b0316148061196b5750836001600160a01b0316611960846109a8565b6001600160a01b0316145b8061199b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119b682610e1e565b6001600160a01b031614611a1a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a1d565b6001600160a01b038216611a7c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1d565b611a87838383611e35565b611a9260008261183e565b6001600160a01b0383166000908152600360205260408120805460019290611abb908490612aac565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ae9908490612978565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611bfd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a1d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c758484846119a3565b611c8184848484611eed565b6110445760405162461bcd60e51b8152600401610a1d90612ac3565b610e1a828260405180602001604052806000815250611fee565b6000818152600260205260409020546060906001600160a01b0316611d365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a1d565b6000611d40612021565b90506000815111611d605760405180602001604052806000815250611d8b565b80611d6a84612030565b604051602001611d7b929190612b15565b6040516020818303038152906040525b9392505050565b6013546040516000916001600160a01b03169034908381818185875af1925050503d8060008114611ddf576040519150601f19603f3d011682016040523d82523d6000602084013e611de4565b606091505b50509050806112c75760405162461bcd60e51b815260206004820152601f60248201527f4661696c656420746f2073656e6420746f204645455f524543495049454e54006044820152606401610a1d565b6001600160a01b038316611e9057611e8b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611eb3565b816001600160a01b0316836001600160a01b031614611eb357611eb38382612131565b6001600160a01b038216611eca57610b52816121ce565b826001600160a01b0316826001600160a01b031614610b5257610b52828261227d565b60006001600160a01b0384163b15611fe357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f31903390899088908890600401612b44565b6020604051808303816000875af1925050508015611f6c575060408051601f3d908101601f19168201909252611f6991810190612b81565b60015b611fc9573d808015611f9a576040519150601f19603f3d011682016040523d82523d6000602084013e611f9f565b606091505b508051600003611fc15760405162461bcd60e51b8152600401610a1d90612ac3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061199b565b506001949350505050565b611ff883836122c1565b6120056000848484611eed565b610b525760405162461bcd60e51b8152600401610a1d90612ac3565b6060600b80546109259061284a565b6060816000036120575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612081578061206b81612936565b915061207a9050600a83612bb4565b915061205b565b60008167ffffffffffffffff81111561209c5761209c61263f565b6040519080825280601f01601f1916602001820160405280156120c6576020820181803683370190505b5090505b841561199b576120db600183612aac565b91506120e8600a86612bc8565b6120f3906030612978565b60f81b8183815181106121085761210861290a565b60200101906001600160f81b031916908160001a90535061212a600a86612bb4565b94506120ca565b6000600161213e84610ec4565b6121489190612aac565b60008381526007602052604090205490915080821461219b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121e090600190612aac565b600083815260096020526040812054600880549394509092849081106122085761220861290a565b9060005260206000200154905080600883815481106122295761222961290a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061226157612261612bdc565b6001900381819060005260206000200160009055905550505050565b600061228883610ec4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123175760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a1d565b6000818152600260205260409020546001600160a01b03161561237c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a1d565b61238860008383611e35565b6001600160a01b03821660009081526003602052604081208054600192906123b1908490612978565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461241b9061284a565b90600052602060002090601f01602090048101928261243d5760008555612483565b82601f1061245657805160ff1916838001178555612483565b82800160010185558215612483579182015b82811115612483578251825591602001919060010190612468565b5061248f929150612493565b5090565b5b8082111561248f5760008155600101612494565b6001600160e01b0319811681146112c757600080fd5b6000602082840312156124d057600080fd5b8135611d8b816124a8565b60005b838110156124f65781810151838201526020016124de565b838111156110445750506000910152565b6000815180845261251f8160208601602086016124db565b601f01601f19169290920160200192915050565b602081526000611d8b6020830184612507565b80356001600160a01b038116811461255d57600080fd5b919050565b60006020828403121561257457600080fd5b611d8b82612546565b60006020828403121561258f57600080fd5b5035919050565b600080604083850312156125a957600080fd5b6125b283612546565b946020939093013593505050565b6000806000606084860312156125d557600080fd5b6125de84612546565b92506125ec60208501612546565b9150604084013590509250925092565b8035801515811461255d57600080fd5b6000806040838503121561261f57600080fd5b61262883612546565b9150612636602084016125fc565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156126705761267061263f565b604051601f8501601f19908116603f011681019082821181831017156126985761269861263f565b816040528093508581528686860111156126b157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126dd57600080fd5b813567ffffffffffffffff8111156126f457600080fd5b8201601f8101841361270557600080fd5b61199b84823560208401612655565b60006020828403121561272657600080fd5b611d8b826125fc565b6000806000806080858703121561274557600080fd5b61274e85612546565b935061275c60208601612546565b925060408501359150606085013567ffffffffffffffff81111561277f57600080fd5b8501601f8101871361279057600080fd5b61279f87823560208401612655565b91505092959194509250565b600080604083850312156127be57600080fd5b6127c783612546565b915061263660208401612546565b600080602083850312156127e857600080fd5b823567ffffffffffffffff8082111561280057600080fd5b818501915085601f83011261281457600080fd5b81358181111561282357600080fd5b8660208260051b850101111561283857600080fd5b60209290920196919550909350505050565b600181811c9082168061285e57607f821691505b60208210810361287e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161294857612948612920565b5060010190565b600082516129618184602087016124db565b64173539b7b760d91b920191825250600501919050565b6000821982111561298b5761298b612920565b500190565b60208082526027908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526620746f6b656e7360c81b606082015260800190565b6020808252818101527f43616e206f6e6c79206d696e74203420746f6b656e7320617420612074696d65604082015260600190565b6000816000190483118215151615612a2657612a26612920565b500290565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b600082821015612abe57612abe612920565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612b278184602088016124db565b835190830190612b3b8183602088016124db565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7790830184612507565b9695505050505050565b600060208284031215612b9357600080fd5b8151611d8b816124a8565b634e487b7160e01b600052601260045260246000fd5b600082612bc357612bc3612b9e565b500490565b600082612bd757612bd7612b9e565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b4e649def5035cf94f79a06769d65f73ffcae456dab5cd76b9f185caa8714e1664736f6c634300080d0033

Deployed Bytecode Sourcemap

45626:5768:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36784:224;;;;;;;;;;-1:-1:-1;36784:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36784:224:0;;;;;;;;23604:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46274:41::-;;;;;;;;;;-1:-1:-1;46274:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1858:25:1;;;1846:2;1831:18;46274:41:0;1712:177:1;45881:45:0;;;;;;;;;;;;;;;;25163:221;;;;;;;;;;-1:-1:-1;25163:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2243:32:1;;;2225:51;;2213:2;2198:18;25163:221:0;2079:203:1;24686:411:0;;;;;;;;;;-1:-1:-1;24686:411:0;;;;;:::i;:::-;;:::i;:::-;;37424:113;;;;;;;;;;-1:-1:-1;37512:10:0;:17;37424:113;;45792:35;;;;;;;;;;;;;;;;46866:105;;;;;;;;;;-1:-1:-1;46866:105:0;;;;;:::i;:::-;;:::i;25913:339::-;;;;;;;;;;-1:-1:-1;25913:339:0;;;;;:::i;:::-;;:::i;37092:256::-;;;;;;;;;;-1:-1:-1;37092:256:0;;;;;:::i;:::-;;:::i;46755:105::-;;;;;;;;;;-1:-1:-1;46755:105:0;;;;;:::i;:::-;;:::i;46322:40::-;;;;;;;;;;-1:-1:-1;46322:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;46656:93;;;;;;;;;;-1:-1:-1;46656:93:0;;;;;:::i;:::-;;:::i;47076:95::-;;;;;;;;;;-1:-1:-1;47076:95:0;;;;;:::i;:::-;;:::i;46063:34::-;;;;;;;;;;-1:-1:-1;46063:34:0;;;;-1:-1:-1;;;46063:34:0;;;;;;26323:185;;;;;;;;;;-1:-1:-1;26323:185:0;;;;;:::i;:::-;;:::i;37614:233::-;;;;;;;;;;-1:-1:-1;37614:233:0;;;;;:::i;:::-;;:::i;47476:116::-;;;;;;;;;;-1:-1:-1;47476:116:0;;;;;:::i;:::-;;:::i;51288:103::-;;;;;;;;;;-1:-1:-1;51288:103:0;;;;;:::i;:::-;;:::i;45834:40::-;;;;;;;;;;;;;;;;23298:239;;;;;;;;;;-1:-1:-1;23298:239:0;;;;;:::i;:::-;;:::i;46459:89::-;;;;;;;;;;-1:-1:-1;46459:89:0;;;;;:::i;:::-;;:::i;23028:208::-;;;;;;;;;;-1:-1:-1;23028:208:0;;;;;:::i;:::-;;:::i;44645:103::-;;;;;;;;;;;;;:::i;46182:32::-;;;;;;;;;;;;;;;;46977:93;;;;;;;;;;-1:-1:-1;46977:93:0;;;;;:::i;:::-;;:::i;47274:98::-;;;;;;;;;;-1:-1:-1;47274:98:0;;;;;:::i;:::-;;:::i;43994:87::-;;;;;;;;;;-1:-1:-1;44067:6:0;;-1:-1:-1;;;;;44067:6:0;43994:87;;23773:104;;;;;;;;;;;;;:::i;25456:155::-;;;;;;;;;;-1:-1:-1;25456:155:0;;;;;:::i;:::-;;:::i;46144:31::-;;;;;;;;;;;;;;;;45752:33;;;;;;;;;;;;;;;;26579:328;;;;;;;;;;-1:-1:-1;26579:328:0;;;;;:::i;:::-;;:::i;50588:179::-;;;;;;;;;;-1:-1:-1;50588:179:0;;;;;:::i;:::-;;:::i;51085:197::-;;;;;;;;;;-1:-1:-1;51085:197:0;;;;;:::i;:::-;;:::i;47378:92::-;;;;;;;;;;-1:-1:-1;47378:92:0;;;;;:::i;:::-;;:::i;47177:91::-;;;;;;;;;;-1:-1:-1;47177:91:0;;;;;:::i;:::-;;:::i;25682:164::-;;;;;;;;;;-1:-1:-1;25682:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25803:25:0;;;25779:4;25803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25682:164;46221:46;;;;;;;;;;-1:-1:-1;46221:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46028:28;;;;;;;;;;-1:-1:-1;46028:28:0;;;;-1:-1:-1;;;;;46028:28:0;;;45712:33;;;;;;;;;;;;;;;;49914:668;;;;;;:::i;:::-;;:::i;46104:31::-;;;;;;;;;;-1:-1:-1;46104:31:0;;;;-1:-1:-1;;;46104:31:0;;;;;;45933:39;;;;;;;;;;;;;;;;44903:201;;;;;;;;;;-1:-1:-1;44903:201:0;;;;;:::i;:::-;;:::i;47804:2104::-;;;;;;:::i;:::-;;:::i;45979:42::-;;;;;;;;;;;;;;;;47598:194;;;;;;;;;;-1:-1:-1;47598:194:0;;;;;:::i;:::-;;:::i;36784:224::-;36886:4;-1:-1:-1;;;;;;36910:50:0;;-1:-1:-1;;;36910:50:0;;:90;;;36964:36;36988:11;36964:23;:36::i;:::-;36903:97;36784:224;-1:-1:-1;;36784:224:0:o;23604:100::-;23658:13;23691:5;23684:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23604:100;:::o;25163:221::-;25239:7;28506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28506:16:0;25259:73;;;;-1:-1:-1;;;25259:73:0;;6857:2:1;25259:73:0;;;6839:21:1;6896:2;6876:18;;;6869:30;6935:34;6915:18;;;6908:62;-1:-1:-1;;;6986:18:1;;;6979:42;7038:19;;25259:73:0;;;;;;;;;-1:-1:-1;25352:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25352:24:0;;25163:221::o;24686:411::-;24767:13;24783:23;24798:7;24783:14;:23::i;:::-;24767:39;;24831:5;-1:-1:-1;;;;;24825:11:0;:2;-1:-1:-1;;;;;24825:11:0;;24817:57;;;;-1:-1:-1;;;24817:57:0;;7270:2:1;24817:57:0;;;7252:21:1;7309:2;7289:18;;;7282:30;7348:34;7328:18;;;7321:62;-1:-1:-1;;;7399:18:1;;;7392:31;7440:19;;24817:57:0;7068:397:1;24817:57:0;21118:10;-1:-1:-1;;;;;24909:21:0;;;;:62;;-1:-1:-1;24934:37:0;24951:5;21118:10;25682:164;:::i;24934:37::-;24887:168;;;;-1:-1:-1;;;24887:168:0;;7672:2:1;24887:168:0;;;7654:21:1;7711:2;7691:18;;;7684:30;7750:34;7730:18;;;7723:62;7821:26;7801:18;;;7794:54;7865:19;;24887:168:0;7470:420:1;24887:168:0;25068:21;25077:2;25081:7;25068:8;:21::i;:::-;24756:341;24686:411;;:::o;46866:105::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;46940:17:::1;:23:::0;46866:105::o;25913:339::-;26108:41;21118:10;26141:7;26108:18;:41::i;:::-;26100:103;;;;-1:-1:-1;;;26100:103:0;;;;;;;:::i;:::-;26216:28;26226:4;26232:2;26236:7;26216:9;:28::i;37092:256::-;37189:7;37225:23;37242:5;37225:16;:23::i;:::-;37217:5;:31;37209:87;;;;-1:-1:-1;;;37209:87:0;;8876:2:1;37209:87:0;;;8858:21:1;8915:2;8895:18;;;8888:30;8954:34;8934:18;;;8927:62;-1:-1:-1;;;9005:18:1;;;8998:41;9056:19;;37209:87:0;8674:407:1;37209:87:0;-1:-1:-1;;;;;;37314:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37092:256::o;46755:105::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;46826:20:::1;:26:::0;46755:105::o;46656:93::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;46722:13:::1;:19:::0;46656:93::o;47076:95::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;47145:12:::1;:18:::0;47076:95::o;26323:185::-;26461:39;26478:4;26484:2;26488:7;26461:39;;;;;;;;;;;;:16;:39::i;37614:233::-;37689:7;37725:30;37512:10;:17;;37424:113;37725:30;37717:5;:38;37709:95;;;;-1:-1:-1;;;37709:95:0;;9288:2:1;37709:95:0;;;9270:21:1;9327:2;9307:18;;;9300:30;9366:34;9346:18;;;9339:62;-1:-1:-1;;;9417:18:1;;;9410:42;9469:19;;37709:95:0;9086:408:1;37709:95:0;37822:10;37833:5;37822:17;;;;;;;;:::i;:::-;;;;;;;;;37815:24;;37614:233;;;:::o;47476:116::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47553:22:0;;;::::1;;::::0;;;:16:::1;:22;::::0;;;;:31;;-1:-1:-1;;47553:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47476:116::o;51288:103::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;51359:24;;::::1;::::0;:14:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51288:103:::0;:::o;23298:239::-;23370:7;23406:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23406:16:0;;23433:73;;;;-1:-1:-1;;;23433:73:0;;9833:2:1;23433:73:0;;;9815:21:1;9872:2;9852:18;;;9845:30;9911:34;9891:18;;;9884:62;-1:-1:-1;;;9962:18:1;;;9955:39;10011:19;;23433:73:0;9631:405:1;46459:89:0;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;46523:11:::1;:17:::0;46459:89::o;23028:208::-;23100:7;-1:-1:-1;;;;;23128:19:0;;23120:74;;;;-1:-1:-1;;;23120:74:0;;10243:2:1;23120:74:0;;;10225:21:1;10282:2;10262:18;;;10255:30;10321:34;10301:18;;;10294:62;-1:-1:-1;;;10372:18:1;;;10365:40;10422:19;;23120:74:0;10041:406:1;23120:74:0;-1:-1:-1;;;;;;23212:16:0;;;;;:9;:16;;;;;;;23028:208::o;44645:103::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;44710:30:::1;44737:1;44710:18;:30::i;:::-;44645:103::o:0;46977:93::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;47043:13:::1;:19:::0;46977:93::o;47274:98::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;47341:14:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;47341:23:0::1;-1:-1:-1::0;;;;47341:23:0;;::::1;::::0;;;::::1;::::0;;47274:98::o;23773:104::-;23829:13;23862:7;23855:14;;;;;:::i;25456:155::-;25551:52;21118:10;25584:8;25594;25551:18;:52::i;26579:328::-;26754:41;21118:10;26787:7;26754:18;:41::i;:::-;26746:103;;;;-1:-1:-1;;;26746:103:0;;;;;;;:::i;:::-;26860:39;26874:4;26880:2;26884:7;26893:5;26860:13;:39::i;:::-;26579:328;;;;:::o;50588:179::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;50660:6:::1;50656:104;50676:14;50672:1;:18;50656:104;;;50712:36;50722:10;50734:13;37512:10:::0;:17;;37424:113;50734:13:::1;50712:9;:36::i;:::-;50692:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50656:104;;51085:197:::0;51178:13;51240:23;51255:7;51240:14;:23::i;:::-;51223:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;51209:65;;51085:197;;;:::o;47378:92::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;47442:11:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;47442:20:0::1;-1:-1:-1::0;;;;47442:20:0;;::::1;::::0;;;::::1;::::0;;47378:92::o;47177:91::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;47242:13:::1;:18:::0;;-1:-1:-1;;;;;;47242:18:0::1;-1:-1:-1::0;;;;;47242:18:0;;;::::1;::::0;;;::::1;::::0;;47177:91::o;49914:668::-;49989:11;;-1:-1:-1;;;49989:11:0;;;;49981:55;;;;-1:-1:-1;;;49981:55:0;;11374:2:1;49981:55:0;;;11356:21:1;11413:2;11393:18;;;11386:30;11452:33;11432:18;;;11425:61;11503:18;;49981:55:0;11172:355:1;49981:55:0;50087:11;;50069:14;50055:13;37512:10;:17;;37424:113;50055:13;:28;;;;:::i;:::-;:43;;50047:95;;;;-1:-1:-1;;;50047:95:0;;;;;;;:::i;:::-;50202:23;;50172:10;50161:22;;;;:10;:22;;;;;;:37;;50184:14;;50161:37;:::i;:::-;:64;;50153:109;;;;-1:-1:-1;;;50153:109:0;;;;;;;:::i;:::-;50317:9;50299:14;50281:17;;:32;;;;:::i;:::-;:45;50273:89;;;;-1:-1:-1;;;50273:89:0;;;;;;;:::i;:::-;50377:6;50373:172;50393:14;50389:1;:18;50373:172;;;50429:36;50439:10;50451:13;37512:10;:17;;37424:113;50429:36;50480:12;:14;;;:12;:14;;;:::i;:::-;;;;-1:-1:-1;;50520:10:0;50509:22;;;;:10;:22;;;;;:24;;;;;;:::i;:::-;;;;;;50409:3;;;;;:::i;:::-;;;;50373:172;;;;50555:19;:17;:19::i;:::-;49914:668;:::o;44903:201::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44992:22:0;::::1;44984:73;;;::::0;-1:-1:-1;;;44984:73:0;;13169:2:1;44984:73:0::1;::::0;::::1;13151:21:1::0;13208:2;13188:18;;;13181:30;13247:34;13227:18;;;13220:62;-1:-1:-1;;;13298:18:1;;;13291:36;13344:19;;44984:73:0::1;12967:402:1::0;44984:73:0::1;45068:28;45087:8;45068:18;:28::i;47804:2104::-:0;47880:14;;-1:-1:-1;;;47880:14:0;;;;47872:58;;;;-1:-1:-1;;;47872:58:0;;11374:2:1;47872:58:0;;;11356:21:1;11413:2;11393:18;;;11386:30;11452:33;11432:18;;;11425:61;11503:18;;47872:58:0;11172:355:1;47872:58:0;47962:10;47945:28;;;;:16;:28;;;;;;;;:59;;;;-1:-1:-1;47989:10:0;47977:23;;;;:11;:23;;;;;;48003:1;-1:-1:-1;47945:59:0;47941:1930;;;48100:13;;48082:14;48068:13;;:28;;;;:::i;:::-;:45;;48060:100;;;;-1:-1:-1;;;48060:100:0;;;;;;;:::i;:::-;48225:20;;48195:10;48183:23;;;;:11;:23;;;;;;:38;;48207:14;;48183:38;:::i;:::-;:62;;48175:107;;;;-1:-1:-1;;;48175:107:0;;13987:2:1;48175:107:0;;;13969:21:1;;;14006:18;;;13999:30;14065:34;14045:18;;;14038:62;14117:18;;48175:107:0;13785:356:1;48175:107:0;48337:9;48319:14;48305:13;;:28;;;;:::i;:::-;:41;48297:85;;;;-1:-1:-1;;;48297:85:0;;;;;;;:::i;:::-;48401:6;48397:190;48417:14;48413:1;:18;48397:190;;;48457:36;48467:10;48479:13;37512:10;:17;;37424:113;48457:36;48512:13;:15;;;:13;:15;;;:::i;:::-;;;;-1:-1:-1;;48558:10:0;48546:23;;;;:11;:23;;;;;:25;;;;;;:::i;:::-;;;;;;48433:3;;;;;:::i;:::-;;;;48397:190;;;;47941:1930;;;48624:10;48607:28;;;;:16;:28;;;;;;;;:60;;;;-1:-1:-1;48651:10:0;48639:23;;;;:11;:23;;;;;;48666:1;-1:-1:-1;48639:28:0;48607:60;48603:1268;;;48760:12;;48742:14;48729:12;;:27;;;;:::i;:::-;:43;;48721:98;;;;-1:-1:-1;;;48721:98:0;;;;;;;:::i;:::-;48905:23;;48884:20;;:44;;;;:::i;:::-;48854:10;48842:23;;;;:11;:23;;;;;;:38;;48866:14;;48842:38;:::i;:::-;:86;;48834:131;;;;-1:-1:-1;;;48834:131:0;;;;;;;:::i;:::-;49024:9;49006:14;48988:17;;:32;;;;:::i;:::-;:45;48980:89;;;;-1:-1:-1;;;48980:89:0;;;;;;;:::i;:::-;49088:6;49084:189;49104:14;49100:1;:18;49084:189;;;49144:36;49154:10;49166:13;37512:10;:17;;37424:113;49144:36;49199:12;:14;;;:12;:14;;;:::i;:::-;;;;-1:-1:-1;;49244:10:0;49232:23;;;;:11;:23;;;;;:25;;;;;;:::i;:::-;;;;;;49120:3;;;;;:::i;:::-;;;;49084:189;;48603:1268;49373:12;;49355:14;49342:12;;:27;;;;:::i;:::-;:43;;49334:95;;;;-1:-1:-1;;;49334:95:0;;;;;;;:::i;:::-;49493:23;;49463:10;49452:22;;;;:10;:22;;;;;;:37;;49475:14;;49452:37;:::i;:::-;:64;;49444:109;;;;-1:-1:-1;;;49444:109:0;;;;;;;:::i;:::-;49612:9;49594:14;49576:17;;:32;;;;:::i;:::-;:45;49568:89;;;;-1:-1:-1;;;49568:89:0;;;;;;;:::i;:::-;49676:6;49672:188;49692:14;49688:1;:18;49672:188;;;49732:36;49742:10;49754:13;37512:10;:17;;37424:113;49732:36;49787:12;:14;;;:12;:14;;;:::i;:::-;;;;-1:-1:-1;;49831:10:0;49820:22;;;;:10;:22;;;;;:24;;;;;;:::i;:::-;;;;;;49708:3;;;;;:::i;:::-;;;;49672:188;;48603:1268;49881:19;:17;:19::i;47598:194::-;44067:6;;-1:-1:-1;;;;;44067:6:0;21118:10;44214:23;44206:68;;;;-1:-1:-1;;;44206:68:0;;;;;;;:::i;:::-;47682:9:::1;47678:107;47698:17:::0;;::::1;47678:107;;;47769:4;47739:16;:27;47756:6;;47763:1;47756:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47739:27:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47739:27:0;:34;;-1:-1:-1;;47739:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47718:4;::::1;::::0;::::1;:::i;:::-;;;;47678:107;;22659:305:::0;22761:4;-1:-1:-1;;;;;;22798:40:0;;-1:-1:-1;;;22798:40:0;;:105;;-1:-1:-1;;;;;;;22855:48:0;;-1:-1:-1;;;22855:48:0;22798:105;:158;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;22920:36;13440:157;32563:174;32638:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32638:29:0;-1:-1:-1;;;;;32638:29:0;;;;;;;;:24;;32692:23;32638:24;32692:14;:23::i;:::-;-1:-1:-1;;;;;32683:46:0;;;;;;;;;;;32563:174;;:::o;28711:348::-;28804:4;28506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28506:16:0;28821:73;;;;-1:-1:-1;;;28821:73:0;;14348:2:1;28821:73:0;;;14330:21:1;14387:2;14367:18;;;14360:30;14426:34;14406:18;;;14399:62;-1:-1:-1;;;14477:18:1;;;14470:42;14529:19;;28821:73:0;14146:408:1;28821:73:0;28905:13;28921:23;28936:7;28921:14;:23::i;:::-;28905:39;;28974:5;-1:-1:-1;;;;;28963:16:0;:7;-1:-1:-1;;;;;28963:16:0;;:51;;;;29007:7;-1:-1:-1;;;;;28983:31:0;:20;28995:7;28983:11;:20::i;:::-;-1:-1:-1;;;;;28983:31:0;;28963:51;:87;;;-1:-1:-1;;;;;;25803:25:0;;;25779:4;25803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29018:32;28955:96;28711:348;-1:-1:-1;;;;28711:348:0:o;31820:625::-;31979:4;-1:-1:-1;;;;;31952:31:0;:23;31967:7;31952:14;:23::i;:::-;-1:-1:-1;;;;;31952:31:0;;31944:81;;;;-1:-1:-1;;;31944:81:0;;14761:2:1;31944:81:0;;;14743:21:1;14800:2;14780:18;;;14773:30;14839:34;14819:18;;;14812:62;-1:-1:-1;;;14890:18:1;;;14883:35;14935:19;;31944:81:0;14559:401:1;31944:81:0;-1:-1:-1;;;;;32044:16:0;;32036:65;;;;-1:-1:-1;;;32036:65:0;;15167:2:1;32036:65:0;;;15149:21:1;15206:2;15186:18;;;15179:30;15245:34;15225:18;;;15218:62;-1:-1:-1;;;15296:18:1;;;15289:34;15340:19;;32036:65:0;14965:400:1;32036:65:0;32114:39;32135:4;32141:2;32145:7;32114:20;:39::i;:::-;32218:29;32235:1;32239:7;32218:8;:29::i;:::-;-1:-1:-1;;;;;32260:15:0;;;;;;:9;:15;;;;;:20;;32279:1;;32260:15;:20;;32279:1;;32260:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32291:13:0;;;;;;:9;:13;;;;;:18;;32308:1;;32291:13;:18;;32308:1;;32291:18;:::i;:::-;;;;-1:-1:-1;;32320:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32320:21:0;-1:-1:-1;;;;;32320:21:0;;;;;;;;;32359:27;;32320:16;;32359:27;;;;;;;24756:341;24686:411;;:::o;45264:191::-;45357:6;;;-1:-1:-1;;;;;45374:17:0;;;-1:-1:-1;;;;;;45374:17:0;;;;;;;45407:40;;45357:6;;;45374:17;45357:6;;45407:40;;45338:16;;45407:40;45327:128;45264:191;:::o;32879:315::-;33034:8;-1:-1:-1;;;;;33025:17:0;:5;-1:-1:-1;;;;;33025:17:0;;33017:55;;;;-1:-1:-1;;;33017:55:0;;15702:2:1;33017:55:0;;;15684:21:1;15741:2;15721:18;;;15714:30;15780:27;15760:18;;;15753:55;15825:18;;33017:55:0;15500:349:1;33017:55:0;-1:-1:-1;;;;;33083:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33083:46:0;;;;;;;;;;33145:41;;540::1;;;33145::0;;513:18:1;33145:41:0;;;;;;;32879:315;;;:::o;27789:::-;27946:28;27956:4;27962:2;27966:7;27946:9;:28::i;:::-;27993:48;28016:4;28022:2;28026:7;28035:5;27993:22;:48::i;:::-;27985:111;;;;-1:-1:-1;;;27985:111:0;;;;;;;:::i;29401:110::-;29477:26;29487:2;29491:7;29477:26;;;;;;;;;;;;:9;:26::i;23948:334::-;28482:4;28506:16;;;:7;:16;;;;;;24021:13;;-1:-1:-1;;;;;28506:16:0;24047:76;;;;-1:-1:-1;;;24047:76:0;;16475:2:1;24047:76:0;;;16457:21:1;16514:2;16494:18;;;16487:30;16553:34;16533:18;;;16526:62;-1:-1:-1;;;16604:18:1;;;16597:45;16659:19;;24047:76:0;16273:411:1;24047:76:0;24136:21;24160:10;:8;:10::i;:::-;24136:34;;24212:1;24194:7;24188:21;:25;:86;;;;;;;;;;;;;;;;;24240:7;24249:18;:7;:16;:18::i;:::-;24223:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24188:86;24181:93;23948:334;-1:-1:-1;;;23948:334:0:o;50773:191::-;50846:13;;:41;;50822:19;;-1:-1:-1;;;;;50846:13:0;;50873:9;;50822:19;50846:41;50822:19;50846:41;50873:9;50846:13;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50821:66;;;50906:14;50898:58;;;;-1:-1:-1;;;50898:58:0;;17576:2:1;50898:58:0;;;17558:21:1;17615:2;17595:18;;;17588:30;17654:33;17634:18;;;17627:61;17705:18;;50898:58:0;17374:355:1;38460:589:0;-1:-1:-1;;;;;38666:18:0;;38662:187;;38701:40;38733:7;39876:10;:17;;39849:24;;;;:15;:24;;;;;:44;;;39904:24;;;;;;;;;;;;39772:164;38701:40;38662:187;;;38771:2;-1:-1:-1;;;;;38763:10:0;:4;-1:-1:-1;;;;;38763:10:0;;38759:90;;38790:47;38823:4;38829:7;38790:32;:47::i;:::-;-1:-1:-1;;;;;38863:16:0;;38859:183;;38896:45;38933:7;38896:36;:45::i;38859:183::-;38969:4;-1:-1:-1;;;;;38963:10:0;:2;-1:-1:-1;;;;;38963:10:0;;38959:83;;38990:40;39018:2;39022:7;38990:27;:40::i;33759:799::-;33914:4;-1:-1:-1;;;;;33935:13:0;;3652:19;:23;33931:620;;33971:72;;-1:-1:-1;;;33971:72:0;;-1:-1:-1;;;;;33971:36:0;;;;;:72;;21118:10;;34022:4;;34028:7;;34037:5;;33971:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33971:72:0;;;;;;;;-1:-1:-1;;33971:72:0;;;;;;;;;;;;:::i;:::-;;;33967:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34213:6;:13;34230:1;34213:18;34209:272;;34256:60;;-1:-1:-1;;;34256:60:0;;;;;;;:::i;34209:272::-;34431:6;34425:13;34416:6;34412:2;34408:15;34401:38;33967:529;-1:-1:-1;;;;;;34094:51:0;-1:-1:-1;;;34094:51:0;;-1:-1:-1;34087:58:0;;33931:620;-1:-1:-1;34535:4:0;33759:799;;;;;;:::o;29738:321::-;29868:18;29874:2;29878:7;29868:5;:18::i;:::-;29919:54;29950:1;29954:2;29958:7;29967:5;29919:22;:54::i;:::-;29897:154;;;;-1:-1:-1;;;29897:154:0;;;;;;;:::i;50972:107::-;51024:13;51057:14;51050:21;;;;;:::i;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;40563:988;40829:22;40879:1;40854:22;40871:4;40854:16;:22::i;:::-;:26;;;;:::i;:::-;40891:18;40912:26;;;:17;:26;;;;;;40829:51;;-1:-1:-1;41045:28:0;;;41041:328;;-1:-1:-1;;;;;41112:18:0;;41090:19;41112:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41163:30;;;;;;:44;;;41280:30;;:17;:30;;;;;:43;;;41041:328;-1:-1:-1;41465:26:0;;;;:17;:26;;;;;;;;41458:33;;;-1:-1:-1;;;;;41509:18:0;;;;;:12;:18;;;;;:34;;;;;;;41502:41;40563:988::o;41846:1079::-;42124:10;:17;42099:22;;42124:21;;42144:1;;42124:21;:::i;:::-;42156:18;42177:24;;;:15;:24;;;;;;42550:10;:26;;42099:46;;-1:-1:-1;42177:24:0;;42099:46;;42550:26;;;;;;:::i;:::-;;;;;;;;;42528:48;;42614:11;42589:10;42600;42589:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42694:28;;;:15;:28;;;;;;;:41;;;42866:24;;;;;42859:31;42901:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41917:1008;;;41846:1079;:::o;39350:221::-;39435:14;39452:20;39469:2;39452:16;:20::i;:::-;-1:-1:-1;;;;;39483:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39528:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39350:221:0:o;30395:439::-;-1:-1:-1;;;;;30475:16:0;;30467:61;;;;-1:-1:-1;;;30467:61:0;;19190:2:1;30467:61:0;;;19172:21:1;;;19209:18;;;19202:30;19268:34;19248:18;;;19241:62;19320:18;;30467:61:0;18988:356:1;30467:61:0;28482:4;28506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28506:16:0;:30;30539:58;;;;-1:-1:-1;;;30539:58:0;;19551:2:1;30539:58:0;;;19533:21:1;19590:2;19570:18;;;19563:30;19629;19609:18;;;19602:58;19677:18;;30539:58:0;19349:352:1;30539:58:0;30610:45;30639:1;30643:2;30647:7;30610:20;:45::i;:::-;-1:-1:-1;;;;;30668:13:0;;;;;;:9;:13;;;;;:18;;30685:1;;30668:13;:18;;30685:1;;30668:18;:::i;:::-;;;;-1:-1:-1;;30697:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30697:21:0;-1:-1:-1;;;;;30697:21:0;;;;;;;;30736:33;;30697:16;;;30736:33;;30697:16;;30736:33;51359:24:::1;51288:103:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:173::-;1411:20;;-1:-1:-1;;;;;1460:31:1;;1450:42;;1440:70;;1506:1;1503;1496:12;1440:70;1343:173;;;:::o;1521:186::-;1580:6;1633:2;1621:9;1612:7;1608:23;1604:32;1601:52;;;1649:1;1646;1639:12;1601:52;1672:29;1691:9;1672:29;:::i;1894:180::-;1953:6;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;-1:-1:-1;2045:23:1;;1894:180;-1:-1:-1;1894:180:1:o;2287:254::-;2355:6;2363;2416:2;2404:9;2395:7;2391:23;2387:32;2384:52;;;2432:1;2429;2422:12;2384:52;2455:29;2474:9;2455:29;:::i;:::-;2445:39;2531:2;2516:18;;;;2503:32;;-1:-1:-1;;;2287:254:1:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:160::-;2944:20;;3000:13;;2993:21;2983:32;;2973:60;;3029:1;3026;3019:12;3044:254;3109:6;3117;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;3209:29;3228:9;3209:29;:::i;:::-;3199:39;;3257:35;3288:2;3277:9;3273:18;3257:35;:::i;:::-;3247:45;;3044:254;;;;;:::o;3303:127::-;3364:10;3359:3;3355:20;3352:1;3345:31;3395:4;3392:1;3385:15;3419:4;3416:1;3409:15;3435:632;3500:5;3530:18;3571:2;3563:6;3560:14;3557:40;;;3577:18;;:::i;:::-;3652:2;3646:9;3620:2;3706:15;;-1:-1:-1;;3702:24:1;;;3728:2;3698:33;3694:42;3682:55;;;3752:18;;;3772:22;;;3749:46;3746:72;;;3798:18;;:::i;:::-;3838:10;3834:2;3827:22;3867:6;3858:15;;3897:6;3889;3882:22;3937:3;3928:6;3923:3;3919:16;3916:25;3913:45;;;3954:1;3951;3944:12;3913:45;4004:6;3999:3;3992:4;3984:6;3980:17;3967:44;4059:1;4052:4;4043:6;4035;4031:19;4027:30;4020:41;;;;3435:632;;;;;:::o;4072:451::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:52;;;4210:1;4207;4200:12;4162:52;4250:9;4237:23;4283:18;4275:6;4272:30;4269:50;;;4315:1;4312;4305:12;4269:50;4338:22;;4391:4;4383:13;;4379:27;-1:-1:-1;4369:55:1;;4420:1;4417;4410:12;4369:55;4443:74;4509:7;4504:2;4491:16;4486:2;4482;4478:11;4443:74;:::i;4528:180::-;4584:6;4637:2;4625:9;4616:7;4612:23;4608:32;4605:52;;;4653:1;4650;4643:12;4605:52;4676:26;4692:9;4676:26;:::i;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:615::-;5736:6;5744;5797:2;5785:9;5776:7;5772:23;5768:32;5765:52;;;5813:1;5810;5803:12;5765:52;5853:9;5840:23;5882:18;5923:2;5915:6;5912:14;5909:34;;;5939:1;5936;5929:12;5909:34;5977:6;5966:9;5962:22;5952:32;;6022:7;6015:4;6011:2;6007:13;6003:27;5993:55;;6044:1;6041;6034:12;5993:55;6084:2;6071:16;6110:2;6102:6;6099:14;6096:34;;;6126:1;6123;6116:12;6096:34;6179:7;6174:2;6164:6;6161:1;6157:14;6153:2;6149:23;6145:32;6142:45;6139:65;;;6200:1;6197;6190:12;6139:65;6231:2;6223:11;;;;;6253:6;;-1:-1:-1;5650:615:1;;-1:-1:-1;;;;5650:615:1:o;6270:380::-;6349:1;6345:12;;;;6392;;;6413:61;;6467:4;6459:6;6455:17;6445:27;;6413:61;6520:2;6512:6;6509:14;6489:18;6486:38;6483:161;;6566:10;6561:3;6557:20;6554:1;6547:31;6601:4;6598:1;6591:15;6629:4;6626:1;6619:15;6483:161;;6270:380;;;:::o;7895:356::-;8097:2;8079:21;;;8116:18;;;8109:30;8175:34;8170:2;8155:18;;8148:62;8242:2;8227:18;;7895:356::o;8256:413::-;8458:2;8440:21;;;8497:2;8477:18;;;8470:30;8536:34;8531:2;8516:18;;8509:62;-1:-1:-1;;;8602:2:1;8587:18;;8580:47;8659:3;8644:19;;8256:413::o;9499:127::-;9560:10;9555:3;9551:20;9548:1;9541:31;9591:4;9588:1;9581:15;9615:4;9612:1;9605:15;10452:127;10513:10;10508:3;10504:20;10501:1;10494:31;10544:4;10541:1;10534:15;10568:4;10565:1;10558:15;10584:135;10623:3;10644:17;;;10641:43;;10664:18;;:::i;:::-;-1:-1:-1;10711:1:1;10700:13;;10584:135::o;10724:443::-;10956:3;10994:6;10988:13;11010:53;11056:6;11051:3;11044:4;11036:6;11032:17;11010:53;:::i;:::-;-1:-1:-1;;;11085:16:1;;11110:22;;;-1:-1:-1;11159:1:1;11148:13;;10724:443;-1:-1:-1;10724:443:1:o;11532:128::-;11572:3;11603:1;11599:6;11596:1;11593:13;11590:39;;;11609:18;;:::i;:::-;-1:-1:-1;11645:9:1;;11532:128::o;11665:403::-;11867:2;11849:21;;;11906:2;11886:18;;;11879:30;11945:34;11940:2;11925:18;;11918:62;-1:-1:-1;;;12011:2:1;11996:18;;11989:37;12058:3;12043:19;;11665:403::o;12073:356::-;12275:2;12257:21;;;12294:18;;;12287:30;12353:34;12348:2;12333:18;;12326:62;12420:2;12405:18;;12073:356::o;12434:168::-;12474:7;12540:1;12536;12532:6;12528:14;12525:1;12522:21;12517:1;12510:9;12503:17;12499:45;12496:71;;;12547:18;;:::i;:::-;-1:-1:-1;12587:9:1;;12434:168::o;12607:355::-;12809:2;12791:21;;;12848:2;12828:18;;;12821:30;12887:33;12882:2;12867:18;;12860:61;12953:2;12938:18;;12607:355::o;13374:406::-;13576:2;13558:21;;;13615:2;13595:18;;;13588:30;13654:34;13649:2;13634:18;;13627:62;-1:-1:-1;;;13720:2:1;13705:18;;13698:40;13770:3;13755:19;;13374:406::o;15370:125::-;15410:4;15438:1;15435;15432:8;15429:34;;;15443:18;;:::i;:::-;-1:-1:-1;15480:9:1;;15370:125::o;15854:414::-;16056:2;16038:21;;;16095:2;16075:18;;;16068:30;16134:34;16129:2;16114:18;;16107:62;-1:-1:-1;;;16200:2:1;16185:18;;16178:48;16258:3;16243:19;;15854:414::o;16689:470::-;16868:3;16906:6;16900:13;16922:53;16968:6;16963:3;16956:4;16948:6;16944:17;16922:53;:::i;:::-;17038:13;;16997:16;;;;17060:57;17038:13;16997:16;17094:4;17082:17;;17060:57;:::i;:::-;17133:20;;16689:470;-1:-1:-1;;;;16689:470:1:o;17734:489::-;-1:-1:-1;;;;;18003:15:1;;;17985:34;;18055:15;;18050:2;18035:18;;18028:43;18102:2;18087:18;;18080:34;;;18150:3;18145:2;18130:18;;18123:31;;;17928:4;;18171:46;;18197:19;;18189:6;18171:46;:::i;:::-;18163:54;17734:489;-1:-1:-1;;;;;;17734:489:1:o;18228:249::-;18297:6;18350:2;18338:9;18329:7;18325:23;18321:32;18318:52;;;18366:1;18363;18356:12;18318:52;18398:9;18392:16;18417:30;18441:5;18417:30;:::i;18482:127::-;18543:10;18538:3;18534:20;18531:1;18524:31;18574:4;18571:1;18564:15;18598:4;18595:1;18588:15;18614:120;18654:1;18680;18670:35;;18685:18;;:::i;:::-;-1:-1:-1;18719:9:1;;18614:120::o;18739:112::-;18771:1;18797;18787:35;;18802:18;;:::i;:::-;-1:-1:-1;18836:9:1;;18739:112::o;18856:127::-;18917:10;18912:3;18908:20;18905:1;18898:31;18948:4;18945:1;18938:15;18972:4;18969:1;18962:15

Swarm Source

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