ETH Price: $3,395.06 (-1.54%)
Gas: 2 Gwei

Token

WtF iS tHaT (WtFiStHaT)
 

Overview

Max Total Supply

6,969 WtFiStHaT

Holders

6,589

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WtFiStHaT
0x4421a29fbaf50424501019cef52819ecc813e792
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:
WtfIsThat

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/wtf/WtfIsThis.sol


pragma solidity ^0.8.7;




   

contract WtfIsThat is ERC721A, Ownable {
    using StringsUpgradeable for uint256;
    address breedingContract;

    string public baseApiURI;
    
  

    //General Settings
    uint256 public maxMintAmountPerTransaction = 1;
    uint256 public maxMintPerWallet = 1;
    

    //Inventory
    uint256 public maxSupply = 6969;

    //Prices
    uint256 public cost = 0 ether;

    //Utility
    bool public paused = false;
    

    constructor(string memory _baseUrl) ERC721A("WtF iS tHaT", "WtFiStHaT") {
        baseApiURI = _baseUrl;
    }

   


    //This function will be used to extend the project with more capabilities 
    function setBreedingContractAddress(address _bAddress) public onlyOwner {
        breedingContract = _bAddress;
    }


    //this function can be called only from the extending contract
    function mintExternal(address _address, uint256 _mintAmount) external {
        require(
            msg.sender == breedingContract,
            "Sorry you dont have permission to mint"
        );
        _safeMint(_address, _mintAmount);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // public
   function mint(uint256 _mintAmount) external payable {
        if (msg.sender != owner()) {
            require(!paused);
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            uint256 ownerTokenCount = balanceOf(msg.sender);
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(
                (ownerTokenCount + _mintAmount) <= maxMintPerWallet,
                "Sorry you cant mint more"
            );

            require(msg.value >= cost * _mintAmount, "Insuffient funds");
        }

        _mintLoop(msg.sender, _mintAmount);
    }


    function setMaxMintPerWallet(uint256 val) public onlyOwner{
        maxMintPerWallet = val;
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

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

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

    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

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

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

    function togglePause() public onlyOwner {
        paused = !paused;
    }



    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

  

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(0x4F33a1a7EB7B255cbC42FB77A3499C1DEd7204C5).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseApiURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setBreedingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600b819055600c55611b39600d556000600e55600f805460ff191690553480156200003057600080fd5b506040516200213a3803806200213a8339810160408190526200005391620001e4565b604080518082018252600b81526a15dd11881a54c81d12185560aa1b60208083019182528351808501909452600984526815dd119a54dd12185560ba1b908401528151919291620000a7916002916200013e565b508051620000bd9060039060208401906200013e565b50506000805550620000cf33620000ec565b8051620000e490600a9060208401906200013e565b505062000313565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014c90620002c0565b90600052602060002090601f016020900481019282620001705760008555620001bb565b82601f106200018b57805160ff1916838001178555620001bb565b82800160010185558215620001bb579182015b82811115620001bb5782518255916020019190600101906200019e565b50620001c9929150620001cd565b5090565b5b80821115620001c95760008155600101620001ce565b60006020808385031215620001f857600080fd5b82516001600160401b03808211156200021057600080fd5b818501915085601f8301126200022557600080fd5b8151818111156200023a576200023a620002fd565b604051601f8201601f19908116603f01168101908382118183101715620002655762000265620002fd565b8160405282815288868487010111156200027e57600080fd5b600093505b82841015620002a2578484018601518185018701529285019262000283565b82841115620002b45760008684830101525b98975050505050505050565b600181811c90821680620002d557607f821691505b60208210811415620002f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e1780620003236000396000f3fe60806040526004361061020f5760003560e01c8063729ad39e11610118578063c4ae3168116100a0578063dc33e6811161006f578063dc33e681146105ab578063e97800cb146105cb578063e985e9c5146105eb578063f2fde38b14610634578063f4da18461461065457600080fd5b8063c4ae316814610540578063c87b56dd14610555578063cbce4c9714610575578063d5abeb011461059557600080fd5b8063a22cb465116100e7578063a22cb465146104b4578063afdf6134146104d4578063b228d925146104f4578063b88d4fde1461050a578063bbb897441461052a57600080fd5b8063729ad39e1461044e5780638da5cb5b1461046e57806395d89b411461048c578063a0712d68146104a157600080fd5b806342842e0e1161019b5780636352211e1161016a5780636352211e146103b957806368570bd6146103d95780636f8b44b0146103f957806370a0823114610419578063715018a61461043957600080fd5b806342842e0e1461033f57806344a0d68a1461035f57806355f804b31461037f5780635c975abb1461039f57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103025780633ccfd60b1461032257806341827f131461032a57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611aaa565b610674565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c6565b6040516102409190611c02565b34801561027757600080fd5b5061028b610286366004611b51565b610758565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046119cc565b61079c565b005b3480156102d157600080fd5b506102db600e5481565b604051908152602001610240565b3480156102f557600080fd5b50600154600054036102db565b34801561030e57600080fd5b506102c361031d3660046118d8565b61086f565b6102c361087f565b34801561033657600080fd5b5061025e61091e565b34801561034b57600080fd5b506102c361035a3660046118d8565b6109ac565b34801561036b57600080fd5b506102c361037a366004611b51565b6109c7565b34801561038b57600080fd5b506102c361039a366004611ae4565b6109f6565b3480156103ab57600080fd5b50600f546102349060ff1681565b3480156103c557600080fd5b5061028b6103d4366004611b51565b610a37565b3480156103e557600080fd5b506102c36103f436600461188a565b610a42565b34801561040557600080fd5b506102c3610414366004611b51565b610a8e565b34801561042557600080fd5b506102db61043436600461188a565b610abd565b34801561044557600080fd5b506102c3610b03565b34801561045a57600080fd5b506102c36104693660046119f6565b610b39565b34801561047a57600080fd5b506008546001600160a01b031661028b565b34801561049857600080fd5b5061025e610bab565b6102c36104af366004611b51565b610bba565b3480156104c057600080fd5b506102c36104cf366004611990565b610dbc565b3480156104e057600080fd5b506102c36104ef366004611b51565b610e52565b34801561050057600080fd5b506102db600c5481565b34801561051657600080fd5b506102c3610525366004611914565b610e81565b34801561053657600080fd5b506102db600b5481565b34801561054c57600080fd5b506102c3610ecb565b34801561056157600080fd5b5061025e610570366004611b51565b610f09565b34801561058157600080fd5b506102c36105903660046119cc565b610fd4565b3480156105a157600080fd5b506102db600d5481565b3480156105b757600080fd5b506102db6105c636600461188a565b611008565b3480156105d757600080fd5b506102c36105e6366004611b2d565b611033565b3480156105f757600080fd5b506102346106063660046118a5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064057600080fd5b506102c361064f36600461188a565b611066565b34801561066057600080fd5b506102c361066f3660046119cc565b6110fe565b60006301ffc9a760e01b6001600160e01b0319831614806106a557506380ac58cd60e01b6001600160e01b03198316145b806106c05750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106d590611d09565b80601f016020809104026020016040519081016040528092919081815260200182805461070190611d09565b801561074e5780601f106107235761010080835404028352916020019161074e565b820191906000526020600020905b81548152906001019060200180831161073157829003601f168201915b5050505050905090565b600061076382611171565b610780576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107a782611198565b9050806001600160a01b0316836001600160a01b031614156107dc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610813576107f68133610606565b610813576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61087a8383836111f9565b505050565b6008546001600160a01b031633146108b25760405162461bcd60e51b81526004016108a990611c15565b60405180910390fd5b604051600090734f33a1a7eb7b255cbc42fb77a3499c1ded7204c59047908381818185875af1925050503d8060008114610908576040519150601f19603f3d011682016040523d82523d6000602084013e61090d565b606091505b505090508061091b57600080fd5b50565b600a805461092b90611d09565b80601f016020809104026020016040519081016040528092919081815260200182805461095790611d09565b80156109a45780601f10610979576101008083540402835291602001916109a4565b820191906000526020600020905b81548152906001019060200180831161098757829003601f168201915b505050505081565b61087a83838360405180602001604052806000815250610e81565b6008546001600160a01b031633146109f15760405162461bcd60e51b81526004016108a990611c15565b600e55565b6008546001600160a01b03163314610a205760405162461bcd60e51b81526004016108a990611c15565b8051610a3390600a90602084019061177d565b5050565b60006106c082611198565b6008546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016108a990611c15565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610ab85760405162461bcd60e51b81526004016108a990611c15565b600d55565b600081610add576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b2d5760405162461bcd60e51b81526004016108a990611c15565b610b3760006113a9565b565b6008546001600160a01b03163314610b635760405162461bcd60e51b81526004016108a990611c15565b60005b8151811015610a33576000828281518110610b8357610b83611d9f565b60200260200101519050610b98816001611167565b5080610ba381611d44565b915050610b66565b6060600380546106d590611d09565b6008546001600160a01b03163314610db257600f5460ff1615610bdc57600080fd5b60008111610c385760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016108a9565b6000610c4333610abd565b9050600b54821115610ca75760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016108a9565b600d5482610cb86001546000540390565b610cc29190611c7b565b1115610d055760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064016108a9565b600c54610d128383611c7b565b1115610d605760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016108a9565b81600e54610d6e9190611ca7565b341015610db05760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016108a9565b505b61091b3382611167565b6001600160a01b038216331415610de65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e7c5760405162461bcd60e51b81526004016108a990611c15565b600c55565b610e8c8484846111f9565b6001600160a01b0383163b15610ec557610ea8848484846113fb565b610ec5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ef55760405162461bcd60e51b81526004016108a990611c15565b600f805460ff19811660ff90911615179055565b6060610f1482611171565b610f785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a9565b6000610f826114f3565b90506000815111610fa25760405180602001604052806000815250610fcd565b80610fac84611502565b604051602001610fbd929190611b96565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ffe5760405162461bcd60e51b81526004016108a990611c15565b610a338282611167565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106c0565b6008546001600160a01b0316331461105d5760405162461bcd60e51b81526004016108a990611c15565b61ffff16600b55565b6008546001600160a01b031633146110905760405162461bcd60e51b81526004016108a990611c15565b6001600160a01b0381166110f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a9565b61091b816113a9565b6009546001600160a01b031633146111675760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b60648201526084016108a9565b610a338282611600565b60008054821080156106c0575050600090815260046020526040902054600160e01b161590565b6000816000548110156111e057600081815260046020526040902054600160e01b81166111de575b80610fcd5750600019016000818152600460205260409020546111c0565b505b604051636f96cda160e11b815260040160405180910390fd5b600061120482611198565b9050836001600160a01b0316816001600160a01b0316146112375760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061126757506112678633610606565b8061127a57506001600160a01b03821633145b90508061129a57604051632ce44b5f60e11b815260040160405180910390fd5b846112b857604051633a954ecd60e21b815260040160405180910390fd5b81156112db57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316611360576001840160008181526004602052604090205461135e57600054811461135e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611430903390899088908890600401611bc5565b602060405180830381600087803b15801561144a57600080fd5b505af192505050801561147a575060408051601f3d908101601f1916820190925261147791810190611ac7565b60015b6114d5573d8080156114a8576040519150601f19603f3d011682016040523d82523d6000602084013e6114ad565b606091505b5080516114cd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546106d590611d09565b6060816115265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611550578061153a81611d44565b91506115499050600a83611c93565b915061152a565b60008167ffffffffffffffff81111561156b5761156b611db5565b6040519080825280601f01601f191660200182016040528015611595576020820181803683370190505b5090505b84156114eb576115aa600183611cc6565b91506115b7600a86611d5f565b6115c2906030611c7b565b60f81b8183815181106115d7576115d7611d9f565b60200101906001600160f81b031916908160001a9053506115f9600a86611c93565b9450611599565b610a338282604051806020016040528060008152506000548361163557604051622e076360e81b815260040160405180910390fd5b826116535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611728575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116f160008784806001019550876113fb565b61170e576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116a657826000541461172357600080fd5b61176d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611729575b506000908155610ec59085838684565b82805461178990611d09565b90600052602060002090601f0160209004810192826117ab57600085556117f1565b82601f106117c457805160ff19168380011785556117f1565b828001600101855582156117f1579182015b828111156117f15782518255916020019190600101906117d6565b506117fd929150611801565b5090565b5b808211156117fd5760008155600101611802565b600067ffffffffffffffff83111561183057611830611db5565b611843601f8401601f1916602001611c4a565b905082815283838301111561185757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461188557600080fd5b919050565b60006020828403121561189c57600080fd5b610fcd8261186e565b600080604083850312156118b857600080fd5b6118c18361186e565b91506118cf6020840161186e565b90509250929050565b6000806000606084860312156118ed57600080fd5b6118f68461186e565b92506119046020850161186e565b9150604084013590509250925092565b6000806000806080858703121561192a57600080fd5b6119338561186e565b93506119416020860161186e565b925060408501359150606085013567ffffffffffffffff81111561196457600080fd5b8501601f8101871361197557600080fd5b61198487823560208401611816565b91505092959194509250565b600080604083850312156119a357600080fd5b6119ac8361186e565b9150602083013580151581146119c157600080fd5b809150509250929050565b600080604083850312156119df57600080fd5b6119e88361186e565b946020939093013593505050565b60006020808385031215611a0957600080fd5b823567ffffffffffffffff80821115611a2157600080fd5b818501915085601f830112611a3557600080fd5b813581811115611a4757611a47611db5565b8060051b9150611a58848301611c4a565b8181528481019084860184860187018a1015611a7357600080fd5b600095505b83861015611a9d57611a898161186e565b835260019590950194918601918601611a78565b5098975050505050505050565b600060208284031215611abc57600080fd5b8135610fcd81611dcb565b600060208284031215611ad957600080fd5b8151610fcd81611dcb565b600060208284031215611af657600080fd5b813567ffffffffffffffff811115611b0d57600080fd5b8201601f81018413611b1e57600080fd5b6114eb84823560208401611816565b600060208284031215611b3f57600080fd5b813561ffff81168114610fcd57600080fd5b600060208284031215611b6357600080fd5b5035919050565b60008151808452611b82816020860160208601611cdd565b601f01601f19169290920160200192915050565b60008351611ba8818460208801611cdd565b835190830190611bbc818360208801611cdd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bf890830184611b6a565b9695505050505050565b602081526000610fcd6020830184611b6a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c7357611c73611db5565b604052919050565b60008219821115611c8e57611c8e611d73565b500190565b600082611ca257611ca2611d89565b500490565b6000816000190483118215151615611cc157611cc1611d73565b500290565b600082821015611cd857611cd8611d73565b500390565b60005b83811015611cf8578181015183820152602001611ce0565b83811115610ec55750506000910152565b600181811c90821680611d1d57607f821691505b60208210811415611d3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d5857611d58611d73565b5060010190565b600082611d6e57611d6e611d89565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461091b57600080fdfea26469706673582212205be7ac748872f19990619d333f90c57a11996588b9e81a85e74cbb21fc6bbd1e64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004168747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f7774662f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063729ad39e11610118578063c4ae3168116100a0578063dc33e6811161006f578063dc33e681146105ab578063e97800cb146105cb578063e985e9c5146105eb578063f2fde38b14610634578063f4da18461461065457600080fd5b8063c4ae316814610540578063c87b56dd14610555578063cbce4c9714610575578063d5abeb011461059557600080fd5b8063a22cb465116100e7578063a22cb465146104b4578063afdf6134146104d4578063b228d925146104f4578063b88d4fde1461050a578063bbb897441461052a57600080fd5b8063729ad39e1461044e5780638da5cb5b1461046e57806395d89b411461048c578063a0712d68146104a157600080fd5b806342842e0e1161019b5780636352211e1161016a5780636352211e146103b957806368570bd6146103d95780636f8b44b0146103f957806370a0823114610419578063715018a61461043957600080fd5b806342842e0e1461033f57806344a0d68a1461035f57806355f804b31461037f5780635c975abb1461039f57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103025780633ccfd60b1461032257806341827f131461032a57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611aaa565b610674565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c6565b6040516102409190611c02565b34801561027757600080fd5b5061028b610286366004611b51565b610758565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046119cc565b61079c565b005b3480156102d157600080fd5b506102db600e5481565b604051908152602001610240565b3480156102f557600080fd5b50600154600054036102db565b34801561030e57600080fd5b506102c361031d3660046118d8565b61086f565b6102c361087f565b34801561033657600080fd5b5061025e61091e565b34801561034b57600080fd5b506102c361035a3660046118d8565b6109ac565b34801561036b57600080fd5b506102c361037a366004611b51565b6109c7565b34801561038b57600080fd5b506102c361039a366004611ae4565b6109f6565b3480156103ab57600080fd5b50600f546102349060ff1681565b3480156103c557600080fd5b5061028b6103d4366004611b51565b610a37565b3480156103e557600080fd5b506102c36103f436600461188a565b610a42565b34801561040557600080fd5b506102c3610414366004611b51565b610a8e565b34801561042557600080fd5b506102db61043436600461188a565b610abd565b34801561044557600080fd5b506102c3610b03565b34801561045a57600080fd5b506102c36104693660046119f6565b610b39565b34801561047a57600080fd5b506008546001600160a01b031661028b565b34801561049857600080fd5b5061025e610bab565b6102c36104af366004611b51565b610bba565b3480156104c057600080fd5b506102c36104cf366004611990565b610dbc565b3480156104e057600080fd5b506102c36104ef366004611b51565b610e52565b34801561050057600080fd5b506102db600c5481565b34801561051657600080fd5b506102c3610525366004611914565b610e81565b34801561053657600080fd5b506102db600b5481565b34801561054c57600080fd5b506102c3610ecb565b34801561056157600080fd5b5061025e610570366004611b51565b610f09565b34801561058157600080fd5b506102c36105903660046119cc565b610fd4565b3480156105a157600080fd5b506102db600d5481565b3480156105b757600080fd5b506102db6105c636600461188a565b611008565b3480156105d757600080fd5b506102c36105e6366004611b2d565b611033565b3480156105f757600080fd5b506102346106063660046118a5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064057600080fd5b506102c361064f36600461188a565b611066565b34801561066057600080fd5b506102c361066f3660046119cc565b6110fe565b60006301ffc9a760e01b6001600160e01b0319831614806106a557506380ac58cd60e01b6001600160e01b03198316145b806106c05750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106d590611d09565b80601f016020809104026020016040519081016040528092919081815260200182805461070190611d09565b801561074e5780601f106107235761010080835404028352916020019161074e565b820191906000526020600020905b81548152906001019060200180831161073157829003601f168201915b5050505050905090565b600061076382611171565b610780576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107a782611198565b9050806001600160a01b0316836001600160a01b031614156107dc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610813576107f68133610606565b610813576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61087a8383836111f9565b505050565b6008546001600160a01b031633146108b25760405162461bcd60e51b81526004016108a990611c15565b60405180910390fd5b604051600090734f33a1a7eb7b255cbc42fb77a3499c1ded7204c59047908381818185875af1925050503d8060008114610908576040519150601f19603f3d011682016040523d82523d6000602084013e61090d565b606091505b505090508061091b57600080fd5b50565b600a805461092b90611d09565b80601f016020809104026020016040519081016040528092919081815260200182805461095790611d09565b80156109a45780601f10610979576101008083540402835291602001916109a4565b820191906000526020600020905b81548152906001019060200180831161098757829003601f168201915b505050505081565b61087a83838360405180602001604052806000815250610e81565b6008546001600160a01b031633146109f15760405162461bcd60e51b81526004016108a990611c15565b600e55565b6008546001600160a01b03163314610a205760405162461bcd60e51b81526004016108a990611c15565b8051610a3390600a90602084019061177d565b5050565b60006106c082611198565b6008546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016108a990611c15565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610ab85760405162461bcd60e51b81526004016108a990611c15565b600d55565b600081610add576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b2d5760405162461bcd60e51b81526004016108a990611c15565b610b3760006113a9565b565b6008546001600160a01b03163314610b635760405162461bcd60e51b81526004016108a990611c15565b60005b8151811015610a33576000828281518110610b8357610b83611d9f565b60200260200101519050610b98816001611167565b5080610ba381611d44565b915050610b66565b6060600380546106d590611d09565b6008546001600160a01b03163314610db257600f5460ff1615610bdc57600080fd5b60008111610c385760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016108a9565b6000610c4333610abd565b9050600b54821115610ca75760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016108a9565b600d5482610cb86001546000540390565b610cc29190611c7b565b1115610d055760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064016108a9565b600c54610d128383611c7b565b1115610d605760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016108a9565b81600e54610d6e9190611ca7565b341015610db05760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b60448201526064016108a9565b505b61091b3382611167565b6001600160a01b038216331415610de65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e7c5760405162461bcd60e51b81526004016108a990611c15565b600c55565b610e8c8484846111f9565b6001600160a01b0383163b15610ec557610ea8848484846113fb565b610ec5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ef55760405162461bcd60e51b81526004016108a990611c15565b600f805460ff19811660ff90911615179055565b6060610f1482611171565b610f785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a9565b6000610f826114f3565b90506000815111610fa25760405180602001604052806000815250610fcd565b80610fac84611502565b604051602001610fbd929190611b96565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ffe5760405162461bcd60e51b81526004016108a990611c15565b610a338282611167565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106c0565b6008546001600160a01b0316331461105d5760405162461bcd60e51b81526004016108a990611c15565b61ffff16600b55565b6008546001600160a01b031633146110905760405162461bcd60e51b81526004016108a990611c15565b6001600160a01b0381166110f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a9565b61091b816113a9565b6009546001600160a01b031633146111675760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b60648201526084016108a9565b610a338282611600565b60008054821080156106c0575050600090815260046020526040902054600160e01b161590565b6000816000548110156111e057600081815260046020526040902054600160e01b81166111de575b80610fcd5750600019016000818152600460205260409020546111c0565b505b604051636f96cda160e11b815260040160405180910390fd5b600061120482611198565b9050836001600160a01b0316816001600160a01b0316146112375760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061126757506112678633610606565b8061127a57506001600160a01b03821633145b90508061129a57604051632ce44b5f60e11b815260040160405180910390fd5b846112b857604051633a954ecd60e21b815260040160405180910390fd5b81156112db57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316611360576001840160008181526004602052604090205461135e57600054811461135e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611430903390899088908890600401611bc5565b602060405180830381600087803b15801561144a57600080fd5b505af192505050801561147a575060408051601f3d908101601f1916820190925261147791810190611ac7565b60015b6114d5573d8080156114a8576040519150601f19603f3d011682016040523d82523d6000602084013e6114ad565b606091505b5080516114cd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546106d590611d09565b6060816115265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611550578061153a81611d44565b91506115499050600a83611c93565b915061152a565b60008167ffffffffffffffff81111561156b5761156b611db5565b6040519080825280601f01601f191660200182016040528015611595576020820181803683370190505b5090505b84156114eb576115aa600183611cc6565b91506115b7600a86611d5f565b6115c2906030611c7b565b60f81b8183815181106115d7576115d7611d9f565b60200101906001600160f81b031916908160001a9053506115f9600a86611c93565b9450611599565b610a338282604051806020016040528060008152506000548361163557604051622e076360e81b815260040160405180910390fd5b826116535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611728575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116f160008784806001019550876113fb565b61170e576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116a657826000541461172357600080fd5b61176d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611729575b506000908155610ec59085838684565b82805461178990611d09565b90600052602060002090601f0160209004810192826117ab57600085556117f1565b82601f106117c457805160ff19168380011785556117f1565b828001600101855582156117f1579182015b828111156117f15782518255916020019190600101906117d6565b506117fd929150611801565b5090565b5b808211156117fd5760008155600101611802565b600067ffffffffffffffff83111561183057611830611db5565b611843601f8401601f1916602001611c4a565b905082815283838301111561185757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461188557600080fd5b919050565b60006020828403121561189c57600080fd5b610fcd8261186e565b600080604083850312156118b857600080fd5b6118c18361186e565b91506118cf6020840161186e565b90509250929050565b6000806000606084860312156118ed57600080fd5b6118f68461186e565b92506119046020850161186e565b9150604084013590509250925092565b6000806000806080858703121561192a57600080fd5b6119338561186e565b93506119416020860161186e565b925060408501359150606085013567ffffffffffffffff81111561196457600080fd5b8501601f8101871361197557600080fd5b61198487823560208401611816565b91505092959194509250565b600080604083850312156119a357600080fd5b6119ac8361186e565b9150602083013580151581146119c157600080fd5b809150509250929050565b600080604083850312156119df57600080fd5b6119e88361186e565b946020939093013593505050565b60006020808385031215611a0957600080fd5b823567ffffffffffffffff80821115611a2157600080fd5b818501915085601f830112611a3557600080fd5b813581811115611a4757611a47611db5565b8060051b9150611a58848301611c4a565b8181528481019084860184860187018a1015611a7357600080fd5b600095505b83861015611a9d57611a898161186e565b835260019590950194918601918601611a78565b5098975050505050505050565b600060208284031215611abc57600080fd5b8135610fcd81611dcb565b600060208284031215611ad957600080fd5b8151610fcd81611dcb565b600060208284031215611af657600080fd5b813567ffffffffffffffff811115611b0d57600080fd5b8201601f81018413611b1e57600080fd5b6114eb84823560208401611816565b600060208284031215611b3f57600080fd5b813561ffff81168114610fcd57600080fd5b600060208284031215611b6357600080fd5b5035919050565b60008151808452611b82816020860160208601611cdd565b601f01601f19169290920160200192915050565b60008351611ba8818460208801611cdd565b835190830190611bbc818360208801611cdd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bf890830184611b6a565b9695505050505050565b602081526000610fcd6020830184611b6a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c7357611c73611db5565b604052919050565b60008219821115611c8e57611c8e611d73565b500190565b600082611ca257611ca2611d89565b500490565b6000816000190483118215151615611cc157611cc1611d73565b500290565b600082821015611cd857611cd8611d73565b500390565b60005b83811015611cf8578181015183820152602001611ce0565b83811115610ec55750506000910152565b600181811c90821680611d1d57607f821691505b60208210811415611d3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d5857611d58611d73565b5060010190565b600082611d6e57611d6e611d89565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461091b57600080fdfea26469706673582212205be7ac748872f19990619d333f90c57a11996588b9e81a85e74cbb21fc6bbd1e64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004168747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f7774662f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): https://us-central1-mofos-69a62.cloudfunctions.net/app/wtf/token/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e
Arg [3] : 636c6f756466756e6374696f6e732e6e65742f6170702f7774662f746f6b656e
Arg [4] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44363:4066:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18728:615;;;;;;;;;;-1:-1:-1;18728:615:0;;;;;:::i;:::-;;:::i;:::-;;;6876:14:1;;6869:22;6851:41;;6839:2;6824:18;18728:615:0;;;;;;;;23751:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25819:204::-;;;;;;;;;;-1:-1:-1;25819:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6174:32:1;;;6156:51;;6144:2;6129:18;25819:204:0;6010:203:1;25279:474:0;;;;;;;;;;-1:-1:-1;25279:474:0;;;;;:::i;:::-;;:::i;:::-;;44726:29;;;;;;;;;;;;;;;;;;;10722:25:1;;;10710:2;10695:18;44726:29:0;10576:177:1;17782:315:0;;;;;;;;;;-1:-1:-1;18048:12:0;;17835:7;18032:13;:28;17782:315;;26705:170;;;;;;;;;;-1:-1:-1;26705:170:0;;;;;:::i;:::-;;:::i;48236:190::-;;;:::i;44485:24::-;;;;;;;;;;;;;:::i;26946:185::-;;;;;;;;;;-1:-1:-1;26946:185:0;;;;;:::i;:::-;;:::i;47561:86::-;;;;;;;;;;-1:-1:-1;47561:86:0;;;;;:::i;:::-;;:::i;47900:107::-;;;;;;;;;;-1:-1:-1;47900:107:0;;;;;:::i;:::-;;:::i;44779:26::-;;;;;;;;;;-1:-1:-1;44779:26:0;;;;;;;;23540:144;;;;;;;;;;-1:-1:-1;23540:144:0;;;;;:::i;:::-;;:::i;45029:119::-;;;;;;;;;;-1:-1:-1;45029:119:0;;;;;:::i;:::-;;:::i;47798:94::-;;;;;;;;;;-1:-1:-1;47798:94:0;;;;;:::i;:::-;;:::i;19407:234::-;;;;;;;;;;-1:-1:-1;19407:234:0;;;;;:::i;:::-;;:::i;4764:103::-;;;;;;;;;;;;;:::i;46705:234::-;;;;;;;;;;-1:-1:-1;46705:234:0;;;;;:::i;:::-;;:::i;4113:87::-;;;;;;;;;;-1:-1:-1;4186:6:0;;-1:-1:-1;;;;;4186:6:0;4113:87;;23920:104;;;;;;;;;;;;;:::i;45619:850::-;;;;;;:::i;:::-;;:::i;26095:308::-;;;;;;;;;;-1:-1:-1;26095:308:0;;;;;:::i;:::-;;:::i;46479:99::-;;;;;;;;;;-1:-1:-1;46479:99:0;;;;;:::i;:::-;;:::i;44605:35::-;;;;;;;;;;;;;;;;27202:396;;;;;;;;;;-1:-1:-1;27202:396:0;;;;;:::i;:::-;;:::i;44552:46::-;;;;;;;;;;;;;;;;48015:75;;;;;;;;;;;;;:::i;47066:487::-;;;;;;;;;;-1:-1:-1;47066:487:0;;;;;:::i;:::-;;:::i;46586:111::-;;;;;;;;;;-1:-1:-1;46586:111:0;;;;;:::i;:::-;;:::i;44672:31::-;;;;;;;;;;;;;;;;45484:113;;;;;;;;;;-1:-1:-1;45484:113:0;;;;;:::i;:::-;;:::i;47655:129::-;;;;;;;;;;-1:-1:-1;47655:129:0;;;;;:::i;:::-;;:::i;26474:164::-;;;;;;;;;;-1:-1:-1;26474:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26595:25:0;;;26571:4;26595:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26474:164;5022:201;;;;;;;;;;-1:-1:-1;5022:201:0;;;;;:::i;:::-;;:::i;45226:250::-;;;;;;;;;;-1:-1:-1;45226:250:0;;;;;:::i;:::-;;:::i;18728:615::-;18813:4;-1:-1:-1;;;;;;;;;19113:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19190:25:0;;;19113:102;:179;;;-1:-1:-1;;;;;;;;;;19267:25:0;;;19113:179;19093:199;18728:615;-1:-1:-1;;18728:615:0:o;23751:100::-;23805:13;23838:5;23831:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23751:100;:::o;25819:204::-;25887:7;25912:16;25920:7;25912;:16::i;:::-;25907:64;;25937:34;;-1:-1:-1;;;25937:34:0;;;;;;;;;;;25907:64;-1:-1:-1;25991:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25991:24:0;;25819:204::o;25279:474::-;25352:13;25384:27;25403:7;25384:18;:27::i;:::-;25352:61;;25434:5;-1:-1:-1;;;;;25428:11:0;:2;-1:-1:-1;;;;;25428:11:0;;25424:48;;;25448:24;;-1:-1:-1;;;25448:24:0;;;;;;;;;;;25424:48;42207:10;-1:-1:-1;;;;;25489:28:0;;;25485:175;;25537:44;25554:5;42207:10;26474:164;:::i;25537:44::-;25532:128;;25609:35;;-1:-1:-1;;;25609:35:0;;;;;;;;;;;25532:128;25672:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25672:29:0;-1:-1:-1;;;;;25672:29:0;;;;;;;;;25717:28;;25672:24;;25717:28;;;;;;;25341:412;25279:474;;:::o;26705:170::-;26839:28;26849:4;26855:2;26859:7;26839:9;:28::i;:::-;26705:170;;;:::o;48236:190::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;;;;;;;;;48306:90:::1;::::0;48293:7:::1;::::0;48314:42:::1;::::0;48370:21:::1;::::0;48293:7;48306:90;48293:7;48306:90;48370:21;48314:42;48306:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48292:104;;;48415:2;48407:11;;;::::0;::::1;;48281:145;48236:190::o:0;44485:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26946:185::-;27084:39;27101:4;27107:2;27111:7;27084:39;;;;;;;;;;;;:16;:39::i;47561:86::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47624:4:::1;:15:::0;47561:86::o;47900:107::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47975:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47900:107:::0;:::o;23540:144::-;23604:7;23647:27;23666:7;23647:18;:27::i;45029:119::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;45112:16:::1;:28:::0;;-1:-1:-1;;;;;;45112:28:0::1;-1:-1:-1::0;;;;;45112:28:0;;;::::1;::::0;;;::::1;::::0;;45029:119::o;47798:94::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47865:9:::1;:19:::0;47798:94::o;19407:234::-;19471:7;19513:5;19491:70;;19533:28;;-1:-1:-1;;;19533:28:0;;;;;;;;;;;19491:70;-1:-1:-1;;;;;;19579:25:0;;;;;:18;:25;;;;;;14752:13;19579:54;;19407:234::o;4764:103::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;4829:30:::1;4856:1;4829:18;:30::i;:::-;4764:103::o:0;46705:234::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;46791:9:::1;46786:146;46810:17;:24;46806:1;:28;46786:146;;;46856:10;46869:17;46887:1;46869:20;;;;;;;;:::i;:::-;;;;;;;46856:33;;46904:16;46914:2;46918:1;46904:9;:16::i;:::-;-1:-1:-1::0;46836:3:0;::::1;::::0;::::1;:::i;:::-;;;;46786:146;;23920:104:::0;23976:13;24009:7;24002:14;;;;;:::i;45619:850::-;4186:6;;-1:-1:-1;;;;;4186:6:0;45686:10;:21;45682:733;;45733:6;;;;45732:7;45724:16;;;;;;45777:1;45763:11;:15;45755:64;;;;-1:-1:-1;;;45755:64:0;;10020:2:1;45755:64:0;;;10002:21:1;10059:2;10039:18;;;10032:30;10098:34;10078:18;;;10071:62;-1:-1:-1;;;10149:18:1;;;10142:34;10193:19;;45755:64:0;9818:400:1;45755:64:0;45834:23;45860:21;45870:10;45860:9;:21::i;:::-;45834:47;;45937:27;;45922:11;:42;;45896:143;;;;-1:-1:-1;;;45896:143:0;;8835:2:1;45896:143:0;;;8817:21:1;8874:2;8854:18;;;8847:30;8913:34;8893:18;;;8886:62;-1:-1:-1;;;8964:18:1;;;8957:37;9011:19;;45896:143:0;8633:403:1;45896:143:0;46111:9;;46096:11;46080:13;18048:12;;17835:7;18032:13;:28;;17782:315;46080:13;:27;;;;:::i;:::-;:40;;46054:120;;;;-1:-1:-1;;;46054:120:0;;7329:2:1;46054:120:0;;;7311:21:1;7368:2;7348:18;;;7341:30;-1:-1:-1;;;7387:18:1;;;7380:48;7445:18;;46054:120:0;7127:342:1;46054:120:0;46250:16;;46216:29;46234:11;46216:15;:29;:::i;:::-;46215:51;;46189:137;;;;-1:-1:-1;;;46189:137:0;;10425:2:1;46189:137:0;;;10407:21:1;10464:2;10444:18;;;10437:30;10503:26;10483:18;;;10476:54;10547:18;;46189:137:0;10223:348:1;46189:137:0;46371:11;46364:4;;:18;;;;:::i;:::-;46351:9;:31;;46343:60;;;;-1:-1:-1;;;46343:60:0;;8490:2:1;46343:60:0;;;8472:21:1;8529:2;8509:18;;;8502:30;-1:-1:-1;;;8548:18:1;;;8541:46;8604:18;;46343:60:0;8288:340:1;46343:60:0;45709:706;45682:733;46427:34;46437:10;46449:11;46427:9;:34::i;26095:308::-;-1:-1:-1;;;;;26194:31:0;;42207:10;26194:31;26190:61;;;26234:17;;-1:-1:-1;;;26234:17:0;;;;;;;;;;;26190:61;42207:10;26264:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26264:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26264:60:0;;;;;;;;;;26340:55;;6851:41:1;;;26264:49:0;;42207:10;26340:55;;6824:18:1;26340:55:0;;;;;;;26095:308;;:::o;46479:99::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;46548:16:::1;:22:::0;46479:99::o;27202:396::-;27369:28;27379:4;27385:2;27389:7;27369:9;:28::i;:::-;-1:-1:-1;;;;;27412:14:0;;;:19;27408:183;;27451:56;27482:4;27488:2;27492:7;27501:5;27451:30;:56::i;:::-;27446:145;;27535:40;;-1:-1:-1;;;27535:40:0;;;;;;;;;;;27446:145;27202:396;;;;:::o;48015:75::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;48076:6:::1;::::0;;-1:-1:-1;;48066:16:0;::::1;48076:6;::::0;;::::1;48075:7;48066:16;::::0;;48015:75::o;47066:487::-;47184:13;47237:16;47245:7;47237;:16::i;:::-;47215:113;;;;-1:-1:-1;;;47215:113:0;;9604:2:1;47215:113:0;;;9586:21:1;9643:2;9623:18;;;9616:30;9682:34;9662:18;;;9655:62;-1:-1:-1;;;9733:18:1;;;9726:45;9788:19;;47215:113:0;9402:411:1;47215:113:0;47339:28;47370:10;:8;:10::i;:::-;47339:41;;47442:1;47417:14;47411:28;:32;:134;;;;;;;;;;;;;;;;;47487:14;47503:18;:7;:16;:18::i;:::-;47470:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47411:134;47391:154;47066:487;-1:-1:-1;;;47066:487:0:o;46586:111::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;46662:27:::1;46672:3;46677:11;46662:9;:27::i;45484:113::-:0;-1:-1:-1;;;;;19812:25:0;;45542:7;19812:25;;;:18;:25;;14889:2;19812:25;;;;14752:13;19812:49;;19811:80;45569:20;19723:176;47655:129;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47739:37:::1;;:27;:37:::0;47655:129::o;5022:201::-;4186:6;;-1:-1:-1;;;;;4186:6:0;42207:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5111:22:0;::::1;5103:73;;;::::0;-1:-1:-1;;;5103:73:0;;7676:2:1;5103:73:0::1;::::0;::::1;7658:21:1::0;7715:2;7695:18;;;7688:30;7754:34;7734:18;;;7727:62;-1:-1:-1;;;7805:18:1;;;7798:36;7851:19;;5103:73:0::1;7474:402:1::0;5103:73:0::1;5187:28;5206:8;5187:18;:28::i;45226:250::-:0;45343:16;;-1:-1:-1;;;;;45343:16:0;45329:10;:30;45307:118;;;;-1:-1:-1;;;45307:118:0;;8083:2:1;45307:118:0;;;8065:21:1;8122:2;8102:18;;;8095:30;8161:34;8141:18;;;8134:62;-1:-1:-1;;;8212:18:1;;;8205:36;8258:19;;45307:118:0;7881:402:1;45307:118:0;45436:32;45446:8;45456:11;45436:9;:32::i;27853:273::-;27910:4;28000:13;;27990:7;:23;27947:152;;;;-1:-1:-1;;28051:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28051:43:0;:48;;27853:273::o;21055:1129::-;21122:7;21157;21259:13;;21252:4;:20;21248:869;;;21297:14;21314:23;;;:17;:23;;;;;;-1:-1:-1;;;21403:23:0;;21399:699;;21922:113;21929:11;21922:113;;-1:-1:-1;;;22000:6:0;21982:25;;;;:17;:25;;;;;;21922:113;;21399:699;21274:843;21248:869;22145:31;;-1:-1:-1;;;22145:31:0;;;;;;;;;;;33112:2654;33227:27;33257;33276:7;33257:18;:27::i;:::-;33227:57;;33342:4;-1:-1:-1;;;;;33301:45:0;33317:19;-1:-1:-1;;;;;33301:45:0;;33297:86;;33355:28;;-1:-1:-1;;;33355:28:0;;;;;;;;;;;33297:86;33396:23;33422:24;;;:15;:24;;;;;;-1:-1:-1;;;;;33422:24:0;;;;33396:23;33485:27;;42207:10;33485:27;;:87;;-1:-1:-1;33529:43:0;33546:4;42207:10;26474:164;:::i;33529:43::-;33485:142;;;-1:-1:-1;;;;;;33589:38:0;;42207:10;33589:38;33485:142;33459:169;;33646:17;33641:66;;33672:35;;-1:-1:-1;;;33672:35:0;;;;;;;;;;;33641:66;33740:2;33718:62;;33757:23;;-1:-1:-1;;;33757:23:0;;;;;;;;;;;33718:62;33924:15;33906:39;33902:103;;33969:24;;;;:15;:24;;;;;33962:31;;-1:-1:-1;;;;;;33962:31:0;;;33902:103;-1:-1:-1;;;;;34372:24:0;;;;;;;:18;:24;;;;;;;;34370:26;;-1:-1:-1;;34370:26:0;;;34441:22;;;;;;;;34439:24;;-1:-1:-1;34439:24:0;;;34734:26;;;:17;:26;;;-1:-1:-1;;;34822:15:0;15406:3;34822:41;34780:84;;:128;;34734:174;;;35028:46;;35024:626;;35132:1;35122:11;;35100:19;35255:30;;;:17;:30;;;;;;35251:384;;35393:13;;35378:11;:28;35374:242;;35540:30;;;;:17;:30;;;;;:52;;;35374:242;35081:569;35024:626;35697:7;35693:2;-1:-1:-1;;;;;35678:27:0;35687:4;-1:-1:-1;;;;;35678:27:0;;;;;;;;;;;33216:2550;;;33112:2654;;;:::o;5383:191::-;5476:6;;;-1:-1:-1;;;;;5493:17:0;;;-1:-1:-1;;;;;;5493:17:0;;;;;;;5526:40;;5476:6;;;5493:17;5476:6;;5526:40;;5457:16;;5526:40;5446:128;5383:191;:::o;39589:716::-;39773:88;;-1:-1:-1;;;39773:88:0;;39752:4;;-1:-1:-1;;;;;39773:45:0;;;;;:88;;42207:10;;39840:4;;39846:7;;39855:5;;39773:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39773:88:0;;;;;;;;-1:-1:-1;;39773:88:0;;;;;;;;;;;;:::i;:::-;;;39769:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40056:13:0;;40052:235;;40102:40;;-1:-1:-1;;;40102:40:0;;;;;;;;;;;40052:235;40245:6;40239:13;40230:6;40226:2;40222:15;40215:38;39769:529;-1:-1:-1;;;;;;39932:64:0;-1:-1:-1;;;39932:64:0;;-1:-1:-1;39769:529:0;39589:716;;;;;;:::o;46947:111::-;47007:13;47040:10;47033:17;;;;;:::i;399:723::-;455:13;676:10;672:53;;-1:-1:-1;;703:10:0;;;;;;;;;;;;-1:-1:-1;;;703:10:0;;;;;399:723::o;672:53::-;750:5;735:12;791:78;798:9;;791:78;;824:8;;;;:::i;:::-;;-1:-1:-1;847:10:0;;-1:-1:-1;855:2:0;847:10;;:::i;:::-;;;791:78;;;879:19;911:6;901:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;901:17:0;;879:39;;929:154;936:10;;929:154;;963:11;973:1;963:11;;:::i;:::-;;-1:-1:-1;1032:10:0;1040:2;1032:5;:10;:::i;:::-;1019:24;;:2;:24;:::i;:::-;1006:39;;989:6;996;989:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;989:56:0;;;;;;;;-1:-1:-1;1060:11:0;1069:2;1060:11;;:::i;:::-;;;929:154;;28210:104;28279:27;28289:2;28293:8;28279:27;;;;;;;;;;;;28810:20;28833:13;28879:2;28857:58;;28896:19;;-1:-1:-1;;;28896:19:0;;;;;;;;;;;28857:58;28930:13;28926:44;;28952:18;;-1:-1:-1;;;28952:18:0;;;;;;;;;;;28926:44;-1:-1:-1;;;;;29519:22:0;;;;;;:18;:22;;;;14889:2;29519:22;;;:70;;29557:31;29545:44;;29519:70;;;29832:31;;;:17;:31;;;;;29925:15;15406:3;29925:41;29883:84;;-1:-1:-1;30003:13:0;;15665:3;29988:56;29883:162;29832:213;;:31;;30126:23;;;;30170:14;:19;30166:635;;30210:313;30241:38;;30266:12;;-1:-1:-1;;;;;30241:38:0;;;30258:1;;30241:38;;30258:1;;30241:38;30307:69;30346:1;30350:2;30354:14;;;;;;30370:5;30307:30;:69::i;:::-;30302:174;;30412:40;;-1:-1:-1;;;30412:40:0;;;;;;;;;;;30302:174;30518:3;30503:12;:18;30210:313;;30604:12;30587:13;;:29;30583:43;;30618:8;;;30583:43;30166:635;;;30667:119;30698:40;;30723:14;;;;;-1:-1:-1;;;;;30698:40:0;;;30715:1;;30698:40;;30715:1;;30698:40;30781:3;30766:12;:18;30667:119;;30166:635;-1:-1:-1;30815:13:0;:28;;;30865:60;;30898:2;30902:12;30916:8;30865:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:272::-;4659:6;4712:2;4700:9;4691:7;4687:23;4683:32;4680:52;;;4728:1;4725;4718:12;4680:52;4767:9;4754:23;4817:6;4810:5;4806:18;4799:5;4796:29;4786:57;;4839:1;4836;4829:12;4878:180;4937:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;-1:-1:-1;5029:23:1;;4878:180;-1:-1:-1;4878:180:1:o;5063:257::-;5104:3;5142:5;5136:12;5169:6;5164:3;5157:19;5185:63;5241:6;5234:4;5229:3;5225:14;5218:4;5211:5;5207:16;5185:63;:::i;:::-;5302:2;5281:15;-1:-1:-1;;5277:29:1;5268:39;;;;5309:4;5264:50;;5063:257;-1:-1:-1;;5063:257:1:o;5325:470::-;5504:3;5542:6;5536:13;5558:53;5604:6;5599:3;5592:4;5584:6;5580:17;5558:53;:::i;:::-;5674:13;;5633:16;;;;5696:57;5674:13;5633:16;5730:4;5718:17;;5696:57;:::i;:::-;5769:20;;5325:470;-1:-1:-1;;;;5325:470:1:o;6218:488::-;-1:-1:-1;;;;;6487:15:1;;;6469:34;;6539:15;;6534:2;6519:18;;6512:43;6586:2;6571:18;;6564:34;;;6634:3;6629:2;6614:18;;6607:31;;;6412:4;;6655:45;;6680:19;;6672:6;6655:45;:::i;:::-;6647:53;6218:488;-1:-1:-1;;;;;;6218:488:1:o;6903:219::-;7052:2;7041:9;7034:21;7015:4;7072:44;7112:2;7101:9;7097:18;7089:6;7072:44;:::i;9041:356::-;9243:2;9225:21;;;9262:18;;;9255:30;9321:34;9316:2;9301:18;;9294:62;9388:2;9373:18;;9041:356::o;10758:275::-;10829:2;10823:9;10894:2;10875:13;;-1:-1:-1;;10871:27:1;10859:40;;10929:18;10914:34;;10950:22;;;10911:62;10908:88;;;10976:18;;:::i;:::-;11012:2;11005:22;10758:275;;-1:-1:-1;10758:275:1:o;11038:128::-;11078:3;11109:1;11105:6;11102:1;11099:13;11096:39;;;11115:18;;:::i;:::-;-1:-1:-1;11151:9:1;;11038:128::o;11171:120::-;11211:1;11237;11227:35;;11242:18;;:::i;:::-;-1:-1:-1;11276:9:1;;11171:120::o;11296:168::-;11336:7;11402:1;11398;11394:6;11390:14;11387:1;11384:21;11379:1;11372:9;11365:17;11361:45;11358:71;;;11409:18;;:::i;:::-;-1:-1:-1;11449:9:1;;11296:168::o;11469:125::-;11509:4;11537:1;11534;11531:8;11528:34;;;11542:18;;:::i;:::-;-1:-1:-1;11579:9:1;;11469:125::o;11599:258::-;11671:1;11681:113;11695:6;11692:1;11689:13;11681:113;;;11771:11;;;11765:18;11752:11;;;11745:39;11717:2;11710:10;11681:113;;;11812:6;11809:1;11806:13;11803:48;;;-1:-1:-1;;11847:1:1;11829:16;;11822:27;11599:258::o;11862:380::-;11941:1;11937:12;;;;11984;;;12005:61;;12059:4;12051:6;12047:17;12037:27;;12005:61;12112:2;12104:6;12101:14;12081:18;12078:38;12075:161;;;12158:10;12153:3;12149:20;12146:1;12139:31;12193:4;12190:1;12183:15;12221:4;12218:1;12211:15;12075:161;;11862:380;;;:::o;12247:135::-;12286:3;-1:-1:-1;;12307:17:1;;12304:43;;;12327:18;;:::i;:::-;-1:-1:-1;12374:1:1;12363:13;;12247:135::o;12387:112::-;12419:1;12445;12435:35;;12450:18;;:::i;:::-;-1:-1:-1;12484:9:1;;12387:112::o;12504:127::-;12565:10;12560:3;12556:20;12553:1;12546:31;12596:4;12593:1;12586:15;12620:4;12617:1;12610:15;12636:127;12697:10;12692:3;12688:20;12685:1;12678:31;12728:4;12725:1;12718:15;12752:4;12749:1;12742:15;12768:127;12829:10;12824:3;12820:20;12817:1;12810:31;12860:4;12857:1;12850:15;12884:4;12881:1;12874:15;12900:127;12961:10;12956:3;12952:20;12949:1;12942:31;12992:4;12989:1;12982:15;13016:4;13013:1;13006:15;13032:131;-1:-1:-1;;;;;;13106:32:1;;13096:43;;13086:71;;13153:1;13150;13143:12

Swarm Source

ipfs://5be7ac748872f19990619d333f90c57a11996588b9e81a85e74cbb21fc6bbd1e
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.