ETH Price: $3,492.69 (+3.61%)
Gas: 4 Gwei

Token

Cocoverse (CV)
 

Overview

Max Total Supply

2,222 CV

Holders

586

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CV
0x81929c0a06b100da5fe91f53d980add7ade469a1
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:
Cocoverse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// 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/access/[email protected]

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

/**
 * @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 @openzeppelin/contracts/utils/[email protected]

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

/**
 * @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/introspection/[email protected]

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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

/**
 * @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/[email protected]

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

/**
 * @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/token/ERC721/extensions/[email protected]

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

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

/**
 * @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 contracts/ERC721A.sol

// Creator: Chiru Labs

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity > 0, "ERC721A: quantity must be greater 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract Cocoverse is ERC721A, Ownable {
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress =
        0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    string baseURI;
    string public notRevealedUri;
    uint256 public price = 0.005 ether;
    uint256 public MAX_SUPPLY = 2222;
    uint256 public FREE_MAX_SUPPLY = 0;
    uint256 public MAX_PER_TX = 3;

    bool public paused = true;
    bool public revealed = false;

    constructor(
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721A("Cocoverse", "CV") {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    function mint(uint256 _amount) public payable {
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");

        if (FREE_MAX_SUPPLY >= totalSupply() + _amount) {
            require(MAX_PER_TX >= _amount, "Exceeds max per transaction");
        } else {
            require(MAX_PER_TX >= _amount, "Exceeds max per transaction");
            require(msg.value >= _amount * price, "Invalid funds provided");
        }

        _safeMint(msg.sender, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() public onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function reveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        MAX_SUPPLY = _newMaxSupply;
    }

    function setFreeMaxSupply(uint256 _newFreeMaxSupply) public onlyOwner {
        FREE_MAX_SUPPLY = _newFreeMaxSupply;
    }

    function setMaxPerTx(uint256 _newMaxPerTx) public onlyOwner {
        MAX_PER_TX = _newMaxPerTx;
    }

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

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token does not exist.");

        if (revealed == false) {
            return notRevealedUri;
        }

        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeMaxSupply","type":"uint256"}],"name":"setFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260008080556611c37937e08000600a556108ae600b55600c556003600d55600e805461ffff191660011790553480156200003d57600080fd5b5060405162002a3338038062002a33833981016040819052620000609162000372565b6040805180820182526009815268436f636f766572736560b81b60208083019182528351808501909452600284526121ab60f11b908401528151919291620000ab9160019162000215565b508051620000c190600290602084019062000215565b505050620000de620000d8620000fc60201b60201c565b62000100565b620000e98262000152565b620000f481620001ba565b50506200042f565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001a15760405162461bcd60e51b8152602060048201819052602482015260008051602062002a1383398151915260448201526064015b60405180910390fd5b8051620001b690600890602084019062000215565b5050565b6007546001600160a01b03163314620002055760405162461bcd60e51b8152602060048201819052602482015260008051602062002a13833981519152604482015260640162000198565b8051620001b69060099060208401905b8280546200022390620003dc565b90600052602060002090601f01602090048101928262000247576000855562000292565b82601f106200026257805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029257825182559160200191906001019062000275565b50620002a0929150620002a4565b5090565b5b80821115620002a05760008155600101620002a5565b600082601f830112620002cd57600080fd5b81516001600160401b0380821115620002ea57620002ea62000419565b604051601f8301601f19908116603f0116810190828211818310171562000315576200031562000419565b816040528381526020925086838588010111156200033257600080fd5b600091505b8382101562000356578582018301518183018401529082019062000337565b83821115620003685760008385830101525b9695505050505050565b600080604083850312156200038657600080fd5b82516001600160401b03808211156200039e57600080fd5b620003ac86838701620002bb565b93506020850151915080821115620003c357600080fd5b50620003d285828601620002bb565b9150509250929050565b600181811c90821680620003f157607f821691505b602082108114156200041357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6125d4806200043f6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063d223a6311161006f578063d223a63114610633578063e985e9c514610653578063f2c4ce1e14610673578063f2fde38b14610693578063f43a22dc146106b357600080fd5b8063b88d4fde1461057a578063c66828621461059a578063c6f6f216146105cb578063c87b56dd146105eb578063cd7c03261461060b57600080fd5b8063940cd05b116100f2578063940cd05b146104fc57806395d89b411461051c578063a035b1fe14610531578063a0712d6814610547578063a22cb4651461055a57600080fd5b8063715018a6146104935780638069876d146104a85780638da5cb5b146104be57806391b7f5ed146104dc57600080fd5b806332cb6b0c116101b157806355f804b31161017557806355f804b3146103f95780635c975abb146104195780636352211e146104335780636f8b44b01461045357806370a082311461047357600080fd5b806332cb6b0c1461036f5780633ccfd60b1461038557806342842e0e1461039a5780634f6ccce7146103ba57806351830227146103da57600080fd5b8063081c8c44116101f8578063081c8c44146102db578063095ea7b3146102f057806318160ddd1461031057806323b872dd1461032f5780632f745c591461034f57600080fd5b806301ffc9a71461022a57806302329a291461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004612161565b6106c9565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004612146565b610736565b005b34801561028d57600080fd5b5061029661077c565b6040516102569190612346565b3480156102af57600080fd5b506102c36102be366004612201565b61080e565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b50610296610899565b3480156102fc57600080fd5b5061027f61030b36600461211a565b610927565b34801561031c57600080fd5b506000545b604051908152602001610256565b34801561033b57600080fd5b5061027f61034a366004612024565b610a3f565b34801561035b57600080fd5b5061032161036a36600461211a565b610a4a565b34801561037b57600080fd5b50610321600b5481565b34801561039157600080fd5b5061027f610bb8565b3480156103a657600080fd5b5061027f6103b5366004612024565b610c3a565b3480156103c657600080fd5b506103216103d5366004612201565b610c55565b3480156103e657600080fd5b50600e5461024a90610100900460ff1681565b34801561040557600080fd5b5061027f6104143660046121b8565b610cb7565b34801561042557600080fd5b50600e5461024a9060ff1681565b34801561043f57600080fd5b506102c361044e366004612201565b610cf8565b34801561045f57600080fd5b5061027f61046e366004612201565b610d0a565b34801561047f57600080fd5b5061032161048e366004611fc7565b610d39565b34801561049f57600080fd5b5061027f610dca565b3480156104b457600080fd5b50610321600c5481565b3480156104ca57600080fd5b506007546001600160a01b03166102c3565b3480156104e857600080fd5b5061027f6104f7366004612201565b610e00565b34801561050857600080fd5b5061027f610517366004612146565b610e2f565b34801561052857600080fd5b50610296610e73565b34801561053d57600080fd5b50610321600a5481565b61027f610555366004612201565b610e82565b34801561056657600080fd5b5061027f6105753660046120e5565b611079565b34801561058657600080fd5b5061027f610595366004612065565b61113e565b3480156105a657600080fd5b5061029660405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105d757600080fd5b5061027f6105e6366004612201565b611177565b3480156105f757600080fd5b50610296610606366004612201565b6111a6565b34801561061757600080fd5b506102c373a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561063f57600080fd5b5061027f61064e366004612201565b611313565b34801561065f57600080fd5b5061024a61066e366004611feb565b611342565b34801561067f57600080fd5b5061027f61068e3660046121b8565b611421565b34801561069f57600080fd5b5061027f6106ae366004611fc7565b61145e565b3480156106bf57600080fd5b50610321600d5481565b60006001600160e01b031982166380ac58cd60e01b14806106fa57506001600160e01b03198216635b5e139f60e01b145b8061071557506001600160e01b0319821663780e9d6360e01b145b8061073057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107695760405162461bcd60e51b815260040161076090612359565b60405180910390fd5b600e805460ff1916911515919091179055565b60606001805461078b906124b1565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906124b1565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b826000541190565b61087d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610760565b506000908152600560205260409020546001600160a01b031690565b600980546108a6906124b1565b80601f01602080910402602001604051908101604052809291908181526020018280546108d2906124b1565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b505050505081565b600061093282610cf8565b9050806001600160a01b0316836001600160a01b031614156109a15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610760565b336001600160a01b03821614806109bd57506109bd8133611342565b610a2f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610760565b610a3a8383836114f6565b505050565b610a3a838383611552565b6000610a5583610d39565b8210610aae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610760565b600080549080805b83811015610b58576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b0957805192505b876001600160a01b0316836001600160a01b03161415610b455786841415610b375750935061073092505050565b83610b41816124ec565b9450505b5080610b50816124ec565b915050610ab6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610760565b6007546001600160a01b03163314610be25760405162461bcd60e51b815260040161076090612359565b604051600090339047908381818185875af1925050503d8060008114610c24576040519150601f19603f3d011682016040523d82523d6000602084013e610c29565b606091505b5050905080610c3757600080fd5b50565b610a3a8383836040518060200160405280600081525061113e565b600080548210610cb35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610760565b5090565b6007546001600160a01b03163314610ce15760405162461bcd60e51b815260040161076090612359565b8051610cf4906008906020840190611eac565b5050565b6000610d0382611899565b5192915050565b6007546001600160a01b03163314610d345760405162461bcd60e51b815260040161076090612359565b600b55565b60006001600160a01b038216610da55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610760565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610df45760405162461bcd60e51b815260040161076090612359565b610dfe6000611979565b565b6007546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161076090612359565b600a55565b6007546001600160a01b03163314610e595760405162461bcd60e51b815260040161076090612359565b600e80549115156101000261ff0019909216919091179055565b60606002805461078b906124b1565b600e5460ff1615610ebe5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610760565b80610ec860005490565b610ed2919061240c565b600b541015610f185760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610760565b60008111610f555760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610760565b80610f5f60005490565b610f69919061240c565b600c5410610fc85780600d541015610fc35760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e00000000006044820152606401610760565b61106f565b80600d54101561101a5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e00000000006044820152606401610760565b600a546110279082612438565b34101561106f5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610760565b610c3733826119cb565b6001600160a01b0382163314156110d25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610760565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611149848484611552565b611155848484846119e5565b6111715760405162461bcd60e51b81526004016107609061238e565b50505050565b6007546001600160a01b031633146111a15760405162461bcd60e51b815260040161076090612359565b600d55565b60606111b3826000541190565b6111f75760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610760565b600e54610100900460ff166112985760098054611213906124b1565b80601f016020809104026020016040519081016040528092919081815260200182805461123f906124b1565b801561128c5780601f106112615761010080835404028352916020019161128c565b820191906000526020600020905b81548152906001019060200180831161126f57829003601f168201915b50505050509050919050565b6000600880546112a7906124b1565b9050116112c35760405180602001604052806000815250610730565b60086112ce83611af2565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016112fe93929190612262565b60405160208183030381529060405292915050565b6007546001600160a01b0316331461133d5760405162461bcd60e51b815260040161076090612359565b600c55565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561139e57600080fd5b505afa1580156113b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d6919061219b565b6001600160a01b031614156113ef576001915050610730565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b0316331461144b5760405162461bcd60e51b815260040161076090612359565b8051610cf4906009906020840190611eac565b6007546001600160a01b031633146114885760405162461bcd60e51b815260040161076090612359565b6001600160a01b0381166114ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610760565b610c3781611979565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061155d82611899565b80519091506000906001600160a01b0316336001600160a01b031614806115945750336115898461080e565b6001600160a01b0316145b806115a6575081516115a69033611342565b9050806116105760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610760565b846001600160a01b031682600001516001600160a01b0316146116845760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610760565b6001600160a01b0384166116e85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610760565b6116f860008484600001516114f6565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906117bd90859061240c565b6000818152600360205260409020549091506001600160a01b031661184f576117e7816000541190565b1561184f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526118b8826000541190565b6119175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610760565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611966579392505050565b50806119718161249a565b915050611919565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cf4828260405180602001604052806000815250611bf0565b60006001600160a01b0384163b15611ae757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a29903390899088908890600401612313565b602060405180830381600087803b158015611a4357600080fd5b505af1925050508015611a73575060408051601f3d908101601f19168201909252611a709181019061217e565b60015b611acd573d808015611aa1576040519150601f19603f3d011682016040523d82523d6000602084013e611aa6565b606091505b508051611ac55760405162461bcd60e51b81526004016107609061238e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611419565b506001949350505050565b606081611b165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b405780611b2a816124ec565b9150611b399050600a83612424565b9150611b1a565b60008167ffffffffffffffff811115611b5b57611b5b61255d565b6040519080825280601f01601f191660200182016040528015611b85576020820181803683370190505b5090505b841561141957611b9a600183612457565b9150611ba7600a86612507565b611bb290603061240c565b60f81b818381518110611bc757611bc7612547565b60200101906001600160f81b031916908160001a905350611be9600a86612424565b9450611b89565b6000546001600160a01b038416611c535760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610760565b611c5e816000541190565b15611cab5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610760565b60008311611d075760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610760565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d639087906123e1565b6001600160801b03168152602001858360200151611d8191906123e1565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ea15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e6560008884886119e5565b611e815760405162461bcd60e51b81526004016107609061238e565b81611e8b816124ec565b9250508080611e99906124ec565b915050611e18565b506000819055611891565b828054611eb8906124b1565b90600052602060002090601f016020900481019282611eda5760008555611f20565b82601f10611ef357805160ff1916838001178555611f20565b82800160010185558215611f20579182015b82811115611f20578251825591602001919060010190611f05565b50610cb39291505b80821115610cb35760008155600101611f28565b600067ffffffffffffffff80841115611f5757611f5761255d565b604051601f8501601f19908116603f01168101908282118183101715611f7f57611f7f61255d565b81604052809350858152868686011115611f9857600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611fc257600080fd5b919050565b600060208284031215611fd957600080fd5b8135611fe481612573565b9392505050565b60008060408385031215611ffe57600080fd5b823561200981612573565b9150602083013561201981612573565b809150509250929050565b60008060006060848603121561203957600080fd5b833561204481612573565b9250602084013561205481612573565b929592945050506040919091013590565b6000806000806080858703121561207b57600080fd5b843561208681612573565b9350602085013561209681612573565b925060408501359150606085013567ffffffffffffffff8111156120b957600080fd5b8501601f810187136120ca57600080fd5b6120d987823560208401611f3c565b91505092959194509250565b600080604083850312156120f857600080fd5b823561210381612573565b915061211160208401611fb2565b90509250929050565b6000806040838503121561212d57600080fd5b823561213881612573565b946020939093013593505050565b60006020828403121561215857600080fd5b611fe482611fb2565b60006020828403121561217357600080fd5b8135611fe481612588565b60006020828403121561219057600080fd5b8151611fe481612588565b6000602082840312156121ad57600080fd5b8151611fe481612573565b6000602082840312156121ca57600080fd5b813567ffffffffffffffff8111156121e157600080fd5b8201601f810184136121f257600080fd5b61141984823560208401611f3c565b60006020828403121561221357600080fd5b5035919050565b6000815180845261223281602086016020860161246e565b601f01601f19169290920160200192915050565b6000815161225881856020860161246e565b9290920192915050565b600080855481600182811c91508083168061227e57607f831692505b602080841082141561229e57634e487b7160e01b86526022600452602486fd5b8180156122b257600181146122c3576122f0565b60ff198616895284890196506122f0565b60008c81526020902060005b868110156122e85781548b8201529085019083016122cf565b505084890196505b5050505050506123096123038287612246565b85612246565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123099083018461221a565b602081526000611fe4602083018461221a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124035761240361251b565b01949350505050565b6000821982111561241f5761241f61251b565b500190565b60008261243357612433612531565b500490565b60008160001904831182151516156124525761245261251b565b500290565b6000828210156124695761246961251b565b500390565b60005b83811015612489578181015183820152602001612471565b838111156111715750506000910152565b6000816124a9576124a961251b565b506000190190565b600181811c908216806124c557607f821691505b602082108114156124e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125005761250061251b565b5060010190565b60008261251657612516612531565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c3757600080fd5b6001600160e01b031981168114610c3757600080fdfea2646970667358221220c2ca597733893beb38f589905c91a2912533c4070a8f754e4e9a765da65bf07b64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5571656f36705769674b42504b554a5a7833356e4c6d576f71363455586d5541514e31684634314a353672532f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5576797a3150797a47386b6274724d433456564d61354b4d6265477176544552415a54704b6a76364d6b36622f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063d223a6311161006f578063d223a63114610633578063e985e9c514610653578063f2c4ce1e14610673578063f2fde38b14610693578063f43a22dc146106b357600080fd5b8063b88d4fde1461057a578063c66828621461059a578063c6f6f216146105cb578063c87b56dd146105eb578063cd7c03261461060b57600080fd5b8063940cd05b116100f2578063940cd05b146104fc57806395d89b411461051c578063a035b1fe14610531578063a0712d6814610547578063a22cb4651461055a57600080fd5b8063715018a6146104935780638069876d146104a85780638da5cb5b146104be57806391b7f5ed146104dc57600080fd5b806332cb6b0c116101b157806355f804b31161017557806355f804b3146103f95780635c975abb146104195780636352211e146104335780636f8b44b01461045357806370a082311461047357600080fd5b806332cb6b0c1461036f5780633ccfd60b1461038557806342842e0e1461039a5780634f6ccce7146103ba57806351830227146103da57600080fd5b8063081c8c44116101f8578063081c8c44146102db578063095ea7b3146102f057806318160ddd1461031057806323b872dd1461032f5780632f745c591461034f57600080fd5b806301ffc9a71461022a57806302329a291461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004612161565b6106c9565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004612146565b610736565b005b34801561028d57600080fd5b5061029661077c565b6040516102569190612346565b3480156102af57600080fd5b506102c36102be366004612201565b61080e565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b50610296610899565b3480156102fc57600080fd5b5061027f61030b36600461211a565b610927565b34801561031c57600080fd5b506000545b604051908152602001610256565b34801561033b57600080fd5b5061027f61034a366004612024565b610a3f565b34801561035b57600080fd5b5061032161036a36600461211a565b610a4a565b34801561037b57600080fd5b50610321600b5481565b34801561039157600080fd5b5061027f610bb8565b3480156103a657600080fd5b5061027f6103b5366004612024565b610c3a565b3480156103c657600080fd5b506103216103d5366004612201565b610c55565b3480156103e657600080fd5b50600e5461024a90610100900460ff1681565b34801561040557600080fd5b5061027f6104143660046121b8565b610cb7565b34801561042557600080fd5b50600e5461024a9060ff1681565b34801561043f57600080fd5b506102c361044e366004612201565b610cf8565b34801561045f57600080fd5b5061027f61046e366004612201565b610d0a565b34801561047f57600080fd5b5061032161048e366004611fc7565b610d39565b34801561049f57600080fd5b5061027f610dca565b3480156104b457600080fd5b50610321600c5481565b3480156104ca57600080fd5b506007546001600160a01b03166102c3565b3480156104e857600080fd5b5061027f6104f7366004612201565b610e00565b34801561050857600080fd5b5061027f610517366004612146565b610e2f565b34801561052857600080fd5b50610296610e73565b34801561053d57600080fd5b50610321600a5481565b61027f610555366004612201565b610e82565b34801561056657600080fd5b5061027f6105753660046120e5565b611079565b34801561058657600080fd5b5061027f610595366004612065565b61113e565b3480156105a657600080fd5b5061029660405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105d757600080fd5b5061027f6105e6366004612201565b611177565b3480156105f757600080fd5b50610296610606366004612201565b6111a6565b34801561061757600080fd5b506102c373a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561063f57600080fd5b5061027f61064e366004612201565b611313565b34801561065f57600080fd5b5061024a61066e366004611feb565b611342565b34801561067f57600080fd5b5061027f61068e3660046121b8565b611421565b34801561069f57600080fd5b5061027f6106ae366004611fc7565b61145e565b3480156106bf57600080fd5b50610321600d5481565b60006001600160e01b031982166380ac58cd60e01b14806106fa57506001600160e01b03198216635b5e139f60e01b145b8061071557506001600160e01b0319821663780e9d6360e01b145b8061073057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107695760405162461bcd60e51b815260040161076090612359565b60405180910390fd5b600e805460ff1916911515919091179055565b60606001805461078b906124b1565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906124b1565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b826000541190565b61087d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610760565b506000908152600560205260409020546001600160a01b031690565b600980546108a6906124b1565b80601f01602080910402602001604051908101604052809291908181526020018280546108d2906124b1565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b505050505081565b600061093282610cf8565b9050806001600160a01b0316836001600160a01b031614156109a15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610760565b336001600160a01b03821614806109bd57506109bd8133611342565b610a2f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610760565b610a3a8383836114f6565b505050565b610a3a838383611552565b6000610a5583610d39565b8210610aae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610760565b600080549080805b83811015610b58576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b0957805192505b876001600160a01b0316836001600160a01b03161415610b455786841415610b375750935061073092505050565b83610b41816124ec565b9450505b5080610b50816124ec565b915050610ab6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610760565b6007546001600160a01b03163314610be25760405162461bcd60e51b815260040161076090612359565b604051600090339047908381818185875af1925050503d8060008114610c24576040519150601f19603f3d011682016040523d82523d6000602084013e610c29565b606091505b5050905080610c3757600080fd5b50565b610a3a8383836040518060200160405280600081525061113e565b600080548210610cb35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610760565b5090565b6007546001600160a01b03163314610ce15760405162461bcd60e51b815260040161076090612359565b8051610cf4906008906020840190611eac565b5050565b6000610d0382611899565b5192915050565b6007546001600160a01b03163314610d345760405162461bcd60e51b815260040161076090612359565b600b55565b60006001600160a01b038216610da55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610760565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610df45760405162461bcd60e51b815260040161076090612359565b610dfe6000611979565b565b6007546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161076090612359565b600a55565b6007546001600160a01b03163314610e595760405162461bcd60e51b815260040161076090612359565b600e80549115156101000261ff0019909216919091179055565b60606002805461078b906124b1565b600e5460ff1615610ebe5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610760565b80610ec860005490565b610ed2919061240c565b600b541015610f185760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610760565b60008111610f555760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610760565b80610f5f60005490565b610f69919061240c565b600c5410610fc85780600d541015610fc35760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e00000000006044820152606401610760565b61106f565b80600d54101561101a5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e00000000006044820152606401610760565b600a546110279082612438565b34101561106f5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610760565b610c3733826119cb565b6001600160a01b0382163314156110d25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610760565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611149848484611552565b611155848484846119e5565b6111715760405162461bcd60e51b81526004016107609061238e565b50505050565b6007546001600160a01b031633146111a15760405162461bcd60e51b815260040161076090612359565b600d55565b60606111b3826000541190565b6111f75760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610760565b600e54610100900460ff166112985760098054611213906124b1565b80601f016020809104026020016040519081016040528092919081815260200182805461123f906124b1565b801561128c5780601f106112615761010080835404028352916020019161128c565b820191906000526020600020905b81548152906001019060200180831161126f57829003601f168201915b50505050509050919050565b6000600880546112a7906124b1565b9050116112c35760405180602001604052806000815250610730565b60086112ce83611af2565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016112fe93929190612262565b60405160208183030381529060405292915050565b6007546001600160a01b0316331461133d5760405162461bcd60e51b815260040161076090612359565b600c55565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561139e57600080fd5b505afa1580156113b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d6919061219b565b6001600160a01b031614156113ef576001915050610730565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b0316331461144b5760405162461bcd60e51b815260040161076090612359565b8051610cf4906009906020840190611eac565b6007546001600160a01b031633146114885760405162461bcd60e51b815260040161076090612359565b6001600160a01b0381166114ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610760565b610c3781611979565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061155d82611899565b80519091506000906001600160a01b0316336001600160a01b031614806115945750336115898461080e565b6001600160a01b0316145b806115a6575081516115a69033611342565b9050806116105760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610760565b846001600160a01b031682600001516001600160a01b0316146116845760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610760565b6001600160a01b0384166116e85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610760565b6116f860008484600001516114f6565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906117bd90859061240c565b6000818152600360205260409020549091506001600160a01b031661184f576117e7816000541190565b1561184f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526118b8826000541190565b6119175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610760565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611966579392505050565b50806119718161249a565b915050611919565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cf4828260405180602001604052806000815250611bf0565b60006001600160a01b0384163b15611ae757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a29903390899088908890600401612313565b602060405180830381600087803b158015611a4357600080fd5b505af1925050508015611a73575060408051601f3d908101601f19168201909252611a709181019061217e565b60015b611acd573d808015611aa1576040519150601f19603f3d011682016040523d82523d6000602084013e611aa6565b606091505b508051611ac55760405162461bcd60e51b81526004016107609061238e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611419565b506001949350505050565b606081611b165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b405780611b2a816124ec565b9150611b399050600a83612424565b9150611b1a565b60008167ffffffffffffffff811115611b5b57611b5b61255d565b6040519080825280601f01601f191660200182016040528015611b85576020820181803683370190505b5090505b841561141957611b9a600183612457565b9150611ba7600a86612507565b611bb290603061240c565b60f81b818381518110611bc757611bc7612547565b60200101906001600160f81b031916908160001a905350611be9600a86612424565b9450611b89565b6000546001600160a01b038416611c535760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610760565b611c5e816000541190565b15611cab5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610760565b60008311611d075760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610760565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d639087906123e1565b6001600160801b03168152602001858360200151611d8191906123e1565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ea15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e6560008884886119e5565b611e815760405162461bcd60e51b81526004016107609061238e565b81611e8b816124ec565b9250508080611e99906124ec565b915050611e18565b506000819055611891565b828054611eb8906124b1565b90600052602060002090601f016020900481019282611eda5760008555611f20565b82601f10611ef357805160ff1916838001178555611f20565b82800160010185558215611f20579182015b82811115611f20578251825591602001919060010190611f05565b50610cb39291505b80821115610cb35760008155600101611f28565b600067ffffffffffffffff80841115611f5757611f5761255d565b604051601f8501601f19908116603f01168101908282118183101715611f7f57611f7f61255d565b81604052809350858152868686011115611f9857600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611fc257600080fd5b919050565b600060208284031215611fd957600080fd5b8135611fe481612573565b9392505050565b60008060408385031215611ffe57600080fd5b823561200981612573565b9150602083013561201981612573565b809150509250929050565b60008060006060848603121561203957600080fd5b833561204481612573565b9250602084013561205481612573565b929592945050506040919091013590565b6000806000806080858703121561207b57600080fd5b843561208681612573565b9350602085013561209681612573565b925060408501359150606085013567ffffffffffffffff8111156120b957600080fd5b8501601f810187136120ca57600080fd5b6120d987823560208401611f3c565b91505092959194509250565b600080604083850312156120f857600080fd5b823561210381612573565b915061211160208401611fb2565b90509250929050565b6000806040838503121561212d57600080fd5b823561213881612573565b946020939093013593505050565b60006020828403121561215857600080fd5b611fe482611fb2565b60006020828403121561217357600080fd5b8135611fe481612588565b60006020828403121561219057600080fd5b8151611fe481612588565b6000602082840312156121ad57600080fd5b8151611fe481612573565b6000602082840312156121ca57600080fd5b813567ffffffffffffffff8111156121e157600080fd5b8201601f810184136121f257600080fd5b61141984823560208401611f3c565b60006020828403121561221357600080fd5b5035919050565b6000815180845261223281602086016020860161246e565b601f01601f19169290920160200192915050565b6000815161225881856020860161246e565b9290920192915050565b600080855481600182811c91508083168061227e57607f831692505b602080841082141561229e57634e487b7160e01b86526022600452602486fd5b8180156122b257600181146122c3576122f0565b60ff198616895284890196506122f0565b60008c81526020902060005b868110156122e85781548b8201529085019083016122cf565b505084890196505b5050505050506123096123038287612246565b85612246565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123099083018461221a565b602081526000611fe4602083018461221a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124035761240361251b565b01949350505050565b6000821982111561241f5761241f61251b565b500190565b60008261243357612433612531565b500490565b60008160001904831182151516156124525761245261251b565b500290565b6000828210156124695761246961251b565b500390565b60005b83811015612489578181015183820152602001612471565b838111156111715750506000910152565b6000816124a9576124a961251b565b506000190190565b600181811c908216806124c557607f821691505b602082108114156124e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125005761250061251b565b5060010190565b60008261251657612516612531565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c3757600080fd5b6001600160e01b031981168114610c3757600080fdfea2646970667358221220c2ca597733893beb38f589905c91a2912533c4070a8f754e4e9a765da65bf07b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5571656f36705769674b42504b554a5a7833356e4c6d576f71363455586d5541514e31684634314a353672532f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5576797a3150797a47386b6274724d433456564d61354b4d6265477176544552415a54704b6a76364d6b36622f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmUqeo6pWigKBPKUJZx35nLmWoq64UXmUAQN1hF41J56rS/
Arg [1] : _initNotRevealedUri (string): ipfs://QmUvyz1PyzG8kbtrMC4VVMa5KMbeGqvTERAZTpKjv6Mk6b/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5571656f36705769674b42504b554a5a7833356e4c6d57
Arg [4] : 6f71363455586d5541514e31684634314a353672532f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d5576797a3150797a47386b6274724d433456564d61354b
Arg [7] : 4d6265477176544552415a54704b6a76364d6b36622f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40216:3414:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27471:422;;;;;;;;;;-1:-1:-1;27471:422:0;;;;;:::i;:::-;;:::i;:::-;;;7756:14:1;;7749:22;7731:41;;7719:2;7704:18;27471:422:0;;;;;;;;42164:79;;;;;;;;;;-1:-1:-1;42164:79:0;;;;;:::i;:::-;;:::i;:::-;;29254:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30949:292::-;;;;;;;;;;-1:-1:-1;30949:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7054:32:1;;;7036:51;;7024:2;7009:18;30949:292:0;6890:203:1;40443:28:0;;;;;;;;;;;;;:::i;30470:413::-;;;;;;;;;;-1:-1:-1;30470:413:0;;;;;:::i;:::-;;:::i;25830:100::-;;;;;;;;;;-1:-1:-1;25883:7:0;25910:12;25830:100;;;17873:25:1;;;17861:2;17846:18;25830:100:0;17727:177:1;31976:162:0;;;;;;;;;;-1:-1:-1;31976:162:0;;;;;:::i;:::-;;:::i;26535:864::-;;;;;;;;;;-1:-1:-1;26535:864:0;;;;;:::i;:::-;;:::i;40519:32::-;;;;;;;;;;;;;;;;41972:184;;;;;;;;;;;;;:::i;32209:177::-;;;;;;;;;;-1:-1:-1;32209:177:0;;;;;:::i;:::-;;:::i;26007:228::-;;;;;;;;;;-1:-1:-1;26007:228:0;;;;;:::i;:::-;;:::i;40669:28::-;;;;;;;;;;-1:-1:-1;40669:28:0;;;;;;;;;;;42798:98;;;;;;;;;;-1:-1:-1;42798:98:0;;;;;:::i;:::-;;:::i;40637:25::-;;;;;;;;;;-1:-1:-1;40637:25:0;;;;;;;;29063:124;;;;;;;;;;-1:-1:-1;29063:124:0;;;;;:::i;:::-;;:::i;42439:107::-;;;;;;;;;;-1:-1:-1;42439:107:0;;;;;:::i;:::-;;:::i;27957:258::-;;;;;;;;;;-1:-1:-1;27957:258:0;;;;;:::i;:::-;;:::i;2643:103::-;;;;;;;;;;;;;:::i;40558:34::-;;;;;;;;;;;;;;;;1992:87;;;;;;;;;;-1:-1:-1;2065:6:0;;-1:-1:-1;;;;;2065:6:0;1992:87;;42341:90;;;;;;;;;;-1:-1:-1;42341:90:0;;;;;:::i;:::-;;:::i;42251:82::-;;;;;;;;;;-1:-1:-1;42251:82:0;;;;;:::i;:::-;;:::i;29423:104::-;;;;;;;;;;;;;:::i;40478:34::-;;;;;;;;;;;;;;;;40933:578;;;;;;:::i;:::-;;:::i;31313:311::-;;;;;;;;;;-1:-1:-1;31313:311:0;;;;;:::i;:::-;;:::i;32457:355::-;;;;;;;;;;-1:-1:-1;32457:355:0;;;;;:::i;:::-;;:::i;40262:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40262:46:0;;;;;42686:104;;;;;;;;;;-1:-1:-1;42686:104:0;;;;;:::i;:::-;;:::i;43038:589::-;;;;;;;;;;-1:-1:-1;43038:589:0;;;;;:::i;:::-;;:::i;40315:98::-;;;;;;;;;;;;40371:42;40315:98;;42554:124;;;;;;;;;;-1:-1:-1;42554:124:0;;;;;:::i;:::-;;:::i;41519:445::-;;;;;;;;;;-1:-1:-1;41519:445:0;;;;;:::i;:::-;;:::i;42904:126::-;;;;;;;;;;-1:-1:-1;42904:126:0;;;;;:::i;:::-;;:::i;2901:238::-;;;;;;;;;;-1:-1:-1;2901:238:0;;;;;:::i;:::-;;:::i;40599:29::-;;;;;;;;;;;;;;;;27471:422;27618:4;-1:-1:-1;;;;;;27660:40:0;;-1:-1:-1;;;27660:40:0;;:105;;-1:-1:-1;;;;;;;27717:48:0;;-1:-1:-1;;;27717:48:0;27660:105;:172;;;-1:-1:-1;;;;;;;27782:50:0;;-1:-1:-1;;;27782:50:0;27660:172;:225;;;-1:-1:-1;;;;;;;;;;23982:40:0;;;27849:36;27640:245;27471:422;-1:-1:-1;;27471:422:0:o;42164:79::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;;;;;;;;;42220:6:::1;:15:::0;;-1:-1:-1;;42220:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42164:79::o;29254:100::-;29308:13;29341:5;29334:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29254:100;:::o;30949:292::-;31053:7;31100:16;31108:7;33124:4;33158:12;-1:-1:-1;33148:22:0;33067:111;31100:16;31078:111;;;;-1:-1:-1;;;31078:111:0;;17515:2:1;31078:111:0;;;17497:21:1;17554:2;17534:18;;;17527:30;17593:34;17573:18;;;17566:62;-1:-1:-1;;;17644:18:1;;;17637:43;17697:19;;31078:111:0;17313:409:1;31078:111:0;-1:-1:-1;31209:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31209:24:0;;30949:292::o;40443:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30470:413::-;30543:13;30559:24;30575:7;30559:15;:24::i;:::-;30543:40;;30608:5;-1:-1:-1;;;;;30602:11:0;:2;-1:-1:-1;;;;;30602:11:0;;;30594:58;;;;-1:-1:-1;;;30594:58:0;;14341:2:1;30594:58:0;;;14323:21:1;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;-1:-1:-1;;;14470:18:1;;;14463:32;14512:19;;30594:58:0;14139:398:1;30594:58:0;796:10;-1:-1:-1;;;;;30687:21:0;;;;:62;;-1:-1:-1;30712:37:0;30729:5;796:10;41519:445;:::i;30712:37::-;30665:169;;;;-1:-1:-1;;;30665:169:0;;10913:2:1;30665:169:0;;;10895:21:1;10952:2;10932:18;;;10925:30;10991:34;10971:18;;;10964:62;11062:27;11042:18;;;11035:55;11107:19;;30665:169:0;10711:421:1;30665:169:0;30847:28;30856:2;30860:7;30869:5;30847:8;:28::i;:::-;30532:351;30470:413;;:::o;31976:162::-;32102:28;32112:4;32118:2;32122:7;32102:9;:28::i;26535:864::-;26660:7;26701:16;26711:5;26701:9;:16::i;:::-;26693:5;:24;26685:71;;;;-1:-1:-1;;;26685:71:0;;8209:2:1;26685:71:0;;;8191:21:1;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:1;;;8331:32;8380:19;;26685:71:0;8007:398:1;26685:71:0;26767:22;25910:12;;;26767:22;;26899:426;26923:14;26919:1;:18;26899:426;;;26959:31;26993:14;;;:11;:14;;;;;;;;;26959:48;;;;;;;;;-1:-1:-1;;;;;26959:48:0;;;;;-1:-1:-1;;;26959:48:0;;;;;;;;;;;;27026:28;27022:103;;27095:14;;;-1:-1:-1;27022:103:0;27164:5;-1:-1:-1;;;;;27143:26:0;:17;-1:-1:-1;;;;;27143:26:0;;27139:175;;;27209:5;27194:11;:20;27190:77;;;-1:-1:-1;27246:1:0;-1:-1:-1;27239:8:0;;-1:-1:-1;;;27239:8:0;27190:77;27285:13;;;;:::i;:::-;;;;27139:175;-1:-1:-1;26939:3:0;;;;:::i;:::-;;;;26899:426;;;-1:-1:-1;27335:56:0;;-1:-1:-1;;;27335:56:0;;16684:2:1;27335:56:0;;;16666:21:1;16723:2;16703:18;;;16696:30;16762:34;16742:18;;;16735:62;-1:-1:-1;;;16813:18:1;;;16806:44;16867:19;;27335:56:0;16482:410:1;41972:184:0;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42039:82:::1;::::0;42021:12:::1;::::0;42047:10:::1;::::0;42085:21:::1;::::0;42021:12;42039:82;42021:12;42039:82;42085:21;42047:10;42039:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42020:101;;;42140:7;42132:16;;;::::0;::::1;;42009:147;41972:184::o:0;32209:177::-;32339:39;32356:4;32362:2;32366:7;32339:39;;;;;;;;;;;;:16;:39::i;26007:228::-;26110:7;25910:12;;26143:5;:21;26135:69;;;;-1:-1:-1;;;26135:69:0;;10103:2:1;26135:69:0;;;10085:21:1;10142:2;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;-1:-1:-1;;;10232:18:1;;;10225:33;10275:19;;26135:69:0;9901:399:1;26135:69:0;-1:-1:-1;26222:5:0;26007:228::o;42798:98::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42870:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42798:98:::0;:::o;29063:124::-;29127:7;29154:20;29166:7;29154:11;:20::i;:::-;:25;;29063:124;-1:-1:-1;;29063:124:0:o;42439:107::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42512:10:::1;:26:::0;42439:107::o;27957:258::-;28021:7;-1:-1:-1;;;;;28063:19:0;;28041:112;;;;-1:-1:-1;;;28041:112:0;;11686:2:1;28041:112:0;;;11668:21:1;11725:2;11705:18;;;11698:30;11764:34;11744:18;;;11737:62;-1:-1:-1;;;11815:18:1;;;11808:41;11866:19;;28041:112:0;11484:407:1;28041:112:0;-1:-1:-1;;;;;;28179:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28179:27:0;;27957:258::o;2643:103::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;2708:30:::1;2735:1;2708:18;:30::i;:::-;2643:103::o:0;42341:90::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42406:5:::1;:17:::0;42341:90::o;42251:82::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42308:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;42308:17:0;;::::1;::::0;;;::::1;::::0;;42251:82::o;29423:104::-;29479:13;29512:7;29505:14;;;;;:::i;40933:578::-;40999:6;;;;40998:7;40990:26;;;;-1:-1:-1;;;40990:26:0;;8612:2:1;40990:26:0;;;8594:21:1;8651:1;8631:18;;;8624:29;-1:-1:-1;;;8669:18:1;;;8662:36;8715:18;;40990:26:0;8410:329:1;40990:26:0;41065:7;41049:13;25883:7;25910:12;;25830:100;41049:13;:23;;;;:::i;:::-;41035:10;;:37;;41027:68;;;;-1:-1:-1;;;41027:68:0;;11339:2:1;41027:68:0;;;11321:21:1;11378:2;11358:18;;;11351:30;-1:-1:-1;;;11397:18:1;;;11390:48;11455:18;;41027:68:0;11137:342:1;41027:68:0;41124:1;41114:7;:11;41106:34;;;;-1:-1:-1;;;41106:34:0;;9764:2:1;41106:34:0;;;9746:21:1;9803:2;9783:18;;;9776:30;-1:-1:-1;;;9822:18:1;;;9815:40;9872:18;;41106:34:0;9562:334:1;41106:34:0;41192:7;41176:13;25883:7;25910:12;;25830:100;41176:13;:23;;;;:::i;:::-;41157:15;;:42;41153:308;;41238:7;41224:10;;:21;;41216:61;;;;-1:-1:-1;;;41216:61:0;;14744:2:1;41216:61:0;;;14726:21:1;14783:2;14763:18;;;14756:30;14822:29;14802:18;;;14795:57;14869:18;;41216:61:0;14542:351:1;41216:61:0;41153:308;;;41332:7;41318:10;;:21;;41310:61;;;;-1:-1:-1;;;41310:61:0;;14744:2:1;41310:61:0;;;14726:21:1;14783:2;14763:18;;;14756:30;14822:29;14802:18;;;14795:57;14869:18;;41310:61:0;14542:351:1;41310:61:0;41417:5;;41407:15;;:7;:15;:::i;:::-;41394:9;:28;;41386:63;;;;-1:-1:-1;;;41386:63:0;;13990:2:1;41386:63:0;;;13972:21:1;14029:2;14009:18;;;14002:30;-1:-1:-1;;;14048:18:1;;;14041:52;14110:18;;41386:63:0;13788:346:1;41386:63:0;41473:30;41483:10;41495:7;41473:9;:30::i;31313:311::-;-1:-1:-1;;;;;31431:24:0;;796:10;31431:24;;31423:63;;;;-1:-1:-1;;;31423:63:0;;13216:2:1;31423:63:0;;;13198:21:1;13255:2;13235:18;;;13228:30;13294:28;13274:18;;;13267:56;13340:18;;31423:63:0;13014:350:1;31423:63:0;796:10;31499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31499:53:0;;;;;;;;;;31568:48;;7731:41:1;;;31499:42:0;;796:10;31568:48;;7704:18:1;31568:48:0;;;;;;;31313:311;;:::o;32457:355::-;32616:28;32626:4;32632:2;32636:7;32616:9;:28::i;:::-;32677:48;32700:4;32706:2;32710:7;32719:5;32677:22;:48::i;:::-;32655:149;;;;-1:-1:-1;;;32655:149:0;;;;;;;:::i;:::-;32457:355;;;;:::o;42686:104::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42757:10:::1;:25:::0;42686:104::o;43038:589::-;43140:13;43179:17;43187:8;33124:4;33158:12;-1:-1:-1;33148:22:0;33067:111;43179:17;43171:51;;;;-1:-1:-1;;;43171:51:0;;12098:2:1;43171:51:0;;;12080:21:1;12137:2;12117:18;;;12110:30;-1:-1:-1;;;12156:18:1;;;12149:51;12217:18;;43171:51:0;11896:345:1;43171:51:0;43239:8;;;;;;;43235:71;;43280:14;43273:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43038:589;;;:::o;43235:71::-;43362:1;43344:7;43338:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;43455:7;43489:26;43506:8;43489:16;:26::i;:::-;43542:13;;;;;;;;;;;;;-1:-1:-1;;;43542:13:0;;;43412:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43318:301;43038:589;-1:-1:-1;;43038:589:0:o;42554:124::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42635:15:::1;:35:::0;42554:124::o;41519:445::-;41817:28;;-1:-1:-1;;;41817:28:0;;-1:-1:-1;;;;;7054:32:1;;;41817:28:0;;;7036:51:1;41644:4:0;;40371:42;;41809:49;;;40371:42;;41817:21;;7009:18:1;;41817:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41809:49:0;;41805:93;;;41882:4;41875:11;;;;;41805:93;-1:-1:-1;;;;;31866:25:0;;;31837:4;31866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41917:39;41910:46;41519:445;-1:-1:-1;;;;41519:445:0:o;42904:126::-;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42990:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;2901:238::-:0;2065:6;;-1:-1:-1;;;;;2065:6:0;796:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3004:22:0;::::1;2982:110;;;::::0;-1:-1:-1;;;2982:110:0;;8946:2:1;2982:110:0::1;::::0;::::1;8928:21:1::0;8985:2;8965:18;;;8958:30;9024:34;9004:18;;;8997:62;-1:-1:-1;;;9075:18:1;;;9068:36;9121:19;;2982:110:0::1;8744:402:1::0;2982:110:0::1;3103:28;3122:8;3103:18;:28::i;37246:196::-:0;37361:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37361:29:0;-1:-1:-1;;;;;37361:29:0;;;;;;;;;37406:28;;37361:24;;37406:28;;;;;;;37246:196;;;:::o;35210:1918::-;35325:35;35363:20;35375:7;35363:11;:20::i;:::-;35438:18;;35325:58;;-1:-1:-1;35396:22:0;;-1:-1:-1;;;;;35422:34:0;796:10;-1:-1:-1;;;;;35422:34:0;;:87;;;-1:-1:-1;796:10:0;35473:20;35485:7;35473:11;:20::i;:::-;-1:-1:-1;;;;;35473:36:0;;35422:87;:154;;;-1:-1:-1;35543:18:0;;35526:50;;796:10;41519:445;:::i;35526:50::-;35396:181;;35612:17;35590:117;;;;-1:-1:-1;;;35590:117:0;;13571:2:1;35590:117:0;;;13553:21:1;13610:2;13590:18;;;13583:30;13649:34;13629:18;;;13622:62;-1:-1:-1;;;13700:18:1;;;13693:48;13758:19;;35590:117:0;13369:414:1;35590:117:0;35764:4;-1:-1:-1;;;;;35742:26:0;:13;:18;;;-1:-1:-1;;;;;35742:26:0;;35720:114;;;;-1:-1:-1;;;35720:114:0;;12448:2:1;35720:114:0;;;12430:21:1;12487:2;12467:18;;;12460:30;12526:34;12506:18;;;12499:62;-1:-1:-1;;;12577:18:1;;;12570:36;12623:19;;35720:114:0;12246:402:1;35720:114:0;-1:-1:-1;;;;;35853:16:0;;35845:66;;;;-1:-1:-1;;;35845:66:0;;10507:2:1;35845:66:0;;;10489:21:1;10546:2;10526:18;;;10519:30;10585:34;10565:18;;;10558:62;-1:-1:-1;;;10636:18:1;;;10629:35;10681:19;;35845:66:0;10305:401:1;35845:66:0;36032:49;36049:1;36053:7;36062:13;:18;;;36032:8;:49::i;:::-;-1:-1:-1;;;;;36286:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36286:31:0;;;-1:-1:-1;;;;;36286:31:0;;;-1:-1:-1;;36286:31:0;;;;;;;36332:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36332:29:0;;;;;;;;;;;;;36408:43;;;;;;;;;;36434:15;36408:43;;;;;;;;;;36385:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;36385:66:0;;;;;;;-1:-1:-1;;;36385:66:0;;;;;;;;;;;;36286:18;36713:11;;36385:20;;36713:11;:::i;:::-;36780:1;36739:24;;;:11;:24;;;;;:29;36691:33;;-1:-1:-1;;;;;;36739:29:0;36735:288;;36803:20;36811:11;33124:4;33158:12;-1:-1:-1;33148:22:0;33067:111;36803:20;36799:213;;;36871:125;;;;;;;;36908:18;;-1:-1:-1;;;;;36871:125:0;;;;;;36949:28;;;;36871:125;;;;;;;;;;-1:-1:-1;36844:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;36844:152:0;-1:-1:-1;;;;;;36844:152:0;;;;;;;;;;;;36799:213;37059:7;37055:2;-1:-1:-1;;;;;37040:27:0;37049:4;-1:-1:-1;;;;;37040:27:0;;;;;;;;;;;37078:42;35314:1814;;;35210:1918;;;:::o;28497:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;28632:16:0;28640:7;33124:4;33158:12;-1:-1:-1;33148:22:0;33067:111;28632:16;28624:71;;;;-1:-1:-1;;;28624:71:0;;9353:2:1;28624:71:0;;;9335:21:1;9392:2;9372:18;;;9365:30;9431:34;9411:18;;;9404:62;-1:-1:-1;;;9482:18:1;;;9475:40;9532:19;;28624:71:0;9151:406:1;28624:71:0;28728:7;28708:216;28762:31;28796:17;;;:11;:17;;;;;;;;;28762:51;;;;;;;;;-1:-1:-1;;;;;28762:51:0;;;;;-1:-1:-1;;;28762:51:0;;;;;;;;;;;;28832:28;28828:85;;28888:9;28497:504;-1:-1:-1;;;28497:504:0:o;28828:85::-;-1:-1:-1;28739:6:0;;;;:::i;:::-;;;;28708:216;;3299:191;3392:6;;;-1:-1:-1;;;;;3409:17:0;;;-1:-1:-1;;;;;;3409:17:0;;;;;;;3442:40;;3392:6;;;3409:17;3392:6;;3442:40;;3373:16;;3442:40;3362:128;3299:191;:::o;33186:104::-;33255:27;33265:2;33269:8;33255:27;;;;;;;;;;;;:9;:27::i;38007:985::-;38162:4;-1:-1:-1;;;;;38183:13:0;;15508:20;15556:8;38179:806;;38236:175;;-1:-1:-1;;;38236:175:0;;-1:-1:-1;;;;;38236:36:0;;;;;:175;;796:10;;38330:4;;38357:7;;38387:5;;38236:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38236:175:0;;;;;;;;-1:-1:-1;;38236:175:0;;;;;;;;;;;;:::i;:::-;;;38215:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38598:13:0;;38594:321;;38641:109;;-1:-1:-1;;;38641:109:0;;;;;;;:::i;38594:321::-;38865:6;38859:13;38850:6;38846:2;38842:15;38835:38;38215:715;-1:-1:-1;;;;;;38475:55:0;-1:-1:-1;;;38475:55:0;;-1:-1:-1;38468:62:0;;38179:806;-1:-1:-1;38969:4:0;38007:985;;;;;;:::o;3839:723::-;3895:13;4116:10;4112:53;;-1:-1:-1;;4143:10:0;;;;;;;;;;;;-1:-1:-1;;;4143:10:0;;;;;3839:723::o;4112:53::-;4190:5;4175:12;4231:78;4238:9;;4231:78;;4264:8;;;;:::i;:::-;;-1:-1:-1;4287:10:0;;-1:-1:-1;4295:2:0;4287:10;;:::i;:::-;;;4231:78;;;4319:19;4351:6;4341:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4341:17:0;;4319:39;;4369:154;4376:10;;4369:154;;4403:11;4413:1;4403:11;;:::i;:::-;;-1:-1:-1;4472:10:0;4480:2;4472:5;:10;:::i;:::-;4459:24;;:2;:24;:::i;:::-;4446:39;;4429:6;4436;4429:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4429:56:0;;;;;;;;-1:-1:-1;4500:11:0;4509:2;4500:11;;:::i;:::-;;;4369:154;;33567:1389;33690:20;33713:12;-1:-1:-1;;;;;33744:16:0;;33736:62;;;;-1:-1:-1;;;33736:62:0;;16282:2:1;33736:62:0;;;16264:21:1;16321:2;16301:18;;;16294:30;16360:34;16340:18;;;16333:62;-1:-1:-1;;;16411:18:1;;;16404:31;16452:19;;33736:62:0;16080:397:1;33736:62:0;33943:21;33951:12;33124:4;33158:12;-1:-1:-1;33148:22:0;33067:111;33943:21;33942:22;33934:64;;;;-1:-1:-1;;;33934:64:0;;15924:2:1;33934:64:0;;;15906:21:1;15963:2;15943:18;;;15936:30;16002:31;15982:18;;;15975:59;16051:18;;33934:64:0;15722:353:1;33934:64:0;34028:1;34017:8;:12;34009:60;;;;-1:-1:-1;;;34009:60:0;;15100:2:1;34009:60:0;;;15082:21:1;15139:2;15119:18;;;15112:30;15178:34;15158:18;;;15151:62;-1:-1:-1;;;15229:18:1;;;15222:33;15272:19;;34009:60:0;14898:399:1;34009:60:0;-1:-1:-1;;;;;34189:16:0;;34156:30;34189:16;;;:12;:16;;;;;;;;;34156:49;;;;;;;;;-1:-1:-1;;;;;34156:49:0;;;;;-1:-1:-1;;;34156:49:0;;;;;;;;;;;34235:135;;;;;;;;34261:19;;34156:49;;34235:135;;;34261:39;;34291:8;;34261:39;:::i;:::-;-1:-1:-1;;;;;34235:135:0;;;;;34350:8;34315:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34235:135:0;;;;;;-1:-1:-1;;;;;34216:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;34216:154:0;;;;;;;;;;;;34409:43;;;;;;;;;;;34435:15;34409:43;;;;;;;;34381:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34381:71:0;-1:-1:-1;;;;;;34381:71:0;;;;;;;;;;;;;;;;;;34393:12;;34513:325;34537:8;34533:1;:12;34513:325;;;34572:38;;34597:12;;-1:-1:-1;;;;;34572:38:0;;;34589:1;;34572:38;;34589:1;;34572:38;34651:59;34682:1;34686:2;34690:12;34704:5;34651:22;:59::i;:::-;34625:172;;;;-1:-1:-1;;;34625:172:0;;;;;;;:::i;:::-;34812:14;;;;:::i;:::-;;;;34547:3;;;;;:::i;:::-;;;;34513:325;;;-1:-1:-1;34850:12:0;:27;;;34888:60;32457:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;:::-;1051:5;815:247;-1:-1:-1;;;815:247:1:o;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:185::-;5278:3;5316:5;5310:12;5331:52;5376:6;5371:3;5364:4;5357:5;5353:16;5331:52;:::i;:::-;5399:16;;;;;5236:185;-1:-1:-1;;5236:185:1:o;5426:1249::-;5650:3;5679:1;5712:6;5706:13;5742:3;5764:1;5792:9;5788:2;5784:18;5774:28;;5852:2;5841:9;5837:18;5874;5864:61;;5918:4;5910:6;5906:17;5896:27;;5864:61;5944:2;5992;5984:6;5981:14;5961:18;5958:38;5955:165;;;-1:-1:-1;;;6019:33:1;;6075:4;6072:1;6065:15;6105:4;6026:3;6093:17;5955:165;6136:18;6163:104;;;;6281:1;6276:320;;;;6129:467;;6163:104;-1:-1:-1;;6196:24:1;;6184:37;;6241:16;;;;-1:-1:-1;6163:104:1;;6276:320;17982:1;17975:14;;;18019:4;18006:18;;6371:1;6385:165;6399:6;6396:1;6393:13;6385:165;;;6477:14;;6464:11;;;6457:35;6520:16;;;;6414:10;;6385:165;;;6389:3;;6579:6;6574:3;6570:16;6563:23;;6129:467;;;;;;;6612:57;6638:30;6664:3;6656:6;6638:30;:::i;:::-;6630:6;6612:57;:::i;:::-;6605:64;5426:1249;-1:-1:-1;;;;;;5426:1249:1:o;7098:488::-;-1:-1:-1;;;;;7367:15:1;;;7349:34;;7419:15;;7414:2;7399:18;;7392:43;7466:2;7451:18;;7444:34;;;7514:3;7509:2;7494:18;;7487:31;;;7292:4;;7535:45;;7560:19;;7552:6;7535:45;:::i;7783:219::-;7932:2;7921:9;7914:21;7895:4;7952:44;7992:2;7981:9;7977:18;7969:6;7952:44;:::i;12653:356::-;12855:2;12837:21;;;12874:18;;;12867:30;12933:34;12928:2;12913:18;;12906:62;13000:2;12985:18;;12653:356::o;15302:415::-;15504:2;15486:21;;;15543:2;15523:18;;;15516:30;15582:34;15577:2;15562:18;;15555:62;-1:-1:-1;;;15648:2:1;15633:18;;15626:49;15707:3;15692:19;;15302:415::o;18035:253::-;18075:3;-1:-1:-1;;;;;18164:2:1;18161:1;18157:10;18194:2;18191:1;18187:10;18225:3;18221:2;18217:12;18212:3;18209:21;18206:47;;;18233:18;;:::i;:::-;18269:13;;18035:253;-1:-1:-1;;;;18035:253:1:o;18293:128::-;18333:3;18364:1;18360:6;18357:1;18354:13;18351:39;;;18370:18;;:::i;:::-;-1:-1:-1;18406:9:1;;18293:128::o;18426:120::-;18466:1;18492;18482:35;;18497:18;;:::i;:::-;-1:-1:-1;18531:9:1;;18426:120::o;18551:168::-;18591:7;18657:1;18653;18649:6;18645:14;18642:1;18639:21;18634:1;18627:9;18620:17;18616:45;18613:71;;;18664:18;;:::i;:::-;-1:-1:-1;18704:9:1;;18551:168::o;18724:125::-;18764:4;18792:1;18789;18786:8;18783:34;;;18797:18;;:::i;:::-;-1:-1:-1;18834:9:1;;18724:125::o;18854:258::-;18926:1;18936:113;18950:6;18947:1;18944:13;18936:113;;;19026:11;;;19020:18;19007:11;;;19000:39;18972:2;18965:10;18936:113;;;19067:6;19064:1;19061:13;19058:48;;;-1:-1:-1;;19102:1:1;19084:16;;19077:27;18854:258::o;19117:136::-;19156:3;19184:5;19174:39;;19193:18;;:::i;:::-;-1:-1:-1;;;19229:18:1;;19117:136::o;19258:380::-;19337:1;19333:12;;;;19380;;;19401:61;;19455:4;19447:6;19443:17;19433:27;;19401:61;19508:2;19500:6;19497:14;19477:18;19474:38;19471:161;;;19554:10;19549:3;19545:20;19542:1;19535:31;19589:4;19586:1;19579:15;19617:4;19614:1;19607:15;19471:161;;19258:380;;;:::o;19643:135::-;19682:3;-1:-1:-1;;19703:17:1;;19700:43;;;19723:18;;:::i;:::-;-1:-1:-1;19770:1:1;19759:13;;19643:135::o;19783:112::-;19815:1;19841;19831:35;;19846:18;;:::i;:::-;-1:-1:-1;19880:9:1;;19783:112::o;19900:127::-;19961:10;19956:3;19952:20;19949:1;19942:31;19992:4;19989:1;19982:15;20016:4;20013:1;20006:15;20032:127;20093:10;20088:3;20084:20;20081:1;20074:31;20124:4;20121:1;20114:15;20148:4;20145:1;20138:15;20164:127;20225:10;20220:3;20216:20;20213:1;20206:31;20256:4;20253:1;20246:15;20280:4;20277:1;20270:15;20296:127;20357:10;20352:3;20348:20;20345:1;20338:31;20388:4;20385:1;20378:15;20412:4;20409:1;20402:15;20428:131;-1:-1:-1;;;;;20503:31:1;;20493:42;;20483:70;;20549:1;20546;20539:12;20564:131;-1:-1:-1;;;;;;20638:32:1;;20628:43;;20618:71;;20685:1;20682;20675:12

Swarm Source

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