ETH Price: $3,422.66 (-1.65%)
Gas: 6 Gwei

Token

Cozy Penguins (PENGUINS)
 

Overview

Max Total Supply

1,545 PENGUINS

Holders

540

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
3l0nmusk.eth
Balance
3 PENGUINS
0x9a4dba60aa3f36b48cdb25266140a4844df4a8a3
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:
CozyPenguins

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contract.sol


pragma solidity ^0.8.13;




contract CozyPenguins is Ownable, ERC721A {

    using Strings for uint256;

    uint256 public paid_price = 0.0088 ether;
    uint256 public maxNFTPerWallet = 3;
    uint256 public maxFreeNFTPerWallet = 3;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public FREE_SUPPLY = 1111;

    bool public revealed = false;
    string public baseUri = "https://gateway.pinata.cloud/ipfs/QmWEX7zNvGbmUNk7Qdgi3tbw55FZ71CTEdPAD7piqR3x3x/";
    uint96 private royaltyBasisPoints = 1000;

    mapping(address => uint) public amountNFTsperWallet;
    mapping(address => uint) public amountNFTsperWalletFreeMint;

    enum MintStatus {
        OFF, 
        FREE, 
        PAID
    }

    MintStatus public mintStatus = MintStatus.OFF;

    constructor() ERC721A("Cozy Penguins", "PENGUINS") {}

    function soldOut() external view returns (bool) {
        return totalSupply() == MAX_SUPPLY;
    }

    function freeSoldOut() external view returns (bool) {
        return totalSupply() >= FREE_SUPPLY;
    }

    function numberMinted(address owner) external view returns (uint256) {
        return amountNFTsperWallet[owner];
    }

    function numberFreeMinted(address owner) external view returns (uint256) {
        return amountNFTsperWalletFreeMint[owner];
    }

function freeMint(uint _quantity) external {
        require(mintStatus == MintStatus.FREE, "Free mint off");
        require(totalSupply() + _quantity <= FREE_SUPPLY, "Exceeds free supply");
        require(_quantity + amountNFTsperWalletFreeMint[msg.sender] <= maxFreeNFTPerWallet, "You can only get 3 NFTs on the Sale");
        amountNFTsperWalletFreeMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function mint(uint _quantity) external payable {
        uint price = paid_price;
        require(price != 0, "Price is 0");
        require(mintStatus == MintStatus.PAID, "Mint off");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Exceeds supply");
        require(_quantity + amountNFTsperWallet[msg.sender] <= maxNFTPerWallet, "You cannot have more NFTs for this transaction");
        require(msg.value >= price * _quantity, "Insufficient ETH");
        amountNFTsperWallet[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function devMint(uint256 _quantity) external onlyOwner {
        require(_quantity > 0, "INCORRECT_QUANTITY");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED");
        
        _safeMint(msg.sender, _quantity);
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "No funds to withdraw");
        payable(owner()).transfer(address(this).balance);
    }

    function setRoyalty(uint96 _royaltyBasisPoints) external onlyOwner {
        royaltyBasisPoints = _royaltyBasisPoints;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) {
        require(_exists(_tokenId), "Cannot query non-existent token");
        return (owner(), (_salePrice * royaltyBasisPoints) / 10000);
    }

    function setBaseUri(string calldata _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function reveal(string calldata _baseUri) external onlyOwner {
        revealed = true;
        baseUri = _baseUri;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory filename = revealed ? Strings.toString(tokenId) : "hidden";
        return bytes(baseUri).length != 0 ? string(abi.encodePacked(baseUri, filename, ".json")) : '';
    }

    function setPrice(uint256 _price) external onlyOwner {
        paid_price = _price;
    }

    function setMintStatus(uint status) external onlyOwner {
        mintStatus = MintStatus(status);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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_SUPPLY","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":"","type":"address"}],"name":"amountNFTsperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletFreeMint","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":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxFreeNFTPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum CozyPenguins.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paid_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_royaltyBasisPoints","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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"}]

661f438daa0600006009556003600a819055600b55610d05600c55610457600d55600e805460ff1916905561010060405260516080818152906200268060a03980516200005591600f9160209091019062000170565b50601080546001600160601b0319166103e81790556013805460ff191690553480156200008157600080fd5b506040518060400160405280600d81526020016c436f7a792050656e6775696e7360981b8152506040518060400160405280600881526020016750454e4755494e5360c01b815250620000e3620000dd6200011c60201b60201c565b62000120565b8151620000f890600390602085019062000170565b5080516200010e90600490602084019062000170565b505060006001555062000252565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200017e9062000216565b90600052602060002090601f016020900481019282620001a25760008555620001ed565b82601f10620001bd57805160ff1916838001178555620001ed565b82800160010185558215620001ed579182015b82811115620001ed578251825591602001919060010190620001d0565b50620001fb929150620001ff565b5090565b5b80821115620001fb576000815560010162000200565b600181811c908216806200022b57607f821691505b6020821081036200024c57634e487b7160e01b600052602260045260246000fd5b50919050565b61241e80620002626000396000f3fe6080604052600436106102565760003560e01c8063893da6c911610149578063a22cb465116100c6578063db294ba11161008a578063e5a5195211610064578063e5a519521461071c578063e985e9c514610752578063f2fde38b1461079b57600080fd5b8063db294ba1146106a4578063dc33e681146106b9578063e06f53ca146106ef57600080fd5b8063a22cb4651461060e578063b88d4fde1461062e578063c7c5a8c01461064e578063c87b56dd14610664578063cac926691461068457600080fd5b80639858cf191161010d5780639858cf19146105895780639abc83201461059f5780639da3f8fd146105b4578063a0712d68146105db578063a0bcfc7f146105ee57600080fd5b8063893da6c91461050b5780638b9320ed146105205780638da5cb5b1461053657806391b7f5ed1461055457806395d89b411461057457600080fd5b806342082fda116101d75780636352211e1161019b5780636352211e1461047657806370a0823114610496578063715018a6146104b65780637c928fe9146104cb578063887fee31146104eb57600080fd5b806342082fda146103d957806342842e0e146103ef578063499a46871461040f5780634c2612471461043c578063518302271461045c57600080fd5b806323b872dd1161021e57806323b872dd1461032f5780632a55205a1461034f57806332cb6b0c1461038e578063375a069a146103a45780633ccfd60b146103c457600080fd5b806301ffc9a71461025b57806306fdde0314610290578063081812fc146102b2578063095ea7b3146102ea57806318160ddd1461030c575b600080fd5b34801561026757600080fd5b5061027b610276366004611def565b6107bb565b60405190151581526020015b60405180910390f35b34801561029c57600080fd5b506102a561080d565b6040516102879190611e64565b3480156102be57600080fd5b506102d26102cd366004611e77565b61089f565b6040516001600160a01b039091168152602001610287565b3480156102f657600080fd5b5061030a610305366004611eac565b6108e3565b005b34801561031857600080fd5b50600254600154035b604051908152602001610287565b34801561033b57600080fd5b5061030a61034a366004611ed6565b610970565b34801561035b57600080fd5b5061036f61036a366004611f12565b61097b565b604080516001600160a01b039093168352602083019190915201610287565b34801561039a57600080fd5b50610321600c5481565b3480156103b057600080fd5b5061030a6103bf366004611e77565b610a18565b3480156103d057600080fd5b5061030a610b13565b3480156103e557600080fd5b50610321600b5481565b3480156103fb57600080fd5b5061030a61040a366004611ed6565b610be5565b34801561041b57600080fd5b5061032161042a366004611f34565b60116020526000908152604090205481565b34801561044857600080fd5b5061030a610457366004611f4f565b610c00565b34801561046857600080fd5b50600e5461027b9060ff1681565b34801561048257600080fd5b506102d2610491366004611e77565b610c61565b3480156104a257600080fd5b506103216104b1366004611f34565b610c73565b3480156104c257600080fd5b5061030a610cc2565b3480156104d757600080fd5b5061030a6104e6366004611e77565b610d16565b3480156104f757600080fd5b5061030a610506366004611e77565b610e7b565b34801561051757600080fd5b5061027b610ef9565b34801561052c57600080fd5b5061032160095481565b34801561054257600080fd5b506000546001600160a01b03166102d2565b34801561056057600080fd5b5061030a61056f366004611e77565b610f11565b34801561058057600080fd5b506102a5610f5e565b34801561059557600080fd5b50610321600d5481565b3480156105ab57600080fd5b506102a5610f6d565b3480156105c057600080fd5b506013546105ce9060ff1681565b6040516102879190611fd7565b61030a6105e9366004611e77565b610ffb565b3480156105fa57600080fd5b5061030a610609366004611f4f565b611213565b34801561061a57600080fd5b5061030a610629366004611fff565b611267565b34801561063a57600080fd5b5061030a610649366004612051565b6112fc565b34801561065a57600080fd5b50610321600a5481565b34801561067057600080fd5b506102a561067f366004611e77565b61134d565b34801561069057600080fd5b5061030a61069f36600461212d565b611407565b3480156106b057600080fd5b5061027b61147b565b3480156106c557600080fd5b506103216106d4366004611f34565b6001600160a01b031660009081526011602052604090205490565b3480156106fb57600080fd5b5061032161070a366004611f34565b60126020526000908152604090205481565b34801561072857600080fd5b50610321610737366004611f34565b6001600160a01b031660009081526012602052604090205490565b34801561075e57600080fd5b5061027b61076d36600461215b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107a757600080fd5b5061030a6107b6366004611f34565b611494565b60006001600160e01b031982166380ac58cd60e01b14806107ec57506001600160e01b03198216635b5e139f60e01b145b8061080757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461081c9061218e565b80601f01602080910402602001604051908101604052809291908181526020018280546108489061218e565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa8261154a565b6108c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108ee82610c61565b9050806001600160a01b0316836001600160a01b0316036109225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109425750610940813361076d565b155b15610960576040516367d9dca160e11b815260040160405180910390fd5b61096b838383611576565b505050565b61096b8383836115df565b6000806109878461154a565b6109d85760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6000546001600160a01b031660105461271090610a03906bffffffffffffffffffffffff16866121de565b610a0d9190612213565b915091509250929050565b6000546001600160a01b03163314610a605760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b60008111610ab05760405162461bcd60e51b815260206004820152601260248201527f494e434f52524543545f5155414e54495459000000000000000000000000000060448201526064016109cf565b600c5481610ac16002546001540390565b610acb9190612227565b1115610b065760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016109cf565b610b1033826117cf565b50565b6000546001600160a01b03163314610b5b5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b60004711610bab5760405162461bcd60e51b815260206004820152601460248201527f4e6f2066756e647320746f20776974686472617700000000000000000000000060448201526064016109cf565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610b10573d6000803e3d6000fd5b61096b838383604051806020016040528060008152506112fc565b6000546001600160a01b03163314610c485760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b600e805460ff1916600117905561096b600f8383611d40565b6000610c6c826117e9565b5192915050565b60006001600160a01b038216610c9c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610d0a5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b610d146000611905565b565b600160135460ff166002811115610d2f57610d2f611fc1565b14610d6c5760405162461bcd60e51b815260206004820152600d60248201526c233932b29036b4b73a1037b33360991b60448201526064016109cf565b600d5481610d7d6002546001540390565b610d879190612227565b1115610dd55760405162461bcd60e51b815260206004820152601360248201527f45786365656473206672656520737570706c790000000000000000000000000060448201526064016109cf565b600b5433600090815260126020526040902054610df29083612227565b1115610e4c5760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206f6e6c79206765742033204e465473206f6e207468652053604482015262616c6560e81b60648201526084016109cf565b3360009081526012602052604081208054839290610e6b908490612227565b90915550610b10905033826117cf565b6000546001600160a01b03163314610ec35760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b806002811115610ed557610ed5611fc1565b6013805460ff19166001836002811115610ef157610ef1611fc1565b021790555050565b6000600c54610f0b6002546001540390565b14905090565b6000546001600160a01b03163314610f595760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b600955565b60606004805461081c9061218e565b600f8054610f7a9061218e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa69061218e565b8015610ff35780601f10610fc857610100808354040283529160200191610ff3565b820191906000526020600020905b815481529060010190602001808311610fd657829003601f168201915b505050505081565b600954600081900361103c5760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064016109cf565b600260135460ff16600281111561105557611055611fc1565b1461108d5760405162461bcd60e51b815260206004820152600860248201526726b4b73a1037b33360c11b60448201526064016109cf565b600c548261109e6002546001540390565b6110a89190612227565b11156110f65760405162461bcd60e51b815260206004820152600e60248201527f4578636565647320737570706c7900000000000000000000000000000000000060448201526064016109cf565b600a54336000908152601160205260409020546111139084612227565b11156111875760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e6e6f742068617665206d6f7265204e46547320666f7220746860448201527f6973207472616e73616374696f6e00000000000000000000000000000000000060648201526084016109cf565b61119182826121de565b3410156111e05760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e74204554480000000000000000000000000000000060448201526064016109cf565b33600090815260116020526040812080548492906111ff908490612227565b9091555061120f905033836117cf565b5050565b6000546001600160a01b0316331461125b5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b61096b600f8383611d40565b336001600160a01b038316036112905760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113078484846115df565b6001600160a01b0383163b15158015611329575061132784848484611962565b155b15611347576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606113588261154a565b61137557604051630a14c4b560e41b815260040160405180910390fd5b600e5460009060ff166113a657604051806040016040528060068152602001653434b23232b760d11b8152506113af565b6113af83611a4e565b9050600f80546113be9061218e565b90506000036113dc5760405180602001604052806000815250611400565b600f816040516020016113f092919061225b565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461144f5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b601080546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6000600d5461148d6002546001540390565b1015905090565b6000546001600160a01b031633146114dc5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b6001600160a01b0381166115415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109cf565b610b1081611905565b600060015482108015610807575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ea826117e9565b9050836001600160a01b031681600001516001600160a01b0316146116215760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061163f575061163f853361076d565b8061165a57503361164f8461089f565b6001600160a01b0316145b90508061167a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116a157604051633a954ecd60e21b815260040160405180910390fd5b6116ad60008487611576565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611783576001548214611783578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61120f828260405180602001604052806000815250611b67565b6040805160608101825260008082526020820181905291810191909152816001548110156118ec57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118ea5780516001600160a01b031615611880579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156118e5579392505050565b611880565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611997903390899088908890600401612315565b6020604051808303816000875af19250505080156119d2575060408051601f3d908101601f191682019092526119cf91810190612351565b60015b611a30573d808015611a00576040519150601f19603f3d011682016040523d82523d6000602084013e611a05565b606091505b508051600003611a28576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611a755750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a9f5780611a898161236e565b9150611a989050600a83612213565b9150611a79565b60008167ffffffffffffffff811115611aba57611aba61203b565b6040519080825280601f01601f191660200182016040528015611ae4576020820181803683370190505b5090505b8415611a4657611af9600183612387565b9150611b06600a8661239e565b611b11906030612227565b60f81b818381518110611b2657611b266123b2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b60600a86612213565b9450611ae8565b61096b838383600180546001600160a01b038516611b9757604051622e076360e81b815260040160405180910390fd5b83600003611bb85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c6a57506001600160a01b0387163b15155b15611cf2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cbb6000888480600101955088611962565b611cd8576040516368d2bf6b60e11b815260040160405180910390fd5b808203611c70578260015414611ced57600080fd5b611d37565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611cf3575b506001556117c8565b828054611d4c9061218e565b90600052602060002090601f016020900481019282611d6e5760008555611db4565b82601f10611d875782800160ff19823516178555611db4565b82800160010185558215611db4579182015b82811115611db4578235825591602001919060010190611d99565b50611dc0929150611dc4565b5090565b5b80821115611dc05760008155600101611dc5565b6001600160e01b031981168114610b1057600080fd5b600060208284031215611e0157600080fd5b813561140081611dd9565b60005b83811015611e27578181015183820152602001611e0f565b838111156113475750506000910152565b60008151808452611e50816020860160208601611e0c565b601f01601f19169290920160200192915050565b6020815260006114006020830184611e38565b600060208284031215611e8957600080fd5b5035919050565b80356001600160a01b0381168114611ea757600080fd5b919050565b60008060408385031215611ebf57600080fd5b611ec883611e90565b946020939093013593505050565b600080600060608486031215611eeb57600080fd5b611ef484611e90565b9250611f0260208501611e90565b9150604084013590509250925092565b60008060408385031215611f2557600080fd5b50508035926020909101359150565b600060208284031215611f4657600080fd5b61140082611e90565b60008060208385031215611f6257600080fd5b823567ffffffffffffffff80821115611f7a57600080fd5b818501915085601f830112611f8e57600080fd5b813581811115611f9d57600080fd5b866020828501011115611faf57600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310611ff957634e487b7160e01b600052602160045260246000fd5b91905290565b6000806040838503121561201257600080fd5b61201b83611e90565b91506020830135801515811461203057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561206757600080fd5b61207085611e90565b935061207e60208601611e90565b925060408501359150606085013567ffffffffffffffff808211156120a257600080fd5b818701915087601f8301126120b657600080fd5b8135818111156120c8576120c861203b565b604051601f8201601f19908116603f011681019083821181831017156120f0576120f061203b565b816040528281528a602084870101111561210957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60006020828403121561213f57600080fd5b81356bffffffffffffffffffffffff8116811461140057600080fd5b6000806040838503121561216e57600080fd5b61217783611e90565b915061218560208401611e90565b90509250929050565b600181811c908216806121a257607f821691505b6020821081036121c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121f8576121f86121c8565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612222576122226121fd565b500490565b6000821982111561223a5761223a6121c8565b500190565b60008151612251818560208601611e0c565b9290920192915050565b600080845481600182811c91508083168061227757607f831692505b6020808410820361229657634e487b7160e01b86526022600452602486fd5b8180156122aa57600181146122bb576122e8565b60ff198616895284890196506122e8565b60008b81526020902060005b868110156122e05781548b8201529085019083016122c7565b505084890196505b50505050505061230c6122fb828661223f565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123476080830184611e38565b9695505050505050565b60006020828403121561236357600080fd5b815161140081611dd9565b600060018201612380576123806121c8565b5060010190565b600082821015612399576123996121c8565b500390565b6000826123ad576123ad6121fd565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c08332044be4400f3a43db567c0400c5b9508d54e10a5c63bdb2511fc2b648d364736f6c634300080d003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d574558377a4e7647626d554e6b3751646769337462773535465a3731435445645041443770697152337833782f

Deployed Bytecode

0x6080604052600436106102565760003560e01c8063893da6c911610149578063a22cb465116100c6578063db294ba11161008a578063e5a5195211610064578063e5a519521461071c578063e985e9c514610752578063f2fde38b1461079b57600080fd5b8063db294ba1146106a4578063dc33e681146106b9578063e06f53ca146106ef57600080fd5b8063a22cb4651461060e578063b88d4fde1461062e578063c7c5a8c01461064e578063c87b56dd14610664578063cac926691461068457600080fd5b80639858cf191161010d5780639858cf19146105895780639abc83201461059f5780639da3f8fd146105b4578063a0712d68146105db578063a0bcfc7f146105ee57600080fd5b8063893da6c91461050b5780638b9320ed146105205780638da5cb5b1461053657806391b7f5ed1461055457806395d89b411461057457600080fd5b806342082fda116101d75780636352211e1161019b5780636352211e1461047657806370a0823114610496578063715018a6146104b65780637c928fe9146104cb578063887fee31146104eb57600080fd5b806342082fda146103d957806342842e0e146103ef578063499a46871461040f5780634c2612471461043c578063518302271461045c57600080fd5b806323b872dd1161021e57806323b872dd1461032f5780632a55205a1461034f57806332cb6b0c1461038e578063375a069a146103a45780633ccfd60b146103c457600080fd5b806301ffc9a71461025b57806306fdde0314610290578063081812fc146102b2578063095ea7b3146102ea57806318160ddd1461030c575b600080fd5b34801561026757600080fd5b5061027b610276366004611def565b6107bb565b60405190151581526020015b60405180910390f35b34801561029c57600080fd5b506102a561080d565b6040516102879190611e64565b3480156102be57600080fd5b506102d26102cd366004611e77565b61089f565b6040516001600160a01b039091168152602001610287565b3480156102f657600080fd5b5061030a610305366004611eac565b6108e3565b005b34801561031857600080fd5b50600254600154035b604051908152602001610287565b34801561033b57600080fd5b5061030a61034a366004611ed6565b610970565b34801561035b57600080fd5b5061036f61036a366004611f12565b61097b565b604080516001600160a01b039093168352602083019190915201610287565b34801561039a57600080fd5b50610321600c5481565b3480156103b057600080fd5b5061030a6103bf366004611e77565b610a18565b3480156103d057600080fd5b5061030a610b13565b3480156103e557600080fd5b50610321600b5481565b3480156103fb57600080fd5b5061030a61040a366004611ed6565b610be5565b34801561041b57600080fd5b5061032161042a366004611f34565b60116020526000908152604090205481565b34801561044857600080fd5b5061030a610457366004611f4f565b610c00565b34801561046857600080fd5b50600e5461027b9060ff1681565b34801561048257600080fd5b506102d2610491366004611e77565b610c61565b3480156104a257600080fd5b506103216104b1366004611f34565b610c73565b3480156104c257600080fd5b5061030a610cc2565b3480156104d757600080fd5b5061030a6104e6366004611e77565b610d16565b3480156104f757600080fd5b5061030a610506366004611e77565b610e7b565b34801561051757600080fd5b5061027b610ef9565b34801561052c57600080fd5b5061032160095481565b34801561054257600080fd5b506000546001600160a01b03166102d2565b34801561056057600080fd5b5061030a61056f366004611e77565b610f11565b34801561058057600080fd5b506102a5610f5e565b34801561059557600080fd5b50610321600d5481565b3480156105ab57600080fd5b506102a5610f6d565b3480156105c057600080fd5b506013546105ce9060ff1681565b6040516102879190611fd7565b61030a6105e9366004611e77565b610ffb565b3480156105fa57600080fd5b5061030a610609366004611f4f565b611213565b34801561061a57600080fd5b5061030a610629366004611fff565b611267565b34801561063a57600080fd5b5061030a610649366004612051565b6112fc565b34801561065a57600080fd5b50610321600a5481565b34801561067057600080fd5b506102a561067f366004611e77565b61134d565b34801561069057600080fd5b5061030a61069f36600461212d565b611407565b3480156106b057600080fd5b5061027b61147b565b3480156106c557600080fd5b506103216106d4366004611f34565b6001600160a01b031660009081526011602052604090205490565b3480156106fb57600080fd5b5061032161070a366004611f34565b60126020526000908152604090205481565b34801561072857600080fd5b50610321610737366004611f34565b6001600160a01b031660009081526012602052604090205490565b34801561075e57600080fd5b5061027b61076d36600461215b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107a757600080fd5b5061030a6107b6366004611f34565b611494565b60006001600160e01b031982166380ac58cd60e01b14806107ec57506001600160e01b03198216635b5e139f60e01b145b8061080757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461081c9061218e565b80601f01602080910402602001604051908101604052809291908181526020018280546108489061218e565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa8261154a565b6108c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108ee82610c61565b9050806001600160a01b0316836001600160a01b0316036109225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109425750610940813361076d565b155b15610960576040516367d9dca160e11b815260040160405180910390fd5b61096b838383611576565b505050565b61096b8383836115df565b6000806109878461154a565b6109d85760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6000546001600160a01b031660105461271090610a03906bffffffffffffffffffffffff16866121de565b610a0d9190612213565b915091509250929050565b6000546001600160a01b03163314610a605760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b60008111610ab05760405162461bcd60e51b815260206004820152601260248201527f494e434f52524543545f5155414e54495459000000000000000000000000000060448201526064016109cf565b600c5481610ac16002546001540390565b610acb9190612227565b1115610b065760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016109cf565b610b1033826117cf565b50565b6000546001600160a01b03163314610b5b5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b60004711610bab5760405162461bcd60e51b815260206004820152601460248201527f4e6f2066756e647320746f20776974686472617700000000000000000000000060448201526064016109cf565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610b10573d6000803e3d6000fd5b61096b838383604051806020016040528060008152506112fc565b6000546001600160a01b03163314610c485760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b600e805460ff1916600117905561096b600f8383611d40565b6000610c6c826117e9565b5192915050565b60006001600160a01b038216610c9c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610d0a5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b610d146000611905565b565b600160135460ff166002811115610d2f57610d2f611fc1565b14610d6c5760405162461bcd60e51b815260206004820152600d60248201526c233932b29036b4b73a1037b33360991b60448201526064016109cf565b600d5481610d7d6002546001540390565b610d879190612227565b1115610dd55760405162461bcd60e51b815260206004820152601360248201527f45786365656473206672656520737570706c790000000000000000000000000060448201526064016109cf565b600b5433600090815260126020526040902054610df29083612227565b1115610e4c5760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206f6e6c79206765742033204e465473206f6e207468652053604482015262616c6560e81b60648201526084016109cf565b3360009081526012602052604081208054839290610e6b908490612227565b90915550610b10905033826117cf565b6000546001600160a01b03163314610ec35760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b806002811115610ed557610ed5611fc1565b6013805460ff19166001836002811115610ef157610ef1611fc1565b021790555050565b6000600c54610f0b6002546001540390565b14905090565b6000546001600160a01b03163314610f595760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b600955565b60606004805461081c9061218e565b600f8054610f7a9061218e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa69061218e565b8015610ff35780601f10610fc857610100808354040283529160200191610ff3565b820191906000526020600020905b815481529060010190602001808311610fd657829003601f168201915b505050505081565b600954600081900361103c5760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064016109cf565b600260135460ff16600281111561105557611055611fc1565b1461108d5760405162461bcd60e51b815260206004820152600860248201526726b4b73a1037b33360c11b60448201526064016109cf565b600c548261109e6002546001540390565b6110a89190612227565b11156110f65760405162461bcd60e51b815260206004820152600e60248201527f4578636565647320737570706c7900000000000000000000000000000000000060448201526064016109cf565b600a54336000908152601160205260409020546111139084612227565b11156111875760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e6e6f742068617665206d6f7265204e46547320666f7220746860448201527f6973207472616e73616374696f6e00000000000000000000000000000000000060648201526084016109cf565b61119182826121de565b3410156111e05760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e74204554480000000000000000000000000000000060448201526064016109cf565b33600090815260116020526040812080548492906111ff908490612227565b9091555061120f905033836117cf565b5050565b6000546001600160a01b0316331461125b5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b61096b600f8383611d40565b336001600160a01b038316036112905760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113078484846115df565b6001600160a01b0383163b15158015611329575061132784848484611962565b155b15611347576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606113588261154a565b61137557604051630a14c4b560e41b815260040160405180910390fd5b600e5460009060ff166113a657604051806040016040528060068152602001653434b23232b760d11b8152506113af565b6113af83611a4e565b9050600f80546113be9061218e565b90506000036113dc5760405180602001604052806000815250611400565b600f816040516020016113f092919061225b565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461144f5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b601080546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6000600d5461148d6002546001540390565b1015905090565b6000546001600160a01b031633146114dc5760405162461bcd60e51b815260206004820181905260248201526000805160206123c983398151915260448201526064016109cf565b6001600160a01b0381166115415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109cf565b610b1081611905565b600060015482108015610807575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ea826117e9565b9050836001600160a01b031681600001516001600160a01b0316146116215760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061163f575061163f853361076d565b8061165a57503361164f8461089f565b6001600160a01b0316145b90508061167a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116a157604051633a954ecd60e21b815260040160405180910390fd5b6116ad60008487611576565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611783576001548214611783578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61120f828260405180602001604052806000815250611b67565b6040805160608101825260008082526020820181905291810191909152816001548110156118ec57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118ea5780516001600160a01b031615611880579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156118e5579392505050565b611880565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611997903390899088908890600401612315565b6020604051808303816000875af19250505080156119d2575060408051601f3d908101601f191682019092526119cf91810190612351565b60015b611a30573d808015611a00576040519150601f19603f3d011682016040523d82523d6000602084013e611a05565b606091505b508051600003611a28576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611a755750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a9f5780611a898161236e565b9150611a989050600a83612213565b9150611a79565b60008167ffffffffffffffff811115611aba57611aba61203b565b6040519080825280601f01601f191660200182016040528015611ae4576020820181803683370190505b5090505b8415611a4657611af9600183612387565b9150611b06600a8661239e565b611b11906030612227565b60f81b818381518110611b2657611b266123b2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b60600a86612213565b9450611ae8565b61096b838383600180546001600160a01b038516611b9757604051622e076360e81b815260040160405180910390fd5b83600003611bb85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c6a57506001600160a01b0387163b15155b15611cf2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cbb6000888480600101955088611962565b611cd8576040516368d2bf6b60e11b815260040160405180910390fd5b808203611c70578260015414611ced57600080fd5b611d37565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611cf3575b506001556117c8565b828054611d4c9061218e565b90600052602060002090601f016020900481019282611d6e5760008555611db4565b82601f10611d875782800160ff19823516178555611db4565b82800160010185558215611db4579182015b82811115611db4578235825591602001919060010190611d99565b50611dc0929150611dc4565b5090565b5b80821115611dc05760008155600101611dc5565b6001600160e01b031981168114610b1057600080fd5b600060208284031215611e0157600080fd5b813561140081611dd9565b60005b83811015611e27578181015183820152602001611e0f565b838111156113475750506000910152565b60008151808452611e50816020860160208601611e0c565b601f01601f19169290920160200192915050565b6020815260006114006020830184611e38565b600060208284031215611e8957600080fd5b5035919050565b80356001600160a01b0381168114611ea757600080fd5b919050565b60008060408385031215611ebf57600080fd5b611ec883611e90565b946020939093013593505050565b600080600060608486031215611eeb57600080fd5b611ef484611e90565b9250611f0260208501611e90565b9150604084013590509250925092565b60008060408385031215611f2557600080fd5b50508035926020909101359150565b600060208284031215611f4657600080fd5b61140082611e90565b60008060208385031215611f6257600080fd5b823567ffffffffffffffff80821115611f7a57600080fd5b818501915085601f830112611f8e57600080fd5b813581811115611f9d57600080fd5b866020828501011115611faf57600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310611ff957634e487b7160e01b600052602160045260246000fd5b91905290565b6000806040838503121561201257600080fd5b61201b83611e90565b91506020830135801515811461203057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561206757600080fd5b61207085611e90565b935061207e60208601611e90565b925060408501359150606085013567ffffffffffffffff808211156120a257600080fd5b818701915087601f8301126120b657600080fd5b8135818111156120c8576120c861203b565b604051601f8201601f19908116603f011681019083821181831017156120f0576120f061203b565b816040528281528a602084870101111561210957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60006020828403121561213f57600080fd5b81356bffffffffffffffffffffffff8116811461140057600080fd5b6000806040838503121561216e57600080fd5b61217783611e90565b915061218560208401611e90565b90509250929050565b600181811c908216806121a257607f821691505b6020821081036121c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121f8576121f86121c8565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612222576122226121fd565b500490565b6000821982111561223a5761223a6121c8565b500190565b60008151612251818560208601611e0c565b9290920192915050565b600080845481600182811c91508083168061227757607f831692505b6020808410820361229657634e487b7160e01b86526022600452602486fd5b8180156122aa57600181146122bb576122e8565b60ff198616895284890196506122e8565b60008b81526020902060005b868110156122e05781548b8201529085019083016122c7565b505084890196505b50505050505061230c6122fb828661223f565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123476080830184611e38565b9695505050505050565b60006020828403121561236357600080fd5b815161140081611dd9565b600060018201612380576123806121c8565b5060010190565b600082821015612399576123996121c8565b500390565b6000826123ad576123ad6121fd565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c08332044be4400f3a43db567c0400c5b9508d54e10a5c63bdb2511fc2b648d364736f6c634300080d0033

Deployed Bytecode Sourcemap

44778:3992:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26972:305;;;;;;;;;;-1:-1:-1;26972:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26972:305:0;;;;;;;;30085:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31588:204::-;;;;;;;;;;-1:-1:-1;31588:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:55:1;;;1696:74;;1684:2;1669:18;31588:204:0;1550:226:1;31151:371:0;;;;;;;;;;-1:-1:-1;31151:371:0;;;;;:::i;:::-;;:::i;:::-;;26221:303;;;;;;;;;;-1:-1:-1;26475:12:0;;26459:13;;:28;26221:303;;;2387:25:1;;;2375:2;2360:18;26221:303:0;2241:177:1;32453:170:0;;;;;;;;;;-1:-1:-1;32453:170:0;;;;;:::i;:::-;;:::i;47677:273::-;;;;;;;;;;-1:-1:-1;47677:273:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3201:55:1;;;3183:74;;3288:2;3273:18;;3266:34;;;;3156:18;47677:273:0;3009:297:1;44996:32:0;;;;;;;;;;;;;;;;47108:244;;;;;;;;;;-1:-1:-1;47108:244:0;;;;;:::i;:::-;;:::i;47360:175::-;;;;;;;;;;;;;:::i;44951:38::-;;;;;;;;;;;;;;;;32694:185;;;;;;;;;;-1:-1:-1;32694:185:0;;;;;:::i;:::-;;:::i;45275:51::-;;;;;;;;;;-1:-1:-1;45275:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;48068:124;;;;;;;;;;-1:-1:-1;48068:124:0;;;;;:::i;:::-;;:::i;45077:28::-;;;;;;;;;;-1:-1:-1;45077:28:0;;;;;;;;29893:125;;;;;;;;;;-1:-1:-1;29893:125:0;;;;;:::i;:::-;;:::i;27341:206::-;;;;;;;;;;-1:-1:-1;27341:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;46082:439::-;;;;;;;;;;-1:-1:-1;46082:439:0;;;;;:::i;:::-;;:::i;48662:105::-;;;;;;;;;;-1:-1:-1;48662:105:0;;;;;:::i;:::-;;:::i;45593:101::-;;;;;;;;;;;;;:::i;44863:40::-;;;;;;;;;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4125:7:0;4152:6;-1:-1:-1;;;;;4152:6:0;4079:87;;48563:91;;;;;;;;;;-1:-1:-1;48563:91:0;;;;;:::i;:::-;;:::i;30254:104::-;;;;;;;;;;;;;:::i;45035:33::-;;;;;;;;;;;;;;;;45112:107;;;;;;;;;;;;;:::i;45478:45::-;;;;;;;;;;-1:-1:-1;45478:45:0;;;;;;;;;;;;;;;:::i;46529:571::-;;;;;;:::i;:::-;;:::i;47958:102::-;;;;;;;;;;-1:-1:-1;47958:102:0;;;;;:::i;:::-;;:::i;31864:287::-;;;;;;;;;;-1:-1:-1;31864:287:0;;;;;:::i;:::-;;:::i;32950:369::-;;;;;;;;;;-1:-1:-1;32950:369:0;;;;;:::i;:::-;;:::i;44910:34::-;;;;;;;;;;;;;;;;48200:355;;;;;;;;;;-1:-1:-1;48200:355:0;;;;;:::i;:::-;;:::i;47543:126::-;;;;;;;;;;-1:-1:-1;47543:126:0;;;;;:::i;:::-;;:::i;45702:106::-;;;;;;;;;;;;;:::i;45816:121::-;;;;;;;;;;-1:-1:-1;45816:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;45903:26:0;45876:7;45903:26;;;:19;:26;;;;;;;45816:121;45333:59;;;;;;;;;;-1:-1:-1;45333:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;45945:133;;;;;;;;;;-1:-1:-1;45945:133:0;;;;;:::i;:::-;-1:-1:-1;;;;;46036:34:0;46009:7;46036:34;;;:27;:34;;;;;;;45945:133;32222:164;;;;;;;;;;-1:-1:-1;32222:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32343:25:0;;;32319:4;32343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32222:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;26972:305::-;27074:4;-1:-1:-1;;;;;;27111:40:0;;-1:-1:-1;;;27111:40:0;;:105;;-1:-1:-1;;;;;;;27168:48:0;;-1:-1:-1;;;27168:48:0;27111:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;27233:36;27091:178;26972:305;-1:-1:-1;;26972:305:0:o;30085:100::-;30139:13;30172:5;30165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30085:100;:::o;31588:204::-;31656:7;31681:16;31689:7;31681;:16::i;:::-;31676:64;;31706:34;;-1:-1:-1;;;31706:34:0;;;;;;;;;;;31676:64;-1:-1:-1;31760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31760:24:0;;31588:204::o;31151:371::-;31224:13;31240:24;31256:7;31240:15;:24::i;:::-;31224:40;;31285:5;-1:-1:-1;;;;;31279:11:0;:2;-1:-1:-1;;;;;31279:11:0;;31275:48;;31299:24;;-1:-1:-1;;;31299:24:0;;;;;;;;;;;31275:48;2883:10;-1:-1:-1;;;;;31340:21:0;;;;;;:63;;-1:-1:-1;31366:37:0;31383:5;2883:10;32222:164;:::i;31366:37::-;31365:38;31340:63;31336:138;;;31427:35;;-1:-1:-1;;;31427:35:0;;;;;;;;;;;31336:138;31486:28;31495:2;31499:7;31508:5;31486:8;:28::i;:::-;31213:309;31151:371;;:::o;32453:170::-;32587:28;32597:4;32603:2;32607:7;32587:9;:28::i;47677:273::-;47759:16;47777:21;47819:17;47827:8;47819:7;:17::i;:::-;47811:61;;;;-1:-1:-1;;;47811:61:0;;7355:2:1;47811:61:0;;;7337:21:1;7394:2;7374:18;;;7367:30;7433:33;7413:18;;;7406:61;7484:18;;47811:61:0;;;;;;;;;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;47914:18;;47936:5;;47901:31;;47914:18;;47901:10;:31;:::i;:::-;47900:41;;;;:::i;:::-;47883:59;;;;47677:273;;;;;:::o;47108:244::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;47194:1:::1;47182:9;:13;47174:44;;;::::0;-1:-1:-1;;;47174:44:0;;8638:2:1;47174:44:0::1;::::0;::::1;8620:21:1::0;8677:2;8657:18;;;8650:30;8716:20;8696:18;;;8689:48;8754:18;;47174:44:0::1;8436:342:1::0;47174:44:0::1;47266:10;;47253:9;47237:13;26475:12:::0;;26459:13;;:28;;26221:303;47237:13:::1;:25;;;;:::i;:::-;:39;;47229:62;;;::::0;-1:-1:-1;;;47229:62:0;;9118:2:1;47229:62:0::1;::::0;::::1;9100:21:1::0;9157:2;9137:18;;;9130:30;-1:-1:-1;;;9176:18:1;;;9169:40;9226:18;;47229:62:0::1;8916:334:1::0;47229:62:0::1;47312:32;47322:10;47334:9;47312;:32::i;:::-;47108:244:::0;:::o;47360:175::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;47442:1:::1;47418:21;:25;47410:58;;;::::0;-1:-1:-1;;;47410:58:0;;9457:2:1;47410:58:0::1;::::0;::::1;9439:21:1::0;9496:2;9476:18;;;9469:30;9535:22;9515:18;;;9508:50;9575:18;;47410:58:0::1;9255:344:1::0;47410:58:0::1;4125:7:::0;4152:6;;47479:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;47505:21:::1;47479:48:::0;::::1;;;::::0;47505:21;;47479:48;4125:7;47479:48;47505:21;4152:6;47479:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;32694:185:::0;32832:39;32849:4;32855:2;32859:7;32832:39;;;;;;;;;;;;:16;:39::i;48068:124::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;48140:8:::1;:15:::0;;-1:-1:-1;;48140:15:0::1;48151:4;48140:15;::::0;;48166:18:::1;:7;48176:8:::0;;48166:18:::1;:::i;29893:125::-:0;29957:7;29984:21;29997:7;29984:12;:21::i;:::-;:26;;29893:125;-1:-1:-1;;29893:125:0:o;27341:206::-;27405:7;-1:-1:-1;;;;;27429:19:0;;27425:60;;27457:28;;-1:-1:-1;;;27457:28:0;;;;;;;;;;;27425:60;-1:-1:-1;;;;;;27511:19:0;;;;;:12;:19;;;;;:27;;;;27341:206::o;4730:103::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;46082:439::-;46158:15;46144:10;;;;:29;;;;;;;;:::i;:::-;;46136:55;;;;-1:-1:-1;;;46136:55:0;;9806:2:1;46136:55:0;;;9788:21:1;9845:2;9825:18;;;9818:30;-1:-1:-1;;;9864:18:1;;;9857:43;9917:18;;46136:55:0;9604:337:1;46136:55:0;46239:11;;46226:9;46210:13;26475:12;;26459:13;;:28;;26221:303;46210:13;:25;;;;:::i;:::-;:40;;46202:72;;;;-1:-1:-1;;;46202:72:0;;10148:2:1;46202:72:0;;;10130:21:1;10187:2;10167:18;;;10160:30;10226:21;10206:18;;;10199:49;10265:18;;46202:72:0;9946:343:1;46202:72:0;46348:19;;46333:10;46305:39;;;;:27;:39;;;;;;46293:51;;:9;:51;:::i;:::-;:74;;46285:122;;;;-1:-1:-1;;;46285:122:0;;10496:2:1;46285:122:0;;;10478:21:1;10535:2;10515:18;;;10508:30;10574:34;10554:18;;;10547:62;-1:-1:-1;;;10625:18:1;;;10618:33;10668:19;;46285:122:0;10294:399:1;46285:122:0;46446:10;46418:39;;;;:27;:39;;;;;:52;;46461:9;;46418:39;:52;;46461:9;;46418:52;:::i;:::-;;;;-1:-1:-1;46481:32:0;;-1:-1:-1;46491:10:0;46503:9;46481;:32::i;48662:105::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;48752:6:::1;48741:18;;;;;;;;:::i;:::-;48728:10;:31:::0;;-1:-1:-1;;48728:31:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;48662:105:::0;:::o;45593:101::-;45635:4;45676:10;;45659:13;26475:12;;26459:13;;:28;;26221:303;45659:13;:27;45652:34;;45593:101;:::o;48563:91::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;48627:10:::1;:19:::0;48563:91::o;30254:104::-;30310:13;30343:7;30336:14;;;;;:::i;45112:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46529:571::-;46600:10;;46587;46629;;;46621:33;;;;-1:-1:-1;;;46621:33:0;;10900:2:1;46621:33:0;;;10882:21:1;10939:2;10919:18;;;10912:30;-1:-1:-1;;;10958:18:1;;;10951:40;11008:18;;46621:33:0;10698:334:1;46621:33:0;46687:15;46673:10;;;;:29;;;;;;;;:::i;:::-;;46665:50;;;;-1:-1:-1;;;46665:50:0;;11239:2:1;46665:50:0;;;11221:21:1;11278:1;11258:18;;;11251:29;-1:-1:-1;;;11296:18:1;;;11289:38;11344:18;;46665:50:0;11037:331:1;46665:50:0;46763:10;;46750:9;46734:13;26475:12;;26459:13;;:28;;26221:303;46734:13;:25;;;;:::i;:::-;:39;;46726:66;;;;-1:-1:-1;;;46726:66:0;;11575:2:1;46726:66:0;;;11557:21:1;11614:2;11594:18;;;11587:30;11653:16;11633:18;;;11626:44;11687:18;;46726:66:0;11373:338:1;46726:66:0;46858:15;;46843:10;46823:31;;;;:19;:31;;;;;;46811:43;;:9;:43;:::i;:::-;:62;;46803:121;;;;-1:-1:-1;;;46803:121:0;;11918:2:1;46803:121:0;;;11900:21:1;11957:2;11937:18;;;11930:30;11996:34;11976:18;;;11969:62;12067:16;12047:18;;;12040:44;12101:19;;46803:121:0;11716:410:1;46803:121:0;46956:17;46964:9;46956:5;:17;:::i;:::-;46943:9;:30;;46935:59;;;;-1:-1:-1;;;46935:59:0;;12333:2:1;46935:59:0;;;12315:21:1;12372:2;12352:18;;;12345:30;12411:18;12391;;;12384:46;12447:18;;46935:59:0;12131:340:1;46935:59:0;47025:10;47005:31;;;;:19;:31;;;;;:44;;47040:9;;47005:31;:44;;47040:9;;47005:44;:::i;:::-;;;;-1:-1:-1;47060:32:0;;-1:-1:-1;47070:10:0;47082:9;47060;:32::i;:::-;46576:524;46529:571;:::o;47958:102::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;48034:18:::1;:7;48044:8:::0;;48034:18:::1;:::i;31864:287::-:0;2883:10;-1:-1:-1;;;;;31963:24:0;;;31959:54;;31996:17;;-1:-1:-1;;;31996:17:0;;;;;;;;;;;31959:54;2883:10;32026:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32026:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32026:53:0;;;;;;;;;;32095:48;;540:41:1;;;32026:42:0;;2883:10;32095:48;;513:18:1;32095:48:0;;;;;;;31864:287;;:::o;32950:369::-;33117:28;33127:4;33133:2;33137:7;33117:9;:28::i;:::-;-1:-1:-1;;;;;33160:13:0;;7075:19;:23;;33160:76;;;;;33180:56;33211:4;33217:2;33221:7;33230:5;33180:30;:56::i;:::-;33179:57;33160:76;33156:156;;;33260:40;;-1:-1:-1;;;33260:40:0;;;;;;;;;;;33156:156;32950:369;;;;:::o;48200:355::-;48273:13;48304:16;48312:7;48304;:16::i;:::-;48299:59;;48329:29;;-1:-1:-1;;;48329:29:0;;;;;;;;;;;48299:59;48396:8;;48371:22;;48396:8;;:47;;;;;;;;;;;;;;;-1:-1:-1;;;48396:47:0;;;;;;48407:25;48424:7;48407:16;:25::i;:::-;48371:72;;48467:7;48461:21;;;;;:::i;:::-;;;48486:1;48461:26;:86;;;;;;;;;;;;;;;;;48514:7;48523:8;48497:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48461:86;48454:93;48200:355;-1:-1:-1;;;48200:355:0:o;47543:126::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;47621:18:::1;:40:::0;;-1:-1:-1;;47621:40:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47543:126::o;45702:106::-;45748:4;45789:11;;45772:13;26475:12;;26459:13;;:28;;26221:303;45772:13;:28;;45765:35;;45702:106;:::o;4988:201::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8277:2:1;4291:68:0;;;8259:21:1;;;8296:18;;;8289:30;-1:-1:-1;;;;;;;;;;;8335:18:1;;;8328:62;8407:18;;4291:68:0;8075:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;14418:2:1;5069:73:0::1;::::0;::::1;14400:21:1::0;14457:2;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;-1:-1:-1;;;14547:18:1;;;14540:36;14593:19;;5069:73:0::1;14216:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;33574:174::-:0;33631:4;33695:13;;33685:7;:23;33655:85;;;;-1:-1:-1;;33713:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33713:27:0;;;;33712:28;;33574:174::o;41731:196::-;41846:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;41846:29:0;-1:-1:-1;;;;;41846:29:0;;;;;;;;;41891:28;;41846:24;;41891:28;;;;;;;41731:196;;;:::o;36674:2130::-;36789:35;36827:21;36840:7;36827:12;:21::i;:::-;36789:59;;36887:4;-1:-1:-1;;;;;36865:26:0;:13;:18;;;-1:-1:-1;;;;;36865:26:0;;36861:67;;36900:28;;-1:-1:-1;;;36900:28:0;;;;;;;;;;;36861:67;36941:22;2883:10;-1:-1:-1;;;;;36967:20:0;;;;:73;;-1:-1:-1;37004:36:0;37021:4;2883:10;32222:164;:::i;37004:36::-;36967:126;;;-1:-1:-1;2883:10:0;37057:20;37069:7;37057:11;:20::i;:::-;-1:-1:-1;;;;;37057:36:0;;36967:126;36941:153;;37112:17;37107:66;;37138:35;;-1:-1:-1;;;37138:35:0;;;;;;;;;;;37107:66;-1:-1:-1;;;;;37188:16:0;;37184:52;;37213:23;;-1:-1:-1;;;37213:23:0;;;;;;;;;;;37184:52;37357:35;37374:1;37378:7;37387:4;37357:8;:35::i;:::-;-1:-1:-1;;;;;37688:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37688:31:0;;;;;;;-1:-1:-1;;37688:31:0;;;;;;;37734:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37734:29:0;;;;;;;;;;;37814:20;;;:11;:20;;;;;;37849:18;;-1:-1:-1;;;;;;37882:49:0;;;;-1:-1:-1;;;37915:15:0;37882:49;;;;;;;;;;38205:11;;38265:24;;;;;38308:13;;37814:20;;38265:24;;38308:13;38304:384;;38518:13;;38503:11;:28;38499:174;;38556:20;;38625:28;;;;38599:54;;-1:-1:-1;;;38599:54:0;-1:-1:-1;;;;;;38599:54:0;;;-1:-1:-1;;;;;38556:20:0;;38599:54;;;;38499:174;37663:1036;;;38735:7;38731:2;-1:-1:-1;;;;;38716:27:0;38725:4;-1:-1:-1;;;;;38716:27:0;;;;;;;;;;;38754:42;36778:2026;;36674:2130;;;:::o;33756:104::-;33825:27;33835:2;33839:8;33825:27;;;;;;;;;;;;:9;:27::i;28722:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28833:7:0;28916:13;;28909:4;:20;28878:886;;;28950:31;28984:17;;;:11;:17;;;;;;;;;28950:51;;;;;;;;;-1:-1:-1;;;;;28950:51:0;;;;-1:-1:-1;;;28950:51:0;;;;;;;;;;;-1:-1:-1;;;28950:51:0;;;;;;;;;;;;;;29020:729;;29070:14;;-1:-1:-1;;;;;29070:28:0;;29066:101;;29134:9;28722:1109;-1:-1:-1;;;28722:1109:0:o;29066:101::-;-1:-1:-1;;;29509:6:0;29554:17;;;;:11;:17;;;;;;;;;29542:29;;;;;;;;;-1:-1:-1;;;;;29542:29:0;;;;;-1:-1:-1;;;29542:29:0;;;;;;;;;;;-1:-1:-1;;;29542:29:0;;;;;;;;;;;;;29602:28;29598:109;;29670:9;28722:1109;-1:-1:-1;;;28722:1109:0:o;29598:109::-;29469:261;;;28931:833;28878:886;29792:31;;-1:-1:-1;;;29792:31:0;;;;;;;;;;;5349:191;5423:16;5442:6;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;5459:17:0;;;;;;5492:40;;5442:6;;;;;;;5492:40;;5423:16;5492:40;5412:128;5349:191;:::o;42419:667::-;42603:72;;-1:-1:-1;;;42603:72:0;;42582:4;;-1:-1:-1;;;;;42603:36:0;;;;;:72;;2883:10;;42654:4;;42660:7;;42669:5;;42603:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42603:72:0;;;;;;;;-1:-1:-1;;42603:72:0;;;;;;;;;;;;:::i;:::-;;;42599:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42837:6;:13;42854:1;42837:18;42833:235;;42883:40;;-1:-1:-1;;;42883:40:0;;;;;;;;;;;42833:235;43026:6;43020:13;43011:6;43007:2;43003:15;42996:38;42599:480;-1:-1:-1;;;;;;42722:55:0;-1:-1:-1;;;42722:55:0;;-1:-1:-1;42599:480:0;42419:667;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34223:163;34346:32;34352:2;34356:8;34366:5;34373:4;34807:13;;-1:-1:-1;;;;;34835:16:0;;34831:48;;34860:19;;-1:-1:-1;;;34860:19:0;;;;;;;;;;;34831:48;34894:8;34906:1;34894:13;34890:44;;34916:18;;-1:-1:-1;;;34916:18:0;;;;;;;;;;;34890:44;-1:-1:-1;;;;;35285:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35344:49:0;;35285:44;;;;;;;;35344:49;;;;-1:-1:-1;;35285:44:0;;;;;;35344:49;;;;;;;;;;;;;;;;35410:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35460:66:0;;;;-1:-1:-1;;;35510:15:0;35460:66;;;;;;;;;;35410:25;35607:23;;;35651:4;:23;;;;-1:-1:-1;;;;;;35659:13:0;;7075:19;:23;;35659:15;35647:641;;;35695:314;35726:38;;35751:12;;-1:-1:-1;;;;;35726:38:0;;;35743:1;;35726:38;;35743:1;;35726:38;35792:69;35831:1;35835:2;35839:14;;;;;;35855:5;35792:30;:69::i;:::-;35787:174;;35897:40;;-1:-1:-1;;;35897:40:0;;;;;;;;;;;35787:174;36004:3;35988:12;:19;35695:314;;36090:12;36073:13;;:29;36069:43;;36104:8;;;36069:43;35647:641;;;36153:120;36184:40;;36209:14;;;;;-1:-1:-1;;;;;36184:40:0;;;36201:1;;36184:40;;36201:1;;36184:40;36268:3;36252:12;:19;36153:120;;35647:641;-1:-1:-1;36302:13:0;:28;36352:60;32950:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1781:196::-;1849:20;;-1:-1:-1;;;;;1898:54:1;;1888:65;;1878:93;;1967:1;1964;1957:12;1878:93;1781:196;;;:::o;1982:254::-;2050:6;2058;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2150:29;2169:9;2150:29;:::i;:::-;2140:39;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1982:254:1:o;2423:328::-;2500:6;2508;2516;2569:2;2557:9;2548:7;2544:23;2540:32;2537:52;;;2585:1;2582;2575:12;2537:52;2608:29;2627:9;2608:29;:::i;:::-;2598:39;;2656:38;2690:2;2679:9;2675:18;2656:38;:::i;:::-;2646:48;;2741:2;2730:9;2726:18;2713:32;2703:42;;2423:328;;;;;:::o;2756:248::-;2824:6;2832;2885:2;2873:9;2864:7;2860:23;2856:32;2853:52;;;2901:1;2898;2891:12;2853:52;-1:-1:-1;;2924:23:1;;;2994:2;2979:18;;;2966:32;;-1:-1:-1;2756:248:1:o;3311:186::-;3370:6;3423:2;3411:9;3402:7;3398:23;3394:32;3391:52;;;3439:1;3436;3429:12;3391:52;3462:29;3481:9;3462:29;:::i;3502:592::-;3573:6;3581;3634:2;3622:9;3613:7;3609:23;3605:32;3602:52;;;3650:1;3647;3640:12;3602:52;3690:9;3677:23;3719:18;3760:2;3752:6;3749:14;3746:34;;;3776:1;3773;3766:12;3746:34;3814:6;3803:9;3799:22;3789:32;;3859:7;3852:4;3848:2;3844:13;3840:27;3830:55;;3881:1;3878;3871:12;3830:55;3921:2;3908:16;3947:2;3939:6;3936:14;3933:34;;;3963:1;3960;3953:12;3933:34;4008:7;4003:2;3994:6;3990:2;3986:15;3982:24;3979:37;3976:57;;;4029:1;4026;4019:12;3976:57;4060:2;4052:11;;;;;4082:6;;-1:-1:-1;3502:592:1;;-1:-1:-1;;;;3502:592:1:o;4099:127::-;4160:10;4155:3;4151:20;4148:1;4141:31;4191:4;4188:1;4181:15;4215:4;4212:1;4205:15;4231:343;4378:2;4363:18;;4411:1;4400:13;;4390:144;;4456:10;4451:3;4447:20;4444:1;4437:31;4491:4;4488:1;4481:15;4519:4;4516:1;4509:15;4390:144;4543:25;;;4231:343;:::o;4579:347::-;4644:6;4652;4705:2;4693:9;4684:7;4680:23;4676:32;4673:52;;;4721:1;4718;4711:12;4673:52;4744:29;4763:9;4744:29;:::i;:::-;4734:39;;4823:2;4812:9;4808:18;4795:32;4870:5;4863:13;4856:21;4849:5;4846:32;4836:60;;4892:1;4889;4882:12;4836:60;4915:5;4905:15;;;4579:347;;;;;:::o;4931:127::-;4992:10;4987:3;4983:20;4980:1;4973:31;5023:4;5020:1;5013:15;5047:4;5044:1;5037:15;5063:1138;5158:6;5166;5174;5182;5235:3;5223:9;5214:7;5210:23;5206:33;5203:53;;;5252:1;5249;5242:12;5203:53;5275:29;5294:9;5275:29;:::i;:::-;5265:39;;5323:38;5357:2;5346:9;5342:18;5323:38;:::i;:::-;5313:48;;5408:2;5397:9;5393:18;5380:32;5370:42;;5463:2;5452:9;5448:18;5435:32;5486:18;5527:2;5519:6;5516:14;5513:34;;;5543:1;5540;5533:12;5513:34;5581:6;5570:9;5566:22;5556:32;;5626:7;5619:4;5615:2;5611:13;5607:27;5597:55;;5648:1;5645;5638:12;5597:55;5684:2;5671:16;5706:2;5702;5699:10;5696:36;;;5712:18;;:::i;:::-;5787:2;5781:9;5755:2;5841:13;;-1:-1:-1;;5837:22:1;;;5861:2;5833:31;5829:40;5817:53;;;5885:18;;;5905:22;;;5882:46;5879:72;;;5931:18;;:::i;:::-;5971:10;5967:2;5960:22;6006:2;5998:6;5991:18;6046:7;6041:2;6036;6032;6028:11;6024:20;6021:33;6018:53;;;6067:1;6064;6057:12;6018:53;6123:2;6118;6114;6110:11;6105:2;6097:6;6093:15;6080:46;6168:1;6163:2;6158;6150:6;6146:15;6142:24;6135:35;6189:6;6179:16;;;;;;;5063:1138;;;;;;;:::o;6206:292::-;6264:6;6317:2;6305:9;6296:7;6292:23;6288:32;6285:52;;;6333:1;6330;6323:12;6285:52;6372:9;6359:23;6422:26;6415:5;6411:38;6404:5;6401:49;6391:77;;6464:1;6461;6454:12;6503:260;6571:6;6579;6632:2;6620:9;6611:7;6607:23;6603:32;6600:52;;;6648:1;6645;6638:12;6600:52;6671:29;6690:9;6671:29;:::i;:::-;6661:39;;6719:38;6753:2;6742:9;6738:18;6719:38;:::i;:::-;6709:48;;6503:260;;;;;:::o;6768:380::-;6847:1;6843:12;;;;6890;;;6911:61;;6965:4;6957:6;6953:17;6943:27;;6911:61;7018:2;7010:6;7007:14;6987:18;6984:38;6981:161;;7064:10;7059:3;7055:20;7052:1;7045:31;7099:4;7096:1;7089:15;7127:4;7124:1;7117:15;6981:161;;6768:380;;;:::o;7513:127::-;7574:10;7569:3;7565:20;7562:1;7555:31;7605:4;7602:1;7595:15;7629:4;7626:1;7619:15;7645:168;7685:7;7751:1;7747;7743:6;7739:14;7736:1;7733:21;7728:1;7721:9;7714:17;7710:45;7707:71;;;7758:18;;:::i;:::-;-1:-1:-1;7798:9:1;;7645:168::o;7818:127::-;7879:10;7874:3;7870:20;7867:1;7860:31;7910:4;7907:1;7900:15;7934:4;7931:1;7924:15;7950:120;7990:1;8016;8006:35;;8021:18;;:::i;:::-;-1:-1:-1;8055:9:1;;7950:120::o;8783:128::-;8823:3;8854:1;8850:6;8847:1;8844:13;8841:39;;;8860:18;;:::i;:::-;-1:-1:-1;8896:9:1;;8783:128::o;12602:185::-;12644:3;12682:5;12676:12;12697:52;12742:6;12737:3;12730:4;12723:5;12719:16;12697:52;:::i;:::-;12765:16;;;;;12602:185;-1:-1:-1;;12602:185:1:o;12910:1301::-;13187:3;13216:1;13249:6;13243:13;13279:3;13301:1;13329:9;13325:2;13321:18;13311:28;;13389:2;13378:9;13374:18;13411;13401:61;;13455:4;13447:6;13443:17;13433:27;;13401:61;13481:2;13529;13521:6;13518:14;13498:18;13495:38;13492:165;;-1:-1:-1;;;13556:33:1;;13612:4;13609:1;13602:15;13642:4;13563:3;13630:17;13492:165;13673:18;13700:104;;;;13818:1;13813:320;;;;13666:467;;13700:104;-1:-1:-1;;13733:24:1;;13721:37;;13778:16;;;;-1:-1:-1;13700:104:1;;13813:320;12549:1;12542:14;;;12586:4;12573:18;;13908:1;13922:165;13936:6;13933:1;13930:13;13922:165;;;14014:14;;14001:11;;;13994:35;14057:16;;;;13951:10;;13922:165;;;13926:3;;14116:6;14111:3;14107:16;14100:23;;13666:467;;;;;;;14149:56;14174:30;14200:3;14192:6;14174:30;:::i;:::-;-1:-1:-1;;;12852:20:1;;12897:1;12888:11;;12792:113;14149:56;14142:63;12910:1301;-1:-1:-1;;;;;12910:1301:1:o;14623:523::-;14817:4;-1:-1:-1;;;;;14927:2:1;14919:6;14915:15;14904:9;14897:34;14979:2;14971:6;14967:15;14962:2;14951:9;14947:18;14940:43;;15019:6;15014:2;15003:9;14999:18;14992:34;15062:3;15057:2;15046:9;15042:18;15035:31;15083:57;15135:3;15124:9;15120:19;15112:6;15083:57;:::i;:::-;15075:65;14623:523;-1:-1:-1;;;;;;14623:523:1:o;15151:249::-;15220:6;15273:2;15261:9;15252:7;15248:23;15244:32;15241:52;;;15289:1;15286;15279:12;15241:52;15321:9;15315:16;15340:30;15364:5;15340:30;:::i;15405:135::-;15444:3;15465:17;;;15462:43;;15485:18;;:::i;:::-;-1:-1:-1;15532:1:1;15521:13;;15405:135::o;15545:125::-;15585:4;15613:1;15610;15607:8;15604:34;;;15618:18;;:::i;:::-;-1:-1:-1;15655:9:1;;15545:125::o;15675:112::-;15707:1;15733;15723:35;;15738:18;;:::i;:::-;-1:-1:-1;15772:9:1;;15675:112::o;15792:127::-;15853:10;15848:3;15844:20;15841:1;15834:31;15884:4;15881:1;15874:15;15908:4;15905:1;15898:15

Swarm Source

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