ETH Price: $2,269.19 (+2.36%)

Token

Cats Pixels (CTY)
 

Overview

Max Total Supply

1,083 CTY

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pimoon.eth
Balance
3 CTY
0x1459f68dcbfd75d9a8d99962d0d5d4a56544dcd9
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:
CatPixelsNFT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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




pragma solidity ^0.8.0;

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

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

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

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

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




pragma solidity ^0.8.0;



contract CatPixelsNFT is ERC721A, Ownable {
	using Strings for uint;

	uint public constant MINT_PRICE = 0.005 ether;
	uint public constant MAX_NFT_PER_TRAN = 5;
  uint public constant MAX_PER_WALLET = 10;
	uint public maxSupply = 1111;

	bool public isPaused = true;
  bool public isMetadataFinal;
  string private _baseURL = "ipfs://QmVJnCeTDJaz5QEZsBYPGVy6jJ2bnscfv9sHK7Nk8YFByz/";
	string public prerevealURL = '';
	mapping(address => uint) private _walletMintedCount;

	constructor()
    // Name
	ERC721A('Cats Pixels', 'CTY') {
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

	function setPause(bool value) external onlyOwner {
		isPaused = value;
	}

	function withdraw() external onlyOwner {
		(bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
	}

	function devMint(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

	function setMaxSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

	function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : prerevealURL;
	}

	function mint(uint count) external payable {
		require(!isPaused, 'Sales are off');
		require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');
        if(_totalMinted() > 800)
		  require(msg.value >= count * MINT_PRICE,'Ether value sent is not sufficient');
		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PER_TRAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","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":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610457600955600a805460ff1916600117905560e0604052603660808181529062001e4960a039600b90620000359082620001d3565b50604080516020810190915260008152600c90620000549082620001d3565b503480156200006257600080fd5b506040518060400160405280600b81526020016a4361747320506978656c7360a81b8152506040518060400160405280600381526020016243545960e81b8152508160029081620000b49190620001d3565b506003620000c38282620001d3565b5050600160005550620000d633620000dc565b6200029f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015957607f821691505b6020821081036200017a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ce57600081815260208120601f850160051c81016020861015620001a95750805b601f850160051c820191505b81811015620001ca57828155600101620001b5565b5050505b505050565b81516001600160401b03811115620001ef57620001ef6200012e565b620002078162000200845462000144565b8462000180565b602080601f8311600181146200023f5760008415620002265750858301515b600019600386901b1c1916600185901b178555620001ca565b600085815260208120601f198616915b8281101562000270578886015182559484019460019091019084016200024f565b50858210156200028f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b9a80620002af6000396000f3fe6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d48514610548578063e985e9c514610569578063f2fde38b146105b2578063f4a560a5146105d2578063fddcb5ea146105e757600080fd5b8063c87b56dd146104e8578063d5abeb0114610508578063d82104821461051e578063e193e7e21461053357600080fd5b8063b187bd26116100dc578063b187bd2614610473578063b88d4fde1461048d578063bedb86fb146104ad578063c002d23d146104cd57600080fd5b80638da5cb5b1461040d57806395d89b411461042b578063a0712d6814610440578063a22cb4651461045357600080fd5b80633ccfd60b116101855780636352211e116101545780636352211e146103985780636f8b44b0146103b857806370a08231146103d8578063715018a6146103f857600080fd5b80633ccfd60b1461032357806342842e0e146103385780634c26124714610358578063627804af1461037857600080fd5b80630de76de4116101c15780630de76de4146102a45780630f2cdd6c146102c357806318160ddd146102e657806323b872dd1461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046115a3565b61061d565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61066f565b60405161021f9190611618565b34801561025657600080fd5b5061026a61026536600461162b565b610701565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611660565b610745565b005b3480156102b057600080fd5b50600a5461021390610100900460ff1681565b3480156102cf57600080fd5b506102d8600a81565b60405190815260200161021f565b3480156102f257600080fd5b5060015460005403600019016102d8565b34801561030f57600080fd5b506102a261031e36600461168a565b6107e5565b34801561032f57600080fd5b506102a261097e565b34801561034457600080fd5b506102a261035336600461168a565b6109de565b34801561036457600080fd5b506102a2610373366004611752565b6109fe565b34801561038457600080fd5b506102a2610393366004611660565b610a6b565b3480156103a457600080fd5b5061026a6103b336600461162b565b610adb565b3480156103c457600080fd5b506102a26103d336600461162b565b610ae6565b3480156103e457600080fd5b506102d86103f336600461179b565b610af3565b34801561040457600080fd5b506102a2610b42565b34801561041957600080fd5b506008546001600160a01b031661026a565b34801561043757600080fd5b5061023d610b56565b6102a261044e36600461162b565b610b65565b34801561045f57600080fd5b506102a261046e3660046117c6565b610d76565b34801561047f57600080fd5b50600a546102139060ff1681565b34801561049957600080fd5b506102a26104a83660046117f9565b610e0b565b3480156104b957600080fd5b506102a26104c8366004611875565b610e55565b3480156104d957600080fd5b506102d86611c37937e0800081565b3480156104f457600080fd5b5061023d61050336600461162b565b610e70565b34801561051457600080fd5b506102d860095481565b34801561052a57600080fd5b5061023d610fb6565b34801561053f57600080fd5b506102d8600581565b34801561055457600080fd5b5060408051602081019091526000815261023d565b34801561057557600080fd5b50610213610584366004611890565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105be57600080fd5b506102a26105cd36600461179b565b611044565b3480156105de57600080fd5b506102a26110ba565b3480156105f357600080fd5b506102d861060236600461179b565b6001600160a01b03166000908152600d602052604090205490565b60006301ffc9a760e01b6001600160e01b03198316148061064e57506380ac58cd60e01b6001600160e01b03198316145b806106695750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461067e906118ba565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa906118ba565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b600061070c826110d3565b610729576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075082610adb565b9050336001600160a01b038216146107895761076c8133610584565b610789576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107f082611108565b9050836001600160a01b0316816001600160a01b0316146108235760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610870576108538633610584565b61087057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661089757604051633a954ecd60e21b815260040160405180910390fd5b80156108a257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610934576001840160008181526004602052604081205490036109325760005481146109325760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61098661117e565b604051600090339047908381818185875af1925050503d80600081146109c8576040519150601f19603f3d011682016040523d82523d6000602084013e6109cd565b606091505b50509050806109db57600080fd5b50565b6109f983838360405180602001604052806000815250610e0b565b505050565b610a0661117e565b600a54610100900460ff1615610a5b5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064015b60405180910390fd5b600b610a67828261193a565b5050565b610a7361117e565b60095481610a846000546000190190565b610a8e9190611a10565b1115610ad15760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610a52565b610a6782826111d8565b600061066982611108565b610aee61117e565b600955565b60006001600160a01b038216610b1c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b4a61117e565b610b5460006111f2565b565b60606003805461067e906118ba565b600a5460ff1615610ba85760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b6044820152606401610a52565b6005811115610c035760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b6064820152608401610a52565b60095481610c146000546000190190565b610c1e9190611a10565b1115610c615760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610a52565b336000908152600d6020526040902054600a90610c7f908390611a10565b1115610cc65760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610a52565b610320610cd66000546000190190565b1115610d4757610ced6611c37937e0800082611a28565b341015610d475760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b6064820152608401610a52565b336000908152600d602052604081208054839290610d66908490611a10565b909155506109db905033826111d8565b336001600160a01b03831603610d9f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e168484846107e5565b6001600160a01b0383163b15610e4f57610e3284848484611244565b610e4f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610e5d61117e565b600a805460ff1916911515919091179055565b6060610e7b826110d3565b610edf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a52565b6000610ee9611330565b5111610f7f57600c8054610efc906118ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610f28906118ba565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050610669565b610f87611330565b610f908361133f565b604051602001610fa1929190611a47565b60405160208183030381529060405292915050565b600c8054610fc3906118ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610fef906118ba565b801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b505050505081565b61104c61117e565b6001600160a01b0381166110b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a52565b6109db816111f2565b6110c261117e565b600a805461ff001916610100179055565b6000816001111580156110e7575060005482105b8015610669575050600090815260046020526040902054600160e01b161590565b60008180600111611165576000548110156111655760008181526004602052604081205490600160e01b82169003611163575b8060000361115c57506000190160008181526004602052604090205461113b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a52565b610a67828260405180602001604052806000815250611440565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611279903390899088908890600401611a86565b6020604051808303816000875af19250505080156112b4575060408051601f3d908101601f191682019092526112b191810190611ac3565b60015b611312573d8080156112e2576040519150601f19603f3d011682016040523d82523d6000602084013e6112e7565b606091505b50805160000361130a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461067e906118ba565b6060816000036113665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611390578061137a81611ae0565b91506113899050600a83611b0f565b915061136a565b60008167ffffffffffffffff8111156113ab576113ab6116c6565b6040519080825280601f01601f1916602001820160405280156113d5576020820181803683370190505b5090505b8415611328576113ea600183611b23565b91506113f7600a86611b3a565b611402906030611a10565b60f81b81838151811061141757611417611b4e565b60200101906001600160f81b031916908160001a905350611439600a86611b0f565b94506113d9565b61144a83836114ad565b6001600160a01b0383163b156109f9576000548281035b6114746000868380600101945086611244565b611491576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114615781600054146114a657600080fd5b5050505050565b6000546001600160a01b0383166114d657604051622e076360e81b815260040160405180910390fd5b816000036114f75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115415760005550505050565b6001600160e01b0319811681146109db57600080fd5b6000602082840312156115b557600080fd5b813561115c8161158d565b60005b838110156115db5781810151838201526020016115c3565b83811115610e4f5750506000910152565b600081518084526116048160208601602086016115c0565b601f01601f19169290920160200192915050565b60208152600061115c60208301846115ec565b60006020828403121561163d57600080fd5b5035919050565b80356001600160a01b038116811461165b57600080fd5b919050565b6000806040838503121561167357600080fd5b61167c83611644565b946020939093013593505050565b60008060006060848603121561169f57600080fd5b6116a884611644565b92506116b660208501611644565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116f7576116f76116c6565b604051601f8501601f19908116603f0116810190828211818310171561171f5761171f6116c6565b8160405280935085815286868601111561173857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561176457600080fd5b813567ffffffffffffffff81111561177b57600080fd5b8201601f8101841361178c57600080fd5b611328848235602084016116dc565b6000602082840312156117ad57600080fd5b61115c82611644565b8035801515811461165b57600080fd5b600080604083850312156117d957600080fd5b6117e283611644565b91506117f0602084016117b6565b90509250929050565b6000806000806080858703121561180f57600080fd5b61181885611644565b935061182660208601611644565b925060408501359150606085013567ffffffffffffffff81111561184957600080fd5b8501601f8101871361185a57600080fd5b611869878235602084016116dc565b91505092959194509250565b60006020828403121561188757600080fd5b61115c826117b6565b600080604083850312156118a357600080fd5b6118ac83611644565b91506117f060208401611644565b600181811c908216806118ce57607f821691505b6020821081036118ee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109f957600081815260208120601f850160051c8101602086101561191b5750805b601f850160051c820191505b8181101561097657828155600101611927565b815167ffffffffffffffff811115611954576119546116c6565b6119688161196284546118ba565b846118f4565b602080601f83116001811461199d57600084156119855750858301515b600019600386901b1c1916600185901b178555610976565b600085815260208120601f198616915b828110156119cc578886015182559484019460019091019084016119ad565b50858210156119ea5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a2357611a236119fa565b500190565b6000816000190483118215151615611a4257611a426119fa565b500290565b60008351611a598184602088016115c0565b835190830190611a6d8183602088016115c0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab9908301846115ec565b9695505050505050565b600060208284031215611ad557600080fd5b815161115c8161158d565b600060018201611af257611af26119fa565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b1e57611b1e611af9565b500490565b600082821015611b3557611b356119fa565b500390565b600082611b4957611b49611af9565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208de6f6e6ec32479a5a3923872fdf37416aca01080a8b22cd8eb8205af7fbe74c64736f6c634300080f0033697066733a2f2f516d564a6e436554444a617a3551455a73425950475679366a4a32626e736366763973484b374e6b38594642797a2f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d48514610548578063e985e9c514610569578063f2fde38b146105b2578063f4a560a5146105d2578063fddcb5ea146105e757600080fd5b8063c87b56dd146104e8578063d5abeb0114610508578063d82104821461051e578063e193e7e21461053357600080fd5b8063b187bd26116100dc578063b187bd2614610473578063b88d4fde1461048d578063bedb86fb146104ad578063c002d23d146104cd57600080fd5b80638da5cb5b1461040d57806395d89b411461042b578063a0712d6814610440578063a22cb4651461045357600080fd5b80633ccfd60b116101855780636352211e116101545780636352211e146103985780636f8b44b0146103b857806370a08231146103d8578063715018a6146103f857600080fd5b80633ccfd60b1461032357806342842e0e146103385780634c26124714610358578063627804af1461037857600080fd5b80630de76de4116101c15780630de76de4146102a45780630f2cdd6c146102c357806318160ddd146102e657806323b872dd1461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046115a3565b61061d565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61066f565b60405161021f9190611618565b34801561025657600080fd5b5061026a61026536600461162b565b610701565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611660565b610745565b005b3480156102b057600080fd5b50600a5461021390610100900460ff1681565b3480156102cf57600080fd5b506102d8600a81565b60405190815260200161021f565b3480156102f257600080fd5b5060015460005403600019016102d8565b34801561030f57600080fd5b506102a261031e36600461168a565b6107e5565b34801561032f57600080fd5b506102a261097e565b34801561034457600080fd5b506102a261035336600461168a565b6109de565b34801561036457600080fd5b506102a2610373366004611752565b6109fe565b34801561038457600080fd5b506102a2610393366004611660565b610a6b565b3480156103a457600080fd5b5061026a6103b336600461162b565b610adb565b3480156103c457600080fd5b506102a26103d336600461162b565b610ae6565b3480156103e457600080fd5b506102d86103f336600461179b565b610af3565b34801561040457600080fd5b506102a2610b42565b34801561041957600080fd5b506008546001600160a01b031661026a565b34801561043757600080fd5b5061023d610b56565b6102a261044e36600461162b565b610b65565b34801561045f57600080fd5b506102a261046e3660046117c6565b610d76565b34801561047f57600080fd5b50600a546102139060ff1681565b34801561049957600080fd5b506102a26104a83660046117f9565b610e0b565b3480156104b957600080fd5b506102a26104c8366004611875565b610e55565b3480156104d957600080fd5b506102d86611c37937e0800081565b3480156104f457600080fd5b5061023d61050336600461162b565b610e70565b34801561051457600080fd5b506102d860095481565b34801561052a57600080fd5b5061023d610fb6565b34801561053f57600080fd5b506102d8600581565b34801561055457600080fd5b5060408051602081019091526000815261023d565b34801561057557600080fd5b50610213610584366004611890565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105be57600080fd5b506102a26105cd36600461179b565b611044565b3480156105de57600080fd5b506102a26110ba565b3480156105f357600080fd5b506102d861060236600461179b565b6001600160a01b03166000908152600d602052604090205490565b60006301ffc9a760e01b6001600160e01b03198316148061064e57506380ac58cd60e01b6001600160e01b03198316145b806106695750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461067e906118ba565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa906118ba565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b600061070c826110d3565b610729576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075082610adb565b9050336001600160a01b038216146107895761076c8133610584565b610789576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107f082611108565b9050836001600160a01b0316816001600160a01b0316146108235760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610870576108538633610584565b61087057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661089757604051633a954ecd60e21b815260040160405180910390fd5b80156108a257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610934576001840160008181526004602052604081205490036109325760005481146109325760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61098661117e565b604051600090339047908381818185875af1925050503d80600081146109c8576040519150601f19603f3d011682016040523d82523d6000602084013e6109cd565b606091505b50509050806109db57600080fd5b50565b6109f983838360405180602001604052806000815250610e0b565b505050565b610a0661117e565b600a54610100900460ff1615610a5b5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064015b60405180910390fd5b600b610a67828261193a565b5050565b610a7361117e565b60095481610a846000546000190190565b610a8e9190611a10565b1115610ad15760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610a52565b610a6782826111d8565b600061066982611108565b610aee61117e565b600955565b60006001600160a01b038216610b1c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b4a61117e565b610b5460006111f2565b565b60606003805461067e906118ba565b600a5460ff1615610ba85760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b6044820152606401610a52565b6005811115610c035760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b6064820152608401610a52565b60095481610c146000546000190190565b610c1e9190611a10565b1115610c615760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610a52565b336000908152600d6020526040902054600a90610c7f908390611a10565b1115610cc65760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610a52565b610320610cd66000546000190190565b1115610d4757610ced6611c37937e0800082611a28565b341015610d475760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b6064820152608401610a52565b336000908152600d602052604081208054839290610d66908490611a10565b909155506109db905033826111d8565b336001600160a01b03831603610d9f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e168484846107e5565b6001600160a01b0383163b15610e4f57610e3284848484611244565b610e4f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610e5d61117e565b600a805460ff1916911515919091179055565b6060610e7b826110d3565b610edf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a52565b6000610ee9611330565b5111610f7f57600c8054610efc906118ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610f28906118ba565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050610669565b610f87611330565b610f908361133f565b604051602001610fa1929190611a47565b60405160208183030381529060405292915050565b600c8054610fc3906118ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610fef906118ba565b801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b505050505081565b61104c61117e565b6001600160a01b0381166110b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a52565b6109db816111f2565b6110c261117e565b600a805461ff001916610100179055565b6000816001111580156110e7575060005482105b8015610669575050600090815260046020526040902054600160e01b161590565b60008180600111611165576000548110156111655760008181526004602052604081205490600160e01b82169003611163575b8060000361115c57506000190160008181526004602052604090205461113b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a52565b610a67828260405180602001604052806000815250611440565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611279903390899088908890600401611a86565b6020604051808303816000875af19250505080156112b4575060408051601f3d908101601f191682019092526112b191810190611ac3565b60015b611312573d8080156112e2576040519150601f19603f3d011682016040523d82523d6000602084013e6112e7565b606091505b50805160000361130a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461067e906118ba565b6060816000036113665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611390578061137a81611ae0565b91506113899050600a83611b0f565b915061136a565b60008167ffffffffffffffff8111156113ab576113ab6116c6565b6040519080825280601f01601f1916602001820160405280156113d5576020820181803683370190505b5090505b8415611328576113ea600183611b23565b91506113f7600a86611b3a565b611402906030611a10565b60f81b81838151811061141757611417611b4e565b60200101906001600160f81b031916908160001a905350611439600a86611b0f565b94506113d9565b61144a83836114ad565b6001600160a01b0383163b156109f9576000548281035b6114746000868380600101945086611244565b611491576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114615781600054146114a657600080fd5b5050505050565b6000546001600160a01b0383166114d657604051622e076360e81b815260040160405180910390fd5b816000036114f75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115415760005550505050565b6001600160e01b0319811681146109db57600080fd5b6000602082840312156115b557600080fd5b813561115c8161158d565b60005b838110156115db5781810151838201526020016115c3565b83811115610e4f5750506000910152565b600081518084526116048160208601602086016115c0565b601f01601f19169290920160200192915050565b60208152600061115c60208301846115ec565b60006020828403121561163d57600080fd5b5035919050565b80356001600160a01b038116811461165b57600080fd5b919050565b6000806040838503121561167357600080fd5b61167c83611644565b946020939093013593505050565b60008060006060848603121561169f57600080fd5b6116a884611644565b92506116b660208501611644565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116f7576116f76116c6565b604051601f8501601f19908116603f0116810190828211818310171561171f5761171f6116c6565b8160405280935085815286868601111561173857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561176457600080fd5b813567ffffffffffffffff81111561177b57600080fd5b8201601f8101841361178c57600080fd5b611328848235602084016116dc565b6000602082840312156117ad57600080fd5b61115c82611644565b8035801515811461165b57600080fd5b600080604083850312156117d957600080fd5b6117e283611644565b91506117f0602084016117b6565b90509250929050565b6000806000806080858703121561180f57600080fd5b61181885611644565b935061182660208601611644565b925060408501359150606085013567ffffffffffffffff81111561184957600080fd5b8501601f8101871361185a57600080fd5b611869878235602084016116dc565b91505092959194509250565b60006020828403121561188757600080fd5b61115c826117b6565b600080604083850312156118a357600080fd5b6118ac83611644565b91506117f060208401611644565b600181811c908216806118ce57607f821691505b6020821081036118ee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109f957600081815260208120601f850160051c8101602086101561191b5750805b601f850160051c820191505b8181101561097657828155600101611927565b815167ffffffffffffffff811115611954576119546116c6565b6119688161196284546118ba565b846118f4565b602080601f83116001811461199d57600084156119855750858301515b600019600386901b1c1916600185901b178555610976565b600085815260208120601f198616915b828110156119cc578886015182559484019460019091019084016119ad565b50858210156119ea5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a2357611a236119fa565b500190565b6000816000190483118215151615611a4257611a426119fa565b500290565b60008351611a598184602088016115c0565b835190830190611a6d8183602088016115c0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab9908301846115ec565b9695505050505050565b600060208284031215611ad557600080fd5b815161115c8161158d565b600060018201611af257611af26119fa565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b1e57611b1e611af9565b500490565b600082821015611b3557611b356119fa565b500390565b600082611b4957611b49611af9565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208de6f6e6ec32479a5a3923872fdf37416aca01080a8b22cd8eb8205af7fbe74c64736f6c634300080f0033

Deployed Bytecode Sourcemap

50405:2609:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18218:615;;;;;;;;;;-1:-1:-1;18218:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18218:615:0;;;;;;;;23865:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25811:204::-;;;;;;;;;;-1:-1:-1;25811:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25811:204:0;1528:203:1;25359:386:0;;;;;;;;;;-1:-1:-1;25359:386:0;;;;;:::i;:::-;;:::i;:::-;;50684:27;;;;;;;;;;-1:-1:-1;50684:27:0;;;;;;;;;;;50574:40;;;;;;;;;;;;50612:2;50574:40;;;;;2319:25:1;;;2307:2;2292:18;50574:40:0;2173:177:1;17272:315:0;;;;;;;;;;-1:-1:-1;51138:1:0;17538:12;17325:7;17522:13;:28;-1:-1:-1;;17522:46:0;17272:315;;35076:2800;;;;;;;;;;-1:-1:-1;35076:2800:0;;;;;:::i;:::-;;:::i;51676:177::-;;;;;;;;;;;;;:::i;26701:185::-;;;;;;;;;;-1:-1:-1;26701:185:0;;;;;:::i;:::-;;:::i;51328:139::-;;;;;;;;;;-1:-1:-1;51328:139:0;;;;;:::i;:::-;;:::i;51858:174::-;;;;;;;;;;-1:-1:-1;51858:174:0;;;;;:::i;:::-;;:::i;23654:144::-;;;;;;;;;;-1:-1:-1;23654:144:0;;;;;:::i;:::-;;:::i;52037:94::-;;;;;;;;;;-1:-1:-1;52037:94:0;;;;;:::i;:::-;;:::i;18897:224::-;;;;;;;;;;-1:-1:-1;18897:224:0;;;;;:::i;:::-;;:::i;2809:103::-;;;;;;;;;;;;;:::i;2161:87::-;;;;;;;;;;-1:-1:-1;2234:6:0;;-1:-1:-1;;;;;2234:6:0;2161:87;;24034:104;;;;;;;;;;;;;:::i;52480:529::-;;;;;;:::i;:::-;;:::i;26087:308::-;;;;;;;;;;-1:-1:-1;26087:308:0;;;;;:::i;:::-;;:::i;50652:27::-;;;;;;;;;;-1:-1:-1;50652:27:0;;;;;;;;26957:399;;;;;;;;;;-1:-1:-1;26957:399:0;;;;;:::i;:::-;;:::i;51596:75::-;;;;;;;;;;-1:-1:-1;51596:75:0;;;;;:::i;:::-;;:::i;50479:45::-;;;;;;;;;;;;50513:11;50479:45;;52136:339;;;;;;;;;;-1:-1:-1;52136:339:0;;;;;:::i;:::-;;:::i;50618:28::-;;;;;;;;;;;;;;;;50802:31;;;;;;;;;;;;;:::i;50528:41::-;;;;;;;;;;;;50568:1;50528:41;;51149:78;;;;;;;;;;-1:-1:-1;51213:9:0;;;;;;;;;-1:-1:-1;51213:9:0;;51149:78;;26466:164;;;;;;;;;;-1:-1:-1;26466:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26587:25:0;;;26563:4;26587:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26466:164;3067:201;;;;;;;;;;-1:-1:-1;3067:201:0;;;;;:::i;:::-;;:::i;51235:88::-;;;;;;;;;;;;;:::i;51475:116::-;;;;;;;;;;-1:-1:-1;51475:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51558:25:0;51534:4;51558:25;;;:18;:25;;;;;;;51475:116;18218:615;18303:4;-1:-1:-1;;;;;;;;;18603:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18680:25:0;;;18603:102;:179;;;-1:-1:-1;;;;;;;;;;18757:25:0;;;18603:179;18583:199;18218:615;-1:-1:-1;;18218:615:0:o;23865:100::-;23919:13;23952:5;23945:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23865:100;:::o;25811:204::-;25879:7;25904:16;25912:7;25904;:16::i;:::-;25899:64;;25929:34;;-1:-1:-1;;;25929:34:0;;;;;;;;;;;25899:64;-1:-1:-1;25983:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25983:24:0;;25811:204::o;25359:386::-;25432:13;25448:16;25456:7;25448;:16::i;:::-;25432:32;-1:-1:-1;46259:10:0;-1:-1:-1;;;;;25481:28:0;;;25477:175;;25529:44;25546:5;46259:10;26466:164;:::i;25529:44::-;25524:128;;25601:35;;-1:-1:-1;;;25601:35:0;;;;;;;;;;;25524:128;25664:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25664:29:0;-1:-1:-1;;;;;25664:29:0;;;;;;;;;25709:28;;25664:24;;25709:28;;;;;;;25421:324;25359:386;;:::o;35076:2800::-;35210:27;35240;35259:7;35240:18;:27::i;:::-;35210:57;;35325:4;-1:-1:-1;;;;;35284:45:0;35300:19;-1:-1:-1;;;;;35284:45:0;;35280:86;;35338:28;;-1:-1:-1;;;35338:28:0;;;;;;;;;;;35280:86;35380:27;33806:21;;;33633:15;33848:4;33841:36;33930:4;33914:21;;34020:26;;46259:10;34773:30;;;-1:-1:-1;;;;;34471:26:0;;34752:19;;;34749:55;35559:174;;35646:43;35663:4;46259:10;26466:164;:::i;35646:43::-;35641:92;;35698:35;;-1:-1:-1;;;35698:35:0;;;;;;;;;;;35641:92;-1:-1:-1;;;;;35750:16:0;;35746:52;;35775:23;;-1:-1:-1;;;35775:23:0;;;;;;;;;;;35746:52;35947:15;35944:160;;;36087:1;36066:19;36059:30;35944:160;-1:-1:-1;;;;;36482:24:0;;;;;;;:18;:24;;;;;;36480:26;;-1:-1:-1;;36480:26:0;;;36551:22;;;;;;;;;36549:24;;-1:-1:-1;36549:24:0;;;23553:11;23529:22;23525:40;23512:62;-1:-1:-1;;;23512:62:0;36844:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;37138:46:0;;:51;;37134:626;;37242:1;37232:11;;37210:19;37365:30;;;:17;:30;;;;;;:35;;37361:384;;37503:13;;37488:11;:28;37484:242;;37650:30;;;;:17;:30;;;;;:52;;;37484:242;37191:569;37134:626;37807:7;37803:2;-1:-1:-1;;;;;37788:27:0;37797:4;-1:-1:-1;;;;;37788:27:0;;;;;;;;;;;37826:42;35199:2677;;;35076:2800;;;:::o;51676:177::-;2047:13;:11;:13::i;:::-;51739:82:::1;::::0;51721:12:::1;::::0;51747:10:::1;::::0;51785:21:::1;::::0;51721:12;51739:82;51721:12;51739:82;51785:21;51747:10;51739:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51720:101;;;51840:7;51832:16;;;::::0;::::1;;51715:138;51676:177::o:0;26701:185::-;26839:39;26856:4;26862:2;26866:7;26839:39;;;;;;;;;;;;:16;:39::i;:::-;26701:185;;;:::o;51328:139::-;2047:13;:11;:13::i;:::-;51402:15:::1;::::0;::::1;::::0;::::1;;;51401:16;51393:50;;;::::0;-1:-1:-1;;;51393:50:0;;6447:2:1;51393:50:0::1;::::0;::::1;6429:21:1::0;6486:2;6466:18;;;6459:30;-1:-1:-1;;;6505:18:1;;;6498:51;6566:18;;51393:50:0::1;;;;;;;;;51448:8;:14;51459:3:::0;51448:8;:14:::1;:::i;:::-;;51328:139:::0;:::o;51858:174::-;2047:13;:11;:13::i;:::-;51962:9:::1;;51953:5;51936:14;17732:7:::0;17920:13;-1:-1:-1;;17920:31:0;;17685:285;51936:14:::1;:22;;;;:::i;:::-;:35;;51923:79;;;::::0;-1:-1:-1;;;51923:79:0;;9266:2:1;51923:79:0::1;::::0;::::1;9248:21:1::0;9305:2;9285:18;;;9278:30;-1:-1:-1;;;9324:18:1;;;9317:48;9382:18;;51923:79:0::1;9064:342:1::0;51923:79:0::1;52007:20;52017:2;52021:5;52007:9;:20::i;23654:144::-:0;23718:7;23761:27;23780:7;23761:18;:27::i;52037:94::-;2047:13;:11;:13::i;:::-;52102:9:::1;:24:::0;52037:94::o;18897:224::-;18961:7;-1:-1:-1;;;;;18985:19:0;;18981:60;;19013:28;;-1:-1:-1;;;19013:28:0;;;;;;;;;;;18981:60;-1:-1:-1;;;;;;19059:25:0;;;;;:18;:25;;;;;;13452:13;19059:54;;18897:224::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;24034:104::-;24090:13;24123:7;24116:14;;;;;:::i;52480:529::-;52537:8;;;;52536:9;52528:35;;;;-1:-1:-1;;;52528:35:0;;9613:2:1;52528:35:0;;;9595:21:1;9652:2;9632:18;;;9625:30;-1:-1:-1;;;9671:18:1;;;9664:43;9724:18;;52528:35:0;9411:337:1;52528:35:0;50568:1;52576:5;:25;;52568:70;;;;-1:-1:-1;;;52568:70:0;;9955:2:1;52568:70:0;;;9937:21:1;9994:2;9974:18;;;9967:30;10033:34;10013:18;;;10006:62;-1:-1:-1;;;10084:18:1;;;10077:31;10125:19;;52568:70:0;9753:397:1;52568:70:0;52677:9;;52668:5;52651:14;17732:7;17920:13;-1:-1:-1;;17920:31:0;;17685:285;52651:14;:22;;;;:::i;:::-;:35;;52643:65;;;;-1:-1:-1;;;52643:65:0;;9266:2:1;52643:65:0;;;9248:21:1;9305:2;9285:18;;;9278:30;-1:-1:-1;;;9324:18:1;;;9317:48;9382:18;;52643:65:0;9064:342:1;52643:65:0;52746:10;52727:30;;;;:18;:30;;;;;;50612:2;;52727:38;;52760:5;;52727:38;:::i;:::-;:56;;52719:90;;;;-1:-1:-1;;;52719:90:0;;10357:2:1;52719:90:0;;;10339:21:1;10396:2;10376:18;;;10369:30;-1:-1:-1;;;10415:18:1;;;10408:52;10477:18;;52719:90:0;10155:346:1;52719:90:0;52840:3;52823:14;17732:7;17920:13;-1:-1:-1;;17920:31:0;;17685:285;52823:14;:20;52820:107;;;52871:18;50513:11;52871:5;:18;:::i;:::-;52858:9;:31;;52850:77;;;;-1:-1:-1;;;52850:77:0;;10881:2:1;52850:77:0;;;10863:21:1;10920:2;10900:18;;;10893:30;10959:34;10939:18;;;10932:62;-1:-1:-1;;;11010:18:1;;;11003:32;11052:19;;52850:77:0;10679:398:1;52850:77:0;52951:10;52932:30;;;;:18;:30;;;;;:39;;52966:5;;52932:30;:39;;52966:5;;52932:39;:::i;:::-;;;;-1:-1:-1;52976:28:0;;-1:-1:-1;52986:10:0;52998:5;52976:9;:28::i;26087:308::-;46259:10;-1:-1:-1;;;;;26186:31:0;;;26182:61;;26226:17;;-1:-1:-1;;;26226:17:0;;;;;;;;;;;26182:61;46259:10;26256:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26256:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26256:60:0;;;;;;;;;;26332:55;;540:41:1;;;26256:49:0;;46259:10;26332:55;;513:18:1;26332:55:0;;;;;;;26087:308;;:::o;26957:399::-;27124:31;27137:4;27143:2;27147:7;27124:12;:31::i;:::-;-1:-1:-1;;;;;27170:14:0;;;:19;27166:183;;27209:56;27240:4;27246:2;27250:7;27259:5;27209:30;:56::i;:::-;27204:145;;27293:40;;-1:-1:-1;;;27293:40:0;;;;;;;;;;;27204:145;26957:399;;;;:::o;51596:75::-;2047:13;:11;:13::i;:::-;51650:8:::1;:16:::0;;-1:-1:-1;;51650:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51596:75::o;52136:339::-;52210:13;52246:16;52254:7;52246;:16::i;:::-;52238:76;;;;-1:-1:-1;;;52238:76:0;;11284:2:1;52238:76:0;;;11266:21:1;11323:2;11303:18;;;11296:30;11362:34;11342:18;;;11335:62;-1:-1:-1;;;11413:18:1;;;11406:45;11468:19;;52238:76:0;11082:411:1;52238:76:0;52359:1;52338:10;:8;:10::i;:::-;52332:24;:28;:138;;52458:12;52332:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52401:10;:8;:10::i;:::-;52413:18;:7;:16;:18::i;:::-;52384:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52325:145;52136:339;-1:-1:-1;;52136:339:0:o;50802:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3067:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;12342:2:1;3148:73:0::1;::::0;::::1;12324:21:1::0;12381:2;12361:18;;;12354:30;12420:34;12400:18;;;12393:62;-1:-1:-1;;;12471:18:1;;;12464:36;12517:19;;3148:73:0::1;12140:402:1::0;3148:73:0::1;3232:28;3251:8;3232:18;:28::i;51235:88::-:0;2047:13;:11;:13::i;:::-;51293:15:::1;:22:::0;;-1:-1:-1;;51293:22:0::1;;;::::0;;51235:88::o;27611:273::-;27668:4;27724:7;51138:1;27705:26;;:66;;;;;27758:13;;27748:7;:23;27705:66;:152;;;;-1:-1:-1;;27809:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27809:43:0;:48;;27611:273::o;20571:1129::-;20638:7;20673;;51138:1;20722:23;20718:915;;20775:13;;20768:4;:20;20764:869;;;20813:14;20830:23;;;:17;:23;;;;;;;-1:-1:-1;;;20919:23:0;;:28;;20915:699;;21438:113;21445:6;21455:1;21445:11;21438:113;;-1:-1:-1;;;21516:6:0;21498:25;;;;:17;:25;;;;;;21438:113;;;21584:6;20571:1129;-1:-1:-1;;;20571:1129:0:o;20915:699::-;20790:843;20764:869;21661:31;;-1:-1:-1;;;21661:31:0;;;;;;;;;;;2326:132;2234:6;;-1:-1:-1;;;;;2234:6:0;46259:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;12749:2:1;2382:68:0;;;12731:21:1;;;12768:18;;;12761:30;12827:34;12807:18;;;12800:62;12879:18;;2382:68:0;12547:356:1;27968:104:0;28037:27;28047:2;28051:8;28037:27;;;;;;;;;;;;:9;:27::i;3428:191::-;3521:6;;;-1:-1:-1;;;;;3538:17:0;;;-1:-1:-1;;;;;;3538:17:0;;;;;;;3571:40;;3521:6;;;3538:17;3521:6;;3571:40;;3502:16;;3571:40;3491:128;3428:191;:::o;41827:716::-;42011:88;;-1:-1:-1;;;42011:88:0;;41990:4;;-1:-1:-1;;;;;42011:45:0;;;;;:88;;46259:10;;42078:4;;42084:7;;42093:5;;42011:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42011:88:0;;;;;;;;-1:-1:-1;;42011:88:0;;;;;;;;;;;;:::i;:::-;;;42007:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42294:6;:13;42311:1;42294:18;42290:235;;42340:40;;-1:-1:-1;;;42340:40:0;;;;;;;;;;;42290:235;42483:6;42477:13;42468:6;42464:2;42460:15;42453:38;42007:529;-1:-1:-1;;;;;;42170:64:0;-1:-1:-1;;;42170:64:0;;-1:-1:-1;42007:529:0;41827:716;;;;;;:::o;50966:92::-;51018:13;51045:8;51038:15;;;;;:::i;48609:723::-;48665:13;48886:5;48895:1;48886:10;48882:53;;-1:-1:-1;;48913:10:0;;;;;;;;;;;;-1:-1:-1;;;48913:10:0;;;;;48609:723::o;48882:53::-;48960:5;48945:12;49001:78;49008:9;;49001:78;;49034:8;;;;:::i;:::-;;-1:-1:-1;49057:10:0;;-1:-1:-1;49065:2:0;49057:10;;:::i;:::-;;;49001:78;;;49089:19;49121:6;49111:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49111:17:0;;49089:39;;49139:154;49146:10;;49139:154;;49173:11;49183:1;49173:11;;:::i;:::-;;-1:-1:-1;49242:10:0;49250:2;49242:5;:10;:::i;:::-;49229:24;;:2;:24;:::i;:::-;49216:39;;49199:6;49206;49199:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;49199:56:0;;;;;;;;-1:-1:-1;49270:11:0;49279:2;49270:11;;:::i;:::-;;;49139:154;;28488:681;28611:19;28617:2;28621:8;28611:5;:19::i;:::-;-1:-1:-1;;;;;28672:14:0;;;:19;28668:483;;28712:11;28726:13;28774:14;;;28807:233;28838:62;28877:1;28881:2;28885:7;;;;;;28894:5;28838:30;:62::i;:::-;28833:167;;28936:40;;-1:-1:-1;;;28936:40:0;;;;;;;;;;;28833:167;29035:3;29027:5;:11;28807:233;;29122:3;29105:13;;:20;29101:34;;29127:8;;;29101:34;28693:458;;28488:681;;;:::o;29442:1529::-;29507:20;29530:13;-1:-1:-1;;;;;29558:16:0;;29554:48;;29583:19;;-1:-1:-1;;;29583:19:0;;;;;;;;;;;29554:48;29617:8;29629:1;29617:13;29613:44;;29639:18;;-1:-1:-1;;;29639:18:0;;;;;;;;;;;29613:44;-1:-1:-1;;;;;30145:22:0;;;;;;:18;:22;;13589:2;30145:22;;:70;;30183:31;30171:44;;30145:70;;;23553:11;23529:22;23525:40;-1:-1:-1;25263:15:0;;25238:23;25234:45;23522:51;23512:62;30458:31;;;;:17;:31;;;;;:173;30476:12;30707:23;;;30745:101;30772:35;;30797:9;;;;;-1:-1:-1;;;;;30772:35:0;;;30789:1;;30772:35;;30789:1;;30772:35;30841:3;30831:7;:13;30745:101;;30862:13;:19;-1:-1:-1;26701:185:0;;;:::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;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914: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:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:254;4334:6;4342;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:35;4513:2;4502:9;4498:18;4482:35;:::i;:::-;4472:45;;4269:254;;;;;:::o;4528:667::-;4623:6;4631;4639;4647;4700:3;4688:9;4679:7;4675:23;4671:33;4668:53;;;4717:1;4714;4707:12;4668:53;4740:29;4759:9;4740:29;:::i;:::-;4730:39;;4788:38;4822:2;4811:9;4807:18;4788:38;:::i;:::-;4778:48;;4873:2;4862:9;4858:18;4845:32;4835:42;;4928:2;4917:9;4913:18;4900:32;4955:18;4947:6;4944:30;4941:50;;;4987:1;4984;4977:12;4941:50;5010:22;;5063:4;5055:13;;5051:27;-1:-1:-1;5041:55:1;;5092:1;5089;5082:12;5041:55;5115:74;5181:7;5176:2;5163:16;5158:2;5154;5150:11;5115:74;:::i;:::-;5105:84;;;4528:667;;;;;;;:::o;5200:180::-;5256:6;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;5348:26;5364:9;5348:26;:::i;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6721:545::-;6823:2;6818:3;6815:11;6812:448;;;6859:1;6884:5;6880:2;6873:17;6929:4;6925:2;6915:19;6999:2;6987:10;6983:19;6980:1;6976:27;6970:4;6966:38;7035:4;7023:10;7020:20;7017:47;;;-1:-1:-1;7058:4:1;7017:47;7113:2;7108:3;7104:12;7101:1;7097:20;7091:4;7087:31;7077:41;;7168:82;7186:2;7179:5;7176:13;7168:82;;;7231:17;;;7212:1;7201:13;7168:82;;7442:1352;7568:3;7562:10;7595:18;7587:6;7584:30;7581:56;;;7617:18;;:::i;:::-;7646:97;7736:6;7696:38;7728:4;7722:11;7696:38;:::i;:::-;7690:4;7646:97;:::i;:::-;7798:4;;7862:2;7851:14;;7879:1;7874:663;;;;8581:1;8598:6;8595:89;;;-1:-1:-1;8650:19:1;;;8644:26;8595:89;-1:-1:-1;;7399:1:1;7395:11;;;7391:24;7387:29;7377:40;7423:1;7419:11;;;7374:57;8697:81;;7844:944;;7874:663;6668:1;6661:14;;;6705:4;6692:18;;-1:-1:-1;;7910:20:1;;;8028:236;8042:7;8039:1;8036:14;8028:236;;;8131:19;;;8125:26;8110:42;;8223:27;;;;8191:1;8179:14;;;;8058:19;;8028:236;;;8032:3;8292:6;8283:7;8280:19;8277:201;;;8353:19;;;8347:26;-1:-1:-1;;8436:1:1;8432:14;;;8448:3;8428:24;8424:37;8420:42;8405:58;8390:74;;8277:201;-1:-1:-1;;;;;8524:1:1;8508:14;;;8504:22;8491:36;;-1:-1:-1;7442:1352:1:o;8799:127::-;8860:10;8855:3;8851:20;8848:1;8841:31;8891:4;8888:1;8881:15;8915:4;8912:1;8905:15;8931:128;8971:3;9002:1;8998:6;8995:1;8992:13;8989:39;;;9008:18;;:::i;:::-;-1:-1:-1;9044:9:1;;8931:128::o;10506:168::-;10546:7;10612:1;10608;10604:6;10600:14;10597:1;10594:21;10589:1;10582:9;10575:17;10571:45;10568:71;;;10619:18;;:::i;:::-;-1:-1:-1;10659:9:1;;10506:168::o;11498:637::-;11778:3;11816:6;11810:13;11832:53;11878:6;11873:3;11866:4;11858:6;11854:17;11832:53;:::i;:::-;11948:13;;11907:16;;;;11970:57;11948:13;11907:16;12004:4;11992:17;;11970:57;:::i;:::-;-1:-1:-1;;;12049:20:1;;12078:22;;;12127:1;12116:13;;11498:637;-1:-1:-1;;;;11498:637:1:o;12908:489::-;-1:-1:-1;;;;;13177:15:1;;;13159:34;;13229:15;;13224:2;13209:18;;13202:43;13276:2;13261:18;;13254:34;;;13324:3;13319:2;13304:18;;13297:31;;;13102:4;;13345:46;;13371:19;;13363:6;13345:46;:::i;:::-;13337:54;12908:489;-1:-1:-1;;;;;;12908:489:1:o;13402:249::-;13471:6;13524:2;13512:9;13503:7;13499:23;13495:32;13492:52;;;13540:1;13537;13530:12;13492:52;13572:9;13566:16;13591:30;13615:5;13591:30;:::i;13656:135::-;13695:3;13716:17;;;13713:43;;13736:18;;:::i;:::-;-1:-1:-1;13783:1:1;13772:13;;13656:135::o;13796:127::-;13857:10;13852:3;13848:20;13845:1;13838:31;13888:4;13885:1;13878:15;13912:4;13909:1;13902:15;13928:120;13968:1;13994;13984:35;;13999:18;;:::i;:::-;-1:-1:-1;14033:9:1;;13928:120::o;14053:125::-;14093:4;14121:1;14118;14115:8;14112:34;;;14126:18;;:::i;:::-;-1:-1:-1;14163:9:1;;14053:125::o;14183:112::-;14215:1;14241;14231:35;;14246:18;;:::i;:::-;-1:-1:-1;14280:9:1;;14183:112::o;14300:127::-;14361:10;14356:3;14352:20;14349:1;14342:31;14392:4;14389:1;14382:15;14416:4;14413:1;14406:15

Swarm Source

ipfs://8de6f6e6ec32479a5a3923872fdf37416aca01080a8b22cd8eb8205af7fbe74c
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.