ETH Price: $2,408.56 (-2.96%)
 

Overview

Max Total Supply

26 NFCT

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fumeiji.eth
Balance
1 NFCT
0x8f4612e9aab90ead61a1637436bcb9fd0b606652
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:
NFcommuniT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev 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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: github/swolidity/nfcommunit-contract/NFcommunitT.sol



pragma solidity ^0.8.0;




contract NFcommuniT is ERC721A, Ownable, Pausable {
    uint256 public mintPrice = .01 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMint = 20;
    string public baseURI;

    constructor() ERC721A("NFcommuniT", "NFCT") {
        setBaseURI("ipfs://QmSM3X3nA1XkGTZRtZ2oQxKayd9NhT2HAg9jjRncYmXuy1/");
        _pause();
    }

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

    function mint(uint256 amount) external payable whenNotPaused {
        require(
            msg.value >= mintPrice * amount,
            "Not enough ETH for purchase."
        );
        require(amount <= maxMint, "exceeded max mint amount.");
        require(totalSupply() + amount <= maxSupply, "Not enough remaining.");
        _safeMint(msg.sender, amount);
    }

    function devMint(address to, uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= maxSupply, "Not enough remaining.");
        _safeMint(to, amount);
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        mintPrice = newPrice;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
        maxMint = _newMaxMintAmount;
    }

    function lowerMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(
            _newMaxSupply < maxSupply,
            "New supply must be less than current."
        );
        maxSupply = _newMaxSupply;
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

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

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _startTokenId() internal view override returns (uint256) {
        return 1;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","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":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600955612710600a556014600b553480156200002757600080fd5b50604080518082018252600a815269139198dbdb5b5d5b9a5560b21b602080830191825283518085019094526004845263139190d560e21b90840152815191929162000076916002916200025b565b5080516200008c9060039060208401906200025b565b50506001600055506200009f33620000e1565b6008805460ff60a01b1916905560408051606081019091526036808252620000d19190620020a3602083013962000133565b620000db620001ac565b6200033e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001a890600c9060208401906200025b565b5050565b620001c0600854600160a01b900460ff1690565b15620002025760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016200018a565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200023e3390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620002699062000301565b90600052602060002090601f0160209004810192826200028d5760008555620002d8565b82601f10620002a857805160ff1916838001178555620002d8565b82800160010185558215620002d8579182015b82811115620002d8578251825591602001919060010190620002bb565b50620002e6929150620002ea565b5090565b5b80821115620002e65760008155600101620002eb565b600181811c908216806200031657607f821691505b602082108114156200033857634e487b7160e01b600052602260045260246000fd5b50919050565b611d55806200034e6000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461050f578063d5abeb011461052f578063e985e9c514610545578063f2fde38b1461058e57600080fd5b8063a0712d681461049c578063a22cb465146104af578063b88d4fde146104cf578063c4e9374d146104ef57600080fd5b80638456cb59116100d15780638456cb59146104345780638da5cb5b1461044957806391b7f5ed1461046757806395d89b411461048757600080fd5b80636c0360eb146103d457806370a08231146103e9578063715018a6146104095780637501f7411461041e57600080fd5b80633ccfd60b1161017a5780635c975abb116101495780635c975abb1461035f578063627804af1461037e5780636352211e1461039e5780636817c76c146103be57600080fd5b80633ccfd60b146102f55780633f4ba83a1461030a57806342842e0e1461031f57806355f804b31461033f57600080fd5b8063088a4ed0116101b6578063088a4ed01461026c578063095ea7b31461028e57806318160ddd146102ae57806323b872dd146102d557600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611a3d565b6105ae565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610600565b6040516102099190611b71565b34801561024057600080fd5b5061025461024f366004611ac0565b610692565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611ac0565b6106d6565b005b34801561029a57600080fd5b5061028c6102a9366004611a13565b61070e565b3480156102ba57600080fd5b5060015460005403600019015b604051908152602001610209565b3480156102e157600080fd5b5061028c6102f036600461191f565b610795565b34801561030157600080fd5b5061028c6107a0565b34801561031657600080fd5b5061028c6107f9565b34801561032b57600080fd5b5061028c61033a36600461191f565b61082d565b34801561034b57600080fd5b5061028c61035a366004611a77565b610848565b34801561036b57600080fd5b50600854600160a01b900460ff166101fd565b34801561038a57600080fd5b5061028c610399366004611a13565b610889565b3480156103aa57600080fd5b506102546103b9366004611ac0565b61091e565b3480156103ca57600080fd5b506102c760095481565b3480156103e057600080fd5b50610227610930565b3480156103f557600080fd5b506102c76104043660046118d1565b6109be565b34801561041557600080fd5b5061028c610a0d565b34801561042a57600080fd5b506102c7600b5481565b34801561044057600080fd5b5061028c610a41565b34801561045557600080fd5b506008546001600160a01b0316610254565b34801561047357600080fd5b5061028c610482366004611ac0565b610a73565b34801561049357600080fd5b50610227610aa2565b61028c6104aa366004611ac0565b610ab1565b3480156104bb57600080fd5b5061028c6104ca3660046119d7565b610c18565b3480156104db57600080fd5b5061028c6104ea36600461195b565b610cae565b3480156104fb57600080fd5b5061028c61050a366004611ac0565b610cf8565b34801561051b57600080fd5b5061022761052a366004611ac0565b610d86565b34801561053b57600080fd5b506102c7600a5481565b34801561055157600080fd5b506101fd6105603660046118ec565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059a57600080fd5b5061028c6105a93660046118d1565b610e0b565b60006001600160e01b031982166380ac58cd60e01b14806105df57506001600160e01b03198216635b5e139f60e01b145b806105fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060f90611c47565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611c47565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b600061069d82610ea3565b6106ba576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146107095760405162461bcd60e51b815260040161070090611b84565b60405180910390fd5b600b55565b60006107198261091e565b9050806001600160a01b0316836001600160a01b0316141561074e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610785576107688133610560565b610785576040516367d9dca160e11b815260040160405180910390fd5b610790838383610edc565b505050565b610790838383610f38565b6008546001600160a01b031633146107ca5760405162461bcd60e51b815260040161070090611b84565b60405133904780156108fc02916000818181858888f193505050501580156107f6573d6000803e3d6000fd5b50565b6008546001600160a01b031633146108235760405162461bcd60e51b815260040161070090611b84565b61082b611127565b565b61079083838360405180602001604052806000815250610cae565b6008546001600160a01b031633146108725760405162461bcd60e51b815260040161070090611b84565b805161088590600c9060208401906117a6565b5050565b6008546001600160a01b031633146108b35760405162461bcd60e51b815260040161070090611b84565b600a5460015460005483919003600019016108ce9190611bb9565b11156109145760405162461bcd60e51b81526020600482015260156024820152742737ba1032b737bab3b4103932b6b0b4b734b7339760591b6044820152606401610700565b61088582826111c4565b6000610929826111de565b5192915050565b600c805461093d90611c47565b80601f016020809104026020016040519081016040528092919081815260200182805461096990611c47565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b505050505081565b60006001600160a01b0382166109e7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a375760405162461bcd60e51b815260040161070090611b84565b61082b6000611302565b6008546001600160a01b03163314610a6b5760405162461bcd60e51b815260040161070090611b84565b61082b611354565b6008546001600160a01b03163314610a9d5760405162461bcd60e51b815260040161070090611b84565b600955565b60606003805461060f90611c47565b600854600160a01b900460ff1615610afe5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610700565b80600954610b0c9190611be5565b341015610b5b5760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682045544820666f722070757263686173652e000000006044820152606401610700565b600b54811115610bad5760405162461bcd60e51b815260206004820152601960248201527f6578636565646564206d6178206d696e7420616d6f756e742e000000000000006044820152606401610700565b600a546001546000548391900360001901610bc89190611bb9565b1115610c0e5760405162461bcd60e51b81526020600482015260156024820152742737ba1032b737bab3b4103932b6b0b4b734b7339760591b6044820152606401610700565b6107f633826111c4565b6001600160a01b038216331415610c425760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cb9848484610f38565b6001600160a01b0383163b15610cf257610cd5848484846113dc565b610cf2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610d225760405162461bcd60e51b815260040161070090611b84565b600a548110610d815760405162461bcd60e51b815260206004820152602560248201527f4e657720737570706c79206d757374206265206c657373207468616e206375726044820152643932b73a1760d91b6064820152608401610700565b600a55565b6060610d9182610ea3565b610dae57604051630a14c4b560e41b815260040160405180910390fd5b6000610db86114d4565b9050805160001415610dd95760405180602001604052806000815250610e04565b80610de3846114e3565b604051602001610df4929190611b05565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e355760405162461bcd60e51b815260040161070090611b84565b6001600160a01b038116610e9a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b6107f681611302565b600081600111158015610eb7575060005482105b80156105fa575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f43826111de565b9050836001600160a01b031681600001516001600160a01b031614610f7a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f985750610f988533610560565b80610fb3575033610fa884610692565b6001600160a01b0316145b905080610fd357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ffa57604051633a954ecd60e21b815260040160405180910390fd5b61100660008487610edc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166110dc5760005482146110dc578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600854600160a01b900460ff166111775760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610700565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6108858282604051806020016040528060008152506115e1565b604080516060810182526000808252602082018190529181019190915281806001116112e9576000548110156112e957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112e75780516001600160a01b03161561127d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112e2579392505050565b61127d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156113a15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610700565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111a73390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611411903390899088908890600401611b34565b602060405180830381600087803b15801561142b57600080fd5b505af192505050801561145b575060408051601f3d908101601f1916820190925261145891810190611a5a565b60015b6114b6573d808015611489576040519150601f19603f3d011682016040523d82523d6000602084013e61148e565b606091505b5080516114ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461060f90611c47565b6060816115075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611531578061151b81611c82565b915061152a9050600a83611bd1565b915061150b565b60008167ffffffffffffffff81111561154c5761154c611cf3565b6040519080825280601f01601f191660200182016040528015611576576020820181803683370190505b5090505b84156114cc5761158b600183611c04565b9150611598600a86611c9d565b6115a3906030611bb9565b60f81b8183815181106115b8576115b8611cdd565b60200101906001600160f81b031916908160001a9053506115da600a86611bd1565b945061157a565b6000546001600160a01b03841661160a57604051622e076360e81b815260040160405180910390fd5b826116285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611751575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461171a60008784806001019550876113dc565b611737576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116cf57826000541461174c57600080fd5b611796565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611752575b506000908155610cf29085838684565b8280546117b290611c47565b90600052602060002090601f0160209004810192826117d4576000855561181a565b82601f106117ed57805160ff191683800117855561181a565b8280016001018555821561181a579182015b8281111561181a5782518255916020019190600101906117ff565b5061182692915061182a565b5090565b5b80821115611826576000815560010161182b565b600067ffffffffffffffff8084111561185a5761185a611cf3565b604051601f8501601f19908116603f0116810190828211818310171561188257611882611cf3565b8160405280935085815286868601111561189b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118cc57600080fd5b919050565b6000602082840312156118e357600080fd5b610e04826118b5565b600080604083850312156118ff57600080fd5b611908836118b5565b9150611916602084016118b5565b90509250929050565b60008060006060848603121561193457600080fd5b61193d846118b5565b925061194b602085016118b5565b9150604084013590509250925092565b6000806000806080858703121561197157600080fd5b61197a856118b5565b9350611988602086016118b5565b925060408501359150606085013567ffffffffffffffff8111156119ab57600080fd5b8501601f810187136119bc57600080fd5b6119cb8782356020840161183f565b91505092959194509250565b600080604083850312156119ea57600080fd5b6119f3836118b5565b915060208301358015158114611a0857600080fd5b809150509250929050565b60008060408385031215611a2657600080fd5b611a2f836118b5565b946020939093013593505050565b600060208284031215611a4f57600080fd5b8135610e0481611d09565b600060208284031215611a6c57600080fd5b8151610e0481611d09565b600060208284031215611a8957600080fd5b813567ffffffffffffffff811115611aa057600080fd5b8201601f81018413611ab157600080fd5b6114cc8482356020840161183f565b600060208284031215611ad257600080fd5b5035919050565b60008151808452611af1816020860160208601611c1b565b601f01601f19169290920160200192915050565b60008351611b17818460208801611c1b565b835190830190611b2b818360208801611c1b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b6790830184611ad9565b9695505050505050565b602081526000610e046020830184611ad9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611bcc57611bcc611cb1565b500190565b600082611be057611be0611cc7565b500490565b6000816000190483118215151615611bff57611bff611cb1565b500290565b600082821015611c1657611c16611cb1565b500390565b60005b83811015611c36578181015183820152602001611c1e565b83811115610cf25750506000910152565b600181811c90821680611c5b57607f821691505b60208210811415611c7c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c9657611c96611cb1565b5060010190565b600082611cac57611cac611cc7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107f657600080fdfea26469706673582212209786ebdb612dd279b4eb68c0d29c7c0fa9b5a7b2efe81f2879fe8d0d24fb0b2a64736f6c63430008070033697066733a2f2f516d534d3358336e4131586b47545a52745a326f51784b617964394e685432484167396a6a526e63596d587579312f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461050f578063d5abeb011461052f578063e985e9c514610545578063f2fde38b1461058e57600080fd5b8063a0712d681461049c578063a22cb465146104af578063b88d4fde146104cf578063c4e9374d146104ef57600080fd5b80638456cb59116100d15780638456cb59146104345780638da5cb5b1461044957806391b7f5ed1461046757806395d89b411461048757600080fd5b80636c0360eb146103d457806370a08231146103e9578063715018a6146104095780637501f7411461041e57600080fd5b80633ccfd60b1161017a5780635c975abb116101495780635c975abb1461035f578063627804af1461037e5780636352211e1461039e5780636817c76c146103be57600080fd5b80633ccfd60b146102f55780633f4ba83a1461030a57806342842e0e1461031f57806355f804b31461033f57600080fd5b8063088a4ed0116101b6578063088a4ed01461026c578063095ea7b31461028e57806318160ddd146102ae57806323b872dd146102d557600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611a3d565b6105ae565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610600565b6040516102099190611b71565b34801561024057600080fd5b5061025461024f366004611ac0565b610692565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611ac0565b6106d6565b005b34801561029a57600080fd5b5061028c6102a9366004611a13565b61070e565b3480156102ba57600080fd5b5060015460005403600019015b604051908152602001610209565b3480156102e157600080fd5b5061028c6102f036600461191f565b610795565b34801561030157600080fd5b5061028c6107a0565b34801561031657600080fd5b5061028c6107f9565b34801561032b57600080fd5b5061028c61033a36600461191f565b61082d565b34801561034b57600080fd5b5061028c61035a366004611a77565b610848565b34801561036b57600080fd5b50600854600160a01b900460ff166101fd565b34801561038a57600080fd5b5061028c610399366004611a13565b610889565b3480156103aa57600080fd5b506102546103b9366004611ac0565b61091e565b3480156103ca57600080fd5b506102c760095481565b3480156103e057600080fd5b50610227610930565b3480156103f557600080fd5b506102c76104043660046118d1565b6109be565b34801561041557600080fd5b5061028c610a0d565b34801561042a57600080fd5b506102c7600b5481565b34801561044057600080fd5b5061028c610a41565b34801561045557600080fd5b506008546001600160a01b0316610254565b34801561047357600080fd5b5061028c610482366004611ac0565b610a73565b34801561049357600080fd5b50610227610aa2565b61028c6104aa366004611ac0565b610ab1565b3480156104bb57600080fd5b5061028c6104ca3660046119d7565b610c18565b3480156104db57600080fd5b5061028c6104ea36600461195b565b610cae565b3480156104fb57600080fd5b5061028c61050a366004611ac0565b610cf8565b34801561051b57600080fd5b5061022761052a366004611ac0565b610d86565b34801561053b57600080fd5b506102c7600a5481565b34801561055157600080fd5b506101fd6105603660046118ec565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059a57600080fd5b5061028c6105a93660046118d1565b610e0b565b60006001600160e01b031982166380ac58cd60e01b14806105df57506001600160e01b03198216635b5e139f60e01b145b806105fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060f90611c47565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611c47565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b600061069d82610ea3565b6106ba576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146107095760405162461bcd60e51b815260040161070090611b84565b60405180910390fd5b600b55565b60006107198261091e565b9050806001600160a01b0316836001600160a01b0316141561074e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610785576107688133610560565b610785576040516367d9dca160e11b815260040160405180910390fd5b610790838383610edc565b505050565b610790838383610f38565b6008546001600160a01b031633146107ca5760405162461bcd60e51b815260040161070090611b84565b60405133904780156108fc02916000818181858888f193505050501580156107f6573d6000803e3d6000fd5b50565b6008546001600160a01b031633146108235760405162461bcd60e51b815260040161070090611b84565b61082b611127565b565b61079083838360405180602001604052806000815250610cae565b6008546001600160a01b031633146108725760405162461bcd60e51b815260040161070090611b84565b805161088590600c9060208401906117a6565b5050565b6008546001600160a01b031633146108b35760405162461bcd60e51b815260040161070090611b84565b600a5460015460005483919003600019016108ce9190611bb9565b11156109145760405162461bcd60e51b81526020600482015260156024820152742737ba1032b737bab3b4103932b6b0b4b734b7339760591b6044820152606401610700565b61088582826111c4565b6000610929826111de565b5192915050565b600c805461093d90611c47565b80601f016020809104026020016040519081016040528092919081815260200182805461096990611c47565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b505050505081565b60006001600160a01b0382166109e7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a375760405162461bcd60e51b815260040161070090611b84565b61082b6000611302565b6008546001600160a01b03163314610a6b5760405162461bcd60e51b815260040161070090611b84565b61082b611354565b6008546001600160a01b03163314610a9d5760405162461bcd60e51b815260040161070090611b84565b600955565b60606003805461060f90611c47565b600854600160a01b900460ff1615610afe5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610700565b80600954610b0c9190611be5565b341015610b5b5760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682045544820666f722070757263686173652e000000006044820152606401610700565b600b54811115610bad5760405162461bcd60e51b815260206004820152601960248201527f6578636565646564206d6178206d696e7420616d6f756e742e000000000000006044820152606401610700565b600a546001546000548391900360001901610bc89190611bb9565b1115610c0e5760405162461bcd60e51b81526020600482015260156024820152742737ba1032b737bab3b4103932b6b0b4b734b7339760591b6044820152606401610700565b6107f633826111c4565b6001600160a01b038216331415610c425760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cb9848484610f38565b6001600160a01b0383163b15610cf257610cd5848484846113dc565b610cf2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610d225760405162461bcd60e51b815260040161070090611b84565b600a548110610d815760405162461bcd60e51b815260206004820152602560248201527f4e657720737570706c79206d757374206265206c657373207468616e206375726044820152643932b73a1760d91b6064820152608401610700565b600a55565b6060610d9182610ea3565b610dae57604051630a14c4b560e41b815260040160405180910390fd5b6000610db86114d4565b9050805160001415610dd95760405180602001604052806000815250610e04565b80610de3846114e3565b604051602001610df4929190611b05565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e355760405162461bcd60e51b815260040161070090611b84565b6001600160a01b038116610e9a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b6107f681611302565b600081600111158015610eb7575060005482105b80156105fa575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f43826111de565b9050836001600160a01b031681600001516001600160a01b031614610f7a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f985750610f988533610560565b80610fb3575033610fa884610692565b6001600160a01b0316145b905080610fd357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ffa57604051633a954ecd60e21b815260040160405180910390fd5b61100660008487610edc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166110dc5760005482146110dc578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600854600160a01b900460ff166111775760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610700565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6108858282604051806020016040528060008152506115e1565b604080516060810182526000808252602082018190529181019190915281806001116112e9576000548110156112e957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112e75780516001600160a01b03161561127d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112e2579392505050565b61127d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156113a15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610700565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111a73390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611411903390899088908890600401611b34565b602060405180830381600087803b15801561142b57600080fd5b505af192505050801561145b575060408051601f3d908101601f1916820190925261145891810190611a5a565b60015b6114b6573d808015611489576040519150601f19603f3d011682016040523d82523d6000602084013e61148e565b606091505b5080516114ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461060f90611c47565b6060816115075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611531578061151b81611c82565b915061152a9050600a83611bd1565b915061150b565b60008167ffffffffffffffff81111561154c5761154c611cf3565b6040519080825280601f01601f191660200182016040528015611576576020820181803683370190505b5090505b84156114cc5761158b600183611c04565b9150611598600a86611c9d565b6115a3906030611bb9565b60f81b8183815181106115b8576115b8611cdd565b60200101906001600160f81b031916908160001a9053506115da600a86611bd1565b945061157a565b6000546001600160a01b03841661160a57604051622e076360e81b815260040160405180910390fd5b826116285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611751575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461171a60008784806001019550876113dc565b611737576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116cf57826000541461174c57600080fd5b611796565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611752575b506000908155610cf29085838684565b8280546117b290611c47565b90600052602060002090601f0160209004810192826117d4576000855561181a565b82601f106117ed57805160ff191683800117855561181a565b8280016001018555821561181a579182015b8281111561181a5782518255916020019190600101906117ff565b5061182692915061182a565b5090565b5b80821115611826576000815560010161182b565b600067ffffffffffffffff8084111561185a5761185a611cf3565b604051601f8501601f19908116603f0116810190828211818310171561188257611882611cf3565b8160405280935085815286868601111561189b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118cc57600080fd5b919050565b6000602082840312156118e357600080fd5b610e04826118b5565b600080604083850312156118ff57600080fd5b611908836118b5565b9150611916602084016118b5565b90509250929050565b60008060006060848603121561193457600080fd5b61193d846118b5565b925061194b602085016118b5565b9150604084013590509250925092565b6000806000806080858703121561197157600080fd5b61197a856118b5565b9350611988602086016118b5565b925060408501359150606085013567ffffffffffffffff8111156119ab57600080fd5b8501601f810187136119bc57600080fd5b6119cb8782356020840161183f565b91505092959194509250565b600080604083850312156119ea57600080fd5b6119f3836118b5565b915060208301358015158114611a0857600080fd5b809150509250929050565b60008060408385031215611a2657600080fd5b611a2f836118b5565b946020939093013593505050565b600060208284031215611a4f57600080fd5b8135610e0481611d09565b600060208284031215611a6c57600080fd5b8151610e0481611d09565b600060208284031215611a8957600080fd5b813567ffffffffffffffff811115611aa057600080fd5b8201601f81018413611ab157600080fd5b6114cc8482356020840161183f565b600060208284031215611ad257600080fd5b5035919050565b60008151808452611af1816020860160208601611c1b565b601f01601f19169290920160200192915050565b60008351611b17818460208801611c1b565b835190830190611b2b818360208801611c1b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b6790830184611ad9565b9695505050505050565b602081526000610e046020830184611ad9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611bcc57611bcc611cb1565b500190565b600082611be057611be0611cc7565b500490565b6000816000190483118215151615611bff57611bff611cb1565b500290565b600082821015611c1657611c16611cb1565b500390565b60005b83811015611c36578181015183820152602001611c1e565b83811115610cf25750506000910152565b600181811c90821680611c5b57607f821691505b60208210811415611c7c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c9657611c96611cb1565b5060010190565b600082611cac57611cac611cc7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107f657600080fdfea26469706673582212209786ebdb612dd279b4eb68c0d29c7c0fa9b5a7b2efe81f2879fe8d0d24fb0b2a64736f6c63430008070033

Deployed Bytecode Sourcemap

49779:1980:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30863:305;;;;;;;;;;-1:-1:-1;30863:305:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;30863:305:0;;;;;;;;33978:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35482:204::-;;;;;;;;;;-1:-1:-1;35482:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;35482:204:0;4780:203:1;50927:116:0;;;;;;;;;;-1:-1:-1;50927:116:0;;;;;:::i;:::-;;:::i;:::-;;35044:372;;;;;;;;;;-1:-1:-1;35044:372:0;;;;;:::i;:::-;;:::i;30103:312::-;;;;;;;;;;-1:-1:-1;51747:1:0;30366:12;30156:7;30350:13;:28;-1:-1:-1;;30350:46:0;30103:312;;;8972:25:1;;;8960:2;8945:18;30103:312:0;8826:177:1;36347:170:0;;;;;;;;;;-1:-1:-1;36347:170:0;;;;;:::i;:::-;;:::i;51290:107::-;;;;;;;;;;;;;:::i;51590:65::-;;;;;;;;;;;;;:::i;36588:185::-;;;;;;;;;;-1:-1:-1;36588:185:0;;;;;:::i;:::-;;:::i;50140:104::-;;;;;;;;;;-1:-1:-1;50140:104:0;;;;;:::i;:::-;;:::i;4149:86::-;;;;;;;;;;-1:-1:-1;4220:7:0;;-1:-1:-1;;;4220:7:0;;;;4149:86;;50635:184;;;;;;;;;;-1:-1:-1;50635:184:0;;;;;:::i;:::-;;:::i;33786:125::-;;;;;;;;;;-1:-1:-1;33786:125:0;;;;;:::i;:::-;;:::i;49836:36::-;;;;;;;;;;;;;;;;49952:21;;;;;;;;;;;;;:::i;31232:206::-;;;;;;;;;;-1:-1:-1;31232:206:0;;;;;:::i;:::-;;:::i;7048:103::-;;;;;;;;;;;;;:::i;49918:27::-;;;;;;;;;;;;;;;;51521:61;;;;;;;;;;;;;:::i;6397:87::-;;;;;;;;;;-1:-1:-1;6470:6:0;;-1:-1:-1;;;;;6470:6:0;6397:87;;50827:92;;;;;;;;;;-1:-1:-1;50827:92:0;;;;;:::i;:::-;;:::i;34147:104::-;;;;;;;;;;;;;:::i;50252:375::-;;;;;;:::i;:::-;;:::i;35758:287::-;;;;;;;;;;-1:-1:-1;35758:287:0;;;;;:::i;:::-;;:::i;36844:370::-;;;;;;;;;;-1:-1:-1;36844:370:0;;;;;:::i;:::-;;:::i;51051:231::-;;;;;;;;;;-1:-1:-1;51051:231:0;;;;;:::i;:::-;;:::i;34322:318::-;;;;;;;;;;-1:-1:-1;34322:318:0;;;;;:::i;:::-;;:::i;49879:32::-;;;;;;;;;;;;;;;;36116:164;;;;;;;;;;-1:-1:-1;36116:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36237:25:0;;;36213:4;36237:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36116:164;7306:201;;;;;;;;;;-1:-1:-1;7306:201:0;;;;;:::i;:::-;;:::i;30863:305::-;30965:4;-1:-1:-1;;;;;;31002:40:0;;-1:-1:-1;;;31002:40:0;;:105;;-1:-1:-1;;;;;;;31059:48:0;;-1:-1:-1;;;31059:48:0;31002:105;:158;;;-1:-1:-1;;;;;;;;;;19313:40:0;;;31124:36;30982:178;30863:305;-1:-1:-1;;30863:305:0:o;33978:100::-;34032:13;34065:5;34058:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33978:100;:::o;35482:204::-;35550:7;35575:16;35583:7;35575;:16::i;:::-;35570:64;;35600:34;;-1:-1:-1;;;35600:34:0;;;;;;;;;;;35570:64;-1:-1:-1;35654:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35654:24:0;;35482:204::o;50927:116::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;;;;;;;;;51008:7:::1;:27:::0;50927:116::o;35044:372::-;35117:13;35133:24;35149:7;35133:15;:24::i;:::-;35117:40;;35178:5;-1:-1:-1;;;;;35172:11:0;:2;-1:-1:-1;;;;;35172:11:0;;35168:48;;;35192:24;;-1:-1:-1;;;35192:24:0;;;;;;;;;;;35168:48;2883:10;-1:-1:-1;;;;;35233:21:0;;;35229:139;;35260:37;35277:5;2883:10;36116:164;:::i;35260:37::-;35256:112;;35321:35;;-1:-1:-1;;;35321:35:0;;;;;;;;;;;35256:112;35380:28;35389:2;35393:7;35402:5;35380:8;:28::i;:::-;35106:310;35044:372;;:::o;36347:170::-;36481:28;36491:4;36497:2;36501:7;36481:9;:28::i;51290:107::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;51338:51:::1;::::0;51346:10:::1;::::0;51367:21:::1;51338:51:::0;::::1;;;::::0;::::1;::::0;;;51367:21;51346:10;51338:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51290:107::o:0;51590:65::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;51637:10:::1;:8;:10::i;:::-;51590:65::o:0;36588:185::-;36726:39;36743:4;36749:2;36753:7;36726:39;;;;;;;;;;;;:16;:39::i;50140:104::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;50215:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50140:104:::0;:::o;50635:184::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;50744:9:::1;::::0;51747:1;30366:12;30156:7;30350:13;50734:6;;30350:28;;-1:-1:-1;;30350:46:0;50718:22:::1;;;;:::i;:::-;:35;;50710:69;;;::::0;-1:-1:-1;;;50710:69:0;;7212:2:1;50710:69:0::1;::::0;::::1;7194:21:1::0;7251:2;7231:18;;;7224:30;-1:-1:-1;;;7270:18:1;;;7263:51;7331:18;;50710:69:0::1;7010:345:1::0;50710:69:0::1;50790:21;50800:2;50804:6;50790:9;:21::i;33786:125::-:0;33850:7;33877:21;33890:7;33877:12;:21::i;:::-;:26;;33786:125;-1:-1:-1;;33786:125:0:o;49952:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31232:206::-;31296:7;-1:-1:-1;;;;;31320:19:0;;31316:60;;31348:28;;-1:-1:-1;;;31348:28:0;;;;;;;;;;;31316:60;-1:-1:-1;;;;;;31402:19:0;;;;;:12;:19;;;;;:27;;;;31232:206::o;7048:103::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;7113:30:::1;7140:1;7113:18;:30::i;51521:61::-:0;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;51566:8:::1;:6;:8::i;50827:92::-:0;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;50891:9:::1;:20:::0;50827:92::o;34147:104::-;34203:13;34236:7;34229:14;;;;;:::i;50252:375::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4474:9;4466:38;;;;-1:-1:-1;;;4466:38:0;;7916:2:1;4466:38:0;;;7898:21:1;7955:2;7935:18;;;7928:30;-1:-1:-1;;;7974:18:1;;;7967:46;8030:18;;4466:38:0;7714:340:1;4466:38:0;50371:6:::1;50359:9;;:18;;;;:::i;:::-;50346:9;:31;;50324:109;;;::::0;-1:-1:-1;;;50324:109:0;;6448:2:1;50324:109:0::1;::::0;::::1;6430:21:1::0;6487:2;6467:18;;;6460:30;6526;6506:18;;;6499:58;6574:18;;50324:109:0::1;6246:352:1::0;50324:109:0::1;50462:7;;50452:6;:17;;50444:55;;;::::0;-1:-1:-1;;;50444:55:0;;7562:2:1;50444:55:0::1;::::0;::::1;7544:21:1::0;7601:2;7581:18;;;7574:30;7640:27;7620:18;;;7613:55;7685:18;;50444:55:0::1;7360:349:1::0;50444:55:0::1;50544:9;::::0;51747:1;30366:12;30156:7;30350:13;50534:6;;30350:28;;-1:-1:-1;;30350:46:0;50518:22:::1;;;;:::i;:::-;:35;;50510:69;;;::::0;-1:-1:-1;;;50510:69:0;;7212:2:1;50510:69:0::1;::::0;::::1;7194:21:1::0;7251:2;7231:18;;;7224:30;-1:-1:-1;;;7270:18:1;;;7263:51;7331:18;;50510:69:0::1;7010:345:1::0;50510:69:0::1;50590:29;50600:10;50612:6;50590:9;:29::i;35758:287::-:0;-1:-1:-1;;;;;35857:24:0;;2883:10;35857:24;35853:54;;;35890:17;;-1:-1:-1;;;35890:17:0;;;;;;;;;;;35853:54;2883:10;35920:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35920:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35920:53:0;;;;;;;;;;35989:48;;5621:41:1;;;35920:42:0;;2883:10;35989:48;;5594:18:1;35989:48:0;;;;;;;35758:287;;:::o;36844:370::-;37011:28;37021:4;37027:2;37031:7;37011:9;:28::i;:::-;-1:-1:-1;;;;;37054:13:0;;9393:19;:23;37050:157;;37075:56;37106:4;37112:2;37116:7;37125:5;37075:30;:56::i;:::-;37071:136;;37155:40;;-1:-1:-1;;;37155:40:0;;;;;;;;;;;37071:136;36844:370;;;;:::o;51051:231::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;51164:9:::1;;51148:13;:25;51126:112;;;::::0;-1:-1:-1;;;51126:112:0;;8261:2:1;51126:112:0::1;::::0;::::1;8243:21:1::0;8300:2;8280:18;;;8273:30;8339:34;8319:18;;;8312:62;-1:-1:-1;;;8390:18:1;;;8383:35;8435:19;;51126:112:0::1;8059:401:1::0;51126:112:0::1;51249:9;:25:::0;51051:231::o;34322:318::-;34395:13;34426:16;34434:7;34426;:16::i;:::-;34421:59;;34451:29;;-1:-1:-1;;;34451:29:0;;;;;;;;;;;34421:59;34493:21;34517:10;:8;:10::i;:::-;34493:34;;34551:7;34545:21;34570:1;34545:26;;:87;;;;;;;;;;;;;;;;;34598:7;34607:18;:7;:16;:18::i;:::-;34581:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34545:87;34538:94;34322:318;-1:-1:-1;;;34322:318:0:o;7306:201::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7395:22:0;::::1;7387:73;;;::::0;-1:-1:-1;;;7387:73:0;;6805:2:1;7387:73:0::1;::::0;::::1;6787:21:1::0;6844:2;6824:18;;;6817:30;6883:34;6863:18;;;6856:62;-1:-1:-1;;;6934:18:1;;;6927:36;6980:19;;7387:73:0::1;6603:402:1::0;7387:73:0::1;7471:28;7490:8;7471:18;:28::i;37469:174::-:0;37526:4;37569:7;51747:1;37550:26;;:53;;;;;37590:13;;37580:7;:23;37550:53;:85;;;;-1:-1:-1;;37608:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37608:27:0;;;;37607:28;;37469:174::o;46691:196::-;46806:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46806:29:0;-1:-1:-1;;;;;46806:29:0;;;;;;;;;46851:28;;46806:24;;46851:28;;;;;;;46691:196;;;:::o;41639:2130::-;41754:35;41792:21;41805:7;41792:12;:21::i;:::-;41754:59;;41852:4;-1:-1:-1;;;;;41830:26:0;:13;:18;;;-1:-1:-1;;;;;41830:26:0;;41826:67;;41865:28;;-1:-1:-1;;;41865:28:0;;;;;;;;;;;41826:67;41906:22;2883:10;-1:-1:-1;;;;;41932:20:0;;;;:73;;-1:-1:-1;41969:36:0;41986:4;2883:10;36116:164;:::i;41969:36::-;41932:126;;;-1:-1:-1;2883:10:0;42022:20;42034:7;42022:11;:20::i;:::-;-1:-1:-1;;;;;42022:36:0;;41932:126;41906:153;;42077:17;42072:66;;42103:35;;-1:-1:-1;;;42103:35:0;;;;;;;;;;;42072:66;-1:-1:-1;;;;;42153:16:0;;42149:52;;42178:23;;-1:-1:-1;;;42178:23:0;;;;;;;;;;;42149:52;42322:35;42339:1;42343:7;42352:4;42322:8;:35::i;:::-;-1:-1:-1;;;;;42653:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42653:31:0;;;;;;;-1:-1:-1;;42653:31:0;;;;;;;42699:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42699:29:0;;;;;;;;;;;42779:20;;;:11;:20;;;;;;42814:18;;-1:-1:-1;;;;;;42847:49:0;;;;-1:-1:-1;;;42880:15:0;42847:49;;;;;;;;;;43170:11;;43230:24;;;;;43273:13;;42779:20;;43230:24;;43273:13;43269:384;;43483:13;;43468:11;:28;43464:174;;43521:20;;43590:28;;;;43564:54;;-1:-1:-1;;;43564:54:0;-1:-1:-1;;;;;;43564:54:0;;;-1:-1:-1;;;;;43521:20:0;;43564:54;;;;43464:174;42628:1036;;;43700:7;43696:2;-1:-1:-1;;;;;43681:27:0;43690:4;-1:-1:-1;;;;;43681:27:0;;;;;;;;;;;41743:2026;;41639:2130;;;:::o;5208:120::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4744:41;;;;-1:-1:-1;;;4744:41:0;;6099:2:1;4744:41:0;;;6081:21:1;6138:2;6118:18;;;6111:30;-1:-1:-1;;;6157:18:1;;;6150:50;6217:18;;4744:41:0;5897:344:1;4744:41:0;5267:7:::1;:15:::0;;-1:-1:-1;;;;5267:15:0::1;::::0;;5298:22:::1;2883:10:::0;5307:12:::1;5298:22;::::0;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;5298:22:0::1;;;;;;;5208:120::o:0;37727:104::-;37796:27;37806:2;37810:8;37796:27;;;;;;;;;;;;:9;:27::i;32613:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32724:7:0;;51747:1;32773:23;32769:888;;32809:13;;32802:4;:20;32798:859;;;32843:31;32877:17;;;:11;:17;;;;;;;;;32843:51;;;;;;;;;-1:-1:-1;;;;;32843:51:0;;;;-1:-1:-1;;;32843:51:0;;;;;;;;;;;-1:-1:-1;;;32843:51:0;;;;;;;;;;;;;;32913:729;;32963:14;;-1:-1:-1;;;;;32963:28:0;;32959:101;;33027:9;32613:1111;-1:-1:-1;;;32613:1111:0:o;32959:101::-;-1:-1:-1;;;33402:6:0;33447:17;;;;:11;:17;;;;;;;;;33435:29;;;;;;;;;-1:-1:-1;;;;;33435:29:0;;;;;-1:-1:-1;;;33435:29:0;;;;;;;;;;;-1:-1:-1;;;33435:29:0;;;;;;;;;;;;;33495:28;33491:109;;33563:9;32613:1111;-1:-1:-1;;;32613:1111:0:o;33491:109::-;33362:261;;;32824:833;32798:859;33685:31;;-1:-1:-1;;;33685:31:0;;;;;;;;;;;7667:191;7760:6;;;-1:-1:-1;;;;;7777:17:0;;;-1:-1:-1;;;;;;7777:17:0;;;;;;;7810:40;;7760:6;;;7777:17;7760:6;;7810:40;;7741:16;;7810:40;7730:128;7667:191;:::o;4949:118::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4474:9;4466:38;;;;-1:-1:-1;;;4466:38:0;;7916:2:1;4466:38:0;;;7898:21:1;7955:2;7935:18;;;7928:30;-1:-1:-1;;;7974:18:1;;;7967:46;8030:18;;4466:38:0;7714:340:1;4466:38:0;5009:7:::1;:14:::0;;-1:-1:-1;;;;5009:14:0::1;-1:-1:-1::0;;;5009:14:0::1;::::0;;5039:20:::1;5046:12;2883:10:::0;;2803:98;47379:667;47563:72;;-1:-1:-1;;;47563:72:0;;47542:4;;-1:-1:-1;;;;;47563:36:0;;;;;:72;;2883:10;;47614:4;;47620:7;;47629:5;;47563:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47563:72:0;;;;;;;;-1:-1:-1;;47563:72:0;;;;;;;;;;;;:::i;:::-;;;47559:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47797:13:0;;47793:235;;47843:40;;-1:-1:-1;;;47843:40:0;;;;;;;;;;;47793:235;47986:6;47980:13;47971:6;47967:2;47963:15;47956:38;47559:480;-1:-1:-1;;;;;;47682:55:0;-1:-1:-1;;;47682:55:0;;-1:-1:-1;47559:480:0;47379:667;;;;;;:::o;51405:108::-;51465:13;51498:7;51491:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;38204:1749;38327:20;38350:13;-1:-1:-1;;;;;38378:16:0;;38374:48;;38403:19;;-1:-1:-1;;;38403:19:0;;;;;;;;;;;38374:48;38437:13;38433:44;;38459:18;;-1:-1:-1;;;38459:18:0;;;;;;;;;;;38433:44;-1:-1:-1;;;;;38828:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38887:49:0;;38828:44;;;;;;;;38887:49;;;;-1:-1:-1;;38828:44:0;;;;;;38887:49;;;;;;;;;;;;;;;;38953:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39003:66:0;;;-1:-1:-1;;;39053:15:0;39003:66;;;;;;;;;;;;;38953:25;;39150:23;;;;9393:19;:23;39190:631;;39230:313;39261:38;;39286:12;;-1:-1:-1;;;;;39261:38:0;;;39278:1;;39261:38;;39278:1;;39261:38;39327:69;39366:1;39370:2;39374:14;;;;;;39390:5;39327:30;:69::i;:::-;39322:174;;39432:40;;-1:-1:-1;;;39432:40:0;;;;;;;;;;;39322:174;39538:3;39523:12;:18;39230:313;;39624:12;39607:13;;:29;39603:43;;39638:8;;;39603:43;39190:631;;;39687:119;39718:40;;39743:14;;;;;-1:-1:-1;;;;;39718:40:0;;;39735:1;;39718:40;;39735:1;;39718:40;39801:3;39786:12;:18;39687:119;;39190:631;-1:-1:-1;39835:13:0;:28;;;39885:60;;39918:2;39922:12;39936:8;39885:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;8465:356::-;8667:2;8649:21;;;8686:18;;;8679:30;8745:34;8740:2;8725:18;;8718:62;8812:2;8797:18;;8465:356::o;9008:128::-;9048:3;9079:1;9075:6;9072:1;9069:13;9066:39;;;9085:18;;:::i;:::-;-1:-1:-1;9121:9:1;;9008:128::o;9141:120::-;9181:1;9207;9197:35;;9212:18;;:::i;:::-;-1:-1:-1;9246:9:1;;9141:120::o;9266:168::-;9306:7;9372:1;9368;9364:6;9360:14;9357:1;9354:21;9349:1;9342:9;9335:17;9331:45;9328:71;;;9379:18;;:::i;:::-;-1:-1:-1;9419:9:1;;9266:168::o;9439:125::-;9479:4;9507:1;9504;9501:8;9498:34;;;9512:18;;:::i;:::-;-1:-1:-1;9549:9:1;;9439:125::o;9569:258::-;9641:1;9651:113;9665:6;9662:1;9659:13;9651:113;;;9741:11;;;9735:18;9722:11;;;9715:39;9687:2;9680:10;9651:113;;;9782:6;9779:1;9776:13;9773:48;;;-1:-1:-1;;9817:1:1;9799:16;;9792:27;9569:258::o;9832:380::-;9911:1;9907:12;;;;9954;;;9975:61;;10029:4;10021:6;10017:17;10007:27;;9975:61;10082:2;10074:6;10071:14;10051:18;10048:38;10045:161;;;10128:10;10123:3;10119:20;10116:1;10109:31;10163:4;10160:1;10153:15;10191:4;10188:1;10181:15;10045:161;;9832:380;;;:::o;10217:135::-;10256:3;-1:-1:-1;;10277:17:1;;10274:43;;;10297:18;;:::i;:::-;-1:-1:-1;10344:1:1;10333:13;;10217:135::o;10357:112::-;10389:1;10415;10405:35;;10420:18;;:::i;:::-;-1:-1:-1;10454:9:1;;10357:112::o;10474:127::-;10535:10;10530:3;10526:20;10523:1;10516:31;10566:4;10563:1;10556:15;10590:4;10587:1;10580:15;10606:127;10667:10;10662:3;10658:20;10655:1;10648:31;10698:4;10695:1;10688:15;10722:4;10719:1;10712:15;10738:127;10799:10;10794:3;10790:20;10787:1;10780:31;10830:4;10827:1;10820:15;10854:4;10851:1;10844:15;10870:127;10931:10;10926:3;10922:20;10919:1;10912:31;10962:4;10959:1;10952:15;10986:4;10983:1;10976:15;11002:131;-1:-1:-1;;;;;;11076:32:1;;11066:43;;11056:71;;11123:1;11120;11113:12

Swarm Source

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