ETH Price: $2,519.98 (-5.25%)

Circles (CIRC)
 

Overview

TokenID

1035

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Circles

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

pragma solidity ^0.8.19;

/**
 * @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.19;

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

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

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

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

pragma solidity ^0.8.19;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.19;

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

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

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

pragma solidity ^0.8.19;

/**
 * @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.19;

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

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

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

pragma solidity ^0.8.19;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.19;

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

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

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

// File: erc721a/contracts/ERC721A.sol

// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.19;

contract Circles is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    bool public paused;
    string public _baseTokenURI;
    uint256 public cost = 0.002 ether;
    uint256 public maxSupply = 5000;
    uint256 public freeSupply = 1000;
    uint256 public maxMintAmountPerTx = 20;
    address private dev = 0xb1a916DD35C9bB0839EaC2b03231D8348c43025D;
    address private company = 0xEDe77Df437Fa0A014C1eBe3a779ED1F892f3B90b;

    constructor() ERC721A("Circles", "CIRC") {}

    function mint(uint256 _mintAmount) public payable nonReentrant {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        require(!paused, "The contract is paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");

        if (totalSupply() >= freeSupply) {
            require(msg.value > 0, "Max free supply exceeded!");
        }

        _safeMint(_msgSender(), _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        onlyOwner
    {
        _safeMint(_receiver, _mintAmount);
    }

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

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setFreeSupply(uint256 _freeSupply) public onlyOwner {
        freeSupply = _freeSupply;
    }

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

    function withdraw() external onlyOwner {
        (bool success, ) = payable(dev).call{
            value: (address(this).balance * 50) / 100
        }("");
        require(success);
        (bool succes, ) = payable(company).call{value: address(this).balance}(
            ""
        );
        require(succes);
    }

    function setBaseURI(string calldata baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "URI does not exist!");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        ".json"
                    )
                )
                : "";    }
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266071afd498d0000600c55611388600d556103e8600e556014600f55601080546001600160a01b031990811673b1a916dd35c9bb0839eac2b03231d8348c43025d179091556011805490911673ede77df437fa0a014c1ebe3a779ed1f892f3b90b1790553480156200007557600080fd5b5060405180604001604052806007815260200166436972636c657360c81b815250604051806040016040528060048152602001634349524360e01b8152508160029081620000c49190620001e8565b506003620000d38282620001e8565b5050600160005550620000e633620000f1565b6001600955620002b4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016e57607f821691505b6020821081036200018f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001e357600081815260208120601f850160051c81016020861015620001be5750805b601f850160051c820191505b81811015620001df57828155600101620001ca565b5050505b505050565b81516001600160401b0381111562000204576200020462000143565b6200021c8162000215845462000159565b8462000195565b602080601f8311600181146200025457600084156200023b5750858301515b600019600386901b1c1916600185901b178555620001df565b600085815260208120601f198616915b82811015620002855788860151825594840194600190910190840162000264565b5085821015620002a45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611e0f80620002c46000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461053b578063efbd73f41461055b578063f2fde38b1461057b578063f676308a1461059b57600080fd5b8063b88d4fde146104d0578063c87b56dd146104f0578063cfc86f7b14610510578063d5abeb011461052557600080fd5b806395d89b41116100d157806395d89b4114610468578063a0712d681461047d578063a22cb46514610490578063b071401b146104b057600080fd5b806370a08231146103ff578063715018a61461041f5780638da5cb5b1461043457806394354fd01461045257600080fd5b806324a6ab0c1161017a57806355f804b31161014957806355f804b3146103855780635c975abb146103a55780636352211e146103bf5780636f8b44b0146103df57600080fd5b806324a6ab0c1461031a5780633ccfd60b1461033057806342842e0e1461034557806344a0d68a1461036557600080fd5b806313faede6116101b657806313faede61461029957806316c38b3c146102bd57806318160ddd146102dd57806323b872dd146102fa57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046117be565b6105bb565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261060d565b604051610214919061182b565b34801561024b57600080fd5b5061025f61025a36600461183e565b61069f565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611873565b6106e3565b005b3480156102a557600080fd5b506102af600c5481565b604051908152602001610214565b3480156102c957600080fd5b506102976102d83660046118ad565b610770565b3480156102e957600080fd5b5060015460005403600019016102af565b34801561030657600080fd5b506102976103153660046118c8565b6107b6565b34801561032657600080fd5b506102af600e5481565b34801561033c57600080fd5b506102976107c1565b34801561035157600080fd5b506102976103603660046118c8565b6108c4565b34801561037157600080fd5b5061029761038036600461183e565b6108df565b34801561039157600080fd5b506102976103a0366004611904565b61090e565b3480156103b157600080fd5b50600a546102089060ff1681565b3480156103cb57600080fd5b5061025f6103da36600461183e565b610945565b3480156103eb57600080fd5b506102976103fa36600461183e565b610957565b34801561040b57600080fd5b506102af61041a366004611976565b610986565b34801561042b57600080fd5b506102976109d5565b34801561044057600080fd5b506008546001600160a01b031661025f565b34801561045e57600080fd5b506102af600f5481565b34801561047457600080fd5b50610232610a0b565b61029761048b36600461183e565b610a1a565b34801561049c57600080fd5b506102976104ab366004611991565b610c40565b3480156104bc57600080fd5b506102976104cb36600461183e565b610cd5565b3480156104dc57600080fd5b506102976104eb3660046119da565b610d04565b3480156104fc57600080fd5b5061023261050b36600461183e565b610d55565b34801561051c57600080fd5b50610232610dfe565b34801561053157600080fd5b506102af600d5481565b34801561054757600080fd5b50610208610556366004611ab6565b610e8c565b34801561056757600080fd5b50610297610576366004611ae0565b610eba565b34801561058757600080fd5b50610297610596366004611976565b610eee565b3480156105a757600080fd5b506102976105b636600461183e565b610f89565b60006001600160e01b031982166380ac58cd60e01b14806105ec57506001600160e01b03198216635b5e139f60e01b145b8061060757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061c90611b03565b80601f016020809104026020016040519081016040528092919081815260200182805461064890611b03565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b60006106aa82610fb8565b6106c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ee82610945565b9050806001600160a01b0316836001600160a01b0316036107225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061074257506107408133610e8c565b155b15610760576040516367d9dca160e11b815260040160405180910390fd5b61076b838383610ff1565b505050565b6008546001600160a01b031633146107a35760405162461bcd60e51b815260040161079a90611b3d565b60405180910390fd5b600a805460ff1916911515919091179055565b61076b83838361104d565b6008546001600160a01b031633146107eb5760405162461bcd60e51b815260040161079a90611b3d565b6010546000906001600160a01b03166064610807476032611b88565b6108119190611bb5565b604051600081818185875af1925050503d806000811461084d576040519150601f19603f3d011682016040523d82523d6000602084013e610852565b606091505b505090508061086057600080fd5b6011546040516000916001600160a01b03169047908381818185875af1925050503d80600081146108ad576040519150601f19603f3d011682016040523d82523d6000602084013e6108b2565b606091505b50509050806108c057600080fd5b5050565b61076b83838360405180602001604052806000815250610d04565b6008546001600160a01b031633146109095760405162461bcd60e51b815260040161079a90611b3d565b600c55565b6008546001600160a01b031633146109385760405162461bcd60e51b815260040161079a90611b3d565b600b61076b828483611c17565b60006109508261123d565b5192915050565b6008546001600160a01b031633146109815760405162461bcd60e51b815260040161079a90611b3d565b600d55565b60006001600160a01b0382166109af576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109ff5760405162461bcd60e51b815260040161079a90611b3d565b610a096000611366565b565b60606003805461061c90611b03565b600260095403610a6c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079a565b60026009558015801590610a825750600f548111155b610ac55760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161079a565b600d546001546000548391900360001901610ae09190611cd7565b1115610b255760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161079a565b600a5460ff1615610b785760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161079a565b80600c54610b869190611b88565b341015610bcb5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161079a565b600e54600154600054036000190110610c2e5760003411610c2e5760405162461bcd60e51b815260206004820152601960248201527f4d6178206672656520737570706c792065786365656465642100000000000000604482015260640161079a565b610c3833826113b8565b506001600955565b336001600160a01b03831603610c695760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cff5760405162461bcd60e51b815260040161079a90611b3d565b600f55565b610d0f84848461104d565b6001600160a01b0383163b15158015610d315750610d2f848484846113d2565b155b15610d4f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d6082610fb8565b610da25760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b604482015260640161079a565b6000610dac6114be565b90506000815111610dcc5760405180602001604052806000815250610df7565b80610dd6846114cd565b604051602001610de7929190611cea565b6040516020818303038152906040525b9392505050565b600b8054610e0b90611b03565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3790611b03565b8015610e845780601f10610e5957610100808354040283529160200191610e84565b820191906000526020600020905b815481529060010190602001808311610e6757829003601f168201915b505050505081565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610ee45760405162461bcd60e51b815260040161079a90611b3d565b6108c081836113b8565b6008546001600160a01b03163314610f185760405162461bcd60e51b815260040161079a90611b3d565b6001600160a01b038116610f7d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079a565b610f8681611366565b50565b6008546001600160a01b03163314610fb35760405162461bcd60e51b815260040161079a90611b3d565b600e55565b600081600111158015610fcc575060005482105b8015610607575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110588261123d565b9050836001600160a01b031681600001516001600160a01b03161461108f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110ad57506110ad8533610e8c565b806110c85750336110bd8461069f565b6001600160a01b0316145b9050806110e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661110f57604051633a954ecd60e21b815260040160405180910390fd5b61111b60008487610ff1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166111f15760005482146111f1578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561126d575060005481105b1561134d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061134b5780516001600160a01b0316156112e1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611346579392505050565b6112e1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c08282604051806020016040528060008152506115ce565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611407903390899088908890600401611d29565b6020604051808303816000875af1925050508015611442575060408051601f3d908101601f1916820190925261143f91810190611d66565b60015b6114a0573d808015611470576040519150601f19603f3d011682016040523d82523d6000602084013e611475565b606091505b508051600003611498576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461061c90611b03565b6060816000036114f45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561151e578061150881611d83565b91506115179050600a83611bb5565b91506114f8565b60008167ffffffffffffffff811115611539576115396119c4565b6040519080825280601f01601f191660200182016040528015611563576020820181803683370190505b5090505b84156114b657611578600183611d9c565b9150611585600a86611daf565b611590906030611cd7565b60f81b8183815181106115a5576115a5611dc3565b60200101906001600160f81b031916908160001a9053506115c7600a86611bb5565b9450611567565b61076b83838360016000546001600160a01b0385166115ff57604051622e076360e81b815260040160405180910390fd5b836000036116205760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116d257506001600160a01b0387163b15155b1561175a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461172360008884806001019550886113d2565b611740576040516368d2bf6b60e11b815260040160405180910390fd5b8082036116d857826000541461175557600080fd5b61179f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361175b575b50600055611236565b6001600160e01b031981168114610f8657600080fd5b6000602082840312156117d057600080fd5b8135610df7816117a8565b60005b838110156117f65781810151838201526020016117de565b50506000910152565b600081518084526118178160208601602086016117db565b601f01601f19169290920160200192915050565b602081526000610df760208301846117ff565b60006020828403121561185057600080fd5b5035919050565b80356001600160a01b038116811461186e57600080fd5b919050565b6000806040838503121561188657600080fd5b61188f83611857565b946020939093013593505050565b8035801515811461186e57600080fd5b6000602082840312156118bf57600080fd5b610df78261189d565b6000806000606084860312156118dd57600080fd5b6118e684611857565b92506118f460208501611857565b9150604084013590509250925092565b6000806020838503121561191757600080fd5b823567ffffffffffffffff8082111561192f57600080fd5b818501915085601f83011261194357600080fd5b81358181111561195257600080fd5b86602082850101111561196457600080fd5b60209290920196919550909350505050565b60006020828403121561198857600080fd5b610df782611857565b600080604083850312156119a457600080fd5b6119ad83611857565b91506119bb6020840161189d565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119f057600080fd5b6119f985611857565b9350611a0760208601611857565b925060408501359150606085013567ffffffffffffffff80821115611a2b57600080fd5b818701915087601f830112611a3f57600080fd5b813581811115611a5157611a516119c4565b604051601f8201601f19908116603f01168101908382118183101715611a7957611a796119c4565b816040528281528a6020848701011115611a9257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ac957600080fd5b611ad283611857565b91506119bb60208401611857565b60008060408385031215611af357600080fd5b823591506119bb60208401611857565b600181811c90821680611b1757607f821691505b602082108103611b3757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761060757610607611b72565b634e487b7160e01b600052601260045260246000fd5b600082611bc457611bc4611b9f565b500490565b601f82111561076b57600081815260208120601f850160051c81016020861015611bf05750805b601f850160051c820191505b81811015611c0f57828155600101611bfc565b505050505050565b67ffffffffffffffff831115611c2f57611c2f6119c4565b611c4383611c3d8354611b03565b83611bc9565b6000601f841160018114611c775760008515611c5f5750838201355b600019600387901b1c1916600186901b178355611236565b600083815260209020601f19861690835b82811015611ca85786850135825560209485019460019092019101611c88565b5086821015611cc55760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8082018082111561060757610607611b72565b60008351611cfc8184602088016117db565b835190830190611d108183602088016117db565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5c908301846117ff565b9695505050505050565b600060208284031215611d7857600080fd5b8151610df7816117a8565b600060018201611d9557611d95611b72565b5060010190565b8181038181111561060757610607611b72565b600082611dbe57611dbe611b9f565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220cc4ff4e58078bc2b9f03f77fb9ea008f96f545877bc431e620dfd17f68bbbb0464736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461053b578063efbd73f41461055b578063f2fde38b1461057b578063f676308a1461059b57600080fd5b8063b88d4fde146104d0578063c87b56dd146104f0578063cfc86f7b14610510578063d5abeb011461052557600080fd5b806395d89b41116100d157806395d89b4114610468578063a0712d681461047d578063a22cb46514610490578063b071401b146104b057600080fd5b806370a08231146103ff578063715018a61461041f5780638da5cb5b1461043457806394354fd01461045257600080fd5b806324a6ab0c1161017a57806355f804b31161014957806355f804b3146103855780635c975abb146103a55780636352211e146103bf5780636f8b44b0146103df57600080fd5b806324a6ab0c1461031a5780633ccfd60b1461033057806342842e0e1461034557806344a0d68a1461036557600080fd5b806313faede6116101b657806313faede61461029957806316c38b3c146102bd57806318160ddd146102dd57806323b872dd146102fa57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046117be565b6105bb565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261060d565b604051610214919061182b565b34801561024b57600080fd5b5061025f61025a36600461183e565b61069f565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611873565b6106e3565b005b3480156102a557600080fd5b506102af600c5481565b604051908152602001610214565b3480156102c957600080fd5b506102976102d83660046118ad565b610770565b3480156102e957600080fd5b5060015460005403600019016102af565b34801561030657600080fd5b506102976103153660046118c8565b6107b6565b34801561032657600080fd5b506102af600e5481565b34801561033c57600080fd5b506102976107c1565b34801561035157600080fd5b506102976103603660046118c8565b6108c4565b34801561037157600080fd5b5061029761038036600461183e565b6108df565b34801561039157600080fd5b506102976103a0366004611904565b61090e565b3480156103b157600080fd5b50600a546102089060ff1681565b3480156103cb57600080fd5b5061025f6103da36600461183e565b610945565b3480156103eb57600080fd5b506102976103fa36600461183e565b610957565b34801561040b57600080fd5b506102af61041a366004611976565b610986565b34801561042b57600080fd5b506102976109d5565b34801561044057600080fd5b506008546001600160a01b031661025f565b34801561045e57600080fd5b506102af600f5481565b34801561047457600080fd5b50610232610a0b565b61029761048b36600461183e565b610a1a565b34801561049c57600080fd5b506102976104ab366004611991565b610c40565b3480156104bc57600080fd5b506102976104cb36600461183e565b610cd5565b3480156104dc57600080fd5b506102976104eb3660046119da565b610d04565b3480156104fc57600080fd5b5061023261050b36600461183e565b610d55565b34801561051c57600080fd5b50610232610dfe565b34801561053157600080fd5b506102af600d5481565b34801561054757600080fd5b50610208610556366004611ab6565b610e8c565b34801561056757600080fd5b50610297610576366004611ae0565b610eba565b34801561058757600080fd5b50610297610596366004611976565b610eee565b3480156105a757600080fd5b506102976105b636600461183e565b610f89565b60006001600160e01b031982166380ac58cd60e01b14806105ec57506001600160e01b03198216635b5e139f60e01b145b8061060757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061c90611b03565b80601f016020809104026020016040519081016040528092919081815260200182805461064890611b03565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b60006106aa82610fb8565b6106c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ee82610945565b9050806001600160a01b0316836001600160a01b0316036107225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061074257506107408133610e8c565b155b15610760576040516367d9dca160e11b815260040160405180910390fd5b61076b838383610ff1565b505050565b6008546001600160a01b031633146107a35760405162461bcd60e51b815260040161079a90611b3d565b60405180910390fd5b600a805460ff1916911515919091179055565b61076b83838361104d565b6008546001600160a01b031633146107eb5760405162461bcd60e51b815260040161079a90611b3d565b6010546000906001600160a01b03166064610807476032611b88565b6108119190611bb5565b604051600081818185875af1925050503d806000811461084d576040519150601f19603f3d011682016040523d82523d6000602084013e610852565b606091505b505090508061086057600080fd5b6011546040516000916001600160a01b03169047908381818185875af1925050503d80600081146108ad576040519150601f19603f3d011682016040523d82523d6000602084013e6108b2565b606091505b50509050806108c057600080fd5b5050565b61076b83838360405180602001604052806000815250610d04565b6008546001600160a01b031633146109095760405162461bcd60e51b815260040161079a90611b3d565b600c55565b6008546001600160a01b031633146109385760405162461bcd60e51b815260040161079a90611b3d565b600b61076b828483611c17565b60006109508261123d565b5192915050565b6008546001600160a01b031633146109815760405162461bcd60e51b815260040161079a90611b3d565b600d55565b60006001600160a01b0382166109af576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109ff5760405162461bcd60e51b815260040161079a90611b3d565b610a096000611366565b565b60606003805461061c90611b03565b600260095403610a6c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079a565b60026009558015801590610a825750600f548111155b610ac55760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161079a565b600d546001546000548391900360001901610ae09190611cd7565b1115610b255760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161079a565b600a5460ff1615610b785760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161079a565b80600c54610b869190611b88565b341015610bcb5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161079a565b600e54600154600054036000190110610c2e5760003411610c2e5760405162461bcd60e51b815260206004820152601960248201527f4d6178206672656520737570706c792065786365656465642100000000000000604482015260640161079a565b610c3833826113b8565b506001600955565b336001600160a01b03831603610c695760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cff5760405162461bcd60e51b815260040161079a90611b3d565b600f55565b610d0f84848461104d565b6001600160a01b0383163b15158015610d315750610d2f848484846113d2565b155b15610d4f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d6082610fb8565b610da25760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b604482015260640161079a565b6000610dac6114be565b90506000815111610dcc5760405180602001604052806000815250610df7565b80610dd6846114cd565b604051602001610de7929190611cea565b6040516020818303038152906040525b9392505050565b600b8054610e0b90611b03565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3790611b03565b8015610e845780601f10610e5957610100808354040283529160200191610e84565b820191906000526020600020905b815481529060010190602001808311610e6757829003601f168201915b505050505081565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610ee45760405162461bcd60e51b815260040161079a90611b3d565b6108c081836113b8565b6008546001600160a01b03163314610f185760405162461bcd60e51b815260040161079a90611b3d565b6001600160a01b038116610f7d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079a565b610f8681611366565b50565b6008546001600160a01b03163314610fb35760405162461bcd60e51b815260040161079a90611b3d565b600e55565b600081600111158015610fcc575060005482105b8015610607575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110588261123d565b9050836001600160a01b031681600001516001600160a01b03161461108f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110ad57506110ad8533610e8c565b806110c85750336110bd8461069f565b6001600160a01b0316145b9050806110e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661110f57604051633a954ecd60e21b815260040160405180910390fd5b61111b60008487610ff1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166111f15760005482146111f1578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561126d575060005481105b1561134d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061134b5780516001600160a01b0316156112e1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611346579392505050565b6112e1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c08282604051806020016040528060008152506115ce565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611407903390899088908890600401611d29565b6020604051808303816000875af1925050508015611442575060408051601f3d908101601f1916820190925261143f91810190611d66565b60015b6114a0573d808015611470576040519150601f19603f3d011682016040523d82523d6000602084013e611475565b606091505b508051600003611498576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461061c90611b03565b6060816000036114f45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561151e578061150881611d83565b91506115179050600a83611bb5565b91506114f8565b60008167ffffffffffffffff811115611539576115396119c4565b6040519080825280601f01601f191660200182016040528015611563576020820181803683370190505b5090505b84156114b657611578600183611d9c565b9150611585600a86611daf565b611590906030611cd7565b60f81b8183815181106115a5576115a5611dc3565b60200101906001600160f81b031916908160001a9053506115c7600a86611bb5565b9450611567565b61076b83838360016000546001600160a01b0385166115ff57604051622e076360e81b815260040160405180910390fd5b836000036116205760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116d257506001600160a01b0387163b15155b1561175a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461172360008884806001019550886113d2565b611740576040516368d2bf6b60e11b815260040160405180910390fd5b8082036116d857826000541461175557600080fd5b61179f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361175b575b50600055611236565b6001600160e01b031981168114610f8657600080fd5b6000602082840312156117d057600080fd5b8135610df7816117a8565b60005b838110156117f65781810151838201526020016117de565b50506000910152565b600081518084526118178160208601602086016117db565b601f01601f19169290920160200192915050565b602081526000610df760208301846117ff565b60006020828403121561185057600080fd5b5035919050565b80356001600160a01b038116811461186e57600080fd5b919050565b6000806040838503121561188657600080fd5b61188f83611857565b946020939093013593505050565b8035801515811461186e57600080fd5b6000602082840312156118bf57600080fd5b610df78261189d565b6000806000606084860312156118dd57600080fd5b6118e684611857565b92506118f460208501611857565b9150604084013590509250925092565b6000806020838503121561191757600080fd5b823567ffffffffffffffff8082111561192f57600080fd5b818501915085601f83011261194357600080fd5b81358181111561195257600080fd5b86602082850101111561196457600080fd5b60209290920196919550909350505050565b60006020828403121561198857600080fd5b610df782611857565b600080604083850312156119a457600080fd5b6119ad83611857565b91506119bb6020840161189d565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119f057600080fd5b6119f985611857565b9350611a0760208601611857565b925060408501359150606085013567ffffffffffffffff80821115611a2b57600080fd5b818701915087601f830112611a3f57600080fd5b813581811115611a5157611a516119c4565b604051601f8201601f19908116603f01168101908382118183101715611a7957611a796119c4565b816040528281528a6020848701011115611a9257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ac957600080fd5b611ad283611857565b91506119bb60208401611857565b60008060408385031215611af357600080fd5b823591506119bb60208401611857565b600181811c90821680611b1757607f821691505b602082108103611b3757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761060757610607611b72565b634e487b7160e01b600052601260045260246000fd5b600082611bc457611bc4611b9f565b500490565b601f82111561076b57600081815260208120601f850160051c81016020861015611bf05750805b601f850160051c820191505b81811015611c0f57828155600101611bfc565b505050505050565b67ffffffffffffffff831115611c2f57611c2f6119c4565b611c4383611c3d8354611b03565b83611bc9565b6000601f841160018114611c775760008515611c5f5750838201355b600019600387901b1c1916600186901b178355611236565b600083815260209020601f19861690835b82811015611ca85786850135825560209485019460019092019101611c88565b5086821015611cc55760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8082018082111561060757610607611b72565b60008351611cfc8184602088016117db565b835190830190611d108183602088016117db565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5c908301846117ff565b9695505050505050565b600060208284031215611d7857600080fd5b8151610df7816117a8565b600060018201611d9557611d95611b72565b5060010190565b8181038181111561060757610607611b72565b600082611dbe57611dbe611b9f565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220cc4ff4e58078bc2b9f03f77fb9ea008f96f545877bc431e620dfd17f68bbbb0464736f6c63430008130033

Deployed Bytecode Sourcemap

48813:3128:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30366:355;;;;;;;;;;-1:-1:-1;30366:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30366:355:0;;;;;;;;33561:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35161:245::-;;;;;;;;;;-1:-1:-1;35161:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;35161:245:0;1533:203:1;34724:371:0;;;;;;;;;;-1:-1:-1;34724:371:0;;;;;:::i;:::-;;:::i;:::-;;48967:33;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;48967:33:0;2178:177:1;50709:83:0;;;;;;;;;;-1:-1:-1;50709:83:0;;;;;:::i;:::-;;:::i;29615:303::-;;;;;;;;;;-1:-1:-1;50217:1:0;29869:12;29659:7;29853:13;:28;-1:-1:-1;;29853:46:0;29615:303;;36149:170;;;;;;;;;;-1:-1:-1;36149:170:0;;;;;:::i;:::-;;:::i;49045:32::-;;;;;;;;;;;;;;;;50800:326;;;;;;;;;;;;;:::i;36390:185::-;;;;;;;;;;-1:-1:-1;36390:185:0;;;;;:::i;:::-;;:::i;50234:80::-;;;;;;;;;;-1:-1:-1;50234:80:0;;;;;:::i;:::-;;:::i;51134:104::-;;;;;;;;;;-1:-1:-1;51134:104:0;;;;;:::i;:::-;;:::i;48908:18::-;;;;;;;;;;-1:-1:-1;48908:18:0;;;;;;;;33369:125;;;;;;;;;;-1:-1:-1;33369:125:0;;;;;:::i;:::-;;:::i;50489:100::-;;;;;;;;;;-1:-1:-1;50489:100:0;;;;;:::i;:::-;;:::i;30785:206::-;;;;;;;;;;-1:-1:-1;30785:206:0;;;;;:::i;:::-;;:::i;7443:103::-;;;;;;;;;;;;;:::i;6792:87::-;;;;;;;;;;-1:-1:-1;6865:6:0;;-1:-1:-1;;;;;6865:6:0;6792:87;;49084:38;;;;;;;;;;;;;;;;33730:104;;;;;;;;;;;;;:::i;49328:625::-;;;;;;:::i;:::-;;:::i;35478:319::-;;;;;;;;;;-1:-1:-1;35478:319:0;;;;;:::i;:::-;;:::i;50322:159::-;;;;;;;;;;-1:-1:-1;50322:159:0;;;;;:::i;:::-;;:::i;36646:406::-;;;;;;;;;;-1:-1:-1;36646:406:0;;;;;:::i;:::-;;:::i;51368:570::-;;;;;;;;;;-1:-1:-1;51368:570:0;;;;;:::i;:::-;;:::i;48933:27::-;;;;;;;;;;;;;:::i;49007:31::-;;;;;;;;;;;;;;;;35868:214;;;;;;;;;;-1:-1:-1;35868:214:0;;;;;:::i;:::-;;:::i;49961:156::-;;;;;;;;;;-1:-1:-1;49961:156:0;;;;;:::i;:::-;;:::i;7701:238::-;;;;;;;;;;-1:-1:-1;7701:238:0;;;;;:::i;:::-;;:::i;50597:104::-;;;;;;;;;;-1:-1:-1;50597:104:0;;;;;:::i;:::-;;:::i;30366:355::-;30513:4;-1:-1:-1;;;;;;30555:40:0;;-1:-1:-1;;;30555:40:0;;:105;;-1:-1:-1;;;;;;;30612:48:0;;-1:-1:-1;;;30612:48:0;30555:105;:158;;;-1:-1:-1;;;;;;;;;;20232:40:0;;;30677:36;30535:178;30366:355;-1:-1:-1;;30366:355:0:o;33561:100::-;33615:13;33648:5;33641:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33561:100;:::o;35161:245::-;35265:7;35295:16;35303:7;35295;:16::i;:::-;35290:64;;35320:34;;-1:-1:-1;;;35320:34:0;;;;;;;;;;;35290:64;-1:-1:-1;35374:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35374:24:0;;35161:245::o;34724:371::-;34797:13;34813:24;34829:7;34813:15;:24::i;:::-;34797:40;;34858:5;-1:-1:-1;;;;;34852:11:0;:2;-1:-1:-1;;;;;34852:11:0;;34848:48;;34872:24;;-1:-1:-1;;;34872:24:0;;;;;;;;;;;34848:48;5574:10;-1:-1:-1;;;;;34913:21:0;;;;;;:63;;-1:-1:-1;34939:37:0;34956:5;5574:10;35868:214;:::i;34939:37::-;34938:38;34913:63;34909:138;;;35000:35;;-1:-1:-1;;;35000:35:0;;;;;;;;;;;34909:138;35059:28;35068:2;35072:7;35081:5;35059:8;:28::i;:::-;34786:309;34724:371;;:::o;50709:83::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;;;;;;;;;50769:6:::1;:15:::0;;-1:-1:-1;;50769:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50709:83::o;36149:170::-;36283:28;36293:4;36299:2;36303:7;36283:9;:28::i;50800:326::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50877:3:::1;::::0;50851:12:::1;::::0;-1:-1:-1;;;;;50877:3:0::1;50939;50909:26;:21;50933:2;50909:26;:::i;:::-;50908:34;;;;:::i;:::-;50869:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50850:107;;;50976:7;50968:16;;;::::0;::::1;;51021:7;::::0;51013:79:::1;::::0;50996:11:::1;::::0;-1:-1:-1;;;;;51021:7:0::1;::::0;51042:21:::1;::::0;50996:11;51013:79;50996:11;51013:79;51042:21;51021:7;51013:79:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50995:97;;;51111:6;51103:15;;;::::0;::::1;;50839:287;;50800:326::o:0;36390:185::-;36528:39;36545:4;36551:2;36555:7;36528:39;;;;;;;;;;;;:16;:39::i;50234:80::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50294:4:::1;:12:::0;50234:80::o;51134:104::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51207:13:::1;:23;51223:7:::0;;51207:13;:23:::1;:::i;33369:125::-:0;33433:7;33460:21;33473:7;33460:12;:21::i;:::-;:26;;33369:125;-1:-1:-1;;33369:125:0:o;50489:100::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50559:9:::1;:22:::0;50489:100::o;30785:206::-;30849:7;-1:-1:-1;;;;;30873:19:0;;30869:60;;30901:28;;-1:-1:-1;;;30901:28:0;;;;;;;;;;;30869:60;-1:-1:-1;;;;;;30955:19:0;;;;;:12;:19;;;;;:27;;;;30785:206::o;7443:103::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;7508:30:::1;7535:1;7508:18;:30::i;:::-;7443:103::o:0;33730:104::-;33786:13;33819:7;33812:14;;;;;:::i;49328:625::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;9667:2:1;2304:63:0;;;9649:21:1;9706:2;9686:18;;;9679:30;9745:33;9725:18;;;9718:61;9796:18;;2304:63:0;9465:355:1;2304:63:0;1714:1;2445:7;:18;49424:15;;;;;:52:::1;;;49458:18;;49443:11;:33;;49424:52;49402:122;;;::::0;-1:-1:-1;;;49402:122:0;;10027:2:1;49402:122:0::1;::::0;::::1;10009:21:1::0;10066:2;10046:18;;;10039:30;-1:-1:-1;;;10085:18:1;;;10078:50;10145:18;;49402:122:0::1;9825:344:1::0;49402:122:0::1;49588:9;::::0;50217:1;29869:12;29659:7;29853:13;49573:11;;29853:28;;-1:-1:-1;;29853:46:0;49557:27:::1;;;;:::i;:::-;:40;;49535:110;;;::::0;-1:-1:-1;;;49535:110:0;;10506:2:1;49535:110:0::1;::::0;::::1;10488:21:1::0;10545:2;10525:18;;;10518:30;-1:-1:-1;;;10564:18:1;;;10557:50;10624:18;;49535:110:0::1;10304:344:1::0;49535:110:0::1;49665:6;::::0;::::1;;49664:7;49656:43;;;::::0;-1:-1:-1;;;49656:43:0;;10855:2:1;49656:43:0::1;::::0;::::1;10837:21:1::0;10894:2;10874:18;;;10867:30;10933:25;10913:18;;;10906:53;10976:18;;49656:43:0::1;10653:347:1::0;49656:43:0::1;49738:11;49731:4;;:18;;;;:::i;:::-;49718:9;:31;;49710:63;;;::::0;-1:-1:-1;;;49710:63:0;;11207:2:1;49710:63:0::1;::::0;::::1;11189:21:1::0;11246:2;11226:18;;;11219:30;-1:-1:-1;;;11265:18:1;;;11258:49;11324:18;;49710:63:0::1;11005:343:1::0;49710:63:0::1;49807:10;::::0;50217:1;29869:12;29659:7;29853:13;:28;-1:-1:-1;;29853:46:0;49790:27:::1;49786:111;;49854:1;49842:9;:13;49834:51;;;::::0;-1:-1:-1;;;49834:51:0;;11555:2:1;49834:51:0::1;::::0;::::1;11537:21:1::0;11594:2;11574:18;;;11567:30;11633:27;11613:18;;;11606:55;11678:18;;49834:51:0::1;11353:349:1::0;49834:51:0::1;49909:36;5574:10:::0;49933:11:::1;49909:9;:36::i;:::-;-1:-1:-1::0;1670:1:0;2624:7;:22;49328:625::o;35478:319::-;5574:10;-1:-1:-1;;;;;35609:24:0;;;35605:54;;35642:17;;-1:-1:-1;;;35642:17:0;;;;;;;;;;;35605:54;5574:10;35672:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35672:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35672:53:0;;;;;;;;;;35741:48;;540:41:1;;;35672:42:0;;5574:10;35741:48;;513:18:1;35741:48:0;;;;;;;35478:319;;:::o;50322:159::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50433:18:::1;:40:::0;50322:159::o;36646:406::-;36813:28;36823:4;36829:2;36833:7;36813:9;:28::i;:::-;-1:-1:-1;;;;;36870:13:0;;9823:19;:23;;36870:89;;;;;36903:56;36934:4;36940:2;36944:7;36953:5;36903:30;:56::i;:::-;36902:57;36870:89;36852:193;;;36993:40;;-1:-1:-1;;;36993:40:0;;;;;;;;;;;36852:193;36646:406;;;;:::o;51368:570::-;51487:13;51526:17;51534:8;51526:7;:17::i;:::-;51518:49;;;;-1:-1:-1;;;51518:49:0;;11909:2:1;51518:49:0;;;11891:21:1;11948:2;11928:18;;;11921:30;-1:-1:-1;;;11967:18:1;;;11960:49;12026:18;;51518:49:0;11707:343:1;51518:49:0;51578:28;51609:10;:8;:10::i;:::-;51578:41;;51681:1;51656:14;51650:28;:32;:282;;;;;;;;;;;;;;;;;51774:14;51815:19;:8;:17;:19::i;:::-;51731:160;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51650:282;51630:302;51368:570;-1:-1:-1;;;51368:570:0:o;48933:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35868:214::-;-1:-1:-1;;;;;36039:25:0;;;36010:4;36039:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35868:214::o;49961:156::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50076:33:::1;50086:9;50097:11;50076:9;:33::i;7701:238::-:0;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7804:22:0;::::1;7782:110;;;::::0;-1:-1:-1;;;7782:110:0;;12925:2:1;7782:110:0::1;::::0;::::1;12907:21:1::0;12964:2;12944:18;;;12937:30;13003:34;12983:18;;;12976:62;-1:-1:-1;;;13054:18:1;;;13047:36;13100:19;;7782:110:0::1;12723:402:1::0;7782:110:0::1;7903:28;7922:8;7903:18;:28::i;:::-;7701:238:::0;:::o;50597:104::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50669:10:::1;:24:::0;50597:104::o;37307:213::-;37364:4;37420:7;50217:1;37401:26;;:66;;;;;37454:13;;37444:7;:23;37401:66;:111;;;;-1:-1:-1;;37485:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37485:27:0;;;;37484:28;;37307:213::o;45694:196::-;45809:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45809:29:0;-1:-1:-1;;;;;45809:29:0;;;;;;;;;45854:28;;45809:24;;45854:28;;;;;;;45694:196;;;:::o;40637:2130::-;40752:35;40790:21;40803:7;40790:12;:21::i;:::-;40752:59;;40850:4;-1:-1:-1;;;;;40828:26:0;:13;:18;;;-1:-1:-1;;;;;40828:26:0;;40824:67;;40863:28;;-1:-1:-1;;;40863:28:0;;;;;;;;;;;40824:67;40904:22;5574:10;-1:-1:-1;;;;;40930:20:0;;;;:73;;-1:-1:-1;40967:36:0;40984:4;5574:10;35868:214;:::i;40967:36::-;40930:126;;;-1:-1:-1;5574:10:0;41020:20;41032:7;41020:11;:20::i;:::-;-1:-1:-1;;;;;41020:36:0;;40930:126;40904:153;;41075:17;41070:66;;41101:35;;-1:-1:-1;;;41101:35:0;;;;;;;;;;;41070:66;-1:-1:-1;;;;;41151:16:0;;41147:52;;41176:23;;-1:-1:-1;;;41176:23:0;;;;;;;;;;;41147:52;41320:35;41337:1;41341:7;41350:4;41320:8;:35::i;:::-;-1:-1:-1;;;;;41651:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41651:31:0;;;;;;;-1:-1:-1;;41651:31:0;;;;;;;41697:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41697:29:0;;;;;;;;;;;41777:20;;;:11;:20;;;;;;41812:18;;-1:-1:-1;;;;;;41845:49:0;;;;-1:-1:-1;;;41878:15:0;41845:49;;;;;;;;;;42168:11;;42228:24;;;;;42271:13;;41777:20;;42228:24;;42271:13;42267:384;;42481:13;;42466:11;:28;42462:174;;42519:20;;42588:28;;;;42562:54;;-1:-1:-1;;;42562:54:0;-1:-1:-1;;;;;;42562:54:0;;;-1:-1:-1;;;;;42519:20:0;;42562:54;;;;42462:174;41626:1036;;;42698:7;42694:2;-1:-1:-1;;;;;42679:27:0;42688:4;-1:-1:-1;;;;;42679:27:0;;;;;;;;;;;42717:42;40741:2026;;40637:2130;;;:::o;32166:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32309:7:0;;50217:1;32358:23;;:47;;;;;32392:13;;32385:4;:20;32358:47;32354:886;;;32426:31;32460:17;;;:11;:17;;;;;;;;;32426:51;;;;;;;;;-1:-1:-1;;;;;32426:51:0;;;;-1:-1:-1;;;32426:51:0;;;;;;;;;;;-1:-1:-1;;;32426:51:0;;;;;;;;;;;;;;32496:729;;32546:14;;-1:-1:-1;;;;;32546:28:0;;32542:101;;32610:9;32166:1141;-1:-1:-1;;;32166:1141:0:o;32542:101::-;-1:-1:-1;;;32985:6:0;33030:17;;;;:11;:17;;;;;;;;;33018:29;;;;;;;;;-1:-1:-1;;;;;33018:29:0;;;;;-1:-1:-1;;;33018:29:0;;;;;;;;;;;-1:-1:-1;;;33018:29:0;;;;;;;;;;;;;33078:28;33074:109;;33146:9;32166:1141;-1:-1:-1;;;32166:1141:0:o;33074:109::-;32945:261;;;32407:833;32354:886;33268:31;;-1:-1:-1;;;33268:31:0;;;;;;;;;;;8099:191;8192:6;;;-1:-1:-1;;;;;8209:17:0;;;-1:-1:-1;;;;;;8209:17:0;;;;;;;8242:40;;8192:6;;;8209:17;8192:6;;8242:40;;8173:16;;8242:40;8162:128;8099:191;:::o;37528:104::-;37597:27;37607:2;37611:8;37597:27;;;;;;;;;;;;:9;:27::i;46382:772::-;46579:155;;-1:-1:-1;;;46579:155:0;;46545:4;;-1:-1:-1;;;;;46579:36:0;;;;;:155;;5574:10;;46665:4;;46688:7;;46714:5;;46579:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46579:155:0;;;;;;;;-1:-1:-1;;46579:155:0;;;;;;;;;;;;:::i;:::-;;;46562:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46905:6;:13;46922:1;46905:18;46901:235;;46951:40;;-1:-1:-1;;;46951:40:0;;;;;;;;;;;46901:235;47094:6;47088:13;47079:6;47075:2;47071:15;47064:38;46562:585;-1:-1:-1;;;;;;46790:55:0;-1:-1:-1;;;46790:55:0;;-1:-1:-1;46562:585:0;46382:772;;;;;;:::o;51246:114::-;51306:13;51339;51332:20;;;;;:::i;3025:723::-;3081:13;3302:5;3311:1;3302:10;3298:53;;-1:-1:-1;;3329:10:0;;;;;;;;;;;;-1:-1:-1;;;3329:10:0;;;;;3025:723::o;3298:53::-;3376:5;3361:12;3417:78;3424:9;;3417:78;;3450:8;;;;:::i;:::-;;-1:-1:-1;3473:10:0;;-1:-1:-1;3481:2:0;3473:10;;:::i;:::-;;;3417:78;;;3505:19;3537:6;3527:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3527:17:0;;3505:39;;3555:154;3562:10;;3555:154;;3589:11;3599:1;3589:11;;:::i;:::-;;-1:-1:-1;3658:10:0;3666:2;3658:5;:10;:::i;:::-;3645:24;;:2;:24;:::i;:::-;3632:39;;3615:6;3622;3615:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3615:56:0;;;;;;;;-1:-1:-1;3686:11:0;3695:2;3686:11;;:::i;:::-;;;3555:154;;37995:163;38118:32;38124:2;38128:8;38138:5;38145:4;38556:20;38579:13;-1:-1:-1;;;;;38607:16:0;;38603:48;;38632:19;;-1:-1:-1;;;38632:19:0;;;;;;;;;;;38603:48;38666:8;38678:1;38666:13;38662:44;;38688:18;;-1:-1:-1;;;38688:18:0;;;;;;;;;;;38662:44;-1:-1:-1;;;;;39057:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39116:49:0;;39057:44;;;;;;;;39116:49;;;;-1:-1:-1;;39057:44:0;;;;;;39116:49;;;;;;;;;;;;;;;;39182:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39232:66:0;;;;-1:-1:-1;;;39282:15:0;39232:66;;;;;;;;;;39182:25;39379:23;;;39423:4;:23;;;;-1:-1:-1;;;;;;39431:13:0;;9823:19;:23;;39431:15;39419:832;;;39467:505;39498:38;;39523:12;;-1:-1:-1;;;;;39498:38:0;;;39515:1;;39498:38;;39515:1;;39498:38;39590:212;39659:1;39692:2;39725:14;;;;;;39770:5;39590:30;:212::i;:::-;39559:365;;39860:40;;-1:-1:-1;;;39860:40:0;;;;;;;;;;;39559:365;39967:3;39951:12;:19;39467:505;;40053:12;40036:13;;:29;40032:43;;40067:8;;;40032:43;39419:832;;;40116:120;40147:40;;40172:14;;;;;-1:-1:-1;;;;;40147:40:0;;;40164:1;;40147:40;;40164:1;;40147:40;40231:3;40215:12;:19;40116:120;;39419:832;-1:-1:-1;40265:13:0;:28;40315:60;36646:406;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:592::-;3114:6;3122;3175:2;3163:9;3154:7;3150:23;3146:32;3143:52;;;3191:1;3188;3181:12;3143:52;3231:9;3218:23;3260:18;3301:2;3293:6;3290:14;3287:34;;;3317:1;3314;3307:12;3287:34;3355:6;3344:9;3340:22;3330:32;;3400:7;3393:4;3389:2;3385:13;3381:27;3371:55;;3422:1;3419;3412:12;3371:55;3462:2;3449:16;3488:2;3480:6;3477:14;3474:34;;;3504:1;3501;3494:12;3474:34;3549:7;3544:2;3535:6;3531:2;3527:15;3523:24;3520:37;3517:57;;;3570:1;3567;3560:12;3517:57;3601:2;3593:11;;;;;3623:6;;-1:-1:-1;3043:592:1;;-1:-1:-1;;;;3043:592:1:o;3640:186::-;3699:6;3752:2;3740:9;3731:7;3727:23;3723:32;3720:52;;;3768:1;3765;3758:12;3720:52;3791:29;3810:9;3791:29;:::i;3831:254::-;3896:6;3904;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;3996:29;4015:9;3996:29;:::i;:::-;3986:39;;4044:35;4075:2;4064:9;4060:18;4044:35;:::i;:::-;4034:45;;3831:254;;;;;:::o;4090:127::-;4151:10;4146:3;4142:20;4139:1;4132:31;4182:4;4179:1;4172:15;4206:4;4203:1;4196:15;4222:1138;4317:6;4325;4333;4341;4394:3;4382:9;4373:7;4369:23;4365:33;4362:53;;;4411:1;4408;4401:12;4362:53;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:38;4516:2;4505:9;4501:18;4482:38;:::i;:::-;4472:48;;4567:2;4556:9;4552:18;4539:32;4529:42;;4622:2;4611:9;4607:18;4594:32;4645:18;4686:2;4678:6;4675:14;4672:34;;;4702:1;4699;4692:12;4672:34;4740:6;4729:9;4725:22;4715:32;;4785:7;4778:4;4774:2;4770:13;4766:27;4756:55;;4807:1;4804;4797:12;4756:55;4843:2;4830:16;4865:2;4861;4858:10;4855:36;;;4871:18;;:::i;:::-;4946:2;4940:9;4914:2;5000:13;;-1:-1:-1;;4996:22:1;;;5020:2;4992:31;4988:40;4976:53;;;5044:18;;;5064:22;;;5041:46;5038:72;;;5090:18;;:::i;:::-;5130:10;5126:2;5119:22;5165:2;5157:6;5150:18;5205:7;5200:2;5195;5191;5187:11;5183:20;5180:33;5177:53;;;5226:1;5223;5216:12;5177:53;5282:2;5277;5273;5269:11;5264:2;5256:6;5252:15;5239:46;5327:1;5322:2;5317;5309:6;5305:15;5301:24;5294:35;5348:6;5338:16;;;;;;;4222:1138;;;;;;;:::o;5365:260::-;5433:6;5441;5494:2;5482:9;5473:7;5469:23;5465:32;5462:52;;;5510:1;5507;5500:12;5462:52;5533:29;5552:9;5533:29;:::i;:::-;5523:39;;5581:38;5615:2;5604:9;5600:18;5581:38;:::i;5630:254::-;5698:6;5706;5759:2;5747:9;5738:7;5734:23;5730:32;5727:52;;;5775:1;5772;5765:12;5727:52;5811:9;5798:23;5788:33;;5840:38;5874:2;5863:9;5859:18;5840:38;:::i;5889:380::-;5968:1;5964:12;;;;6011;;;6032:61;;6086:4;6078:6;6074:17;6064:27;;6032:61;6139:2;6131:6;6128:14;6108:18;6105:38;6102:161;;6185:10;6180:3;6176:20;6173:1;6166:31;6220:4;6217:1;6210:15;6248:4;6245:1;6238:15;6102:161;;5889:380;;;:::o;6274:356::-;6476:2;6458:21;;;6495:18;;;6488:30;6554:34;6549:2;6534:18;;6527:62;6621:2;6606:18;;6274:356::o;6635:127::-;6696:10;6691:3;6687:20;6684:1;6677:31;6727:4;6724:1;6717:15;6751:4;6748:1;6741:15;6767:168;6840:9;;;6871;;6888:15;;;6882:22;;6868:37;6858:71;;6909:18;;:::i;6940:127::-;7001:10;6996:3;6992:20;6989:1;6982:31;7032:4;7029:1;7022:15;7056:4;7053:1;7046:15;7072:120;7112:1;7138;7128:35;;7143:18;;:::i;:::-;-1:-1:-1;7177:9:1;;7072:120::o;7533:545::-;7635:2;7630:3;7627:11;7624:448;;;7671:1;7696:5;7692:2;7685:17;7741:4;7737:2;7727:19;7811:2;7799:10;7795:19;7792:1;7788:27;7782:4;7778:38;7847:4;7835:10;7832:20;7829:47;;;-1:-1:-1;7870:4:1;7829:47;7925:2;7920:3;7916:12;7913:1;7909:20;7903:4;7899:31;7889:41;;7980:82;7998:2;7991:5;7988:13;7980:82;;;8043:17;;;8024:1;8013:13;7980:82;;;7984:3;;;7533:545;;;:::o;8254:1206::-;8378:18;8373:3;8370:27;8367:53;;;8400:18;;:::i;:::-;8429:94;8519:3;8479:38;8511:4;8505:11;8479:38;:::i;:::-;8473:4;8429:94;:::i;:::-;8549:1;8574:2;8569:3;8566:11;8591:1;8586:616;;;;9246:1;9263:3;9260:93;;;-1:-1:-1;9319:19:1;;;9306:33;9260:93;-1:-1:-1;;8211:1:1;8207:11;;;8203:24;8199:29;8189:40;8235:1;8231:11;;;8186:57;9366:78;;8559:895;;8586:616;7480:1;7473:14;;;7517:4;7504:18;;-1:-1:-1;;8622:17:1;;;8723:9;8745:229;8759:7;8756:1;8753:14;8745:229;;;8848:19;;;8835:33;8820:49;;8955:4;8940:20;;;;8908:1;8896:14;;;;8775:12;8745:229;;;8749:3;9002;8993:7;8990:16;8987:159;;;9126:1;9122:6;9116:3;9110;9107:1;9103:11;9099:21;9095:34;9091:39;9078:9;9073:3;9069:19;9056:33;9052:79;9044:6;9037:95;8987:159;;;9189:1;9183:3;9180:1;9176:11;9172:19;9166:4;9159:33;8559:895;;8254:1206;;;:::o;10174:125::-;10239:9;;;10260:10;;;10257:36;;;10273:18;;:::i;12055:663::-;12335:3;12373:6;12367:13;12389:66;12448:6;12443:3;12436:4;12428:6;12424:17;12389:66;:::i;:::-;12518:13;;12477:16;;;;12540:70;12518:13;12477:16;12587:4;12575:17;;12540:70;:::i;:::-;-1:-1:-1;;;12632:20:1;;12661:22;;;12710:1;12699:13;;12055:663;-1:-1:-1;;;;12055:663:1:o;13130:489::-;-1:-1:-1;;;;;13399:15:1;;;13381:34;;13451:15;;13446:2;13431:18;;13424:43;13498:2;13483:18;;13476:34;;;13546:3;13541:2;13526:18;;13519:31;;;13324:4;;13567:46;;13593:19;;13585:6;13567:46;:::i;:::-;13559:54;13130:489;-1:-1:-1;;;;;;13130:489:1:o;13624:249::-;13693:6;13746:2;13734:9;13725:7;13721:23;13717:32;13714:52;;;13762:1;13759;13752:12;13714:52;13794:9;13788:16;13813:30;13837:5;13813:30;:::i;13878:135::-;13917:3;13938:17;;;13935:43;;13958:18;;:::i;:::-;-1:-1:-1;14005:1:1;13994:13;;13878:135::o;14018:128::-;14085:9;;;14106:11;;;14103:37;;;14120:18;;:::i;14151:112::-;14183:1;14209;14199:35;;14214:18;;:::i;:::-;-1:-1:-1;14248:9:1;;14151:112::o;14268:127::-;14329:10;14324:3;14320:20;14317:1;14310:31;14360:4;14357:1;14350:15;14384:4;14381:1;14374:15

Swarm Source

ipfs://cc4ff4e58078bc2b9f03f77fb9ea008f96f545877bc431e620dfd17f68bbbb04
Loading...
Loading
Loading...
Loading
[ 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.