ETH Price: $3,395.67 (-1.18%)
Gas: 1 Gwei

Token

KARTOONWRLD (KARTOON)
 

Overview

Max Total Supply

5,000 KARTOON

Holders

502

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 KARTOON
0xaf4d5fbf87ec03b7bcfe50fdcbd4149a758e55b6
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:
KARTOONWRLD

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.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 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`
    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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            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;
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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 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: nft.sol



pragma solidity ^0.8.13;



contract KARTOONWRLD is Ownable, ERC721A {
    /*uint256 public maxSupply                    = 5000;
    uint256 public maxFreeSupply                = 5000;
    
    uint256 public maxPerTxDuringMint           = 10;
    uint256 public maxPerAddressDuringMint      = 100;
    uint256 public maxPerAddressDuringFreeMint  = 2;
    
    uint256 public price                        = 0.002 ether;*/
    uint256 public MAX_SUPPLY                    = 5000;
    uint256 public MAX_FREE_SUPPLY                = 5000;
    
    uint256 public maxPerTxDuringMint           = 10;
    uint256 public maxPerAddressDuringMint      = 100;
    uint256 public MAX_FREE_MINT  = 2;
    
    uint256 public PRICE                        = 0.002 ether;
    bool    public saleIsActive                 = false;

    address constant internal TEAM_ADDRESS = 0x7EFcb0C4438d96EB9a99D9483792fF5f81022D11;

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("KARTOONWRLD", "KARTOON") {
        _safeMint(msg.sender, 10);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Wrong Caller");
        _;
    }

    function PAID_MINT(uint256 _quantity) external payable mintCompliance() {
        require(
            msg.value >= PRICE * _quantity,
            "GDZ: Insufficient Fund."
        );
        require(
            MAX_SUPPLY >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "GDZ: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function FREE_MINT(uint256 _quantity) external mintCompliance() {
        require(
            MAX_FREE_SUPPLY >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= MAX_FREE_MINT,
            "GDZ: Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

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

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        MAX_FREE_MINT = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            MAX_SUPPLY - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        MAX_SUPPLY -= _amount;
    }

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

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

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"FREE_MINT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PAID_MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PRICE","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":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","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":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526113886009819055600a908155600b556064600c556002600d5566071afd498d0000600e55600f805460ff191690553480156200004057600080fd5b506040518060400160405280600b81526020016a12d0549513d3d395d4931160aa1b8152506040518060400160405280600781526020016625a0a92a27a7a760c91b8152506200009f62000099620000e560201b60201c565b620000e9565b8151620000b4906003906020850190620003bf565b508051620000ca906004906020840190620003bf565b5050600060015550620000df33600a62000139565b6200054f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200015b8282604051806020016040528060008152506200015f60201b60201c565b5050565b6001546001600160a01b0384166200018957604051622e076360e81b815260040160405180910390fd5b82600003620001ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b1562000277575b60405182906001600160a01b03881690600090600080516020620021dc833981519152908290a460018201916200023c90600090889087620002cb565b6200025a576040516368d2bf6b60e11b815260040160405180910390fd5b808210620001ff5782600154146200027157600080fd5b620002ac565b5b6040516001830192906001600160a01b03881690600090600080516020620021dc833981519152908290a480821062000278575b50600155620002c560008583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200030290339089908890889060040162000465565b6020604051808303816000875af192505050801562000340575060408051601f3d908101601f191682019092526200033d91810190620004e0565b60015b620003a2573d80801562000371576040519150601f19603f3d011682016040523d82523d6000602084013e62000376565b606091505b5080516000036200039a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620003cd9062000513565b90600052602060002090601f016020900481019282620003f157600085556200043c565b82601f106200040c57805160ff19168380011785556200043c565b828001600101855582156200043c579182015b828111156200043c5782518255916020019190600101906200041f565b506200044a9291506200044e565b5090565b5b808211156200044a57600081556001016200044f565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620004b45785810182015185820160a00152810162000496565b82811115620004c757600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620004f357600080fd5b81516001600160e01b0319811681146200050c57600080fd5b9392505050565b600181811c908216806200052857607f821691505b6020821081036200054957634e487b7160e01b600052602260045260246000fd5b50919050565b611c7d806200055f6000396000f3fe60806040526004361061020f5760003560e01c80637ba5e62111610118578063b88d4fde116100a0578063d3464cbd1161006f578063d3464cbd146105bf578063e985e9c5146105d5578063eb8d24441461061e578063f2fde38b14610638578063fbbf8cc31461065857600080fd5b8063b88d4fde1461053f578063bbb643191461055f578063c6f6f2161461057f578063c87b56dd1461059f57600080fd5b80638da5cb5b116100e75780638da5cb5b1461049f57806391b7f5ed146104bd57806395d89b41146104dd57806396b10201146104f2578063a22cb4651461051f57600080fd5b80637ba5e6211461043e5780637bddd65b146104535780638bc35c2f146104735780638d859f3e1461048957600080fd5b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146103c15780635fd8c710146103e15780636352211e146103e957806370a0823114610409578063715018a61461042957600080fd5b806332cb6b0c146103555780633af3265b1461036b57806341cda2031461038b57806342842e0e146103a157600080fd5b8063081812fc116101e2578063081812fc146102a4578063095ea7b3146102dc5780631141df20146102fc57806318160ddd1461031c57806323b872dd1461033557600080fd5b806301ffc9a71461021457806302ddb65b1461024957806306e7c99d1461026d57806306fdde0314610282575b600080fd5b34801561022057600080fd5b5061023461022f3660046117da565b610685565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025f600a5481565b604051908152602001610240565b61028061027b3660046117f7565b6106d7565b005b34801561028e57600080fd5b5061029761091e565b6040516102409190611868565b3480156102b057600080fd5b506102c46102bf3660046117f7565b6109b0565b6040516001600160a01b039091168152602001610240565b3480156102e857600080fd5b506102806102f7366004611897565b6109f4565b34801561030857600080fd5b506102806103173660046117f7565b610ac6565b34801561032857600080fd5b506002546001540361025f565b34801561034157600080fd5b506102806103503660046118c1565b610b7d565b34801561036157600080fd5b5061025f60095481565b34801561037757600080fd5b506102806103863660046117f7565b610b8d565b34801561039757600080fd5b5061025f600d5481565b3480156103ad57600080fd5b506102806103bc3660046118c1565b610d1e565b3480156103cd57600080fd5b506102806103dc3660046118fd565b610d39565b610280610d6f565b3480156103f557600080fd5b506102c46104043660046117f7565b610e3b565b34801561041557600080fd5b5061025f61042436600461196f565b610e46565b34801561043557600080fd5b50610280610e95565b34801561044a57600080fd5b50610280610ecb565b34801561045f57600080fd5b5061028061046e3660046117f7565b610f09565b34801561047f57600080fd5b5061025f600c5481565b34801561049557600080fd5b5061025f600e5481565b3480156104ab57600080fd5b506000546001600160a01b03166102c4565b3480156104c957600080fd5b506102806104d83660046117f7565b610f38565b3480156104e957600080fd5b50610297610f67565b3480156104fe57600080fd5b5061025f61050d36600461196f565b60116020526000908152604090205481565b34801561052b57600080fd5b5061028061053a36600461198a565b610f76565b34801561054b57600080fd5b5061028061055a3660046119dc565b61100b565b34801561056b57600080fd5b5061028061057a3660046117f7565b611055565b34801561058b57600080fd5b5061028061059a3660046117f7565b611084565b3480156105ab57600080fd5b506102976105ba3660046117f7565b6110b3565b3480156105cb57600080fd5b5061025f600b5481565b3480156105e157600080fd5b506102346105f0366004611ab8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062a57600080fd5b50600f546102349060ff1681565b34801561064457600080fd5b5061028061065336600461196f565b611137565b34801561066457600080fd5b5061025f61067336600461196f565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b0319831614806106b657506380ac58cd60e01b6001600160e01b03198316145b806106d15750635b5e139f60e01b6001600160e01b03198316145b92915050565b600f5460ff166107285760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064015b60405180910390fd5b3233146107665760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b604482015260640161071f565b80600e546107749190611b01565b3410156107c35760405162461bcd60e51b815260206004820152601760248201527f47445a3a20496e73756666696369656e742046756e642e000000000000000000604482015260640161071f565b806107d16002546001540390565b6107db9190611b20565b60095410156108275760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b604482015260640161071f565b33600090815260126020526040902054600c546108448383611b20565b111561089e5760405162461bcd60e51b815260206004820152602360248201527f47445a3a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b606482015260840161071f565b6000821180156108b05750600b548211155b6108f35760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b604482015260640161071f565b6108fd8282611b20565b3360008181526012602052604090209190915561091a90836111cf565b5050565b60606003805461092d90611b38565b80601f016020809104026020016040519081016040528092919081815260200182805461095990611b38565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b5050505050905090565b60006109bb826111e9565b6109d8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109ff82611211565b9050806001600160a01b0316836001600160a01b031603610a335760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a6a57610a4d81336105f0565b610a6a576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610af05760405162461bcd60e51b815260040161071f90611b72565b6002546001540381600954610b059190611ba7565b1015610b635760405162461bcd60e51b815260206004820152602760248201527f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e746564206044820152663a37b5b2b7399760c91b606482015260840161071f565b8060096000828254610b759190611ba7565b909155505050565b610b88838383611278565b505050565b600f5460ff16610bd95760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b604482015260640161071f565b323314610c175760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b604482015260640161071f565b80610c256002546001540390565b610c2f9190611b20565b600a541015610c7b5760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b604482015260640161071f565b33600090815260116020526040902054600d54610c988383611b20565b1115610cf75760405162461bcd60e51b815260206004820152602860248201527f47445a3a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b606482015260840161071f565b610d018282611b20565b3360008181526011602052604090209190915561091a90836111cf565b610b888383836040518060200160405280600081525061100b565b6000546001600160a01b03163314610d635760405162461bcd60e51b815260040161071f90611b72565b610b886010838361172b565b6000546001600160a01b03163314610d995760405162461bcd60e51b815260040161071f90611b72565b604051600090737efcb0c4438d96eb9a99d9483792ff5f81022d119047908381818185875af1925050503d8060008114610def576040519150601f19603f3d011682016040523d82523d6000602084013e610df4565b606091505b5050905080610e385760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b604482015260640161071f565b50565b60006106d182611211565b60006001600160a01b038216610e6f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610ebf5760405162461bcd60e51b815260040161071f90611b72565b610ec9600061141f565b565b6000546001600160a01b03163314610ef55760405162461bcd60e51b815260040161071f90611b72565b600f805460ff19811660ff90911615179055565b6000546001600160a01b03163314610f335760405162461bcd60e51b815260040161071f90611b72565b600c55565b6000546001600160a01b03163314610f625760405162461bcd60e51b815260040161071f90611b72565b600e55565b60606004805461092d90611b38565b336001600160a01b03831603610f9f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611016848484611278565b6001600160a01b0383163b1561104f576110328484848461146f565b61104f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331461107f5760405162461bcd60e51b815260040161071f90611b72565b600d55565b6000546001600160a01b031633146110ae5760405162461bcd60e51b815260040161071f90611b72565b600b55565b60606110be826111e9565b6110db57604051630a14c4b560e41b815260040160405180910390fd5b60006110e561155a565b905080516000036111055760405180602001604052806000815250611130565b8061110f84611569565b604051602001611120929190611bbe565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111615760405162461bcd60e51b815260040161071f90611b72565b6001600160a01b0381166111c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071f565b610e388161141f565b61091a8282604051806020016040528060008152506115b8565b6000600154821080156106d1575050600090815260056020526040902054600160e01b161590565b60008160015481101561125f5760008181526005602052604081205490600160e01b8216900361125d575b8060000361113057506000190160008181526005602052604090205461123c565b505b604051636f96cda160e11b815260040160405180910390fd5b600061128382611211565b9050836001600160a01b0316816001600160a01b0316146112b65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112d457506112d485336105f0565b806112ef5750336112e4846109b0565b6001600160a01b0316145b90508061130f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661133657604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b87178117909155831690036113d7576001830160008181526005602052604081205490036113d55760015481146113d55760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114a4903390899088908890600401611bed565b6020604051808303816000875af19250505080156114df575060408051601f3d908101601f191682019092526114dc91810190611c2a565b60015b61153d573d80801561150d576040519150601f19603f3d011682016040523d82523d6000602084013e611512565b606091505b508051600003611535576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606010805461092d90611b38565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115a657600183039250600a81066030018353600a9004611588565b50819003601f19909101908152919050565b6001546001600160a01b0384166115e157604051622e076360e81b815260040160405180910390fd5b826000036116025760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156116d7575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116a0600087848060010195508761146f565b6116bd576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116555782600154146116d257600080fd5b61171c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116d8575b5060015561104f600085838684565b82805461173790611b38565b90600052602060002090601f016020900481019282611759576000855561179f565b82601f106117725782800160ff1982351617855561179f565b8280016001018555821561179f579182015b8281111561179f578235825591602001919060010190611784565b506117ab9291506117af565b5090565b5b808211156117ab57600081556001016117b0565b6001600160e01b031981168114610e3857600080fd5b6000602082840312156117ec57600080fd5b8135611130816117c4565b60006020828403121561180957600080fd5b5035919050565b60005b8381101561182b578181015183820152602001611813565b8381111561104f5750506000910152565b60008151808452611854816020860160208601611810565b601f01601f19169290920160200192915050565b602081526000611130602083018461183c565b80356001600160a01b038116811461189257600080fd5b919050565b600080604083850312156118aa57600080fd5b6118b38361187b565b946020939093013593505050565b6000806000606084860312156118d657600080fd5b6118df8461187b565b92506118ed6020850161187b565b9150604084013590509250925092565b6000806020838503121561191057600080fd5b823567ffffffffffffffff8082111561192857600080fd5b818501915085601f83011261193c57600080fd5b81358181111561194b57600080fd5b86602082850101111561195d57600080fd5b60209290920196919550909350505050565b60006020828403121561198157600080fd5b6111308261187b565b6000806040838503121561199d57600080fd5b6119a68361187b565b9150602083013580151581146119bb57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119f257600080fd5b6119fb8561187b565b9350611a096020860161187b565b925060408501359150606085013567ffffffffffffffff80821115611a2d57600080fd5b818701915087601f830112611a4157600080fd5b813581811115611a5357611a536119c6565b604051601f8201601f19908116603f01168101908382118183101715611a7b57611a7b6119c6565b816040528281528a6020848701011115611a9457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611acb57600080fd5b611ad48361187b565b9150611ae26020840161187b565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b1b57611b1b611aeb565b500290565b60008219821115611b3357611b33611aeb565b500190565b600181811c90821680611b4c57607f821691505b602082108103611b6c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015611bb957611bb9611aeb565b500390565b60008351611bd0818460208801611810565b835190830190611be4818360208801611810565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c209083018461183c565b9695505050505050565b600060208284031215611c3c57600080fd5b8151611130816117c456fea26469706673582212204b4a760968bce9ffeb983968b43022bcfbf1489f279aa247c907961ada09533a64736f6c634300080d0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637ba5e62111610118578063b88d4fde116100a0578063d3464cbd1161006f578063d3464cbd146105bf578063e985e9c5146105d5578063eb8d24441461061e578063f2fde38b14610638578063fbbf8cc31461065857600080fd5b8063b88d4fde1461053f578063bbb643191461055f578063c6f6f2161461057f578063c87b56dd1461059f57600080fd5b80638da5cb5b116100e75780638da5cb5b1461049f57806391b7f5ed146104bd57806395d89b41146104dd57806396b10201146104f2578063a22cb4651461051f57600080fd5b80637ba5e6211461043e5780637bddd65b146104535780638bc35c2f146104735780638d859f3e1461048957600080fd5b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146103c15780635fd8c710146103e15780636352211e146103e957806370a0823114610409578063715018a61461042957600080fd5b806332cb6b0c146103555780633af3265b1461036b57806341cda2031461038b57806342842e0e146103a157600080fd5b8063081812fc116101e2578063081812fc146102a4578063095ea7b3146102dc5780631141df20146102fc57806318160ddd1461031c57806323b872dd1461033557600080fd5b806301ffc9a71461021457806302ddb65b1461024957806306e7c99d1461026d57806306fdde0314610282575b600080fd5b34801561022057600080fd5b5061023461022f3660046117da565b610685565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025f600a5481565b604051908152602001610240565b61028061027b3660046117f7565b6106d7565b005b34801561028e57600080fd5b5061029761091e565b6040516102409190611868565b3480156102b057600080fd5b506102c46102bf3660046117f7565b6109b0565b6040516001600160a01b039091168152602001610240565b3480156102e857600080fd5b506102806102f7366004611897565b6109f4565b34801561030857600080fd5b506102806103173660046117f7565b610ac6565b34801561032857600080fd5b506002546001540361025f565b34801561034157600080fd5b506102806103503660046118c1565b610b7d565b34801561036157600080fd5b5061025f60095481565b34801561037757600080fd5b506102806103863660046117f7565b610b8d565b34801561039757600080fd5b5061025f600d5481565b3480156103ad57600080fd5b506102806103bc3660046118c1565b610d1e565b3480156103cd57600080fd5b506102806103dc3660046118fd565b610d39565b610280610d6f565b3480156103f557600080fd5b506102c46104043660046117f7565b610e3b565b34801561041557600080fd5b5061025f61042436600461196f565b610e46565b34801561043557600080fd5b50610280610e95565b34801561044a57600080fd5b50610280610ecb565b34801561045f57600080fd5b5061028061046e3660046117f7565b610f09565b34801561047f57600080fd5b5061025f600c5481565b34801561049557600080fd5b5061025f600e5481565b3480156104ab57600080fd5b506000546001600160a01b03166102c4565b3480156104c957600080fd5b506102806104d83660046117f7565b610f38565b3480156104e957600080fd5b50610297610f67565b3480156104fe57600080fd5b5061025f61050d36600461196f565b60116020526000908152604090205481565b34801561052b57600080fd5b5061028061053a36600461198a565b610f76565b34801561054b57600080fd5b5061028061055a3660046119dc565b61100b565b34801561056b57600080fd5b5061028061057a3660046117f7565b611055565b34801561058b57600080fd5b5061028061059a3660046117f7565b611084565b3480156105ab57600080fd5b506102976105ba3660046117f7565b6110b3565b3480156105cb57600080fd5b5061025f600b5481565b3480156105e157600080fd5b506102346105f0366004611ab8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062a57600080fd5b50600f546102349060ff1681565b34801561064457600080fd5b5061028061065336600461196f565b611137565b34801561066457600080fd5b5061025f61067336600461196f565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b0319831614806106b657506380ac58cd60e01b6001600160e01b03198316145b806106d15750635b5e139f60e01b6001600160e01b03198316145b92915050565b600f5460ff166107285760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064015b60405180910390fd5b3233146107665760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b604482015260640161071f565b80600e546107749190611b01565b3410156107c35760405162461bcd60e51b815260206004820152601760248201527f47445a3a20496e73756666696369656e742046756e642e000000000000000000604482015260640161071f565b806107d16002546001540390565b6107db9190611b20565b60095410156108275760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b604482015260640161071f565b33600090815260126020526040902054600c546108448383611b20565b111561089e5760405162461bcd60e51b815260206004820152602360248201527f47445a3a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b606482015260840161071f565b6000821180156108b05750600b548211155b6108f35760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b604482015260640161071f565b6108fd8282611b20565b3360008181526012602052604090209190915561091a90836111cf565b5050565b60606003805461092d90611b38565b80601f016020809104026020016040519081016040528092919081815260200182805461095990611b38565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b5050505050905090565b60006109bb826111e9565b6109d8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109ff82611211565b9050806001600160a01b0316836001600160a01b031603610a335760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a6a57610a4d81336105f0565b610a6a576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610af05760405162461bcd60e51b815260040161071f90611b72565b6002546001540381600954610b059190611ba7565b1015610b635760405162461bcd60e51b815260206004820152602760248201527f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e746564206044820152663a37b5b2b7399760c91b606482015260840161071f565b8060096000828254610b759190611ba7565b909155505050565b610b88838383611278565b505050565b600f5460ff16610bd95760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b604482015260640161071f565b323314610c175760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b604482015260640161071f565b80610c256002546001540390565b610c2f9190611b20565b600a541015610c7b5760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b604482015260640161071f565b33600090815260116020526040902054600d54610c988383611b20565b1115610cf75760405162461bcd60e51b815260206004820152602860248201527f47445a3a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b606482015260840161071f565b610d018282611b20565b3360008181526011602052604090209190915561091a90836111cf565b610b888383836040518060200160405280600081525061100b565b6000546001600160a01b03163314610d635760405162461bcd60e51b815260040161071f90611b72565b610b886010838361172b565b6000546001600160a01b03163314610d995760405162461bcd60e51b815260040161071f90611b72565b604051600090737efcb0c4438d96eb9a99d9483792ff5f81022d119047908381818185875af1925050503d8060008114610def576040519150601f19603f3d011682016040523d82523d6000602084013e610df4565b606091505b5050905080610e385760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b604482015260640161071f565b50565b60006106d182611211565b60006001600160a01b038216610e6f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610ebf5760405162461bcd60e51b815260040161071f90611b72565b610ec9600061141f565b565b6000546001600160a01b03163314610ef55760405162461bcd60e51b815260040161071f90611b72565b600f805460ff19811660ff90911615179055565b6000546001600160a01b03163314610f335760405162461bcd60e51b815260040161071f90611b72565b600c55565b6000546001600160a01b03163314610f625760405162461bcd60e51b815260040161071f90611b72565b600e55565b60606004805461092d90611b38565b336001600160a01b03831603610f9f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611016848484611278565b6001600160a01b0383163b1561104f576110328484848461146f565b61104f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331461107f5760405162461bcd60e51b815260040161071f90611b72565b600d55565b6000546001600160a01b031633146110ae5760405162461bcd60e51b815260040161071f90611b72565b600b55565b60606110be826111e9565b6110db57604051630a14c4b560e41b815260040160405180910390fd5b60006110e561155a565b905080516000036111055760405180602001604052806000815250611130565b8061110f84611569565b604051602001611120929190611bbe565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111615760405162461bcd60e51b815260040161071f90611b72565b6001600160a01b0381166111c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071f565b610e388161141f565b61091a8282604051806020016040528060008152506115b8565b6000600154821080156106d1575050600090815260056020526040902054600160e01b161590565b60008160015481101561125f5760008181526005602052604081205490600160e01b8216900361125d575b8060000361113057506000190160008181526005602052604090205461123c565b505b604051636f96cda160e11b815260040160405180910390fd5b600061128382611211565b9050836001600160a01b0316816001600160a01b0316146112b65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112d457506112d485336105f0565b806112ef5750336112e4846109b0565b6001600160a01b0316145b90508061130f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661133657604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b87178117909155831690036113d7576001830160008181526005602052604081205490036113d55760015481146113d55760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114a4903390899088908890600401611bed565b6020604051808303816000875af19250505080156114df575060408051601f3d908101601f191682019092526114dc91810190611c2a565b60015b61153d573d80801561150d576040519150601f19603f3d011682016040523d82523d6000602084013e611512565b606091505b508051600003611535576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606010805461092d90611b38565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115a657600183039250600a81066030018353600a9004611588565b50819003601f19909101908152919050565b6001546001600160a01b0384166115e157604051622e076360e81b815260040160405180910390fd5b826000036116025760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156116d7575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116a0600087848060010195508761146f565b6116bd576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116555782600154146116d257600080fd5b61171c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116d8575b5060015561104f600085838684565b82805461173790611b38565b90600052602060002090601f016020900481019282611759576000855561179f565b82601f106117725782800160ff1982351617855561179f565b8280016001018555821561179f579182015b8281111561179f578235825591602001919060010190611784565b506117ab9291506117af565b5090565b5b808211156117ab57600081556001016117b0565b6001600160e01b031981168114610e3857600080fd5b6000602082840312156117ec57600080fd5b8135611130816117c4565b60006020828403121561180957600080fd5b5035919050565b60005b8381101561182b578181015183820152602001611813565b8381111561104f5750506000910152565b60008151808452611854816020860160208601611810565b601f01601f19169290920160200192915050565b602081526000611130602083018461183c565b80356001600160a01b038116811461189257600080fd5b919050565b600080604083850312156118aa57600080fd5b6118b38361187b565b946020939093013593505050565b6000806000606084860312156118d657600080fd5b6118df8461187b565b92506118ed6020850161187b565b9150604084013590509250925092565b6000806020838503121561191057600080fd5b823567ffffffffffffffff8082111561192857600080fd5b818501915085601f83011261193c57600080fd5b81358181111561194b57600080fd5b86602082850101111561195d57600080fd5b60209290920196919550909350505050565b60006020828403121561198157600080fd5b6111308261187b565b6000806040838503121561199d57600080fd5b6119a68361187b565b9150602083013580151581146119bb57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119f257600080fd5b6119fb8561187b565b9350611a096020860161187b565b925060408501359150606085013567ffffffffffffffff80821115611a2d57600080fd5b818701915087601f830112611a4157600080fd5b813581811115611a5357611a536119c6565b604051601f8201601f19908116603f01168101908382118183101715611a7b57611a7b6119c6565b816040528281528a6020848701011115611a9457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611acb57600080fd5b611ad48361187b565b9150611ae26020840161187b565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b1b57611b1b611aeb565b500290565b60008219821115611b3357611b33611aeb565b500190565b600181811c90821680611b4c57607f821691505b602082108103611b6c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015611bb957611bb9611aeb565b500390565b60008351611bd0818460208801611810565b835190830190611be4818360208801611810565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c209083018461183c565b9695505050505050565b600060208284031215611c3c57600080fd5b8151611130816117c456fea26469706673582212204b4a760968bce9ffeb983968b43022bcfbf1489f279aa247c907961ada09533a64736f6c634300080d0033

Deployed Bytecode Sourcemap

41826:3873:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16496:615;;;;;;;;;;-1:-1:-1;16496:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16496:615:0;;;;;;;;42291:52;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;42291:52:0;592:177:1;43152:760:0;;;;;;:::i;:::-;;:::i;:::-;;21509:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23577:204::-;;;;;;;;;;-1:-1:-1;23577:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;23577:204:0;1710:203:1;23037:474:0;;;;;;;;;;-1:-1:-1;23037:474:0;;;;;:::i;:::-;;:::i;44993:234::-;;;;;;;;;;-1:-1:-1;44993:234:0;;;;;:::i;:::-;;:::i;15550:315::-;;;;;;;;;;-1:-1:-1;15816:12:0;;15800:13;;:28;15550:315;;24463:170;;;;;;;;;;-1:-1:-1;24463:170:0;;;;;:::i;:::-;;:::i;42233:51::-;;;;;;;;;;;;;;;;43920:529;;;;;;;;;;-1:-1:-1;43920:529:0;;;;;:::i;:::-;;:::i;42467:33::-;;;;;;;;;;;;;;;;24704:185;;;;;;;;;;-1:-1:-1;24704:185:0;;;;;:::i;:::-;;:::i;45235:106::-;;;;;;;;;;-1:-1:-1;45235:106:0;;;;;:::i;:::-;;:::i;45471:225::-;;;:::i;21298:144::-;;;;;;;;;;-1:-1:-1;21298:144:0;;;;;:::i;:::-;;:::i;17175:224::-;;;;;;;;;;-1:-1:-1;17175:224:0;;;;;:::i;:::-;;:::i;2606:103::-;;;;;;;;;;;;;:::i;44901:84::-;;;;;;;;;;;;;:::i;44663:114::-;;;;;;;;;;-1:-1:-1;44663:114:0;;;;;:::i;:::-;;:::i;42411:49::-;;;;;;;;;;;;;;;;42513:57;;;;;;;;;;;;;;;;1955:87;;;;;;;;;;-1:-1:-1;2001:7:0;2028:6;-1:-1:-1;;;;;2028:6:0;1955:87;;44457:86;;;;;;;;;;-1:-1:-1;44457:86:0;;;;;:::i;:::-;;:::i;21678:104::-;;;;;;;;;;;;;:::i;42766:51::-;;;;;;;;;;-1:-1:-1;42766:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;23853:308;;;;;;;;;;-1:-1:-1;23853:308:0;;;;;:::i;:::-;;:::i;24960:396::-;;;;;;;;;;-1:-1:-1;24960:396:0;;;;;:::i;:::-;;:::i;44785:108::-;;;;;;;;;;-1:-1:-1;44785:108:0;;;;;:::i;:::-;;:::i;44551:104::-;;;;;;;;;;-1:-1:-1;44551:104:0;;;;;:::i;:::-;;:::i;21853:318::-;;;;;;;;;;-1:-1:-1;21853:318:0;;;;;:::i;:::-;;:::i;42356:48::-;;;;;;;;;;;;;;;;24232:164;;;;;;;;;;-1:-1:-1;24232:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24353:25:0;;;24329:4;24353:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24232:164;42577:51;;;;;;;;;;-1:-1:-1;42577:51:0;;;;;;;;2864:201;;;;;;;;;;-1:-1:-1;2864:201:0;;;;;:::i;:::-;;:::i;42824:47::-;;;;;;;;;;-1:-1:-1;42824:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;16496:615;16581:4;-1:-1:-1;;;;;;;;;16881:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16958:25:0;;;16881:102;:179;;;-1:-1:-1;;;;;;;;;;17035:25:0;;;16881:179;16861:199;16496:615;-1:-1:-1;;16496:615:0:o;43152:760::-;43025:12;;;;43017:48;;;;-1:-1:-1;;;43017:48:0;;5570:2:1;43017:48:0;;;5552:21:1;5609:2;5589:18;;;5582:30;-1:-1:-1;;;5628:18:1;;;5621:53;5691:18;;43017:48:0;;;;;;;;;43084:9;43097:10;43084:23;43076:48;;;;-1:-1:-1;;;43076:48:0;;5922:2:1;43076:48:0;;;5904:21:1;5961:2;5941:18;;;5934:30;-1:-1:-1;;;5980:18:1;;;5973:42;6032:18;;43076:48:0;5720:336:1;43076:48:0;43278:9:::1;43270:5;;:17;;;;:::i;:::-;43257:9;:30;;43235:103;;;::::0;-1:-1:-1;;;43235:103:0;;6568:2:1;43235:103:0::1;::::0;::::1;6550:21:1::0;6607:2;6587:18;;;6580:30;6646:25;6626:18;;;6619:53;6689:18;;43235:103:0::1;6366:347:1::0;43235:103:0::1;43401:9;43385:13;15816:12:::0;;15800:13;;:28;;15550:315;43385:13:::1;:25;;;;:::i;:::-;43371:10;;:39;;43349:113;;;::::0;-1:-1:-1;;;43349:113:0;;7053:2:1;43349:113:0::1;::::0;::::1;7035:21:1::0;7092:2;7072:18;;;7065:30;-1:-1:-1;;;7111:18:1;;;7104:54;7175:18;;43349:113:0::1;6851:348:1::0;43349:113:0::1;43510:10;43473:21;43497:24:::0;;;:12:::1;:24;::::0;;;;;43583:23:::1;::::0;43554:25:::1;43570:9:::0;43497:24;43554:25:::1;:::i;:::-;:52;;43532:137;;;::::0;-1:-1:-1;;;43532:137:0;;7406:2:1;43532:137:0::1;::::0;::::1;7388:21:1::0;7445:2;7425:18;;;7418:30;7484:34;7464:18;;;7457:62;-1:-1:-1;;;7535:18:1;;;7528:33;7578:19;;43532:137:0::1;7204:399:1::0;43532:137:0::1;43714:1;43702:9;:13;:48;;;;;43732:18;;43719:9;:31;;43702:48;43680:118;;;::::0;-1:-1:-1;;;43680:118:0;;7810:2:1;43680:118:0::1;::::0;::::1;7792:21:1::0;7849:2;7829:18;;;7822:30;-1:-1:-1;;;7868:18:1;;;7861:50;7928:18;;43680:118:0::1;7608:344:1::0;43680:118:0::1;43836:25;43852:9:::0;43836:13;:25:::1;:::i;:::-;43822:10;43809:24;::::0;;;:12:::1;:24;::::0;;;;:52;;;;43872:32:::1;::::0;43894:9;43872::::1;:32::i;:::-;43224:688;43152:760:::0;:::o;21509:100::-;21563:13;21596:5;21589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21509:100;:::o;23577:204::-;23645:7;23670:16;23678:7;23670;:16::i;:::-;23665:64;;23695:34;;-1:-1:-1;;;23695:34:0;;;;;;;;;;;23665:64;-1:-1:-1;23749:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23749:24:0;;23577:204::o;23037:474::-;23110:13;23142:27;23161:7;23142:18;:27::i;:::-;23110:61;;23192:5;-1:-1:-1;;;;;23186:11:0;:2;-1:-1:-1;;;;;23186:11:0;;23182:48;;23206:24;;-1:-1:-1;;;23206:24:0;;;;;;;;;;;23182:48;39680:10;-1:-1:-1;;;;;23247:28:0;;;23243:175;;23295:44;23312:5;39680:10;24232:164;:::i;23295:44::-;23290:128;;23367:35;;-1:-1:-1;;;23367:35:0;;;;;;;;;;;23290:128;23430:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23430:29:0;-1:-1:-1;;;;;23430:29:0;;;;;;;;;23475:28;;23430:24;;23475:28;;;;;;;23099:412;23037:474;;:::o;44993:234::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;15816:12;;15800:13;;:28;45095:7:::1;45082:10;;:20;;;;:::i;:::-;:37;;45060:127;;;::::0;-1:-1:-1;;;45060:127:0;;9035:2:1;45060:127:0::1;::::0;::::1;9017:21:1::0;9074:2;9054:18;;;9047:30;9113:34;9093:18;;;9086:62;-1:-1:-1;;;9164:18:1;;;9157:37;9211:19;;45060:127:0::1;8833:403:1::0;45060:127:0::1;45212:7;45198:10;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;44993:234:0:o;24463:170::-;24597:28;24607:4;24613:2;24617:7;24597:9;:28::i;:::-;24463:170;;;:::o;43920:529::-;43025:12;;;;43017:48;;;;-1:-1:-1;;;43017:48:0;;5570:2:1;43017:48:0;;;5552:21:1;5609:2;5589:18;;;5582:30;-1:-1:-1;;;5628:18:1;;;5621:53;5691:18;;43017:48:0;5368:347:1;43017:48:0;43084:9;43097:10;43084:23;43076:48;;;;-1:-1:-1;;;43076:48:0;;5922:2:1;43076:48:0;;;5904:21:1;5961:2;5941:18;;;5934:30;-1:-1:-1;;;5980:18:1;;;5973:42;6032:18;;43076:48:0;5720:336:1;43076:48:0;44052:9:::1;44036:13;15816:12:::0;;15800:13;;:28;;15550:315;44036:13:::1;:25;;;;:::i;:::-;44017:15;;:44;;43995:118;;;::::0;-1:-1:-1;;;43995:118:0;;7053:2:1;43995:118:0::1;::::0;::::1;7035:21:1::0;7092:2;7072:18;;;7065:30;-1:-1:-1;;;7111:18:1;;;7104:54;7175:18;;43995:118:0::1;6851:348:1::0;43995:118:0::1;44169:10;44124:25;44152:28:::0;;;:16:::1;:28;::::0;;;;;44246:13:::1;::::0;44213:29:::1;44233:9:::0;44152:28;44213:29:::1;:::i;:::-;:46;;44191:136;;;::::0;-1:-1:-1;;;44191:136:0;;9443:2:1;44191:136:0::1;::::0;::::1;9425:21:1::0;9482:2;9462:18;;;9455:30;9521:34;9501:18;;;9494:62;-1:-1:-1;;;9572:18:1;;;9565:38;9620:19;;44191:136:0::1;9241:404:1::0;44191:136:0::1;44369:29;44389:9:::0;44369:17;:29:::1;:::i;:::-;44355:10;44338:28;::::0;;;:16:::1;:28;::::0;;;;:60;;;;44409:32:::1;::::0;44431:9;44409::::1;:32::i;24704:185::-:0;24842:39;24859:4;24865:2;24869:7;24842:39;;;;;;;;;;;;:16;:39::i;45235:106::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;45310:23:::1;:13;45326:7:::0;;45310:23:::1;:::i;45471:225::-:0;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;45557:84:::1;::::0;45539:12:::1;::::0;42678:42:::1;::::0;45605:21:::1;::::0;45539:12;45557:84;45539:12;45557:84;45605:21;42678:42;45557:84:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45538:103;;;45660:7;45652:36;;;::::0;-1:-1:-1;;;45652:36:0;;10062:2:1;45652:36:0::1;::::0;::::1;10044:21:1::0;10101:2;10081:18;;;10074:30;-1:-1:-1;;;10120:18:1;;;10113:46;10176:18;;45652:36:0::1;9860:340:1::0;45652:36:0::1;45525:171;45471:225::o:0;21298:144::-;21362:7;21405:27;21424:7;21405:18;:27::i;17175:224::-;17239:7;-1:-1:-1;;;;;17263:19:0;;17259:60;;17291:28;;-1:-1:-1;;;17291:28:0;;;;;;;;;;;17259:60;-1:-1:-1;;;;;;17337:25:0;;;;;:18;:25;;;;;;12514:13;17337:54;;17175:224::o;2606:103::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;44901:84::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44965:12:::1;::::0;;-1:-1:-1;;44949:28:0;::::1;44965:12;::::0;;::::1;44964:13;44949:28;::::0;;44901:84::o;44663:114::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44736:23:::1;:33:::0;44663:114::o;44457:86::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44521:5:::1;:14:::0;44457:86::o;21678:104::-;21734:13;21767:7;21760:14;;;;;:::i;23853:308::-;39680:10;-1:-1:-1;;;;;23952:31:0;;;23948:61;;23992:17;;-1:-1:-1;;;23992:17:0;;;;;;;;;;;23948:61;39680:10;24022:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24022:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24022:60:0;;;;;;;;;;24098:55;;540:41:1;;;24022:49:0;;39680:10;24098:55;;513:18:1;24098:55:0;;;;;;;23853:308;;:::o;24960:396::-;25127:28;25137:4;25143:2;25147:7;25127:9;:28::i;:::-;-1:-1:-1;;;;;25170:14:0;;;:19;25166:183;;25209:56;25240:4;25246:2;25250:7;25259:5;25209:30;:56::i;:::-;25204:145;;25293:40;;-1:-1:-1;;;25293:40:0;;;;;;;;;;;25204:145;24960:396;;;;:::o;44785:108::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44862:13:::1;:23:::0;44785:108::o;44551:104::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44619:18:::1;:28:::0;44551:104::o;21853:318::-;21926:13;21957:16;21965:7;21957;:16::i;:::-;21952:59;;21982:29;;-1:-1:-1;;;21982:29:0;;;;;;;;;;;21952:59;22024:21;22048:10;:8;:10::i;:::-;22024:34;;22082:7;22076:21;22101:1;22076:26;:87;;;;;;;;;;;;;;;;;22129:7;22138:18;22148:7;22138:9;:18::i;:::-;22112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22076:87;22069:94;21853:318;-1:-1:-1;;;21853:318:0:o;2864:201::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;10882:2:1;2945:73:0::1;::::0;::::1;10864:21:1::0;10921:2;10901:18;;;10894:30;10960:34;10940:18;;;10933:62;-1:-1:-1;;;11011:18:1;;;11004:36;11057:19;;2945:73:0::1;10680:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;25968:104::-:0;26037:27;26047:2;26051:8;26037:27;;;;;;;;;;;;:9;:27::i;25611:273::-;25668:4;25758:13;;25748:7;:23;25705:152;;;;-1:-1:-1;;25809:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25809:43:0;:48;;25611:273::o;18813:1129::-;18880:7;18915;19017:13;;19010:4;:20;19006:869;;;19055:14;19072:23;;;:17;:23;;;;;;;-1:-1:-1;;;19161:23:0;;:28;;19157:699;;19680:113;19687:6;19697:1;19687:11;19680:113;;-1:-1:-1;;;19758:6:0;19740:25;;;;:17;:25;;;;;;19680:113;;19157:699;19032:843;19006:869;19903:31;;-1:-1:-1;;;19903:31:0;;;;;;;;;;;30850:2515;30965:27;30995;31014:7;30995:18;:27::i;:::-;30965:57;;31080:4;-1:-1:-1;;;;;31039:45:0;31055:19;-1:-1:-1;;;;;31039:45:0;;31035:86;;31093:28;;-1:-1:-1;;;31093:28:0;;;;;;;;;;;31035:86;31134:22;39680:10;-1:-1:-1;;;;;31160:27:0;;;;:87;;-1:-1:-1;31204:43:0;31221:4;39680:10;24232:164;:::i;31204:43::-;31160:147;;;-1:-1:-1;39680:10:0;31264:20;31276:7;31264:11;:20::i;:::-;-1:-1:-1;;;;;31264:43:0;;31160:147;31134:174;;31326:17;31321:66;;31352:35;;-1:-1:-1;;;31352:35:0;;;;;;;;;;;31321:66;-1:-1:-1;;;;;31402:16:0;;31398:52;;31427:23;;-1:-1:-1;;;31427:23:0;;;;;;;;;;;31398:52;31579:24;;;;:15;:24;;;;;;;;31572:31;;-1:-1:-1;;;;;;31572:31:0;;;-1:-1:-1;;;;;31971:24:0;;;;;:18;:24;;;;;31969:26;;-1:-1:-1;;31969:26:0;;;32040:22;;;;;;;32038:24;;-1:-1:-1;32038:24:0;;;32333:26;;;:17;:26;;;;;-1:-1:-1;;;32421:15:0;13168:3;32421:41;32379:84;;:128;;32333:174;;;32627:46;;:51;;32623:626;;32731:1;32721:11;;32699:19;32854:30;;;:17;:30;;;;;;:35;;32850:384;;32992:13;;32977:11;:28;32973:242;;33139:30;;;;:17;:30;;;;;:52;;;32973:242;32680:569;32623:626;33296:7;33292:2;-1:-1:-1;;;;;33277:27:0;33286:4;-1:-1:-1;;;;;33277:27:0;;;;;;;;;;;30954:2411;;30850:2515;;;:::o;3225:191::-;3299:16;3318:6;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;3368:40;;3318:6;;;;;;;3368:40;;3299:16;3368:40;3288:128;3225:191;:::o;37062:716::-;37246:88;;-1:-1:-1;;;37246:88:0;;37225:4;;-1:-1:-1;;;;;37246:45:0;;;;;:88;;39680:10;;37313:4;;37319:7;;37328:5;;37246:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37246:88:0;;;;;;;;-1:-1:-1;;37246:88:0;;;;;;;;;;;;:::i;:::-;;;37242:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37529:6;:13;37546:1;37529:18;37525:235;;37575:40;;-1:-1:-1;;;37575:40:0;;;;;;;;;;;37525:235;37718:6;37712:13;37703:6;37699:2;37695:15;37688:38;37242:529;-1:-1:-1;;;;;;37405:64:0;-1:-1:-1;;;37405:64:0;;-1:-1:-1;37062:716:0;;;;;;:::o;45349:114::-;45409:13;45442;45435:20;;;;;:::i;39804:1959::-;40275:4;40269:11;;40282:3;40265:21;;40360:17;;;;41057:11;;;40936:5;41189:2;41203;41193:13;;41185:22;41057:11;41172:36;41244:2;41234:13;;40827:682;41263:4;40827:682;;;41438:1;41433:3;41429:11;41422:18;;41489:2;41483:4;41479:13;41475:2;41471:22;41466:3;41458:36;41359:2;41349:13;;40827:682;;;-1:-1:-1;41551:13:0;;;-1:-1:-1;;41666:12:0;;;41726:19;;;41666:12;39804:1959;-1:-1:-1;39804:1959:0:o;26445:2236::-;26591:13;;-1:-1:-1;;;;;26619:16:0;;26615:48;;26644:19;;-1:-1:-1;;;26644:19:0;;;;;;;;;;;26615:48;26678:8;26690:1;26678:13;26674:44;;26700:18;;-1:-1:-1;;;26700:18:0;;;;;;;;;;;26674:44;-1:-1:-1;;;;;27267:22:0;;;;;;:18;:22;;;;12651:2;27267:22;;;:70;;27305:31;27293:44;;27267:70;;;27580:31;;;:17;:31;;;;;27673:15;13168:3;27673:41;27631:84;;-1:-1:-1;27751:13:0;;13431:3;27736:56;27631:162;27580:213;;:31;;27874:23;;;;27918:14;:19;27914:635;;27958:313;27989:38;;28014:12;;-1:-1:-1;;;;;27989:38:0;;;28006:1;;27989:38;;28006:1;;27989:38;28055:69;28094:1;28098:2;28102:14;;;;;;28118:5;28055:30;:69::i;:::-;28050:174;;28160:40;;-1:-1:-1;;;28160:40:0;;;;;;;;;;;28050:174;28266:3;28251:12;:18;27958:313;;28352:12;28335:13;;:29;28331:43;;28366:8;;;28331:43;27914:635;;;28415:119;28446:40;;28471:14;;;;;-1:-1:-1;;;;;28446:40:0;;;28463:1;;28446:40;;28463:1;;28446:40;28529:3;28514:12;:18;28415:119;;27914:635;-1:-1:-1;28563:13:0;:28;28613:60;28642:1;28646:2;28650:12;28664:8;28613:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:180::-;833:6;886:2;874:9;865:7;861:23;857:32;854:52;;;902:1;899;892:12;854:52;-1:-1:-1;925:23:1;;774:180;-1:-1:-1;774:180:1:o;959:258::-;1031:1;1041:113;1055:6;1052:1;1049:13;1041:113;;;1131:11;;;1125:18;1112:11;;;1105:39;1077:2;1070:10;1041:113;;;1172:6;1169:1;1166:13;1163:48;;;-1:-1:-1;;1207:1:1;1189:16;;1182:27;959:258::o;1222:::-;1264:3;1302:5;1296:12;1329:6;1324:3;1317:19;1345:63;1401:6;1394:4;1389:3;1385:14;1378:4;1371:5;1367:16;1345:63;:::i;:::-;1462:2;1441:15;-1:-1:-1;;1437:29:1;1428:39;;;;1469:4;1424:50;;1222:258;-1:-1:-1;;1222:258:1:o;1485:220::-;1634:2;1623:9;1616:21;1597:4;1654:45;1695:2;1684:9;1680:18;1672:6;1654:45;:::i;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;6061:127::-;6122:10;6117:3;6113:20;6110:1;6103:31;6153:4;6150:1;6143:15;6177:4;6174:1;6167:15;6193:168;6233:7;6299:1;6295;6291:6;6287:14;6284:1;6281:21;6276:1;6269:9;6262:17;6258:45;6255:71;;;6306:18;;:::i;:::-;-1:-1:-1;6346:9:1;;6193:168::o;6718:128::-;6758:3;6789:1;6785:6;6782:1;6779:13;6776:39;;;6795:18;;:::i;:::-;-1:-1:-1;6831:9:1;;6718:128::o;7957:380::-;8036:1;8032:12;;;;8079;;;8100:61;;8154:4;8146:6;8142:17;8132:27;;8100:61;8207:2;8199:6;8196:14;8176:18;8173:38;8170:161;;8253:10;8248:3;8244:20;8241:1;8234:31;8288:4;8285:1;8278:15;8316:4;8313:1;8306:15;8170:161;;7957:380;;;:::o;8342:356::-;8544:2;8526:21;;;8563:18;;;8556:30;8622:34;8617:2;8602:18;;8595:62;8689:2;8674:18;;8342:356::o;8703:125::-;8743:4;8771:1;8768;8765:8;8762:34;;;8776:18;;:::i;:::-;-1:-1:-1;8813:9:1;;8703:125::o;10205:470::-;10384:3;10422:6;10416:13;10438:53;10484:6;10479:3;10472:4;10464:6;10460:17;10438:53;:::i;:::-;10554:13;;10513:16;;;;10576:57;10554:13;10513:16;10610:4;10598:17;;10576:57;:::i;:::-;10649:20;;10205:470;-1:-1:-1;;;;10205:470:1:o;11087:489::-;-1:-1:-1;;;;;11356:15:1;;;11338:34;;11408:15;;11403:2;11388:18;;11381:43;11455:2;11440:18;;11433:34;;;11503:3;11498:2;11483:18;;11476:31;;;11281:4;;11524:46;;11550:19;;11542:6;11524:46;:::i;:::-;11516:54;11087:489;-1:-1:-1;;;;;;11087:489:1:o;11581:249::-;11650:6;11703:2;11691:9;11682:7;11678:23;11674:32;11671:52;;;11719:1;11716;11709:12;11671:52;11751:9;11745:16;11770:30;11794:5;11770:30;:::i

Swarm Source

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