ETH Price: $3,459.90 (+2.12%)
Gas: 9 Gwei

Token

gawdH8sNFTees (gawdH8sNFTees)
 

Overview

Max Total Supply

5,022 gawdH8sNFTees

Holders

2,532

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 gawdH8sNFTees
0x4b6a535dfbbd7bc4618f002cd5441602f6004896
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:
gawdH8sNFTees

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-06
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


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

// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/math/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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

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

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

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


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

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


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

// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


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

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

pragma solidity ^0.8.0;

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

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

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


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

// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


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

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

// Creator: Chiru Labs

pragma solidity ^0.8.0;
/**
 * @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 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

    function totalSupply() public view returns (uint256) {
        return currentIndex;
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

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

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev 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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
    unchecked {
        _addressData[to].balance += uint128(quantity);
        _addressData[to].numberMinted += uint128(quantity);

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

        uint256 updatedIndex = startTokenId;

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

            updatedIndex++;
        }

        currentIndex = updatedIndex;
    }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

        _ownerships[tokenId].addr = to;
        _ownerships[tokenId].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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId].addr = prevOwnership.addr;
                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
            }
        }
    }

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

pragma solidity ^0.8.0;
contract gawdH8sNFTees is Ownable, ERC721A, ReentrancyGuard {
    using SafeMath for uint256;
   
    bool private _isActive = false;

    uint256 public constant MAX_SUPPLY = 5022;

    uint256 public maxCountPerAccount = 2; 
    
    uint256 public price = 0 ether;

    string private _tokenBaseURI = "";

    mapping(address => uint256) public minted;

    modifier onlyActive() {
        require(_isActive && totalSupply() < MAX_SUPPLY, 'not active');
        _;
    }

    constructor() ERC721A("gawdH8sNFTees", "gawdH8sNFTees") {
         _safeMint(msg.sender, 1);
    }

    function mint(uint256 numberOfTokens) external payable onlyActive nonReentrant() {
        require(numberOfTokens != 0, "zero count");
        require(numberOfTokens <= MAX_SUPPLY.sub(totalSupply()), "not enough nfts");
        require(numberOfTokens.add(minted[msg.sender]) <= maxCountPerAccount, "already max minted");
        
        minted[msg.sender] = minted[msg.sender].add(numberOfTokens);

        _safeMint(msg.sender, numberOfTokens);
    }

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

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    
    /////////////////////////////////////////////////////////////
    //////////////////   Admin Functions ////////////////////////
    /////////////////////////////////////////////////////////////
    function startSale() external onlyOwner {
        _isActive = true;
    }

    function endSale() external onlyOwner {
        _isActive = false;
    }

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

    function setMaxMintPerAddr(uint256 _count) external onlyOwner {
        maxCountPerAccount = _count;
    }

    function setTokenBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","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":"maxCountPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxMintPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"},{"stateMutability":"payable","type":"receive"}]

6009805460ff191690556002600a556000600b81905560a0604081905260808290526200003091600c919062000511565b503480156200003e57600080fd5b506040518060400160405280600d81526020016c676177644838734e465465657360981b8152506040518060400160405280600d81526020016c676177644838734e465465657360981b815250620000a56200009f620000ed60201b60201c565b620000f1565b8151620000ba90600290602085019062000511565b508051620000d090600390602084019062000511565b505060016008819055620000e79150339062000141565b6200069e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001638282604051806020016040528060008152506200016760201b60201c565b5050565b6200017683838360016200017b565b505050565b6001546001600160a01b038516620001e45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b83620002445760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401620001db565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b031916909217600160a01b600160e01b031916600160a01b426001600160401b0316021790915581905b858110156200038d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315620003805762000327600088848862000398565b620003805760405162461bcd60e51b815260206004820152603360248201526000805160206200246983398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401620001db565b60019182019101620002d0565b506001555050505050565b6000620003b9846001600160a01b03166200050260201b62000d0e1760201c565b15620004f657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620003f3903390899088908890600401620005e8565b602060405180830381600087803b1580156200040e57600080fd5b505af192505050801562000441575060408051601f3d908101601f191682019092526200043e91810190620005b7565b60015b620004db573d80801562000472576040519150601f19603f3d011682016040523d82523d6000602084013e62000477565b606091505b508051620004d35760405162461bcd60e51b815260206004820152603360248201526000805160206200246983398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401620001db565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004fa565b5060015b949350505050565b6001600160a01b03163b151590565b8280546200051f9062000661565b90600052602060002090601f0160209004810192826200054357600085556200058e565b82601f106200055e57805160ff19168380011785556200058e565b828001600101855582156200058e579182015b828111156200058e57825182559160200191906001019062000571565b506200059c929150620005a0565b5090565b5b808211156200059c5760008155600101620005a1565b600060208284031215620005c9578081fd5b81516001600160e01b031981168114620005e1578182fd5b9392505050565b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b82811015620006365785810182015185820160a00152810162000618565b8281111562000648578360a084870101525b5050601f01601f19169190910160a00195945050505050565b6002810460018216806200067657607f821691505b602082108114156200069857634e487b7160e01b600052602260045260246000fd5b50919050565b611dbb80620006ae6000396000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde146104a0578063c87b56dd146104c0578063e985e9c5146104e0578063f2fde38b14610529576101c2565b8063a22cb46514610455578063b0d1643d14610475578063b66a0e5d1461048b576101c2565b806391b7f5ed116100c657806391b7f5ed146103f757806395d89b4114610417578063a035b1fe1461042c578063a0712d6814610442576101c2565b8063715018a6146103a45780638da5cb5b146103b95780638ef79e91146103d7576101c2565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461032f57806342842e0e146103445780636352211e1461036457806370a0823114610384576101c2565b806323b872dd146102e457806332cb6b0c14610304578063380d831b1461031a576101c2565b8063095ea7b311610195578063095ea7b3146102565780631300c0141461027857806318160ddd146102985780631e7269c5146102b7576101c2565b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101e76101e2366004611ac0565b610549565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161059d565b6040516101f39190611bee565b34801561022a57600080fd5b5061023e610239366004611b3e565b61062f565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611a97565b6106bf565b005b34801561028457600080fd5b50610276610293366004611b3e565b6107d7565b3480156102a457600080fd5b506001545b6040519081526020016101f3565b3480156102c357600080fd5b506102a96102d236600461195d565b600d6020526000908152604090205481565b3480156102f057600080fd5b506102766102ff3660046119a9565b6107e4565b34801561031057600080fd5b506102a961139e81565b34801561032657600080fd5b506102766107ef565b34801561033b57600080fd5b50610276610803565b34801561035057600080fd5b5061027661035f3660046119a9565b610887565b34801561037057600080fd5b5061023e61037f366004611b3e565b6108a2565b34801561039057600080fd5b506102a961039f36600461195d565b6108b4565b3480156103b057600080fd5b50610276610945565b3480156103c557600080fd5b506000546001600160a01b031661023e565b3480156103e357600080fd5b506102766103f2366004611af8565b610959565b34801561040357600080fd5b50610276610412366004611b3e565b610978565b34801561042357600080fd5b50610211610985565b34801561043857600080fd5b506102a9600b5481565b610276610450366004611b3e565b610994565b34801561046157600080fd5b50610276610470366004611a5d565b610b68565b34801561048157600080fd5b506102a9600a5481565b34801561049757600080fd5b50610276610c3a565b3480156104ac57600080fd5b506102766104bb3660046119e4565b610c51565b3480156104cc57600080fd5b506102116104db366004611b3e565b610c8a565b3480156104ec57600080fd5b506101e76104fb366004611977565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053557600080fd5b5061027661054436600461195d565b610c95565b60006001600160e01b031982166380ac58cd60e01b148061057a57506001600160e01b03198216635b5e139f60e01b145b8061059557506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6060600280546105ac90611cc3565b80601f01602080910402602001604051908101604052809291908181526020018280546105d890611cc3565b80156106255780601f106105fa57610100808354040283529160200191610625565b820191906000526020600020905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b600061063c826001541190565b6106a35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ca826108a2565b9050806001600160a01b0316836001600160a01b031614156107395760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161069a565b336001600160a01b0382161480610755575061075581336104fb565b6107c75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161069a565b6107d2838383610d1d565b505050565b6107df610d79565b600a55565b6107d2838383610dd3565b6107f7610d79565b6009805460ff19169055565b61080b610d79565b6002600854141561085e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161069a565b60026008554761087f6108796000546001600160a01b031690565b826110d7565b506001600855565b6107d283838360405180602001604052806000815250610c51565b60006108ad826111f0565b5192915050565b60006001600160a01b0382166109205760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161069a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b61094d610d79565b61095760006112c9565b565b610961610d79565b805161097490600c906020840190611837565b5050565b610980610d79565b600b55565b6060600380546105ac90611cc3565b60095460ff1680156109af575061139e6109ad60015490565b105b6109e85760405162461bcd60e51b815260206004820152600a6024820152696e6f742061637469766560b01b604482015260640161069a565b60026008541415610a3b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161069a565b600260085580610a7a5760405162461bcd60e51b815260206004820152600a6024820152691e995c9bc818dbdd5b9d60b21b604482015260640161069a565b610a8f610a8660015490565b61139e90611319565b811115610ad05760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768206e66747360881b604482015260640161069a565b600a54336000908152600d6020526040902054610aee90839061132c565b1115610b315760405162461bcd60e51b8152602060048201526012602482015271185b1c9958591e481b585e081b5a5b9d195960721b604482015260640161069a565b336000908152600d6020526040902054610b4b908261132c565b336000818152600d602052604090209190915561087f9082611338565b6001600160a01b038216331415610bc15760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161069a565b3360008181526007602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c2e911515815260200190565b60405180910390a35050565b610c42610d79565b6009805460ff19166001179055565b610c5c848484610dd3565b610c6884848484611352565b610c845760405162461bcd60e51b815260040161069a90611c01565b50505050565b606061059582611460565b610c9d610d79565b6001600160a01b038116610d025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069a565b610d0b816112c9565b50565b6001600160a01b03163b151590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161069a565b6000610dde826111f0565b80519091506000906001600160a01b0316336001600160a01b03161480610e15575033610e0a8461062f565b6001600160a01b0316145b80610e2757508151610e2790336104fb565b905080610e915760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161069a565b846001600160a01b031682600001516001600160a01b031614610f055760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161069a565b6001600160a01b038416610f695760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161069a565b610f796000848460000151610d1d565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff160217905590860180835291205490911661108d5761102f816001541190565b1561108d578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156111275760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161069a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611174576040519150601f19603f3d011682016040523d82523d6000602084013e611179565b606091505b50509050806107d25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161069a565b604080518082019091526000808252602082015261120f826001541190565b61126e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161069a565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112bf5791506105989050565b5060001901611270565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006113258284611c80565b9392505050565b60006113258284611c54565b61097482826040518060200160405280600081525061152d565b60006001600160a01b0384163b1561145457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611396903390899088908890600401611bb1565b602060405180830381600087803b1580156113b057600080fd5b505af19250505080156113e0575060408051601f3d908101601f191682019092526113dd91810190611adc565b60015b61143a573d80801561140e576040519150601f19603f3d011682016040523d82523d6000602084013e611413565b606091505b5080516114325760405162461bcd60e51b815260040161069a90611c01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611458565b5060015b949350505050565b606061146d826001541190565b6114d15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069a565b60006114db61153a565b90508051600014156114fc5760405180602001604052806000815250611325565b8061150684611549565b604051602001611517929190611b82565b6040516020818303038152906040529392505050565b6107d28383836001611664565b6060600c80546105ac90611cc3565b60608161156e57506040805180820190915260018152600360fc1b6020820152610598565b8160005b8115611598578061158281611cfe565b91506115919050600a83611c6c565b9150611572565b60008167ffffffffffffffff8111156115c157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115eb576020820181803683370190505b5090505b841561145857611600600183611c80565b915061160d600a86611d19565b611618906030611c54565b60f81b81838151811061163b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061165d600a86611c6c565b94506115ef565b6001546001600160a01b0385166116c75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161069a565b836117255760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161069a565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b8581101561182e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611822576118066000888488611352565b6118225760405162461bcd60e51b815260040161069a90611c01565b600191820191016117b3565b506001556110d0565b82805461184390611cc3565b90600052602060002090601f01602090048101928261186557600085556118ab565b82601f1061187e57805160ff19168380011785556118ab565b828001600101855582156118ab579182015b828111156118ab578251825591602001919060010190611890565b506118b79291506118bb565b5090565b5b808211156118b757600081556001016118bc565b600067ffffffffffffffff808411156118eb576118eb611d59565b604051601f8501601f19908116603f0116810190828211818310171561191357611913611d59565b8160405280935085815286868601111561192c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461059857600080fd5b60006020828403121561196e578081fd5b61132582611946565b60008060408385031215611989578081fd5b61199283611946565b91506119a060208401611946565b90509250929050565b6000806000606084860312156119bd578081fd5b6119c684611946565b92506119d460208501611946565b9150604084013590509250925092565b600080600080608085870312156119f9578081fd5b611a0285611946565b9350611a1060208601611946565b925060408501359150606085013567ffffffffffffffff811115611a32578182fd5b8501601f81018713611a42578182fd5b611a51878235602084016118d0565b91505092959194509250565b60008060408385031215611a6f578182fd5b611a7883611946565b915060208301358015158114611a8c578182fd5b809150509250929050565b60008060408385031215611aa9578182fd5b611ab283611946565b946020939093013593505050565b600060208284031215611ad1578081fd5b813561132581611d6f565b600060208284031215611aed578081fd5b815161132581611d6f565b600060208284031215611b09578081fd5b813567ffffffffffffffff811115611b1f578182fd5b8201601f81018413611b2f578182fd5b611458848235602084016118d0565b600060208284031215611b4f578081fd5b5035919050565b60008151808452611b6e816020860160208601611c97565b601f01601f19169290920160200192915050565b60008351611b94818460208801611c97565b835190830190611ba8818360208801611c97565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611be490830184611b56565b9695505050505050565b6000602082526113256020830184611b56565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611c6757611c67611d2d565b500190565b600082611c7b57611c7b611d43565b500490565b600082821015611c9257611c92611d2d565b500390565b60005b83811015611cb2578181015183820152602001611c9a565b83811115610c845750506000910152565b600281046001821680611cd757607f821691505b60208210811415611cf857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d1257611d12611d2d565b5060010190565b600082611d2857611d28611d43565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d0b57600080fdfea26469706673582212206a2039209711ac06d0338f878ed7f1980edb2da3df0f76827eeef62282d4f25264736f6c63430008020033455243373231413a207472616e7366657220746f206e6f6e2045524337323152

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde146104a0578063c87b56dd146104c0578063e985e9c5146104e0578063f2fde38b14610529576101c2565b8063a22cb46514610455578063b0d1643d14610475578063b66a0e5d1461048b576101c2565b806391b7f5ed116100c657806391b7f5ed146103f757806395d89b4114610417578063a035b1fe1461042c578063a0712d6814610442576101c2565b8063715018a6146103a45780638da5cb5b146103b95780638ef79e91146103d7576101c2565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461032f57806342842e0e146103445780636352211e1461036457806370a0823114610384576101c2565b806323b872dd146102e457806332cb6b0c14610304578063380d831b1461031a576101c2565b8063095ea7b311610195578063095ea7b3146102565780631300c0141461027857806318160ddd146102985780631e7269c5146102b7576101c2565b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101e76101e2366004611ac0565b610549565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161059d565b6040516101f39190611bee565b34801561022a57600080fd5b5061023e610239366004611b3e565b61062f565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611a97565b6106bf565b005b34801561028457600080fd5b50610276610293366004611b3e565b6107d7565b3480156102a457600080fd5b506001545b6040519081526020016101f3565b3480156102c357600080fd5b506102a96102d236600461195d565b600d6020526000908152604090205481565b3480156102f057600080fd5b506102766102ff3660046119a9565b6107e4565b34801561031057600080fd5b506102a961139e81565b34801561032657600080fd5b506102766107ef565b34801561033b57600080fd5b50610276610803565b34801561035057600080fd5b5061027661035f3660046119a9565b610887565b34801561037057600080fd5b5061023e61037f366004611b3e565b6108a2565b34801561039057600080fd5b506102a961039f36600461195d565b6108b4565b3480156103b057600080fd5b50610276610945565b3480156103c557600080fd5b506000546001600160a01b031661023e565b3480156103e357600080fd5b506102766103f2366004611af8565b610959565b34801561040357600080fd5b50610276610412366004611b3e565b610978565b34801561042357600080fd5b50610211610985565b34801561043857600080fd5b506102a9600b5481565b610276610450366004611b3e565b610994565b34801561046157600080fd5b50610276610470366004611a5d565b610b68565b34801561048157600080fd5b506102a9600a5481565b34801561049757600080fd5b50610276610c3a565b3480156104ac57600080fd5b506102766104bb3660046119e4565b610c51565b3480156104cc57600080fd5b506102116104db366004611b3e565b610c8a565b3480156104ec57600080fd5b506101e76104fb366004611977565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053557600080fd5b5061027661054436600461195d565b610c95565b60006001600160e01b031982166380ac58cd60e01b148061057a57506001600160e01b03198216635b5e139f60e01b145b8061059557506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6060600280546105ac90611cc3565b80601f01602080910402602001604051908101604052809291908181526020018280546105d890611cc3565b80156106255780601f106105fa57610100808354040283529160200191610625565b820191906000526020600020905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b600061063c826001541190565b6106a35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ca826108a2565b9050806001600160a01b0316836001600160a01b031614156107395760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161069a565b336001600160a01b0382161480610755575061075581336104fb565b6107c75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161069a565b6107d2838383610d1d565b505050565b6107df610d79565b600a55565b6107d2838383610dd3565b6107f7610d79565b6009805460ff19169055565b61080b610d79565b6002600854141561085e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161069a565b60026008554761087f6108796000546001600160a01b031690565b826110d7565b506001600855565b6107d283838360405180602001604052806000815250610c51565b60006108ad826111f0565b5192915050565b60006001600160a01b0382166109205760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161069a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b61094d610d79565b61095760006112c9565b565b610961610d79565b805161097490600c906020840190611837565b5050565b610980610d79565b600b55565b6060600380546105ac90611cc3565b60095460ff1680156109af575061139e6109ad60015490565b105b6109e85760405162461bcd60e51b815260206004820152600a6024820152696e6f742061637469766560b01b604482015260640161069a565b60026008541415610a3b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161069a565b600260085580610a7a5760405162461bcd60e51b815260206004820152600a6024820152691e995c9bc818dbdd5b9d60b21b604482015260640161069a565b610a8f610a8660015490565b61139e90611319565b811115610ad05760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768206e66747360881b604482015260640161069a565b600a54336000908152600d6020526040902054610aee90839061132c565b1115610b315760405162461bcd60e51b8152602060048201526012602482015271185b1c9958591e481b585e081b5a5b9d195960721b604482015260640161069a565b336000908152600d6020526040902054610b4b908261132c565b336000818152600d602052604090209190915561087f9082611338565b6001600160a01b038216331415610bc15760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161069a565b3360008181526007602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c2e911515815260200190565b60405180910390a35050565b610c42610d79565b6009805460ff19166001179055565b610c5c848484610dd3565b610c6884848484611352565b610c845760405162461bcd60e51b815260040161069a90611c01565b50505050565b606061059582611460565b610c9d610d79565b6001600160a01b038116610d025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069a565b610d0b816112c9565b50565b6001600160a01b03163b151590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161069a565b6000610dde826111f0565b80519091506000906001600160a01b0316336001600160a01b03161480610e15575033610e0a8461062f565b6001600160a01b0316145b80610e2757508151610e2790336104fb565b905080610e915760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161069a565b846001600160a01b031682600001516001600160a01b031614610f055760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161069a565b6001600160a01b038416610f695760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161069a565b610f796000848460000151610d1d565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff160217905590860180835291205490911661108d5761102f816001541190565b1561108d578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156111275760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161069a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611174576040519150601f19603f3d011682016040523d82523d6000602084013e611179565b606091505b50509050806107d25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161069a565b604080518082019091526000808252602082015261120f826001541190565b61126e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161069a565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112bf5791506105989050565b5060001901611270565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006113258284611c80565b9392505050565b60006113258284611c54565b61097482826040518060200160405280600081525061152d565b60006001600160a01b0384163b1561145457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611396903390899088908890600401611bb1565b602060405180830381600087803b1580156113b057600080fd5b505af19250505080156113e0575060408051601f3d908101601f191682019092526113dd91810190611adc565b60015b61143a573d80801561140e576040519150601f19603f3d011682016040523d82523d6000602084013e611413565b606091505b5080516114325760405162461bcd60e51b815260040161069a90611c01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611458565b5060015b949350505050565b606061146d826001541190565b6114d15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069a565b60006114db61153a565b90508051600014156114fc5760405180602001604052806000815250611325565b8061150684611549565b604051602001611517929190611b82565b6040516020818303038152906040529392505050565b6107d28383836001611664565b6060600c80546105ac90611cc3565b60608161156e57506040805180820190915260018152600360fc1b6020820152610598565b8160005b8115611598578061158281611cfe565b91506115919050600a83611c6c565b9150611572565b60008167ffffffffffffffff8111156115c157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115eb576020820181803683370190505b5090505b841561145857611600600183611c80565b915061160d600a86611d19565b611618906030611c54565b60f81b81838151811061163b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061165d600a86611c6c565b94506115ef565b6001546001600160a01b0385166116c75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161069a565b836117255760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161069a565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b8581101561182e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611822576118066000888488611352565b6118225760405162461bcd60e51b815260040161069a90611c01565b600191820191016117b3565b506001556110d0565b82805461184390611cc3565b90600052602060002090601f01602090048101928261186557600085556118ab565b82601f1061187e57805160ff19168380011785556118ab565b828001600101855582156118ab579182015b828111156118ab578251825591602001919060010190611890565b506118b79291506118bb565b5090565b5b808211156118b757600081556001016118bc565b600067ffffffffffffffff808411156118eb576118eb611d59565b604051601f8501601f19908116603f0116810190828211818310171561191357611913611d59565b8160405280935085815286868601111561192c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461059857600080fd5b60006020828403121561196e578081fd5b61132582611946565b60008060408385031215611989578081fd5b61199283611946565b91506119a060208401611946565b90509250929050565b6000806000606084860312156119bd578081fd5b6119c684611946565b92506119d460208501611946565b9150604084013590509250925092565b600080600080608085870312156119f9578081fd5b611a0285611946565b9350611a1060208601611946565b925060408501359150606085013567ffffffffffffffff811115611a32578182fd5b8501601f81018713611a42578182fd5b611a51878235602084016118d0565b91505092959194509250565b60008060408385031215611a6f578182fd5b611a7883611946565b915060208301358015158114611a8c578182fd5b809150509250929050565b60008060408385031215611aa9578182fd5b611ab283611946565b946020939093013593505050565b600060208284031215611ad1578081fd5b813561132581611d6f565b600060208284031215611aed578081fd5b815161132581611d6f565b600060208284031215611b09578081fd5b813567ffffffffffffffff811115611b1f578182fd5b8201601f81018413611b2f578182fd5b611458848235602084016118d0565b600060208284031215611b4f578081fd5b5035919050565b60008151808452611b6e816020860160208601611c97565b601f01601f19169290920160200192915050565b60008351611b94818460208801611c97565b835190830190611ba8818360208801611c97565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611be490830184611b56565b9695505050505050565b6000602082526113256020830184611b56565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611c6757611c67611d2d565b500190565b600082611c7b57611c7b611d43565b500490565b600082821015611c9257611c92611d2d565b500390565b60005b83811015611cb2578181015183820152602001611c9a565b83811115610c845750506000910152565b600281046001821680611cd757607f821691505b60208210811415611cf857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d1257611d12611d2d565b5060010190565b600082611d2857611d28611d43565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d0b57600080fdfea26469706673582212206a2039209711ac06d0338f878ed7f1980edb2da3df0f76827eeef62282d4f25264736f6c63430008020033

Deployed Bytecode Sourcemap

47858:2236:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34960:293;;;;;;;;;;-1:-1:-1;34960:293:0;;;;;:::i;:::-;;:::i;:::-;;;6006:14:1;;5999:22;5981:41;;5969:2;5954:18;34960:293:0;;;;;;;;36735:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38297:214::-;;;;;;;;;;-1:-1:-1;38297:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5304:32:1;;;5286:51;;5274:2;5259:18;38297:214:0;5241:102:1;37818:413:0;;;;;;;;;;-1:-1:-1;37818:413:0;;;;;:::i;:::-;;:::i;:::-;;49664:108;;;;;;;;;;-1:-1:-1;49664:108:0;;;;;:::i;:::-;;:::i;34797:91::-;;;;;;;;;;-1:-1:-1;34868:12:0;;34797:91;;;15401:25:1;;;15389:2;15374:18;34797:91:0;15356:76:1;48184:41:0;;;;;;;;;;-1:-1:-1;48184:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;39173:162;;;;;;;;;;-1:-1:-1;39173:162:0;;;;;:::i;:::-;;:::i;48002:41::-;;;;;;;;;;;;48039:4;48002:41;;49488:74;;;;;;;;;;;;;:::i;49889:165::-;;;;;;;;;;;;;:::i;39406:177::-;;;;;;;;;;-1:-1:-1;39406:177:0;;;;;:::i;:::-;;:::i;36544:124::-;;;;;;;;;;-1:-1:-1;36544:124:0;;;;;:::i;:::-;;:::i;35317:221::-;;;;;;;;;;-1:-1:-1;35317:221:0;;;;;:::i;:::-;;:::i;2703:103::-;;;;;;;;;;;;;:::i;2055:87::-;;;;;;;;;;-1:-1:-1;2101:7:0;2128:6;-1:-1:-1;;;;;2128:6:0;2055:87;;49780:101;;;;;;;;;;-1:-1:-1;49780:101:0;;;;;:::i;:::-;;:::i;49570:86::-;;;;;;;;;;-1:-1:-1;49570:86:0;;;;;:::i;:::-;;:::i;36904:104::-;;;;;;;;;;;;;:::i;48103:30::-;;;;;;;;;;;;;;;;48465:460;;;;;;:::i;:::-;;:::i;38583:288::-;;;;;;;;;;-1:-1:-1;38583:288:0;;;;;:::i;:::-;;:::i;48052:37::-;;;;;;;;;;;;;;;;49405:75;;;;;;;;;;;;;:::i;39654:355::-;;;;;;;;;;-1:-1:-1;39654:355:0;;;;;:::i;:::-;;:::i;49047:143::-;;;;;;;;;;-1:-1:-1;49047:143:0;;;;;:::i;:::-;;:::i;38942:164::-;;;;;;;;;;-1:-1:-1;38942:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39063:25:0;;;39039:4;39063:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38942:164;2961:201;;;;;;;;;;-1:-1:-1;2961:201:0;;;;;:::i;:::-;;:::i;34960:293::-;35062:4;-1:-1:-1;;;;;;35095:40:0;;-1:-1:-1;;;35095:40:0;;:101;;-1:-1:-1;;;;;;;35148:48:0;;-1:-1:-1;;;35148:48:0;35095:101;:150;;;-1:-1:-1;;;;;;;;;;33050:40:0;;;35209:36;35079:166;;34960:293;;;;:::o;36735:100::-;36789:13;36822:5;36815:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36735:100;:::o;38297:214::-;38365:7;38393:16;38401:7;40355:12;;-1:-1:-1;40345:22:0;40264:111;38393:16;38385:74;;;;-1:-1:-1;;;38385:74:0;;15043:2:1;38385:74:0;;;15025:21:1;15082:2;15062:18;;;15055:30;15121:34;15101:18;;;15094:62;-1:-1:-1;;;15172:18:1;;;15165:43;15225:19;;38385:74:0;;;;;;;;;-1:-1:-1;38479:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38479:24:0;;38297:214::o;37818:413::-;37891:13;37907:24;37923:7;37907:15;:24::i;:::-;37891:40;;37956:5;-1:-1:-1;;;;;37950:11:0;:2;-1:-1:-1;;;;;37950:11:0;;;37942:58;;;;-1:-1:-1;;;37942:58:0;;12294:2:1;37942:58:0;;;12276:21:1;12333:2;12313:18;;;12306:30;12372:34;12352:18;;;12345:62;-1:-1:-1;;;12423:18:1;;;12416:32;12465:19;;37942:58:0;12266:224:1;37942:58:0;682:10;-1:-1:-1;;;;;38035:21:0;;;;:62;;-1:-1:-1;38060:37:0;38077:5;682:10;38084:12;602:98;38060:37;38013:169;;;;-1:-1:-1;;;38013:169:0;;9498:2:1;38013:169:0;;;9480:21:1;9537:2;9517:18;;;9510:30;9576:34;9556:18;;;9549:62;9647:27;9627:18;;;9620:55;9692:19;;38013:169:0;9470:247:1;38013:169:0;38195:28;38204:2;38208:7;38217:5;38195:8;:28::i;:::-;37818:413;;;:::o;49664:108::-;1941:13;:11;:13::i;:::-;49737:18:::1;:27:::0;49664:108::o;39173:162::-;39299:28;39309:4;39315:2;39319:7;39299:9;:28::i;49488:74::-;1941:13;:11;:13::i;:::-;49537:9:::1;:17:::0;;-1:-1:-1;;49537:17:0::1;::::0;;49488:74::o;49889:165::-;1941:13;:11;:13::i;:::-;18186:1:::1;18784:7;;:19;;18776:63;;;::::0;-1:-1:-1;;;18776:63:0;;14267:2:1;18776:63:0::1;::::0;::::1;14249:21:1::0;14306:2;14286:18;;;14279:30;14345:33;14325:18;;;14318:61;14396:18;;18776:63:0::1;14239:181:1::0;18776:63:0::1;18186:1;18917:7;:18:::0;49970:21:::2;50002:44;50028:7;2101::::0;2128:6;-1:-1:-1;;;;;2128:6:0;2055:87;;50028:7:::2;50038;50002:17;:44::i;:::-;-1:-1:-1::0;18142:1:0::1;19096:7;:22:::0;49889:165::o;39406:177::-;39536:39;39553:4;39559:2;39563:7;39536:39;;;;;;;;;;;;:16;:39::i;36544:124::-;36608:7;36635:20;36647:7;36635:11;:20::i;:::-;:25;;36544:124;-1:-1:-1;;36544:124:0:o;35317:221::-;35381:7;-1:-1:-1;;;;;35409:19:0;;35401:75;;;;-1:-1:-1;;;35401:75:0;;9924:2:1;35401:75:0;;;9906:21:1;9963:2;9943:18;;;9936:30;10002:34;9982:18;;;9975:62;-1:-1:-1;;;10053:18:1;;;10046:41;10104:19;;35401:75:0;9896:233:1;35401:75:0;-1:-1:-1;;;;;;35502:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35502:27:0;;35317:221::o;2703:103::-;1941:13;:11;:13::i;:::-;2768:30:::1;2795:1;2768:18;:30::i;:::-;2703:103::o:0;49780:101::-;1941:13;:11;:13::i;:::-;49854:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49780:101:::0;:::o;49570:86::-;1941:13;:11;:13::i;:::-;49634:5:::1;:14:::0;49570:86::o;36904:104::-;36960:13;36993:7;36986:14;;;;;:::i;48465:460::-;48275:9;;;;:39;;;;;48039:4;48288:13;34868:12;;34797:91;;48288:13;:26;48275:39;48267:62;;;;-1:-1:-1;;;48267:62:0;;7277:2:1;48267:62:0;;;7259:21:1;7316:2;7296:18;;;7289:30;-1:-1:-1;;;7335:18:1;;;7328:40;7385:18;;48267:62:0;7249:160:1;48267:62:0;18186:1:::1;18784:7;;:19;;18776:63;;;::::0;-1:-1:-1;;;18776:63:0;;14267:2:1;18776:63:0::1;::::0;::::1;14249:21:1::0;14306:2;14286:18;;;14279:30;14345:33;14325:18;;;14318:61;14396:18;;18776:63:0::1;14239:181:1::0;18776:63:0::1;18186:1;18917:7;:18:::0;48565:19;48557:42:::2;;;::::0;-1:-1:-1;;;48557:42:0;;13117:2:1;48557:42:0::2;::::0;::::2;13099:21:1::0;13156:2;13136:18;;;13129:30;-1:-1:-1;;;13175:18:1;;;13168:40;13225:18;;48557:42:0::2;13089:160:1::0;48557:42:0::2;48636:29;48651:13;34868:12:::0;;34797:91;;48651:13:::2;48039:4;::::0;48636:14:::2;:29::i;:::-;48618:14;:47;;48610:75;;;::::0;-1:-1:-1;;;48610:75:0;;9154:2:1;48610:75:0::2;::::0;::::2;9136:21:1::0;9193:2;9173:18;;;9166:30;-1:-1:-1;;;9212:18:1;;;9205:45;9267:18;;48610:75:0::2;9126:165:1::0;48610:75:0::2;48746:18;::::0;48730:10:::2;48723:18;::::0;;;:6:::2;:18;::::0;;;;;48704:38:::2;::::0;:14;;:18:::2;:38::i;:::-;:60;;48696:91;;;::::0;-1:-1:-1;;;48696:91:0;;8022:2:1;48696:91:0::2;::::0;::::2;8004:21:1::0;8061:2;8041:18;;;8034:30;-1:-1:-1;;;8080:18:1;;;8073:48;8138:18;;48696:91:0::2;7994:168:1::0;48696:91:0::2;48836:10;48829:18;::::0;;;:6:::2;:18;::::0;;;;;:38:::2;::::0;48852:14;48829:22:::2;:38::i;:::-;48815:10;48808:18;::::0;;;:6:::2;:18;::::0;;;;:59;;;;48880:37:::2;::::0;48902:14;48880:9:::2;:37::i;38583:288::-:0;-1:-1:-1;;;;;38678:24:0;;682:10;38678:24;;38670:63;;;;-1:-1:-1;;;38670:63:0;;11520:2:1;38670:63:0;;;11502:21:1;11559:2;11539:18;;;11532:30;11598:28;11578:18;;;11571:56;11644:18;;38670:63:0;11492:176:1;38670:63:0;682:10;38746:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38746:42:0;;;;;;;;;;:53;;-1:-1:-1;;38746:53:0;;;;;;;:42;-1:-1:-1;;;;;38815:48:0;;38854:8;38815:48;;;;6006:14:1;5999:22;5981:41;;5969:2;5954:18;;5936:92;38815:48:0;;;;;;;;38583:288;;:::o;49405:75::-;1941:13;:11;:13::i;:::-;49456:9:::1;:16:::0;;-1:-1:-1;;49456:16:0::1;49468:4;49456:16;::::0;;49405:75::o;39654:355::-;39813:28;39823:4;39829:2;39833:7;39813:9;:28::i;:::-;39874:48;39897:4;39903:2;39907:7;39916:5;39874:22;:48::i;:::-;39852:149;;;;-1:-1:-1;;;39852:149:0;;;;;;;:::i;:::-;39654:355;;;;:::o;49047:143::-;49121:13;49159:23;49174:7;49159:14;:23::i;2961:201::-;1941:13;:11;:13::i;:::-;-1:-1:-1;;;;;3050:22:0;::::1;3042:73;;;::::0;-1:-1:-1;;;3042:73:0;;6459:2:1;3042:73:0::1;::::0;::::1;6441:21:1::0;6498:2;6478:18;;;6471:30;6537:34;6517:18;;;6510:62;-1:-1:-1;;;6588:18:1;;;6581:36;6634:19;;3042:73:0::1;6431:228:1::0;3042:73:0::1;3126:28;3145:8;3126:18;:28::i;:::-;2961:201:::0;:::o;22249:326::-;-1:-1:-1;;;;;22544:19:0;;:23;;;22249:326::o;45044:196::-;45159:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45159:29:0;-1:-1:-1;;;;;45159:29:0;;;;;;;;;45204:28;;45159:24;;45204:28;;;;;;;45044:196;;;:::o;2220:132::-;2101:7;2128:6;-1:-1:-1;;;;;2128:6:0;682:10;2284:23;2276:68;;;;-1:-1:-1;;;2276:68:0;;10743:2:1;2276:68:0;;;10725:21:1;;;10762:18;;;10755:30;10821:34;10801:18;;;10794:62;10873:18;;2276:68:0;10715:182:1;42992:1934:0;43107:35;43145:20;43157:7;43145:11;:20::i;:::-;43220:18;;43107:58;;-1:-1:-1;43178:22:0;;-1:-1:-1;;;;;43204:34:0;682:10;-1:-1:-1;;;;;43204:34:0;;:83;;;-1:-1:-1;682:10:0;43251:20;43263:7;43251:11;:20::i;:::-;-1:-1:-1;;;;;43251:36:0;;43204:83;:146;;;-1:-1:-1;43317:18:0;;43300:50;;682:10;43337:12;602:98;43300:50;43178:173;;43372:17;43364:80;;;;-1:-1:-1;;;43364:80:0;;11875:2:1;43364:80:0;;;11857:21:1;11914:2;11894:18;;;11887:30;11953:34;11933:18;;;11926:62;-1:-1:-1;;;12004:18:1;;;11997:48;12062:19;;43364:80:0;11847:240:1;43364:80:0;43487:4;-1:-1:-1;;;;;43465:26:0;:13;:18;;;-1:-1:-1;;;;;43465:26:0;;43457:77;;;;-1:-1:-1;;;43457:77:0;;10336:2:1;43457:77:0;;;10318:21:1;10375:2;10355:18;;;10348:30;10414:34;10394:18;;;10387:62;-1:-1:-1;;;10465:18:1;;;10458:36;10511:19;;43457:77:0;10308:228:1;43457:77:0;-1:-1:-1;;;;;43553:16:0;;43545:66;;;;-1:-1:-1;;;43545:66:0;;7616:2:1;43545:66:0;;;7598:21:1;7655:2;7635:18;;;7628:30;7694:34;7674:18;;;7667:62;-1:-1:-1;;;7745:18:1;;;7738:35;7790:19;;43545:66:0;7588:227:1;43545:66:0;43732:49;43749:1;43753:7;43762:13;:18;;;43732:8;:49::i;:::-;-1:-1:-1;;;;;44069:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;44069:31:0;;;-1:-1:-1;;;;;44069:31:0;;;-1:-1:-1;;44069:31:0;;;;;;;44111:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;44111:29:0;;;;;;;;;;;;;44153:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;44153:30:0;;;;-1:-1:-1;;;;44194:61:0;-1:-1:-1;;;44239:15:0;44194:61;;;;;;44517:11;;;44543:24;;;;;:29;44517:11;;44543:29;44539:275;;44607:20;44615:11;40355:12;;-1:-1:-1;40345:22:0;40264:111;44607:20;44603:200;;;44680:18;;;44648:24;;;:11;:24;;;;;;;;:50;;44759:28;;;;44717:70;;-1:-1:-1;;;44717:70:0;-1:-1:-1;;;;;;;;;44648:50:0;;;-1:-1:-1;;;;;;44648:50:0;;;;;;;44717:70;;;;;;;44603:200;42992:1934;44857:7;44853:2;-1:-1:-1;;;;;44838:27:0;44847:4;-1:-1:-1;;;;;44838:27:0;;;;;;;;;;;44876:42;42992:1934;;;;;:::o;23510:317::-;23625:6;23600:21;:31;;23592:73;;;;-1:-1:-1;;;23592:73:0;;8796:2:1;23592:73:0;;;8778:21:1;8835:2;8815:18;;;8808:30;8874:31;8854:18;;;8847:59;8923:18;;23592:73:0;8768:179:1;23592:73:0;23679:12;23697:9;-1:-1:-1;;;;;23697:14:0;23719:6;23697:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23678:52;;;23749:7;23741:78;;;;-1:-1:-1;;;23741:78:0;;8369:2:1;23741:78:0;;;8351:21:1;8408:2;8388:18;;;8381:30;8447:34;8427:18;;;8420:62;8518:28;8498:18;;;8491:56;8564:19;;23741:78:0;8341:248:1;35977:505:0;-1:-1:-1;;;;;;;;;;;;;;;;;36080:16:0;36088:7;40355:12;;-1:-1:-1;40345:22:0;40264:111;36080:16;36072:71;;;;-1:-1:-1;;;36072:71:0;;6866:2:1;36072:71:0;;;6848:21:1;6905:2;6885:18;;;6878:30;6944:34;6924:18;;;6917:62;-1:-1:-1;;;6995:18:1;;;6988:40;7045:19;;36072:71:0;6838:232:1;36072:71:0;36193:7;36173:225;36236:31;36270:17;;;:11;:17;;;;;;;;;36236:51;;;;;;;;;-1:-1:-1;;;;;36236:51:0;;;;;-1:-1:-1;;;36236:51:0;;;;;;;;;;;;36306:28;36302:85;;36362:9;-1:-1:-1;36355:16:0;;-1:-1:-1;36355:16:0;36302:85;-1:-1:-1;;;36213:6:0;36173:225;;3322:191;3396:16;3415:6;;-1:-1:-1;;;;;3432:17:0;;;-1:-1:-1;;;;;;3432:17:0;;;;;;3465:40;;3415:6;;;;;;;3465:40;;3396:16;3465:40;3322:191;;:::o;6783:98::-;6841:7;6868:5;6872:1;6868;:5;:::i;:::-;6861:12;6783:98;-1:-1:-1;;;6783:98:0:o;6402:::-;6460:7;6487:5;6491:1;6487;:5;:::i;40383:104::-;40452:27;40462:2;40466:8;40452:27;;;;;;;;;;;;:9;:27::i;45805:804::-;45960:4;-1:-1:-1;;;;;45981:13:0;;22544:19;:23;45977:625;;46017:72;;-1:-1:-1;;;46017:72:0;;-1:-1:-1;;;;;46017:36:0;;;;;:72;;682:10;;46068:4;;46074:7;;46083:5;;46017:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46017:72:0;;;;;;;;-1:-1:-1;;46017:72:0;;;;;;;;;;;;:::i;:::-;;;46013:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46263:13:0;;46259:273;;46306:61;;-1:-1:-1;;;46306:61:0;;;;;;;:::i;46259:273::-;46482:6;46476:13;46467:6;46463:2;46459:15;46452:38;46013:534;-1:-1:-1;;;;;;46140:55:0;-1:-1:-1;;;46140:55:0;;-1:-1:-1;46133:62:0;;45977:625;-1:-1:-1;46586:4:0;45977:625;45805:804;;;;;;:::o;37079:335::-;37152:13;37186:16;37194:7;40355:12;;-1:-1:-1;40345:22:0;40264:111;37186:16;37178:76;;;;-1:-1:-1;;;37178:76:0;;11104:2:1;37178:76:0;;;11086:21:1;11143:2;11123:18;;;11116:30;11182:34;11162:18;;;11155:62;-1:-1:-1;;;11233:18:1;;;11226:45;11288:19;;37178:76:0;11076:237:1;37178:76:0;37267:21;37291:10;:8;:10::i;:::-;37267:34;;37325:7;37319:21;37344:1;37319:26;;:87;;;;;;;;;;;;;;;;;37372:7;37381:18;:7;:16;:18::i;:::-;37355:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37312:94;37079:335;-1:-1:-1;;;37079:335:0:o;40850:163::-;40973:32;40979:2;40983:8;40993:5;41000:4;40973:5;:32::i;48933:106::-;48985:13;49018;49011:20;;;;;:::i;30005:723::-;30061:13;30282:10;30278:53;;-1:-1:-1;30309:10:0;;;;;;;;;;;;-1:-1:-1;;;30309:10:0;;;;;;30278:53;30356:5;30341:12;30397:78;30404:9;;30397:78;;30430:8;;;;:::i;:::-;;-1:-1:-1;30453:10:0;;-1:-1:-1;30461:2:0;30453:10;;:::i;:::-;;;30397:78;;;30485:19;30517:6;30507:17;;;;;;-1:-1:-1;;;30507:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30507:17:0;;30485:39;;30535:154;30542:10;;30535:154;;30569:11;30579:1;30569:11;;:::i;:::-;;-1:-1:-1;30638:10:0;30646:2;30638:5;:10;:::i;:::-;30625:24;;:2;:24;:::i;:::-;30612:39;;30595:6;30602;30595:14;;;;;;-1:-1:-1;;;30595:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;30595:56:0;;;;;;;;-1:-1:-1;30666:11:0;30675:2;30666:11;;:::i;:::-;;;30535:154;;41272:1466;41434:12;;-1:-1:-1;;;;;41465:16:0;;41457:62;;;;-1:-1:-1;;;41457:62:0;;13456:2:1;41457:62:0;;;13438:21:1;13495:2;13475:18;;;13468:30;13534:34;13514:18;;;13507:62;-1:-1:-1;;;13585:18:1;;;13578:31;13626:19;;41457:62:0;13428:223:1;41457:62:0;41538:13;41530:66;;;;-1:-1:-1;;;41530:66:0;;13858:2:1;41530:66:0;;;13840:21:1;13897:2;13877:18;;;13870:30;13936:34;13916:18;;;13909:62;-1:-1:-1;;;13987:18:1;;;13980:38;14035:19;;41530:66:0;13830:230:1;41530:66:0;-1:-1:-1;;;;;41940:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;41940:45:0;;-1:-1:-1;;;;;41940:45:0;;;;;;;;41996:50;;;-1:-1:-1;;;41996:50:0;;;;;;;;;;;;;;;42059:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;42059:35:0;;;;-1:-1:-1;;;;42105:66:0;-1:-1:-1;;;42155:15:0;42105:66;;;;;;;42059:25;;42232:379;42252:8;42248:1;:12;42232:379;;;42287:38;;42312:12;;-1:-1:-1;;;;;42287:38:0;;;42304:1;;42287:38;;42304:1;;42287:38;42344:4;42340:229;;;42399:59;42430:1;42434:2;42438:12;42452:5;42399:22;:59::i;:::-;42369:184;;;;-1:-1:-1;;;42369:184:0;;;;;;;:::i;:::-;42585:14;;;;;42262:3;42232:379;;;-1:-1:-1;42623:12:0;:27;42670:60;39654:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;;;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;;;;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;;;;;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;;;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;;;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5348:488::-;-1:-1:-1;;;;;5617:15:1;;;5599:34;;5669:15;;5664:2;5649:18;;5642:43;5716:2;5701:18;;5694:34;;;5764:3;5759:2;5744:18;;5737:31;;;5348:488;;5785:45;;5810:19;;5802:6;5785:45;:::i;:::-;5777:53;5551:285;-1:-1:-1;;;;;;5551:285:1:o;6033:219::-;;6182:2;6171:9;6164:21;6202:44;6242:2;6231:9;6227:18;6219:6;6202:44;:::i;12495:415::-;12697:2;12679:21;;;12736:2;12716:18;;;12709:30;12775:34;12770:2;12755:18;;12748:62;-1:-1:-1;;;12841:2:1;12826:18;;12819:49;12900:3;12885:19;;12669:241::o;15437:128::-;;15508:1;15504:6;15501:1;15498:13;15495:2;;;15514:18;;:::i;:::-;-1:-1:-1;15550:9:1;;15485:80::o;15570:120::-;;15636:1;15626:2;;15641:18;;:::i;:::-;-1:-1:-1;15675:9:1;;15616:74::o;15695:125::-;;15763:1;15760;15757:8;15754:2;;;15768:18;;:::i;:::-;-1:-1:-1;15805:9:1;;15744:76::o;15825:258::-;15897:1;15907:113;15921:6;15918:1;15915:13;15907:113;;;15997:11;;;15991:18;15978:11;;;15971:39;15943:2;15936:10;15907:113;;;16038:6;16035:1;16032:13;16029:2;;;-1:-1:-1;;16073:1:1;16055:16;;16048:27;15878:205::o;16088:380::-;16173:1;16163:12;;16220:1;16210:12;;;16231:2;;16285:4;16277:6;16273:17;16263:27;;16231:2;16338;16330:6;16327:14;16307:18;16304:38;16301:2;;;16384:10;16379:3;16375:20;16372:1;16365:31;16419:4;16416:1;16409:15;16447:4;16444:1;16437:15;16301:2;;16143:325;;;:::o;16473:135::-;;-1:-1:-1;;16533:17:1;;16530:2;;;16553:18;;:::i;:::-;-1:-1:-1;16600:1:1;16589:13;;16520:88::o;16613:112::-;;16671:1;16661:2;;16676:18;;:::i;:::-;-1:-1:-1;16710:9:1;;16651:74::o;16730:127::-;16791:10;16786:3;16782:20;16779:1;16772:31;16822:4;16819:1;16812:15;16846:4;16843:1;16836:15;16862:127;16923:10;16918:3;16914:20;16911:1;16904:31;16954:4;16951:1;16944:15;16978:4;16975:1;16968:15;16994:127;17055:10;17050:3;17046:20;17043:1;17036:31;17086:4;17083:1;17076:15;17110:4;17107:1;17100:15;17126:131;-1:-1:-1;;;;;;17200:32:1;;17190:43;;17180:2;;17247:1;17244;17237:12

Swarm Source

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