ETH Price: $3,456.87 (-0.76%)
Gas: 3 Gwei

Token

Moon Goblz (MG)
 

Overview

Max Total Supply

4,682 MG

Holders

1,266

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 MG
0x22d11f427ff1ae9c32d11588cca20a34fe6dda48
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:
MoonGoblz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/MoonGoblz.sol


pragma solidity ^0.8.11;



contract MoonGoblz is ERC721A, Ownable {
  string _baseTokenURI;
  
  bool public isSaleActive = false;
  uint256 public constant mintPrice = 0.002 ether;
  uint256 public constant MAX_SUPPLY = 6666;
  uint256 public constant MAX_FREE_SUPPLY = 3333;
  uint256 public constant MAX_FREE_WALLET = 3;
  uint256 public constant MAX_PER_TX = 20;

  constructor(string memory baseURI) ERC721A("Moon Goblz", "MG") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function toggleSale() public onlyAuthorized {
    isSaleActive = !isSaleActive;
  }


  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

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

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();

    if (msg.sender != owner()) {
      require(isSaleActive, "Sale is not active currently.");
    }

    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(_count <= MAX_PER_TX,"Exceeds maximum allowed tokens");

    if(mintIndex + _count > MAX_FREE_SUPPLY) {
      require(msg.value >= mintPrice * _count, "Insufficient ETH amount sent.");
    }

    if(mintIndex + _count < MAX_FREE_SUPPLY) {
      require(balanceOf(msg.sender) + _count <= MAX_FREE_WALLET, "Exceeds Free maximum allowed tokens per wallet");
    }

    _safeMint(msg.sender, _count);

  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600a60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620031a3380380620031a38339818101604052810190620000529190620004ee565b6040518060400160405280600a81526020017f4d6f6f6e20476f626c7a000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d470000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d6929190620002a1565b508060039080519060200190620000ef929190620002a1565b50620001006200014060201b60201c565b6000819055505050620001286200011c6200014560201b60201c565b6200014d60201b60201c565b62000139816200021360201b60201c565b50620005a4565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166200023a6200027760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200025b57600080fd5b806009908051906020019062000273929190620002a1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002af906200056e565b90600052602060002090601f016020900481019282620002d357600085556200031f565b82601f10620002ee57805160ff19168380011785556200031f565b828001600101855582156200031f579182015b828111156200031e57825182559160200191906001019062000301565b5b5090506200032e919062000332565b5090565b5b808211156200034d57600081600090555060010162000333565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003ba826200036f565b810181811067ffffffffffffffff82111715620003dc57620003db62000380565b5b80604052505050565b6000620003f162000351565b9050620003ff8282620003af565b919050565b600067ffffffffffffffff82111562000422576200042162000380565b5b6200042d826200036f565b9050602081019050919050565b60005b838110156200045a5780820151818401526020810190506200043d565b838111156200046a576000848401525b50505050565b600062000487620004818462000404565b620003e5565b905082815260208101848484011115620004a657620004a56200036a565b5b620004b38482856200043a565b509392505050565b600082601f830112620004d357620004d262000365565b5b8151620004e584826020860162000470565b91505092915050565b6000602082840312156200050757620005066200035b565b5b600082015167ffffffffffffffff81111562000528576200052762000360565b5b6200053684828501620004bb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058757607f821691505b602082108114156200059e576200059d6200053f565b5b50919050565b612bef80620005b46000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd1461056f578063e985e9c5146105ac578063f2fde38b146105e9578063f43a22dc146106125761019c565b8063a0712d6814610501578063a22cb4651461051d578063b88d4fde146105465761019c565b8063715018a6116100c6578063715018a61461047d5780637d8966e4146104945780638da5cb5b146104ab57806395d89b41146104d65761019c565b80636352211e146103d85780636817c76c1461041557806370a08231146104405761019c565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461034457806342842e0e1461035b57806355f804b314610384578063564566a8146103ad5761019c565b806323b872dd146102c557806330256048146102ee57806332cb6b0c146103195761019c565b806301ffc9a7146101a157806302ddb65b146101de57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190611f49565b61063d565b6040516101d59190611f91565b60405180910390f35b3480156101ea57600080fd5b506101f36106cf565b6040516102009190611fc5565b60405180910390f35b34801561021557600080fd5b5061021e6106d5565b60405161022b9190612079565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906120c7565b610767565b6040516102689190612135565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061217c565b6107e3565b005b3480156102a657600080fd5b506102af610924565b6040516102bc9190611fc5565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906121bc565b61093b565b005b3480156102fa57600080fd5b50610303610c60565b6040516103109190611fc5565b60405180910390f35b34801561032557600080fd5b5061032e610c65565b60405161033b9190611fc5565b60405180910390f35b34801561035057600080fd5b50610359610c6b565b005b34801561036757600080fd5b50610382600480360381019061037d91906121bc565b610d00565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612344565b610d20565b005b3480156103b957600080fd5b506103c2610d79565b6040516103cf9190611f91565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906120c7565b610d8c565b60405161040c9190612135565b60405180910390f35b34801561042157600080fd5b5061042a610d9e565b6040516104379190611fc5565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061238d565b610da9565b6040516104749190611fc5565b60405180910390f35b34801561048957600080fd5b50610492610e62565b005b3480156104a057600080fd5b506104a9610eea565b005b3480156104b757600080fd5b506104c0610f55565b6040516104cd9190612135565b60405180910390f35b3480156104e257600080fd5b506104eb610f7f565b6040516104f89190612079565b60405180910390f35b61051b600480360381019061051691906120c7565b611011565b005b34801561052957600080fd5b50610544600480360381019061053f91906123e6565b61126d565b005b34801561055257600080fd5b5061056d600480360381019061056891906124c7565b6113e5565b005b34801561057b57600080fd5b50610596600480360381019061059191906120c7565b611458565b6040516105a39190612079565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce919061254a565b6114f7565b6040516105e09190611f91565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b919061238d565b61158b565b005b34801561061e57600080fd5b50610627611683565b6040516106349190611fc5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610d0581565b6060600280546106e4906125b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610710906125b9565b801561075d5780601f106107325761010080835404028352916020019161075d565b820191906000526020600020905b81548152906001019060200180831161074057829003601f168201915b5050505050905090565b600061077282611688565b6107a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ee82610d8c565b90508073ffffffffffffffffffffffffffffffffffffffff1661080f6116e7565b73ffffffffffffffffffffffffffffffffffffffff16146108725761083b816108366116e7565b6114f7565b610871576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061092e6116ef565b6001546000540303905090565b6000610946826116f4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109ad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109b9846117c2565b915091506109cf81876109ca6116e7565b6117e4565b610a1b576109e4866109df6116e7565b6114f7565b610a1a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a82576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a8f8686866001611828565b8015610a9a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b6885610b4488888761182e565b7c020000000000000000000000000000000000000000000000000000000017611856565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bf0576000600185019050600060046000838152602001908152602001600020541415610bee576000548114610bed578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c588686866001611881565b505050505050565b600381565b611a0a81565b3373ffffffffffffffffffffffffffffffffffffffff16610c8a610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610caa57600080fd5b6000479050610cb7610f55565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cfc573d6000803e3d6000fd5b5050565b610d1b838383604051806020016040528060008152506113e5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610d3f610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f57600080fd5b8060099080519060200190610d75929190611e3a565b5050565b600a60009054906101000a900460ff1681565b6000610d97826116f4565b9050919050565b66071afd498d000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e11576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e6a611887565b73ffffffffffffffffffffffffffffffffffffffff16610e88610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590612637565b60405180910390fd5b610ee8600061188f565b565b3373ffffffffffffffffffffffffffffffffffffffff16610f09610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610f2957600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f8e906125b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fba906125b9565b80156110075780601f10610fdc57610100808354040283529160200191611007565b820191906000526020600020905b815481529060010190602001808311610fea57829003601f168201915b5050505050905090565b611a0a61101c610924565b111561105d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611054906126a3565b60405180910390fd5b6000611067610924565b9050611071610f55565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110f357600a60009054906101000a900460ff166110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e99061270f565b60405180910390fd5b5b611a0a8282611102919061275e565b1115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612800565b60405180910390fd5b6014821115611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e9061286c565b60405180910390fd5b610d058282611196919061275e565b11156111f2578166071afd498d00006111af919061288c565b3410156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612932565b60405180910390fd5b5b610d058282611201919061275e565b101561125f5760038261121333610da9565b61121d919061275e565b111561125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906129c4565b60405180910390fd5b5b6112693383611955565b5050565b6112756116e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112da576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112e76116e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113946116e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d99190611f91565b60405180910390a35050565b6113f084848461093b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114525761141b84848484611973565b611451576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061146382611688565b611499576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114a3611ac4565b90506000815114156114c457604051806020016040528060008152506114ef565b806114ce84611b56565b6040516020016114df929190612a20565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611593611887565b73ffffffffffffffffffffffffffffffffffffffff166115b1610f55565b73ffffffffffffffffffffffffffffffffffffffff1614611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90612637565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612ab6565b60405180910390fd5b6116808161188f565b50565b601481565b6000816116936116ef565b111580156116a2575060005482105b80156116e0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117036116ef565b1161178b5760005481101561178a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611788575b600081141561177e576004600083600190039350838152602001908152602001600020549050611753565b80925050506117bd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611845868684611bb0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61196f828260405180602001604052806000815250611bb9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119996116e7565b8786866040518563ffffffff1660e01b81526004016119bb9493929190612b2b565b6020604051808303816000875af19250505080156119f757506040513d601f19601f820116820180604052508101906119f49190612b8c565b60015b611a71573d8060008114611a27576040519150601f19603f3d011682016040523d82523d6000602084013e611a2c565b606091505b50600081511415611a69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611ad3906125b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611aff906125b9565b8015611b4c5780601f10611b2157610100808354040283529160200191611b4c565b820191906000526020600020905b815481529060010190602001808311611b2f57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b9c57600183039250600a81066030018353600a81049050611b7c565b508181036020830392508083525050919050565b60009392505050565b611bc38383611c56565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c5157600080549050600083820390505b611c036000868380600101945086611973565b611c39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bf0578160005414611c4e57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cc3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611cfe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d0b6000848385611828565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d8283611d73600086600061182e565b611d7c85611e2a565b17611856565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611da657806000819055505050611e256000848385611881565b505050565b60006001821460e11b9050919050565b828054611e46906125b9565b90600052602060002090601f016020900481019282611e685760008555611eaf565b82601f10611e8157805160ff1916838001178555611eaf565b82800160010185558215611eaf579182015b82811115611eae578251825591602001919060010190611e93565b5b509050611ebc9190611ec0565b5090565b5b80821115611ed9576000816000905550600101611ec1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f2681611ef1565b8114611f3157600080fd5b50565b600081359050611f4381611f1d565b92915050565b600060208284031215611f5f57611f5e611ee7565b5b6000611f6d84828501611f34565b91505092915050565b60008115159050919050565b611f8b81611f76565b82525050565b6000602082019050611fa66000830184611f82565b92915050565b6000819050919050565b611fbf81611fac565b82525050565b6000602082019050611fda6000830184611fb6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561201a578082015181840152602081019050611fff565b83811115612029576000848401525b50505050565b6000601f19601f8301169050919050565b600061204b82611fe0565b6120558185611feb565b9350612065818560208601611ffc565b61206e8161202f565b840191505092915050565b600060208201905081810360008301526120938184612040565b905092915050565b6120a481611fac565b81146120af57600080fd5b50565b6000813590506120c18161209b565b92915050565b6000602082840312156120dd576120dc611ee7565b5b60006120eb848285016120b2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061211f826120f4565b9050919050565b61212f81612114565b82525050565b600060208201905061214a6000830184612126565b92915050565b61215981612114565b811461216457600080fd5b50565b60008135905061217681612150565b92915050565b6000806040838503121561219357612192611ee7565b5b60006121a185828601612167565b92505060206121b2858286016120b2565b9150509250929050565b6000806000606084860312156121d5576121d4611ee7565b5b60006121e386828701612167565b93505060206121f486828701612167565b9250506040612205868287016120b2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122518261202f565b810181811067ffffffffffffffff821117156122705761226f612219565b5b80604052505050565b6000612283611edd565b905061228f8282612248565b919050565b600067ffffffffffffffff8211156122af576122ae612219565b5b6122b88261202f565b9050602081019050919050565b82818337600083830152505050565b60006122e76122e284612294565b612279565b90508281526020810184848401111561230357612302612214565b5b61230e8482856122c5565b509392505050565b600082601f83011261232b5761232a61220f565b5b813561233b8482602086016122d4565b91505092915050565b60006020828403121561235a57612359611ee7565b5b600082013567ffffffffffffffff81111561237857612377611eec565b5b61238484828501612316565b91505092915050565b6000602082840312156123a3576123a2611ee7565b5b60006123b184828501612167565b91505092915050565b6123c381611f76565b81146123ce57600080fd5b50565b6000813590506123e0816123ba565b92915050565b600080604083850312156123fd576123fc611ee7565b5b600061240b85828601612167565b925050602061241c858286016123d1565b9150509250929050565b600067ffffffffffffffff82111561244157612440612219565b5b61244a8261202f565b9050602081019050919050565b600061246a61246584612426565b612279565b90508281526020810184848401111561248657612485612214565b5b6124918482856122c5565b509392505050565b600082601f8301126124ae576124ad61220f565b5b81356124be848260208601612457565b91505092915050565b600080600080608085870312156124e1576124e0611ee7565b5b60006124ef87828801612167565b945050602061250087828801612167565b9350506040612511878288016120b2565b925050606085013567ffffffffffffffff81111561253257612531611eec565b5b61253e87828801612499565b91505092959194509250565b6000806040838503121561256157612560611ee7565b5b600061256f85828601612167565b925050602061258085828601612167565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125d157607f821691505b602082108114156125e5576125e461258a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612621602083611feb565b915061262c826125eb565b602082019050919050565b6000602082019050818103600083015261265081612614565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b600061268d600f83611feb565b915061269882612657565b602082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006126f9601d83611feb565b9150612704826126c3565b602082019050919050565b60006020820190508181036000830152612728816126ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061276982611fac565b915061277483611fac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127a9576127a861272f565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006127ea601683611feb565b91506127f5826127b4565b602082019050919050565b60006020820190508181036000830152612819816127dd565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612856601e83611feb565b915061286182612820565b602082019050919050565b6000602082019050818103600083015261288581612849565b9050919050565b600061289782611fac565b91506128a283611fac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128db576128da61272f565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b600061291c601d83611feb565b9150612927826128e6565b602082019050919050565b6000602082019050818103600083015261294b8161290f565b9050919050565b7f457863656564732046726565206d6178696d756d20616c6c6f77656420746f6b60008201527f656e73207065722077616c6c6574000000000000000000000000000000000000602082015250565b60006129ae602e83611feb565b91506129b982612952565b604082019050919050565b600060208201905081810360008301526129dd816129a1565b9050919050565b600081905092915050565b60006129fa82611fe0565b612a0481856129e4565b9350612a14818560208601611ffc565b80840191505092915050565b6000612a2c82856129ef565b9150612a3882846129ef565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612aa0602683611feb565b9150612aab82612a44565b604082019050919050565b60006020820190508181036000830152612acf81612a93565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612afd82612ad6565b612b078185612ae1565b9350612b17818560208601611ffc565b612b208161202f565b840191505092915050565b6000608082019050612b406000830187612126565b612b4d6020830186612126565b612b5a6040830185611fb6565b8181036060830152612b6c8184612af2565b905095945050505050565b600081519050612b8681611f1d565b92915050565b600060208284031215612ba257612ba1611ee7565b5b6000612bb084828501612b77565b9150509291505056fea26469706673582212209a2248672d1a9711f6311b73f0f36affe8243692dd063a5c4b8d0fa82e25b98664736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd1461056f578063e985e9c5146105ac578063f2fde38b146105e9578063f43a22dc146106125761019c565b8063a0712d6814610501578063a22cb4651461051d578063b88d4fde146105465761019c565b8063715018a6116100c6578063715018a61461047d5780637d8966e4146104945780638da5cb5b146104ab57806395d89b41146104d65761019c565b80636352211e146103d85780636817c76c1461041557806370a08231146104405761019c565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461034457806342842e0e1461035b57806355f804b314610384578063564566a8146103ad5761019c565b806323b872dd146102c557806330256048146102ee57806332cb6b0c146103195761019c565b806301ffc9a7146101a157806302ddb65b146101de57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190611f49565b61063d565b6040516101d59190611f91565b60405180910390f35b3480156101ea57600080fd5b506101f36106cf565b6040516102009190611fc5565b60405180910390f35b34801561021557600080fd5b5061021e6106d5565b60405161022b9190612079565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906120c7565b610767565b6040516102689190612135565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061217c565b6107e3565b005b3480156102a657600080fd5b506102af610924565b6040516102bc9190611fc5565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906121bc565b61093b565b005b3480156102fa57600080fd5b50610303610c60565b6040516103109190611fc5565b60405180910390f35b34801561032557600080fd5b5061032e610c65565b60405161033b9190611fc5565b60405180910390f35b34801561035057600080fd5b50610359610c6b565b005b34801561036757600080fd5b50610382600480360381019061037d91906121bc565b610d00565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612344565b610d20565b005b3480156103b957600080fd5b506103c2610d79565b6040516103cf9190611f91565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906120c7565b610d8c565b60405161040c9190612135565b60405180910390f35b34801561042157600080fd5b5061042a610d9e565b6040516104379190611fc5565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061238d565b610da9565b6040516104749190611fc5565b60405180910390f35b34801561048957600080fd5b50610492610e62565b005b3480156104a057600080fd5b506104a9610eea565b005b3480156104b757600080fd5b506104c0610f55565b6040516104cd9190612135565b60405180910390f35b3480156104e257600080fd5b506104eb610f7f565b6040516104f89190612079565b60405180910390f35b61051b600480360381019061051691906120c7565b611011565b005b34801561052957600080fd5b50610544600480360381019061053f91906123e6565b61126d565b005b34801561055257600080fd5b5061056d600480360381019061056891906124c7565b6113e5565b005b34801561057b57600080fd5b50610596600480360381019061059191906120c7565b611458565b6040516105a39190612079565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce919061254a565b6114f7565b6040516105e09190611f91565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b919061238d565b61158b565b005b34801561061e57600080fd5b50610627611683565b6040516106349190611fc5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610d0581565b6060600280546106e4906125b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610710906125b9565b801561075d5780601f106107325761010080835404028352916020019161075d565b820191906000526020600020905b81548152906001019060200180831161074057829003601f168201915b5050505050905090565b600061077282611688565b6107a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ee82610d8c565b90508073ffffffffffffffffffffffffffffffffffffffff1661080f6116e7565b73ffffffffffffffffffffffffffffffffffffffff16146108725761083b816108366116e7565b6114f7565b610871576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061092e6116ef565b6001546000540303905090565b6000610946826116f4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109ad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109b9846117c2565b915091506109cf81876109ca6116e7565b6117e4565b610a1b576109e4866109df6116e7565b6114f7565b610a1a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a82576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a8f8686866001611828565b8015610a9a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b6885610b4488888761182e565b7c020000000000000000000000000000000000000000000000000000000017611856565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bf0576000600185019050600060046000838152602001908152602001600020541415610bee576000548114610bed578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c588686866001611881565b505050505050565b600381565b611a0a81565b3373ffffffffffffffffffffffffffffffffffffffff16610c8a610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610caa57600080fd5b6000479050610cb7610f55565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cfc573d6000803e3d6000fd5b5050565b610d1b838383604051806020016040528060008152506113e5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610d3f610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f57600080fd5b8060099080519060200190610d75929190611e3a565b5050565b600a60009054906101000a900460ff1681565b6000610d97826116f4565b9050919050565b66071afd498d000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e11576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e6a611887565b73ffffffffffffffffffffffffffffffffffffffff16610e88610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590612637565b60405180910390fd5b610ee8600061188f565b565b3373ffffffffffffffffffffffffffffffffffffffff16610f09610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610f2957600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f8e906125b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fba906125b9565b80156110075780601f10610fdc57610100808354040283529160200191611007565b820191906000526020600020905b815481529060010190602001808311610fea57829003601f168201915b5050505050905090565b611a0a61101c610924565b111561105d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611054906126a3565b60405180910390fd5b6000611067610924565b9050611071610f55565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110f357600a60009054906101000a900460ff166110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e99061270f565b60405180910390fd5b5b611a0a8282611102919061275e565b1115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612800565b60405180910390fd5b6014821115611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e9061286c565b60405180910390fd5b610d058282611196919061275e565b11156111f2578166071afd498d00006111af919061288c565b3410156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612932565b60405180910390fd5b5b610d058282611201919061275e565b101561125f5760038261121333610da9565b61121d919061275e565b111561125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906129c4565b60405180910390fd5b5b6112693383611955565b5050565b6112756116e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112da576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112e76116e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113946116e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d99190611f91565b60405180910390a35050565b6113f084848461093b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114525761141b84848484611973565b611451576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061146382611688565b611499576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114a3611ac4565b90506000815114156114c457604051806020016040528060008152506114ef565b806114ce84611b56565b6040516020016114df929190612a20565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611593611887565b73ffffffffffffffffffffffffffffffffffffffff166115b1610f55565b73ffffffffffffffffffffffffffffffffffffffff1614611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90612637565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612ab6565b60405180910390fd5b6116808161188f565b50565b601481565b6000816116936116ef565b111580156116a2575060005482105b80156116e0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117036116ef565b1161178b5760005481101561178a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611788575b600081141561177e576004600083600190039350838152602001908152602001600020549050611753565b80925050506117bd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611845868684611bb0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61196f828260405180602001604052806000815250611bb9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119996116e7565b8786866040518563ffffffff1660e01b81526004016119bb9493929190612b2b565b6020604051808303816000875af19250505080156119f757506040513d601f19601f820116820180604052508101906119f49190612b8c565b60015b611a71573d8060008114611a27576040519150601f19603f3d011682016040523d82523d6000602084013e611a2c565b606091505b50600081511415611a69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611ad3906125b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611aff906125b9565b8015611b4c5780601f10611b2157610100808354040283529160200191611b4c565b820191906000526020600020905b815481529060010190602001808311611b2f57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b9c57600183039250600a81066030018353600a81049050611b7c565b508181036020830392508083525050919050565b60009392505050565b611bc38383611c56565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c5157600080549050600083820390505b611c036000868380600101945086611973565b611c39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bf0578160005414611c4e57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cc3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611cfe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d0b6000848385611828565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d8283611d73600086600061182e565b611d7c85611e2a565b17611856565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611da657806000819055505050611e256000848385611881565b505050565b60006001821460e11b9050919050565b828054611e46906125b9565b90600052602060002090601f016020900481019282611e685760008555611eaf565b82601f10611e8157805160ff1916838001178555611eaf565b82800160010185558215611eaf579182015b82811115611eae578251825591602001919060010190611e93565b5b509050611ebc9190611ec0565b5090565b5b80821115611ed9576000816000905550600101611ec1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f2681611ef1565b8114611f3157600080fd5b50565b600081359050611f4381611f1d565b92915050565b600060208284031215611f5f57611f5e611ee7565b5b6000611f6d84828501611f34565b91505092915050565b60008115159050919050565b611f8b81611f76565b82525050565b6000602082019050611fa66000830184611f82565b92915050565b6000819050919050565b611fbf81611fac565b82525050565b6000602082019050611fda6000830184611fb6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561201a578082015181840152602081019050611fff565b83811115612029576000848401525b50505050565b6000601f19601f8301169050919050565b600061204b82611fe0565b6120558185611feb565b9350612065818560208601611ffc565b61206e8161202f565b840191505092915050565b600060208201905081810360008301526120938184612040565b905092915050565b6120a481611fac565b81146120af57600080fd5b50565b6000813590506120c18161209b565b92915050565b6000602082840312156120dd576120dc611ee7565b5b60006120eb848285016120b2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061211f826120f4565b9050919050565b61212f81612114565b82525050565b600060208201905061214a6000830184612126565b92915050565b61215981612114565b811461216457600080fd5b50565b60008135905061217681612150565b92915050565b6000806040838503121561219357612192611ee7565b5b60006121a185828601612167565b92505060206121b2858286016120b2565b9150509250929050565b6000806000606084860312156121d5576121d4611ee7565b5b60006121e386828701612167565b93505060206121f486828701612167565b9250506040612205868287016120b2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122518261202f565b810181811067ffffffffffffffff821117156122705761226f612219565b5b80604052505050565b6000612283611edd565b905061228f8282612248565b919050565b600067ffffffffffffffff8211156122af576122ae612219565b5b6122b88261202f565b9050602081019050919050565b82818337600083830152505050565b60006122e76122e284612294565b612279565b90508281526020810184848401111561230357612302612214565b5b61230e8482856122c5565b509392505050565b600082601f83011261232b5761232a61220f565b5b813561233b8482602086016122d4565b91505092915050565b60006020828403121561235a57612359611ee7565b5b600082013567ffffffffffffffff81111561237857612377611eec565b5b61238484828501612316565b91505092915050565b6000602082840312156123a3576123a2611ee7565b5b60006123b184828501612167565b91505092915050565b6123c381611f76565b81146123ce57600080fd5b50565b6000813590506123e0816123ba565b92915050565b600080604083850312156123fd576123fc611ee7565b5b600061240b85828601612167565b925050602061241c858286016123d1565b9150509250929050565b600067ffffffffffffffff82111561244157612440612219565b5b61244a8261202f565b9050602081019050919050565b600061246a61246584612426565b612279565b90508281526020810184848401111561248657612485612214565b5b6124918482856122c5565b509392505050565b600082601f8301126124ae576124ad61220f565b5b81356124be848260208601612457565b91505092915050565b600080600080608085870312156124e1576124e0611ee7565b5b60006124ef87828801612167565b945050602061250087828801612167565b9350506040612511878288016120b2565b925050606085013567ffffffffffffffff81111561253257612531611eec565b5b61253e87828801612499565b91505092959194509250565b6000806040838503121561256157612560611ee7565b5b600061256f85828601612167565b925050602061258085828601612167565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125d157607f821691505b602082108114156125e5576125e461258a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612621602083611feb565b915061262c826125eb565b602082019050919050565b6000602082019050818103600083015261265081612614565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b600061268d600f83611feb565b915061269882612657565b602082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006126f9601d83611feb565b9150612704826126c3565b602082019050919050565b60006020820190508181036000830152612728816126ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061276982611fac565b915061277483611fac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127a9576127a861272f565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006127ea601683611feb565b91506127f5826127b4565b602082019050919050565b60006020820190508181036000830152612819816127dd565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612856601e83611feb565b915061286182612820565b602082019050919050565b6000602082019050818103600083015261288581612849565b9050919050565b600061289782611fac565b91506128a283611fac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128db576128da61272f565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b600061291c601d83611feb565b9150612927826128e6565b602082019050919050565b6000602082019050818103600083015261294b8161290f565b9050919050565b7f457863656564732046726565206d6178696d756d20616c6c6f77656420746f6b60008201527f656e73207065722077616c6c6574000000000000000000000000000000000000602082015250565b60006129ae602e83611feb565b91506129b982612952565b604082019050919050565b600060208201905081810360008301526129dd816129a1565b9050919050565b600081905092915050565b60006129fa82611fe0565b612a0481856129e4565b9350612a14818560208601611ffc565b80840191505092915050565b6000612a2c82856129ef565b9150612a3882846129ef565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612aa0602683611feb565b9150612aab82612a44565b604082019050919050565b60006020820190508181036000830152612acf81612a93565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612afd82612ad6565b612b078185612ae1565b9350612b17818560208601611ffc565b612b208161202f565b840191505092915050565b6000608082019050612b406000830187612126565b612b4d6020830186612126565b612b5a6040830185611fb6565b8181036060830152612b6c8184612af2565b905095945050505050565b600081519050612b8681611f1d565b92915050565b600060208284031215612ba257612ba1611ee7565b5b6000612bb084828501612b77565b9150509291505056fea26469706673582212209a2248672d1a9711f6311b73f0f36affe8243692dd063a5c4b8d0fa82e25b98664736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48217:1802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18015:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48425:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25156:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17069:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34873:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48476:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48379:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49882:134;;;;;;;;;;;;;:::i;:::-;;26498:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48949:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48290:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23451:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48327:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18694:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;48856:85;;;;;;;;;;;;;:::i;:::-;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23831:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49170:706;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25884:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26754:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24006:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48524:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18015:615;18100:4;18415:10;18400:25;;:11;:25;;;;:102;;;;18492:10;18477:25;;:11;:25;;;;18400:102;:179;;;;18569:10;18554:25;;:11;:25;;;;18400:179;18380:199;;18015:615;;;:::o;48425:46::-;48467:4;48425:46;:::o;23662:100::-;23716:13;23749:5;23742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:100;:::o;25608:204::-;25676:7;25701:16;25709:7;25701;:16::i;:::-;25696:64;;25726:34;;;;;;;;;;;;;;25696:64;25780:15;:24;25796:7;25780:24;;;;;;;;;;;;;;;;;;;;;25773:31;;25608:204;;;:::o;25156:386::-;25229:13;25245:16;25253:7;25245;:16::i;:::-;25229:32;;25301:5;25278:28;;:19;:17;:19::i;:::-;:28;;;25274:175;;25326:44;25343:5;25350:19;:17;:19::i;:::-;25326:16;:44::i;:::-;25321:128;;25398:35;;;;;;;;;;;;;;25321:128;25274:175;25488:2;25461:15;:24;25477:7;25461:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25526:7;25522:2;25506:28;;25515:5;25506:28;;;;;;;;;;;;25218:324;25156:386;;:::o;17069:315::-;17122:7;17350:15;:13;:15::i;:::-;17335:12;;17319:13;;:28;:46;17312:53;;17069:315;:::o;34873:2800::-;35007:27;35037;35056:7;35037:18;:27::i;:::-;35007:57;;35122:4;35081:45;;35097:19;35081:45;;;35077:86;;35135:28;;;;;;;;;;;;;;35077:86;35177:27;35206:23;35233:28;35253:7;35233:19;:28::i;:::-;35176:85;;;;35361:62;35380:15;35397:4;35403:19;:17;:19::i;:::-;35361:18;:62::i;:::-;35356:174;;35443:43;35460:4;35466:19;:17;:19::i;:::-;35443:16;:43::i;:::-;35438:92;;35495:35;;;;;;;;;;;;;;35438:92;35356:174;35561:1;35547:16;;:2;:16;;;35543:52;;;35572:23;;;;;;;;;;;;;;35543:52;35608:43;35630:4;35636:2;35640:7;35649:1;35608:21;:43::i;:::-;35744:15;35741:160;;;35884:1;35863:19;35856:30;35741:160;36279:18;:24;36298:4;36279:24;;;;;;;;;;;;;;;;36277:26;;;;;;;;;;;;36348:18;:22;36367:2;36348:22;;;;;;;;;;;;;;;;36346:24;;;;;;;;;;;36670:145;36707:2;36755:45;36770:4;36776:2;36780:19;36755:14;:45::i;:::-;14297:8;36728:72;36670:18;:145::i;:::-;36641:17;:26;36659:7;36641:26;;;;;;;;;;;:174;;;;36985:1;14297:8;36935:19;:46;:51;36931:626;;;37007:19;37039:1;37029:7;:11;37007:33;;37196:1;37162:17;:30;37180:11;37162:30;;;;;;;;;;;;:35;37158:384;;;37300:13;;37285:11;:28;37281:242;;37480:19;37447:17;:30;37465:11;37447:30;;;;;;;;;;;:52;;;;37281:242;37158:384;36988:569;36931:626;37604:7;37600:2;37585:27;;37594:4;37585:27;;;;;;;;;;;;37623:42;37644:4;37650:2;37654:7;37663:1;37623:20;:42::i;:::-;34996:2677;;;34873:2800;;;:::o;48476:43::-;48518:1;48476:43;:::o;48379:41::-;48416:4;48379:41;:::o;49882:134::-;48825:10;48814:21;;:7;:5;:7::i;:::-;:21;;;48806:30;;;;;;49933:12:::1;49948:21;49933:36;;49984:7;:5;:7::i;:::-;49976:25;;:34;50002:7;49976:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49926:90;49882:134::o:0;26498:185::-;26636:39;26653:4;26659:2;26663:7;26636:39;;;;;;;;;;;;:16;:39::i;:::-;26498:185;;;:::o;48949:101::-;48825:10;48814:21;;:7;:5;:7::i;:::-;:21;;;48806:30;;;;;;49037:7:::1;49021:13;:23;;;;;;;;;;;;:::i;:::-;;48949:101:::0;:::o;48290:32::-;;;;;;;;;;;;;:::o;23451:144::-;23515:7;23558:27;23577:7;23558:18;:27::i;:::-;23535:52;;23451:144;;;:::o;48327:47::-;48363:11;48327:47;:::o;18694:224::-;18758:7;18799:1;18782:19;;:5;:19;;;18778:60;;;18810:28;;;;;;;;;;;;;;18778:60;13249:13;18856:18;:25;18875:5;18856:25;;;;;;;;;;;;;;;;:54;18849:61;;18694:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;48856:85::-;48825:10;48814:21;;:7;:5;:7::i;:::-;:21;;;48806:30;;;;;;48923:12:::1;;;;;;;;;;;48922:13;48907:12;;:28;;;;;;;;;;;;;;;;;;48856:85::o:0;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;23831:104::-;23887:13;23920:7;23913:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23831:104;:::o;49170:706::-;48416:4;48706:13;:11;:13::i;:::-;:27;;48698:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49233:17:::1;49253:13;:11;:13::i;:::-;49233:33;;49293:7;:5;:7::i;:::-;49279:21;;:10;:21;;;49275:98;;49319:12;;;;;;;;;;;49311:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49275:98;48416:4;49401:6;49389:9;:18;;;;:::i;:::-;:32;;49381:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;48561:2;49463:6;:20;;49455:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48467:4;49541:6;49529:9;:18;;;;:::i;:::-;:36;49526:131;;;49609:6;48363:11;49597:18;;;;:::i;:::-;49584:9;:31;;49576:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49526:131;48467:4;49680:6;49668:9;:18;;;;:::i;:::-;:36;49665:166;;;48518:1;49747:6;49723:21;49733:10;49723:9;:21::i;:::-;:30;;;;:::i;:::-;:49;;49715:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;49665:166;49839:29;49849:10;49861:6;49839:9;:29::i;:::-;49226:650;49170:706:::0;:::o;25884:308::-;25995:19;:17;:19::i;:::-;25983:31;;:8;:31;;;25979:61;;;26023:17;;;;;;;;;;;;;;25979:61;26105:8;26053:18;:39;26072:19;:17;:19::i;:::-;26053:39;;;;;;;;;;;;;;;:49;26093:8;26053:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26165:8;26129:55;;26144:19;:17;:19::i;:::-;26129:55;;;26175:8;26129:55;;;;;;:::i;:::-;;;;;;;;25884:308;;:::o;26754:399::-;26921:31;26934:4;26940:2;26944:7;26921:12;:31::i;:::-;26985:1;26967:2;:14;;;:19;26963:183;;27006:56;27037:4;27043:2;27047:7;27056:5;27006:30;:56::i;:::-;27001:145;;27090:40;;;;;;;;;;;;;;27001:145;26963:183;26754:399;;;;:::o;24006:318::-;24079:13;24110:16;24118:7;24110;:16::i;:::-;24105:59;;24135:29;;;;;;;;;;;;;;24105:59;24177:21;24201:10;:8;:10::i;:::-;24177:34;;24254:1;24235:7;24229:21;:26;;:87;;;;;;;;;;;;;;;;;24282:7;24291:18;24301:7;24291:9;:18::i;:::-;24265:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24229:87;24222:94;;;24006:318;;;:::o;26263:164::-;26360:4;26384:18;:25;26403:5;26384:25;;;;;;;;;;;;;;;:35;26410:8;26384:35;;;;;;;;;;;;;;;;;;;;;;;;;26377:42;;26263:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;48524:39::-;48561:2;48524:39;:::o;27408:273::-;27465:4;27521:7;27502:15;:13;:15::i;:::-;:26;;:66;;;;;27555:13;;27545:7;:23;27502:66;:152;;;;;27653:1;14019:8;27606:17;:26;27624:7;27606:26;;;;;;;;;;;;:43;:48;27502:152;27482:172;;27408:273;;;:::o;45969:105::-;46029:7;46056:10;46049:17;;45969:105;:::o;16593:92::-;16649:7;16593:92;:::o;20368:1129::-;20435:7;20455:12;20470:7;20455:22;;20538:4;20519:15;:13;:15::i;:::-;:23;20515:915;;20572:13;;20565:4;:20;20561:869;;;20610:14;20627:17;:23;20645:4;20627:23;;;;;;;;;;;;20610:40;;20743:1;14019:8;20716:6;:23;:28;20712:699;;;21235:113;21252:1;21242:6;:11;21235:113;;;21295:17;:25;21313:6;;;;;;;21295:25;;;;;;;;;;;;21286:34;;21235:113;;;21381:6;21374:13;;;;;;20712:699;20587:843;20561:869;20515:915;21458:31;;;;;;;;;;;;;;20368:1129;;;;:::o;33209:652::-;33304:27;33333:23;33374:53;33430:15;33374:71;;33616:7;33610:4;33603:21;33651:22;33645:4;33638:36;33727:4;33721;33711:21;33688:44;;33823:19;33817:26;33798:45;;33554:300;33209:652;;;:::o;33974:645::-;34116:11;34278:15;34272:4;34268:26;34260:34;;34437:15;34426:9;34422:31;34409:44;;34584:15;34573:9;34570:30;34563:4;34552:9;34549:19;34546:55;34536:65;;33974:645;;;;;:::o;44802:159::-;;;;;:::o;43114:309::-;43249:7;43269:16;14420:3;43295:19;:40;;43269:67;;14420:3;43362:31;43373:4;43379:2;43383:9;43362:10;:31::i;:::-;43354:40;;:61;;43347:68;;;43114:309;;;;;:::o;22942:447::-;23022:14;23190:15;23183:5;23179:27;23170:36;;23364:5;23350:11;23326:22;23322:40;23319:51;23312:5;23309:62;23299:72;;22942:447;;;;:::o;45620:158::-;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;27765:104::-;27834:27;27844:2;27848:8;27834:27;;;;;;;;;;;;:9;:27::i;:::-;27765:104;;:::o;41624:716::-;41787:4;41833:2;41808:45;;;41854:19;:17;:19::i;:::-;41875:4;41881:7;41890:5;41808:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41804:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42108:1;42091:6;:13;:18;42087:235;;;42137:40;;;;;;;;;;;;;;42087:235;42280:6;42274:13;42265:6;42261:2;42257:15;42250:38;41804:529;41977:54;;;41967:64;;;:6;:64;;;;41960:71;;;41624:716;;;;;;:::o;49056:108::-;49116:13;49145;49138:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49056:108;:::o;46180:1960::-;46237:17;46656:3;46649:4;46643:11;46639:21;46632:28;;46747:3;46741:4;46734:17;46853:3;47309:5;47439:1;47434:3;47430:11;47423:18;;47576:2;47570:4;47566:13;47562:2;47558:22;47553:3;47545:36;47617:2;47611:4;47607:13;47599:21;;47201:697;47636:4;47201:697;;;47827:1;47822:3;47818:11;47811:18;;47878:2;47872:4;47868:13;47864:2;47860:22;47855:3;47847:36;47731:2;47725:4;47721:13;47713:21;;47201:697;;;47205:430;47937:3;47932;47928:13;48052:2;48047:3;48043:12;48036:19;;48115:6;48110:3;48103:19;46276:1857;;46180:1960;;;:::o;43999:147::-;44136:6;43999:147;;;;;:::o;28285:681::-;28408:19;28414:2;28418:8;28408:5;:19::i;:::-;28487:1;28469:2;:14;;;:19;28465:483;;28509:11;28523:13;;28509:27;;28555:13;28577:8;28571:3;:14;28555:30;;28604:233;28635:62;28674:1;28678:2;28682:7;;;;;;28691:5;28635:30;:62::i;:::-;28630:167;;28733:40;;;;;;;;;;;;;;28630:167;28832:3;28824:5;:11;28604:233;;28919:3;28902:13;;:20;28898:34;;28924:8;;;28898:34;28490:458;;28465:483;28285:681;;;:::o;29239:1529::-;29304:20;29327:13;;29304:36;;29369:1;29355:16;;:2;:16;;;29351:48;;;29380:19;;;;;;;;;;;;;;29351:48;29426:1;29414:8;:13;29410:44;;;29436:18;;;;;;;;;;;;;;29410:44;29467:61;29497:1;29501:2;29505:12;29519:8;29467:21;:61::i;:::-;30010:1;13386:2;29981:1;:25;;29980:31;29968:8;:44;29942:18;:22;29961:2;29942:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30289:139;30326:2;30380:33;30403:1;30407:2;30411:1;30380:14;:33::i;:::-;30347:30;30368:8;30347:20;:30::i;:::-;:66;30289:18;:139::i;:::-;30255:17;:31;30273:12;30255:31;;;;;;;;;;;:173;;;;30445:15;30463:12;30445:30;;30490:11;30519:8;30504:12;:23;30490:37;;30542:101;30594:9;;;;;;30590:2;30569:35;;30586:1;30569:35;;;;;;;;;;;;30638:3;30628:7;:13;30542:101;;30675:3;30659:13;:19;;;;29716:974;;30700:60;30729:1;30733:2;30737:12;30751:8;30700:20;:60::i;:::-;29293:1475;29239:1529;;:::o;24772:322::-;24842:14;25073:1;25063:8;25060:15;25035:23;25031:45;25021:55;;24772:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:165::-;13758:17;13754:1;13746:6;13742:14;13735:41;13618:165;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:419::-;14327:4;14365:2;14354:9;14350:18;14342:26;;14414:9;14408:4;14404:20;14400:1;14389:9;14385:17;14378:47;14442:131;14568:4;14442:131;:::i;:::-;14434:139;;14161:419;;;:::o;14586:179::-;14726:31;14722:1;14714:6;14710:14;14703:55;14586:179;:::o;14771:366::-;14913:3;14934:67;14998:2;14993:3;14934:67;:::i;:::-;14927:74;;15010:93;15099:3;15010:93;:::i;:::-;15128:2;15123:3;15119:12;15112:19;;14771:366;;;:::o;15143:419::-;15309:4;15347:2;15336:9;15332:18;15324:26;;15396:9;15390:4;15386:20;15382:1;15371:9;15367:17;15360:47;15424:131;15550:4;15424:131;:::i;:::-;15416:139;;15143:419;;;:::o;15568:180::-;15616:77;15613:1;15606:88;15713:4;15710:1;15703:15;15737:4;15734:1;15727:15;15754:305;15794:3;15813:20;15831:1;15813:20;:::i;:::-;15808:25;;15847:20;15865:1;15847:20;:::i;:::-;15842:25;;16001:1;15933:66;15929:74;15926:1;15923:81;15920:107;;;16007:18;;:::i;:::-;15920:107;16051:1;16048;16044:9;16037:16;;15754:305;;;;:::o;16065:172::-;16205:24;16201:1;16193:6;16189:14;16182:48;16065:172;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o;17040:180::-;17180:32;17176:1;17168:6;17164:14;17157:56;17040:180;:::o;17226:366::-;17368:3;17389:67;17453:2;17448:3;17389:67;:::i;:::-;17382:74;;17465:93;17554:3;17465:93;:::i;:::-;17583:2;17578:3;17574:12;17567:19;;17226:366;;;:::o;17598:419::-;17764:4;17802:2;17791:9;17787:18;17779:26;;17851:9;17845:4;17841:20;17837:1;17826:9;17822:17;17815:47;17879:131;18005:4;17879:131;:::i;:::-;17871:139;;17598:419;;;:::o;18023:348::-;18063:7;18086:20;18104:1;18086:20;:::i;:::-;18081:25;;18120:20;18138:1;18120:20;:::i;:::-;18115:25;;18308:1;18240:66;18236:74;18233:1;18230:81;18225:1;18218:9;18211:17;18207:105;18204:131;;;18315:18;;:::i;:::-;18204:131;18363:1;18360;18356:9;18345:20;;18023:348;;;;:::o;18377:179::-;18517:31;18513:1;18505:6;18501:14;18494:55;18377:179;:::o;18562:366::-;18704:3;18725:67;18789:2;18784:3;18725:67;:::i;:::-;18718:74;;18801:93;18890:3;18801:93;:::i;:::-;18919:2;18914:3;18910:12;18903:19;;18562:366;;;:::o;18934:419::-;19100:4;19138:2;19127:9;19123:18;19115:26;;19187:9;19181:4;19177:20;19173:1;19162:9;19158:17;19151:47;19215:131;19341:4;19215:131;:::i;:::-;19207:139;;18934:419;;;:::o;19359:233::-;19499:34;19495:1;19487:6;19483:14;19476:58;19568:16;19563:2;19555:6;19551:15;19544:41;19359:233;:::o;19598:366::-;19740:3;19761:67;19825:2;19820:3;19761:67;:::i;:::-;19754:74;;19837:93;19926:3;19837:93;:::i;:::-;19955:2;19950:3;19946:12;19939:19;;19598:366;;;:::o;19970:419::-;20136:4;20174:2;20163:9;20159:18;20151:26;;20223:9;20217:4;20213:20;20209:1;20198:9;20194:17;20187:47;20251:131;20377:4;20251:131;:::i;:::-;20243:139;;19970:419;;;:::o;20395:148::-;20497:11;20534:3;20519:18;;20395:148;;;;:::o;20549:377::-;20655:3;20683:39;20716:5;20683:39;:::i;:::-;20738:89;20820:6;20815:3;20738:89;:::i;:::-;20731:96;;20836:52;20881:6;20876:3;20869:4;20862:5;20858:16;20836:52;:::i;:::-;20913:6;20908:3;20904:16;20897:23;;20659:267;20549:377;;;;:::o;20932:435::-;21112:3;21134:95;21225:3;21216:6;21134:95;:::i;:::-;21127:102;;21246:95;21337:3;21328:6;21246:95;:::i;:::-;21239:102;;21358:3;21351:10;;20932:435;;;;;:::o;21373:225::-;21513:34;21509:1;21501:6;21497:14;21490:58;21582:8;21577:2;21569:6;21565:15;21558:33;21373:225;:::o;21604:366::-;21746:3;21767:67;21831:2;21826:3;21767:67;:::i;:::-;21760:74;;21843:93;21932:3;21843:93;:::i;:::-;21961:2;21956:3;21952:12;21945:19;;21604:366;;;:::o;21976:419::-;22142:4;22180:2;22169:9;22165:18;22157:26;;22229:9;22223:4;22219:20;22215:1;22204:9;22200:17;22193:47;22257:131;22383:4;22257:131;:::i;:::-;22249:139;;21976:419;;;:::o;22401:98::-;22452:6;22486:5;22480:12;22470:22;;22401:98;;;:::o;22505:168::-;22588:11;22622:6;22617:3;22610:19;22662:4;22657:3;22653:14;22638:29;;22505:168;;;;:::o;22679:360::-;22765:3;22793:38;22825:5;22793:38;:::i;:::-;22847:70;22910:6;22905:3;22847:70;:::i;:::-;22840:77;;22926:52;22971:6;22966:3;22959:4;22952:5;22948:16;22926:52;:::i;:::-;23003:29;23025:6;23003:29;:::i;:::-;22998:3;22994:39;22987:46;;22769:270;22679:360;;;;:::o;23045:640::-;23240:4;23278:3;23267:9;23263:19;23255:27;;23292:71;23360:1;23349:9;23345:17;23336:6;23292:71;:::i;:::-;23373:72;23441:2;23430:9;23426:18;23417:6;23373:72;:::i;:::-;23455;23523:2;23512:9;23508:18;23499:6;23455:72;:::i;:::-;23574:9;23568:4;23564:20;23559:2;23548:9;23544:18;23537:48;23602:76;23673:4;23664:6;23602:76;:::i;:::-;23594:84;;23045:640;;;;;;;:::o;23691:141::-;23747:5;23778:6;23772:13;23763:22;;23794:32;23820:5;23794:32;:::i;:::-;23691:141;;;;:::o;23838:349::-;23907:6;23956:2;23944:9;23935:7;23931:23;23927:32;23924:119;;;23962:79;;:::i;:::-;23924:119;24082:1;24107:63;24162:7;24153:6;24142:9;24138:22;24107:63;:::i;:::-;24097:73;;24053:127;23838:349;;;;:::o

Swarm Source

ipfs://9a2248672d1a9711f6311b73f0f36affe8243692dd063a5c4b8d0fa82e25b986
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.