ETH Price: $3,078.20 (+2.68%)
Gas: 4 Gwei

Token

Stacy (STACY)
 

Overview

Max Total Supply

1,152 STACY

Holders

201

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 STACY
0x5905e999425cd9f9e1cd2d9339b25789e46cf936
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,000 unique and sexiest NFTs in the Metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Stacy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10 runs

Other Settings:
default evmVersion
File 1 of 14 : Stacy.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./IChad.sol";
import "./IProxyRegistry.sol";
import "./IStacy.sol";

contract Stacy is Ownable, ERC721, IStacy {
    error AmountExceedsMax(uint256 amount, uint256 maxAmount);
    error AmountExceedsMaxPerMint(uint256 amount, uint256 maxAmountPerMint);
    error NotEnoughEther(uint256 value, uint256 requiredEther);
    error SaleNotStarted(uint256 timestamp, uint256 startTime);
    error SaleEnded(uint256 timestamp, uint256 endTime);
    error NotChadOwner(address msgSender, uint256 chadId);
    error ChadUsed(uint256 chadId);

    /// @inheritdoc IStacy
    uint256 public immutable override saleStartTimestamp = 1633708800;

    ///  @inheritdoc IStacy
    uint256 public immutable override price = 0.05 ether;

    ///  @inheritdoc IStacy
    uint256 public immutable override maxAmountPerMint = 20;

    ///  @inheritdoc IStacy
    uint256 public immutable override maxSupply = 10_000;

    ///  @inheritdoc IStacy
    address public immutable override chad = 0x9CF63EFbe189091b7e3d364c7F6cFbE06997872b;

    /// @inheritdoc IStacy
    mapping(uint256 => bool) public override isChadUsed;

    /// @inheritdoc IStacy
    string public override contractURI;

    /// @inheritdoc IStacy
    uint256 public override totalSupply;

    // Prefix of each tokenURI
    string internal baseURI;

    // Interface id of `contractURI()` function
    bytes4 internal constant INTERFACE_ID_CONTRACT_URI = 0xe8a3d485;

    // OpenSea Proxy Registry address
    address internal constant OPEN_SEA_PROXY_REGISTRY = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    /// @notice Creates Stacy NFTs, stores all the required parameters.
    /// @param contractURI_ Collection URI with collection metadata.
    /// @param baseURI_ Collection base URI prepended to each tokenURI.
    constructor(string memory contractURI_, string memory baseURI_) ERC721("Stacy", "STACY") {
        contractURI = contractURI_;
        baseURI = baseURI_;
    }

    /// @inheritdoc IStacy
    function setBaseURI(string memory newBaseURI) external override onlyOwner {
        baseURI = newBaseURI;
    }

    /// @inheritdoc IStacy
    function setContractURI(string memory newContractURI) external override onlyOwner {
        contractURI = newContractURI;
    }

    /// @inheritdoc IStacy
    function mint(uint256 amount) external payable override {
        // solhint-disable not-rely-on-time
        if (block.timestamp < saleStartTimestamp)
            revert SaleNotStarted(block.timestamp, saleStartTimestamp);
        // solhint-enable not-rely-on-time

        if (amount > maxAmountPerMint) revert AmountExceedsMaxPerMint(amount, maxAmountPerMint);
        if (msg.value < price * amount) revert NotEnoughEther(msg.value, price * amount);

        uint256 newSupply = totalSupply + amount;
        if (newSupply > maxSupply) revert AmountExceedsMax(newSupply, maxSupply);

        _safeMintMultiple(_msgSender(), amount);
    }

    /// @inheritdoc IStacy
    function mintPreSale(uint256[] calldata chadIds) external payable override {
        // solhint-disable not-rely-on-time
        if (block.timestamp >= saleStartTimestamp)
            revert SaleEnded(block.timestamp, saleStartTimestamp);
        // solhint-enable not-rely-on-time

        address msgSender = _msgSender();
        uint256 length = chadIds.length;
        for (uint256 i = 0; i < length; i++) {
            uint256 chadId = chadIds[i];
            if (IChad(chad).ownerOf(chadId) != msgSender) revert NotChadOwner(msgSender, chadId);
            if (isChadUsed[chadId]) revert ChadUsed(chadId);
            isChadUsed[chadId] = true;
        }

        _safeMintMultiple(msgSender, length);
    }

    /// @inheritdoc IStacy
    function withdrawEther() external override onlyOwner {
        Address.sendValue(payable(_msgSender()), address(this).balance);
    }

    /// @inheritdoc IERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, IERC165)
        returns (bool)
    {
        return interfaceId == INTERFACE_ID_CONTRACT_URI || super.supportsInterface(interfaceId);
    }

    /// @inheritdoc IERC721
    function isApprovedForAll(address owner, address operator)
        public
        view
        override(ERC721, IERC721)
        returns (bool)
    {
        IProxyRegistry proxyRegistry = IProxyRegistry(OPEN_SEA_PROXY_REGISTRY);
        if (proxyRegistry.proxies(owner) == operator) return true;

        return super.isApprovedForAll(owner, operator);
    }

    /// @dev Helper function for minting multiple tokens
    function _safeMintMultiple(address recipient, uint256 amount) internal {
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(recipient, totalSupply);
        }
    }

    /// @inheritdoc ERC721
    function _safeMint(address recipient, uint256 tokenId) internal override {
        totalSupply += 1;

        super._safeMint(recipient, tokenId);
    }

    /// @inheritdoc ERC721
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 4 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 5 of 14 : IChad.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.7;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IChad is IERC721 {
    /**
     * @notice Mints specified number of tokens in a single transaction
     * @param amount Total number of tokens to be minted and sent to `_msgSender()`
     *
     * Requirements:
     *
     * - `amount` must be less than max limit for a single transaction
     * - `block.timestamp` must be greater than the sale start timestamp
     * - `msg.value` must be exact (or greater) payment amount in wei
     * - `currentPublicAmount` plus amount must not exceed max public amount
     */
    function mint(uint256 amount) external payable;

    /**
     * @notice Mints specified number of tokens to every recipient in a single transaction
     * @param amount Total number of tokens to be minted and sent to every recipient
     * @param recipients Array of tokens recepients
     *
     * Requirements:
     *
     * - can be called by the owner
     * - `currentReservedAmount` plus amount per recipient must not exceed the max reserved amount
     */
    function mintReserved(uint256 amount, address[] calldata recipients) external;

    /**
     * @notice Transfers Ether to the contract owner
     *
     * Requirements:
     *
     * - can be called by the owner
     */
    function withdrawEther() external;

    /**
     * @notice Set new prefix of each tokenURI
     *
     * Requirements:
     *
     * - can be called by the owner
     */
    function setBaseURI(string memory newBaseURI) external;

    /**
     * @notice Set new collection metadata URI
     *
     * Requirements:
     *
     * - can be called by the owner
     */
    function setContractURI(string memory newContractURI) external;

    /**
     * @notice Collection metadata URI
     */
    function contractURI() external view returns (string memory);

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);
}

File 6 of 14 : IProxyRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.7;

interface IProxyRegistry {
    function proxies(address owner) external view returns (address operator);
}

File 7 of 14 : IStacy.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.7;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IStacy is IERC721 {
    /**
     * @notice Mints number of tokens equal to the length of `chadIds`
     * @param chadIds IDs of Chad NFTs owned by `_msgSender()`
     *
     * Requirements:
     *
     * - `_msgSender()` should own Chad NFTs with `chadIds` IDs
     * - `chadIds` should not be previously used in this function call
     * - `block.timestamp` must be lower than the sale start timestamp
     */
    function mintPreSale(uint256[] calldata chadIds) external payable;

    /**
     * @notice Mints specified number of tokens in a single transaction
     * @param amount Total number of tokens to be minted and sent to `_msgSender()`
     *
     * Requirements:
     *
     * - `amount` must be less than max limit for a single transaction
     * - `block.timestamp` must be greater than the sale start timestamp
     * - `msg.value` must be exact (or greater) payment amount in wei
     * - `totalSupply` must not exceed `maxSupply`
     */
    function mint(uint256 amount) external payable;

    /**
     * @notice Set new prefix of each tokenURI
     *
     * Requirements:
     *
     * - can be called by the owner
     */
    function setBaseURI(string memory newBaseURI) external;

    /**
     * @notice Set new collection metadata URI
     *
     * Requirements:
     *
     * - can be called by the owner
     */
    function setContractURI(string memory newContractURI) external;

    /**
     * @notice Transfers Ether to the contract owner
     *
     * Requirements:
     *
     * - can be called by the owner
     */
    function withdrawEther() external;

    /**
     * @param chadId ID of Chad to be checked
     * @notice Returns whether the Chad has already been used for Stacy mint or not
     */
    function isChadUsed(uint256 chadId) external view returns (bool);

    /**
     * @dev Returns the total amount of tokens stored by the contract
     */
    function totalSupply() external view returns (uint256);

    /**
     * @notice Returns the timestamp of presale (Wednesday, 8 October 2021, 16:00 UTC)
     */
    function saleStartTimestamp() external view returns (uint256);

    /**
     * @notice Returns mint price of each token (0.05 ETH)
     */
    function price() external view returns (uint256);

    /**
     * @notice Returns max amount of NFT per one `mint()` function call (20)
     */
    function maxAmountPerMint() external view returns (uint256);

    /**
     * @notice Returns max supply of NFTs (10,000)
     */
    function maxSupply() external view returns (uint256);

    /**
     * @notice Returns Chad NFT contract address (0x9CF63EFbe189091b7e3d364c7F6cFbE06997872b)
     */
    function chad() external view returns (address);

    /**
     * @notice Returns contract metadata URI
     */
    function contractURI() external view returns (string memory);
}

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT

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 9 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 11 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"AmountExceedsMax","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxAmountPerMint","type":"uint256"}],"name":"AmountExceedsMaxPerMint","type":"error"},{"inputs":[{"internalType":"uint256","name":"chadId","type":"uint256"}],"name":"ChadUsed","type":"error"},{"inputs":[{"internalType":"address","name":"msgSender","type":"address"},{"internalType":"uint256","name":"chadId","type":"uint256"}],"name":"NotChadOwner","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"requiredEther","type":"uint256"}],"name":"NotEnoughEther","type":"error"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"SaleEnded","type":"error"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"SaleNotStarted","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":"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":"chad","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isChadUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerMint","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"chadIds","type":"uint256[]"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040526361606b0060805266b1a2bc2ec5000060a052601460c05261271060e0527f9cf63efbe189091b7e3d364c7f6cfbe06997872b000000000000000000000000610100523480156200005557600080fd5b506040516200255a3803806200255a8339810160408190526200007891620002e1565b60405180604001604052806005815260200164537461637960d81b81525060405180604001604052806005815260200164535441435960d81b815250620000ce620000c86200013060201b60201c565b62000134565b8151620000e390600190602085019062000184565b508051620000f990600290602084019062000184565b50508251620001119150600890602085019062000184565b5080516200012790600a90602084019062000184565b5050506200039e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000192906200034b565b90600052602060002090601f016020900481019282620001b6576000855562000201565b82601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b506200020f92915062000213565b5090565b5b808211156200020f576000815560010162000214565b600082601f8301126200023c57600080fd5b81516001600160401b038082111562000259576200025962000388565b604051601f8301601f19908116603f0116810190828211818310171562000284576200028462000388565b81604052838152602092508683858801011115620002a157600080fd5b600091505b83821015620002c55785820183015181830184015290820190620002a6565b83821115620002d75760008385830101525b9695505050505050565b60008060408385031215620002f557600080fd5b82516001600160401b03808211156200030d57600080fd5b6200031b868387016200022a565b935060208501519150808211156200033257600080fd5b5062000341858286016200022a565b9150509250929050565b600181811c908216806200036057607f821691505b602082108114156200038257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e0516101005160601c612127620004336000396000818161050201526108cb01526000818161049901528181610d360152610d5f01526000818161028301528181610c480152610c710152600081816103f201528181610cb10152610ce30152600081816102b7015281816108330152818161085b01528181610be30152610c0c01526121276000f3fe6080604052600436106101525760003560e01c806301ffc9a714610157578063069c47c91461018c57806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b57806318160ddd1461022d57806323b872dd1461025157806327acc76d146102715780633c276d86146102a557806342842e0e146102d957806355f804b3146102f95780635b3d9716146103195780636352211e1461032c57806370a082311461034c578063715018a61461036c5780637362377b146103815780638da5cb5b14610396578063938e3d7b146103ab57806395d89b41146103cb578063a035b1fe146103e0578063a0712d6814610414578063a22cb46514610427578063b88d4fde14610447578063c87b56dd14610467578063d5abeb0114610487578063e8a3d485146104bb578063e985e9c5146104d0578063ef8d03da146104f0578063f2fde38b14610524575b600080fd5b34801561016357600080fd5b50610177610172366004611d16565b610544565b60405190151581526020015b60405180910390f35b34801561019857600080fd5b506101776101a7366004611d98565b60076020526000908152604090205460ff1681565b3480156101c857600080fd5b506101d161056f565b6040516101839190611e5d565b3480156101ea57600080fd5b506101fe6101f9366004611d98565b610601565b6040516101839190611e0c565b34801561021757600080fd5b5061022b610226366004611c76565b61068e565b005b34801561023957600080fd5b5061024360095481565b604051908152602001610183565b34801561025d57600080fd5b5061022b61026c366004611b83565b61079f565b34801561027d57600080fd5b506102437f000000000000000000000000000000000000000000000000000000000000000081565b3480156102b157600080fd5b506102437f000000000000000000000000000000000000000000000000000000000000000081565b3480156102e557600080fd5b5061022b6102f4366004611b83565b6107d0565b34801561030557600080fd5b5061022b610314366004611d50565b6107eb565b61022b610327366004611ca2565b610831565b34801561033857600080fd5b506101fe610347366004611d98565b610a0f565b34801561035857600080fd5b50610243610367366004611b10565b610a86565b34801561037857600080fd5b5061022b610b0d565b34801561038d57600080fd5b5061022b610b48565b3480156103a257600080fd5b506101fe610b81565b3480156103b757600080fd5b5061022b6103c6366004611d50565b610b90565b3480156103d757600080fd5b506101d1610bd2565b3480156103ec57600080fd5b506102437f000000000000000000000000000000000000000000000000000000000000000081565b61022b610422366004611d98565b610be1565b34801561043357600080fd5b5061022b610442366004611c43565b610da3565b34801561045357600080fd5b5061022b610462366004611bc4565b610e64565b34801561047357600080fd5b506101d1610482366004611d98565b610e96565b34801561049357600080fd5b506102437f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c757600080fd5b506101d1610f61565b3480156104dc57600080fd5b506101776104eb366004611b4a565b610fef565b3480156104fc57600080fd5b506101fe7f000000000000000000000000000000000000000000000000000000000000000081565b34801561053057600080fd5b5061022b61053f366004611b10565b6110d1565b60006001600160e01b0319821663e8a3d48560e01b1480610569575061056982611171565b92915050565b60606001805461057e90611fe4565b80601f01602080910402602001604051908101604052809291908181526020018280546105aa90611fe4565b80156105f75780601f106105cc576101008083540402835291602001916105f7565b820191906000526020600020905b8154815290600101906020018083116105da57829003601f168201915b5050505050905090565b600061060c826111c1565b6106725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061069982610a0f565b9050806001600160a01b0316836001600160a01b031614156107075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610669565b336001600160a01b038216148061072357506107238133610fef565b6107905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610669565b61079a83836111de565b505050565b6107a9338261124c565b6107c55760405162461bcd60e51b815260040161066990611ef7565b61079a83838361130e565b61079a83838360405180602001604052806000815250610e64565b336107f4610b81565b6001600160a01b03161461081a5760405162461bcd60e51b815260040161066990611ec2565b805161082d90600a906020840190611a02565b5050565b7f0000000000000000000000000000000000000000000000000000000000000000421061089557427f000000000000000000000000000000000000000000000000000000000000000060405163ce40104160e01b8152600401610669929190611f48565b338160005b818110156109fe5760008585838181106108b6576108b661207a565b905060200201359050836001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636352211e836040518263ffffffff1660e01b815260040161091791815260200190565b60206040518083038186803b15801561092f57600080fd5b505afa158015610943573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109679190611b2d565b6001600160a01b0316146109a057604051630243499760e21b81526001600160a01b038516600482015260248101829052604401610669565b60008181526007602052604090205460ff16156109d3576040516304e3b45160e31b815260048101829052602401610669565b6000908152600760205260409020805460ff19166001179055806109f68161201f565b91505061089a565b50610a09828261149c565b50505050565b6000818152600360205260408120546001600160a01b0316806105695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610669565b60006001600160a01b038216610af15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610669565b506001600160a01b031660009081526004602052604090205490565b33610b16610b81565b6001600160a01b031614610b3c5760405162461bcd60e51b815260040161066990611ec2565b610b4660006114c5565b565b33610b51610b81565b6001600160a01b031614610b775760405162461bcd60e51b815260040161066990611ec2565b610b463347611515565b6000546001600160a01b031690565b33610b99610b81565b6001600160a01b031614610bbf5760405162461bcd60e51b815260040161066990611ec2565b805161082d906008906020840190611a02565b60606002805461057e90611fe4565b7f0000000000000000000000000000000000000000000000000000000000000000421015610c4657427f000000000000000000000000000000000000000000000000000000000000000060405163457f873160e01b8152600401610669929190611f48565b7f0000000000000000000000000000000000000000000000000000000000000000811115610cab57807f000000000000000000000000000000000000000000000000000000000000000060405163905793e160e01b8152600401610669929190611f48565b610cd5817f0000000000000000000000000000000000000000000000000000000000000000611f82565b341015610d225734610d07827f0000000000000000000000000000000000000000000000000000000000000000611f82565b6040516320dd33db60e11b8152600401610669929190611f48565b600081600954610d329190611f56565b90507f0000000000000000000000000000000000000000000000000000000000000000811115610d9957807f0000000000000000000000000000000000000000000000000000000000000000604051632af9a0af60e21b8152600401610669929190611f48565b61082d338361149c565b6001600160a01b038216331415610df85760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610669565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e6e338361124c565b610e8a5760405162461bcd60e51b815260040161066990611ef7565b610a098484848461162b565b6060610ea1826111c1565b610f055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610669565b6000610f0f61165e565b90506000815111610f2f5760405180602001604052806000815250610f5a565b80610f398461166d565b604051602001610f4a929190611ddd565b6040516020818303038152906040525b9392505050565b60088054610f6e90611fe4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9a90611fe4565b8015610fe75780601f10610fbc57610100808354040283529160200191610fe7565b820191906000526020600020905b815481529060010190602001808311610fca57829003601f168201915b505050505081565b60405163c455279160e01b815260009073a5409ec958c83c3f309868babaca7c86dcb077c1906001600160a01b03841690829063c455279190611036908890600401611e0c565b60206040518083038186803b15801561104e57600080fd5b505afa158015611062573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110869190611b2d565b6001600160a01b0316141561109f576001915050610569565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b336110da610b81565b6001600160a01b0316146111005760405162461bcd60e51b815260040161066990611ec2565b6001600160a01b0381166111655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b61116e816114c5565b50565b60006001600160e01b031982166380ac58cd60e01b14806111a257506001600160e01b03198216635b5e139f60e01b145b8061056957506301ffc9a760e01b6001600160e01b0319831614610569565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061121382610a0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611257826111c1565b6112b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610669565b60006112c383610a0f565b9050806001600160a01b0316846001600160a01b031614806112fe5750836001600160a01b03166112f384610601565b6001600160a01b0316145b806110c957506110c98185610fef565b826001600160a01b031661132182610a0f565b6001600160a01b0316146113895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610669565b6001600160a01b0382166113eb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b6113f66000826111de565b6001600160a01b038316600090815260046020526040812080546001929061141f908490611fa1565b90915550506001600160a01b038216600090815260046020526040812080546001929061144d908490611f56565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206120d283398151915291a4505050565b60005b8181101561079a576114b38360095461176a565b806114bd8161201f565b91505061149f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156115655760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610669565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146115b2576040519150601f19603f3d011682016040523d82523d6000602084013e6115b7565b606091505b505090508061079a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610669565b61163684848461130e565b6116428484848461178d565b610a095760405162461bcd60e51b815260040161066990611e70565b6060600a805461057e90611fe4565b6060816116915750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116bb57806116a58161201f565b91506116b49050600a83611f6e565b9150611695565b6000816001600160401b038111156116d5576116d5612090565b6040519080825280601f01601f1916602001820160405280156116ff576020820181803683370190505b5090505b84156110c957611714600183611fa1565b9150611721600a8661203a565b61172c906030611f56565b60f81b8183815181106117415761174161207a565b60200101906001600160f81b031916908160001a905350611763600a86611f6e565b9450611703565b60016009600082825461177d9190611f56565b9091555061082d9050828261189a565b60006001600160a01b0384163b1561188f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117d1903390899088908890600401611e20565b602060405180830381600087803b1580156117eb57600080fd5b505af192505050801561181b575060408051601f3d908101601f1916820190925261181891810190611d33565b60015b611875573d808015611849576040519150601f19603f3d011682016040523d82523d6000602084013e61184e565b606091505b50805161186d5760405162461bcd60e51b815260040161066990611e70565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110c9565b506001949350505050565b61082d8282604051806020016040528060008152506118b983836118e2565b6118c6600084848461178d565b61079a5760405162461bcd60e51b815260040161066990611e70565b6001600160a01b0382166119385760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610669565b611941816111c1565b1561198d5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610669565b6001600160a01b03821660009081526004602052604081208054600192906119b6908490611f56565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206120d2833981519152908290a45050565b828054611a0e90611fe4565b90600052602060002090601f016020900481019282611a305760008555611a76565b82601f10611a4957805160ff1916838001178555611a76565b82800160010185558215611a76579182015b82811115611a76578251825591602001919060010190611a5b565b50611a82929150611a86565b5090565b5b80821115611a825760008155600101611a87565b60006001600160401b0380841115611ab557611ab5612090565b604051601f8501601f19908116603f01168101908282118183101715611add57611add612090565b81604052809350858152868686011115611af657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b2257600080fd5b8135610f5a816120a6565b600060208284031215611b3f57600080fd5b8151610f5a816120a6565b60008060408385031215611b5d57600080fd5b8235611b68816120a6565b91506020830135611b78816120a6565b809150509250929050565b600080600060608486031215611b9857600080fd5b8335611ba3816120a6565b92506020840135611bb3816120a6565b929592945050506040919091013590565b60008060008060808587031215611bda57600080fd5b8435611be5816120a6565b93506020850135611bf5816120a6565b92506040850135915060608501356001600160401b03811115611c1757600080fd5b8501601f81018713611c2857600080fd5b611c3787823560208401611a9b565b91505092959194509250565b60008060408385031215611c5657600080fd5b8235611c61816120a6565b915060208301358015158114611b7857600080fd5b60008060408385031215611c8957600080fd5b8235611c94816120a6565b946020939093013593505050565b60008060208385031215611cb557600080fd5b82356001600160401b0380821115611ccc57600080fd5b818501915085601f830112611ce057600080fd5b813581811115611cef57600080fd5b8660208260051b8501011115611d0457600080fd5b60209290920196919550909350505050565b600060208284031215611d2857600080fd5b8135610f5a816120bb565b600060208284031215611d4557600080fd5b8151610f5a816120bb565b600060208284031215611d6257600080fd5b81356001600160401b03811115611d7857600080fd5b8201601f81018413611d8957600080fd5b6110c984823560208401611a9b565b600060208284031215611daa57600080fd5b5035919050565b60008151808452611dc9816020860160208601611fb8565b601f01601f19169290920160200192915050565b60008351611def818460208801611fb8565b835190830190611e03818360208801611fb8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e5390830184611db1565b9695505050505050565b602081526000610f5a6020830184611db1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b918252602082015260400190565b60008219821115611f6957611f6961204e565b500190565b600082611f7d57611f7d612064565b500490565b6000816000190483118215151615611f9c57611f9c61204e565b500290565b600082821015611fb357611fb361204e565b500390565b60005b83811015611fd3578181015183820152602001611fbb565b83811115610a095750506000910152565b600181811c90821680611ff857607f821691505b6020821081141561201957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120335761203361204e565b5060010190565b60008261204957612049612064565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461116e57600080fd5b6001600160e01b03198116811461116e57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d98791a4243ecc48a66b5399ebf41385e7c5a971f182957734242037623b350964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6379586f63415245656f4b72777a354d3679326f7159374a4562577a6f4871785776366a653746585741725700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a53643439473673464a354d54703861763333334b45485455537041376845566451556b5651506e71444c4e2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101525760003560e01c806301ffc9a714610157578063069c47c91461018c57806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b57806318160ddd1461022d57806323b872dd1461025157806327acc76d146102715780633c276d86146102a557806342842e0e146102d957806355f804b3146102f95780635b3d9716146103195780636352211e1461032c57806370a082311461034c578063715018a61461036c5780637362377b146103815780638da5cb5b14610396578063938e3d7b146103ab57806395d89b41146103cb578063a035b1fe146103e0578063a0712d6814610414578063a22cb46514610427578063b88d4fde14610447578063c87b56dd14610467578063d5abeb0114610487578063e8a3d485146104bb578063e985e9c5146104d0578063ef8d03da146104f0578063f2fde38b14610524575b600080fd5b34801561016357600080fd5b50610177610172366004611d16565b610544565b60405190151581526020015b60405180910390f35b34801561019857600080fd5b506101776101a7366004611d98565b60076020526000908152604090205460ff1681565b3480156101c857600080fd5b506101d161056f565b6040516101839190611e5d565b3480156101ea57600080fd5b506101fe6101f9366004611d98565b610601565b6040516101839190611e0c565b34801561021757600080fd5b5061022b610226366004611c76565b61068e565b005b34801561023957600080fd5b5061024360095481565b604051908152602001610183565b34801561025d57600080fd5b5061022b61026c366004611b83565b61079f565b34801561027d57600080fd5b506102437f000000000000000000000000000000000000000000000000000000000000001481565b3480156102b157600080fd5b506102437f0000000000000000000000000000000000000000000000000000000061606b0081565b3480156102e557600080fd5b5061022b6102f4366004611b83565b6107d0565b34801561030557600080fd5b5061022b610314366004611d50565b6107eb565b61022b610327366004611ca2565b610831565b34801561033857600080fd5b506101fe610347366004611d98565b610a0f565b34801561035857600080fd5b50610243610367366004611b10565b610a86565b34801561037857600080fd5b5061022b610b0d565b34801561038d57600080fd5b5061022b610b48565b3480156103a257600080fd5b506101fe610b81565b3480156103b757600080fd5b5061022b6103c6366004611d50565b610b90565b3480156103d757600080fd5b506101d1610bd2565b3480156103ec57600080fd5b506102437f00000000000000000000000000000000000000000000000000b1a2bc2ec5000081565b61022b610422366004611d98565b610be1565b34801561043357600080fd5b5061022b610442366004611c43565b610da3565b34801561045357600080fd5b5061022b610462366004611bc4565b610e64565b34801561047357600080fd5b506101d1610482366004611d98565b610e96565b34801561049357600080fd5b506102437f000000000000000000000000000000000000000000000000000000000000271081565b3480156104c757600080fd5b506101d1610f61565b3480156104dc57600080fd5b506101776104eb366004611b4a565b610fef565b3480156104fc57600080fd5b506101fe7f0000000000000000000000009cf63efbe189091b7e3d364c7f6cfbe06997872b81565b34801561053057600080fd5b5061022b61053f366004611b10565b6110d1565b60006001600160e01b0319821663e8a3d48560e01b1480610569575061056982611171565b92915050565b60606001805461057e90611fe4565b80601f01602080910402602001604051908101604052809291908181526020018280546105aa90611fe4565b80156105f75780601f106105cc576101008083540402835291602001916105f7565b820191906000526020600020905b8154815290600101906020018083116105da57829003601f168201915b5050505050905090565b600061060c826111c1565b6106725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061069982610a0f565b9050806001600160a01b0316836001600160a01b031614156107075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610669565b336001600160a01b038216148061072357506107238133610fef565b6107905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610669565b61079a83836111de565b505050565b6107a9338261124c565b6107c55760405162461bcd60e51b815260040161066990611ef7565b61079a83838361130e565b61079a83838360405180602001604052806000815250610e64565b336107f4610b81565b6001600160a01b03161461081a5760405162461bcd60e51b815260040161066990611ec2565b805161082d90600a906020840190611a02565b5050565b7f0000000000000000000000000000000000000000000000000000000061606b00421061089557427f0000000000000000000000000000000000000000000000000000000061606b0060405163ce40104160e01b8152600401610669929190611f48565b338160005b818110156109fe5760008585838181106108b6576108b661207a565b905060200201359050836001600160a01b03167f0000000000000000000000009cf63efbe189091b7e3d364c7f6cfbe06997872b6001600160a01b0316636352211e836040518263ffffffff1660e01b815260040161091791815260200190565b60206040518083038186803b15801561092f57600080fd5b505afa158015610943573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109679190611b2d565b6001600160a01b0316146109a057604051630243499760e21b81526001600160a01b038516600482015260248101829052604401610669565b60008181526007602052604090205460ff16156109d3576040516304e3b45160e31b815260048101829052602401610669565b6000908152600760205260409020805460ff19166001179055806109f68161201f565b91505061089a565b50610a09828261149c565b50505050565b6000818152600360205260408120546001600160a01b0316806105695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610669565b60006001600160a01b038216610af15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610669565b506001600160a01b031660009081526004602052604090205490565b33610b16610b81565b6001600160a01b031614610b3c5760405162461bcd60e51b815260040161066990611ec2565b610b4660006114c5565b565b33610b51610b81565b6001600160a01b031614610b775760405162461bcd60e51b815260040161066990611ec2565b610b463347611515565b6000546001600160a01b031690565b33610b99610b81565b6001600160a01b031614610bbf5760405162461bcd60e51b815260040161066990611ec2565b805161082d906008906020840190611a02565b60606002805461057e90611fe4565b7f0000000000000000000000000000000000000000000000000000000061606b00421015610c4657427f0000000000000000000000000000000000000000000000000000000061606b0060405163457f873160e01b8152600401610669929190611f48565b7f0000000000000000000000000000000000000000000000000000000000000014811115610cab57807f000000000000000000000000000000000000000000000000000000000000001460405163905793e160e01b8152600401610669929190611f48565b610cd5817f00000000000000000000000000000000000000000000000000b1a2bc2ec50000611f82565b341015610d225734610d07827f00000000000000000000000000000000000000000000000000b1a2bc2ec50000611f82565b6040516320dd33db60e11b8152600401610669929190611f48565b600081600954610d329190611f56565b90507f0000000000000000000000000000000000000000000000000000000000002710811115610d9957807f0000000000000000000000000000000000000000000000000000000000002710604051632af9a0af60e21b8152600401610669929190611f48565b61082d338361149c565b6001600160a01b038216331415610df85760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610669565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e6e338361124c565b610e8a5760405162461bcd60e51b815260040161066990611ef7565b610a098484848461162b565b6060610ea1826111c1565b610f055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610669565b6000610f0f61165e565b90506000815111610f2f5760405180602001604052806000815250610f5a565b80610f398461166d565b604051602001610f4a929190611ddd565b6040516020818303038152906040525b9392505050565b60088054610f6e90611fe4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9a90611fe4565b8015610fe75780601f10610fbc57610100808354040283529160200191610fe7565b820191906000526020600020905b815481529060010190602001808311610fca57829003601f168201915b505050505081565b60405163c455279160e01b815260009073a5409ec958c83c3f309868babaca7c86dcb077c1906001600160a01b03841690829063c455279190611036908890600401611e0c565b60206040518083038186803b15801561104e57600080fd5b505afa158015611062573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110869190611b2d565b6001600160a01b0316141561109f576001915050610569565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b336110da610b81565b6001600160a01b0316146111005760405162461bcd60e51b815260040161066990611ec2565b6001600160a01b0381166111655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b61116e816114c5565b50565b60006001600160e01b031982166380ac58cd60e01b14806111a257506001600160e01b03198216635b5e139f60e01b145b8061056957506301ffc9a760e01b6001600160e01b0319831614610569565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061121382610a0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611257826111c1565b6112b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610669565b60006112c383610a0f565b9050806001600160a01b0316846001600160a01b031614806112fe5750836001600160a01b03166112f384610601565b6001600160a01b0316145b806110c957506110c98185610fef565b826001600160a01b031661132182610a0f565b6001600160a01b0316146113895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610669565b6001600160a01b0382166113eb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b6113f66000826111de565b6001600160a01b038316600090815260046020526040812080546001929061141f908490611fa1565b90915550506001600160a01b038216600090815260046020526040812080546001929061144d908490611f56565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206120d283398151915291a4505050565b60005b8181101561079a576114b38360095461176a565b806114bd8161201f565b91505061149f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156115655760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610669565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146115b2576040519150601f19603f3d011682016040523d82523d6000602084013e6115b7565b606091505b505090508061079a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610669565b61163684848461130e565b6116428484848461178d565b610a095760405162461bcd60e51b815260040161066990611e70565b6060600a805461057e90611fe4565b6060816116915750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116bb57806116a58161201f565b91506116b49050600a83611f6e565b9150611695565b6000816001600160401b038111156116d5576116d5612090565b6040519080825280601f01601f1916602001820160405280156116ff576020820181803683370190505b5090505b84156110c957611714600183611fa1565b9150611721600a8661203a565b61172c906030611f56565b60f81b8183815181106117415761174161207a565b60200101906001600160f81b031916908160001a905350611763600a86611f6e565b9450611703565b60016009600082825461177d9190611f56565b9091555061082d9050828261189a565b60006001600160a01b0384163b1561188f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117d1903390899088908890600401611e20565b602060405180830381600087803b1580156117eb57600080fd5b505af192505050801561181b575060408051601f3d908101601f1916820190925261181891810190611d33565b60015b611875573d808015611849576040519150601f19603f3d011682016040523d82523d6000602084013e61184e565b606091505b50805161186d5760405162461bcd60e51b815260040161066990611e70565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110c9565b506001949350505050565b61082d8282604051806020016040528060008152506118b983836118e2565b6118c6600084848461178d565b61079a5760405162461bcd60e51b815260040161066990611e70565b6001600160a01b0382166119385760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610669565b611941816111c1565b1561198d5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610669565b6001600160a01b03821660009081526004602052604081208054600192906119b6908490611f56565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206120d2833981519152908290a45050565b828054611a0e90611fe4565b90600052602060002090601f016020900481019282611a305760008555611a76565b82601f10611a4957805160ff1916838001178555611a76565b82800160010185558215611a76579182015b82811115611a76578251825591602001919060010190611a5b565b50611a82929150611a86565b5090565b5b80821115611a825760008155600101611a87565b60006001600160401b0380841115611ab557611ab5612090565b604051601f8501601f19908116603f01168101908282118183101715611add57611add612090565b81604052809350858152868686011115611af657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b2257600080fd5b8135610f5a816120a6565b600060208284031215611b3f57600080fd5b8151610f5a816120a6565b60008060408385031215611b5d57600080fd5b8235611b68816120a6565b91506020830135611b78816120a6565b809150509250929050565b600080600060608486031215611b9857600080fd5b8335611ba3816120a6565b92506020840135611bb3816120a6565b929592945050506040919091013590565b60008060008060808587031215611bda57600080fd5b8435611be5816120a6565b93506020850135611bf5816120a6565b92506040850135915060608501356001600160401b03811115611c1757600080fd5b8501601f81018713611c2857600080fd5b611c3787823560208401611a9b565b91505092959194509250565b60008060408385031215611c5657600080fd5b8235611c61816120a6565b915060208301358015158114611b7857600080fd5b60008060408385031215611c8957600080fd5b8235611c94816120a6565b946020939093013593505050565b60008060208385031215611cb557600080fd5b82356001600160401b0380821115611ccc57600080fd5b818501915085601f830112611ce057600080fd5b813581811115611cef57600080fd5b8660208260051b8501011115611d0457600080fd5b60209290920196919550909350505050565b600060208284031215611d2857600080fd5b8135610f5a816120bb565b600060208284031215611d4557600080fd5b8151610f5a816120bb565b600060208284031215611d6257600080fd5b81356001600160401b03811115611d7857600080fd5b8201601f81018413611d8957600080fd5b6110c984823560208401611a9b565b600060208284031215611daa57600080fd5b5035919050565b60008151808452611dc9816020860160208601611fb8565b601f01601f19169290920160200192915050565b60008351611def818460208801611fb8565b835190830190611e03818360208801611fb8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e5390830184611db1565b9695505050505050565b602081526000610f5a6020830184611db1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b918252602082015260400190565b60008219821115611f6957611f6961204e565b500190565b600082611f7d57611f7d612064565b500490565b6000816000190483118215151615611f9c57611f9c61204e565b500290565b600082821015611fb357611fb361204e565b500390565b60005b83811015611fd3578181015183820152602001611fbb565b83811115610a095750506000910152565b600181811c90821680611ff857607f821691505b6020821081141561201957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120335761203361204e565b5060010190565b60008261204957612049612064565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461116e57600080fd5b6001600160e01b03198116811461116e57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d98791a4243ecc48a66b5399ebf41385e7c5a971f182957734242037623b350964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6379586f63415245656f4b72777a354d3679326f7159374a4562577a6f4871785776366a653746585741725700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a53643439473673464a354d54703861763333334b45485455537041376845566451556b5651506e71444c4e2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : contractURI_ (string): https://gateway.pinata.cloud/ipfs/QmcyXocAREeoKrwz5M6y2oqY7JEbWzoHqxWv6je7FXWArW
Arg [1] : baseURI_ (string): https://gateway.pinata.cloud/ipfs/QmZSd49G6sFJ5MTp8av333KEHTUSpA7hEVdQUkVQPnqDLN/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d6379586f63415245656f4b72777a354d3679326f7159374a4562577a
Arg [5] : 6f4871785776366a653746585741725700000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [7] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [8] : 732f516d5a53643439473673464a354d54703861763333334b45485455537041
Arg [9] : 376845566451556b5651506e71444c4e2f000000000000000000000000000000


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.