ETH Price: $3,095.81 (+0.40%)
Gas: 12 Gwei

Token

Block Queens (BQ)
 

Overview

Max Total Supply

999 BQ

Holders

671

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BQ
0xbdc765d81db7e0ca47fe6bf57e987966a2c204ac
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Block Queens is a generative collage fine art collection by Photographer/Artist Jeremy Cowart. It consists of 999 hand-made layers and combines over 20 years of Cowart’s work in photography, paintings and drawings.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlockQueens

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 14 : BlockQueens.sol
// SPDX-License-Identifier: MIT

/**
*   @title Block Queens by Jeremy Cowart
*   @author Transient Labs
*   @notice ERC721 smart contract with single owner, Merkle allowlist, and royalty info per EIP 2981.
*   Block Queens Limited edition photographic ArtPhoto © 2022 Jeremy Cowart Photography, Inc. all rights reserved
*/

/*
 .----------------. .----------------. .----------------. .----------------. .----------------.                    
| .--------------. | .--------------. | .--------------. | .--------------. | .--------------. |                   
| |   ______     | | |   _____      | | |     ____     | | |     ______   | | |  ___  ____   | |                   
| |  |_   _ \    | | |  |_   _|     | | |   .'    `.   | | |   .' ___  |  | | | |_  ||_  _|  | |                   
| |    | |_) |   | | |    | |       | | |  /  .--.  \  | | |  / .'   \_|  | | |   | |_/ /    | |                   
| |    |  __'.   | | |    | |   _   | | |  | |    | |  | | |  | |         | | |   |  __'.    | |                   
| |   _| |__) |  | | |   _| |__/ |  | | |  \  `--'  /  | | |  \ `.___.'\  | | |  _| |  \ \_  | |                   
| |  |_______/   | | |  |________|  | | |   `.____.'   | | |   `._____.'  | | | |____||____| | |                   
| |              | | |              | | |              | | |              | | |              | |                   
| '--------------' | '--------------' | '--------------' | '--------------' | '--------------' |                   
 .----------------. .----------------. .----------------. .----------------. .-----------------..----------------. 
| .--------------. | .--------------. | .--------------. | .--------------. | .--------------. | .--------------. |
| |    ___       | | | _____  _____ | | |  _________   | | |  _________   | | | ____  _____  | | |    _______   | |
| |  .'   '.     | | ||_   _||_   _|| | | |_   ___  |  | | | |_   ___  |  | | ||_   \|_   _| | | |   /  ___  |  | |
| | /  .-.  \    | | |  | |    | |  | | |   | |_  \_|  | | |   | |_  \_|  | | |  |   \ | |   | | |  |  (__ \_|  | |
| | | |   | |    | | |  | '    ' |  | | |   |  _|  _   | | |   |  _|  _   | | |  | |\ \| |   | | |   '.___`-.   | |
| | \  `-'  \_   | | |   \ `--' /   | | |  _| |___/ |  | | |  _| |___/ |  | | | _| |_\   |_  | | |  |`\____) |  | |
| |  `.___.\__|  | | |    `.__.'    | | | |_________|  | | | |_________|  | | ||_____|\____| | | |  |_______.'  | |
| |              | | |              | | |              | | |              | | |              | | |              | |
| '--------------' | '--------------' | '--------------' | '--------------' | '--------------' | '--------------' |
 '----------------' '----------------' '----------------' '----------------' '----------------' '----------------' 
   ___                            __  ___         ______                  _         __    __       __     
  / _ \___ _    _____ _______ ___/ / / _ )__ __  /_  _________ ____  ___ (____ ___ / /_  / / ___ _/ /  ___
 / ___/ _ | |/|/ / -_/ __/ -_/ _  / / _  / // /   / / / __/ _ `/ _ \(_-</ / -_/ _ / __/ / /_/ _ `/ _ \(_-<
/_/   \___|__,__/\__/_/  \__/\_,_/ /____/\_, /   /_/ /_/  \_,_/_//_/___/_/\__/_//_\__/ /____\_,_/_.__/___/
                                        /___/                                                             
*/

pragma solidity ^0.8.0;

import "ERC721.sol";
import "Ownable.sol";
import "MerkleProof.sol";
import "EIP2981.sol";

contract BlockQueens is EIP2981, ERC721, Ownable {

    bytes32 public merkleRoot;

    bool public preSaleMintOpen;
    bool public publicMintOpen;
    uint256 public presaleMintOpenTimestamp;
    uint256 public publicMintOpenTimestamp;
    mapping(address => uint256) public numMinted;
    uint256 public mintPrice = 0.22 ether;
    uint256 public mintAllowance;
    address payable public payoutAddr;
    bool public frozen;

    uint16[] public availableTokenIds;

    string private _baseTokenURI;

    modifier isNotFrozen {
        require(!frozen, "Error: Metadata is frozen");
        _;
    }

    /**
    *   @notice constructor for this contract
    *   @param root is the merkle root
    *   @param addr is the royalty payout address
    *   @param perc is the royalty payout percentage
    *   @param payout is the payout address
    */
    constructor(bytes32 root, address payout, address addr, uint256 perc) EIP2981(addr, perc) ERC721("Block Queens", "BQ") Ownable() {
        merkleRoot = root;
        payoutAddr = payable(payout);
        for (uint16 i = 0; i < 999; i++) {
            availableTokenIds.push(i+1);
        }
    }

    /**
    *   @notice overrides EIP721 and EIP2981 supportsInterface function
    *   @param interfaceId is supplied from anyone/contract calling this function, as defined in ERC 165
    *   @return a boolean saying if this contract supports the interface or not
    */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, EIP2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /**
    *   @notice function to view total supply
    *   @return uint256 with supply
    */
    function totalSupply() public pure returns(uint256) {
        return 999;
    }

    /**
    *   @notice function to get remaining supply
    *   @return uint256
    */
    function getRemainingSupply() public view returns(uint256) {
        return availableTokenIds.length;
    }

    /**
    *   @notice function to get number minted per address
    */
    function getNumberMinted(address _address) public view returns (uint256) {
        return numMinted[_address];
    }

    /**
    *   @notice function to set the payout address
    *   @dev requires owner
    *   @param addr is the new payout address
    */
    function setPayoutAddress(address addr) public onlyOwner {
        payoutAddr = payable(addr);
    }

    /**
    *   @notice sets the baseURI for the ERC721 tokens
    *   @dev requires owner
    *   @param uri is the base URI set for each token
    */
    function setBaseURI(string memory uri) public onlyOwner isNotFrozen {
        _baseTokenURI = uri;
    }

    /**
    *   @notice override standard ERC721 base URI
    *   @dev doesn't require access control since it's internal
    *   @return string representing base URI
    */
    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }

    /**
    *   @notice function to freeze metadata
    *   @dev requires only owner
    */
    function freezeMetadata() public onlyOwner {
        frozen = true;
    }

    /**
    *   @notice function to set the presale mint status
    *   @dev sets the timestamp for presale mint to 60 minutes from when the function is called, if it hasn't been set yet
    *   @param status is the true/false flag for the presale mint status
    */
    function setPreSaleMintStatus(bool status) public onlyOwner {
        preSaleMintOpen = status;
        if (preSaleMintOpen && presaleMintOpenTimestamp == 0) {
            presaleMintOpenTimestamp = block.timestamp + 3600;
        }
        preSaleMintOpen ? mintAllowance = 1 : mintAllowance = 0;
    }

    /**
    *   @notice function to set the publi mint status
    *   @dev sets the timestamp for public mint to 60 minutes from when the function is called, if it hasn't been set yet
    *   @param status is the true/false flag for the public mint status
    */
    function setPublicMintStatus(bool status) public onlyOwner {
        publicMintOpen = status;
        if (publicMintOpen && publicMintOpenTimestamp == 0) {
            publicMintOpenTimestamp = block.timestamp + 3600;
        }
        publicMintOpen ? mintAllowance = 1 : mintAllowance = 0;
    }

    /**
    *   @notice function to update mint allowance
    *   @dev requires only
    *   @param allowance uint256 to set it to
    */
    function updateMintAllowance(uint256 allowance) public onlyOwner {
        mintAllowance = allowance;
    }

    /**
    *   @notice allowlist mint function
    *   @dev requires mint to be open
    *   @dev requires merkle proof to be valid, if in presale mint
    *   @dev requires mint price to be met
    *   @dev requires that the message sender hasn't already minted more than allowed at the time of the transaction
    *   @param merkleProof is the proof provided by the minting site
    */
    function mint(bytes32[] calldata merkleProof) public payable {
        require(availableTokenIds.length > 0, "All pieces have been minted");
        require(msg.value >= mintPrice, "Not enough ether");
        require(numMinted[msg.sender] < mintAllowance, "Reached mint limit");
        if (preSaleMintOpen && !publicMintOpen) {
            require(block.timestamp >= presaleMintOpenTimestamp, "Pre-sale mint not open yet");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(merkleProof, merkleRoot, leaf), "Not on allowlist");
        }
        else if (publicMintOpen) {
            require(block.timestamp >= publicMintOpenTimestamp, "Public mint not open yet");
        }
        else {
            revert("Minting not open");
        }

        uint256 num = getRandomNum(availableTokenIds.length);
        _safeMint(msg.sender, uint256(availableTokenIds[num]));
        numMinted[msg.sender]++;

        availableTokenIds[num] = availableTokenIds[availableTokenIds.length - 1];
        availableTokenIds.pop();
    }

    /**
    *   @notice owner mint function
    *   @dev mints to the contract owner wallet
    *   @dev requires ownership of the contract
    */
    function ownerMint() public onlyOwner {
        require(availableTokenIds.length > 0, "All pieces have been minted");

        uint256 num = getRandomNum(availableTokenIds.length);
        _safeMint(msg.sender, uint256(availableTokenIds[num]));

        availableTokenIds[num] = availableTokenIds[availableTokenIds.length - 1];
        availableTokenIds.pop();
    }

    /**
    *   @notice function to get random token id to mint
    *   @param upper is the upper limit to get a number between (exculsive)
    */
    function getRandomNum(uint256 upper) internal view returns (uint256) {
        uint256 random = uint256(keccak256(abi.encodePacked(blockhash(block.number - 1), block.coinbase, block.difficulty, msg.sender)));
        return random % upper;
    }

    /**
    *   @notice function to withdraw minting ether from the contract
    *   @dev requires owner to call
    */
    function withdrawEther() public onlyOwner {
        payoutAddr.transfer(address(this).balance);
    }

    /**
    *   @notice function to change the royalty recipient
    *   @dev requires owner
    *   @dev this is useful if an account gets compromised or anything like that
    *   @param _newRecipient is the new royalty recipient
    */
    function changeRoyaltyRecipient(address _newRecipient) public onlyOwner {
        require(_newRecipient != address(0), "Error: new recipient is the zero address");
        royaltyAddr = _newRecipient;
    }

    /**
    *   @notice function to change the royalty percentage
    *   @dev requires owner
    *   @dev this is useful if the amount was set improperly at contract creation. This can in fact happen... humans are prone to mistakes :) 
    *   @param _newPerc is the new royalty percentage, in basis points (out of 10,000)
    */
    function changeRoyaltyPercentage(uint256 _newPerc) public onlyOwner {
        require(_newPerc <= 10000, "Error: new percentage is greater than 10,0000");
        royaltyPerc = _newPerc;
    }

    /**
    *   @notice burn function for owners to use at their discretion
    *   @dev requires the msg sender to be the owner or an approved delegate
    *   @param tokenId is the token ID to burn
    */
    function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(msg.sender, tokenId), "Not Approved or Owner");
        _burn(tokenId);
    }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.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 3 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "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 4 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

File 5 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 6 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 7 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 10 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 11 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 12 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

/**
*   @title EIP 2981 base contract
*   @author Transient Labs, Copyright (C) 2021
*   @notice contract implementation of EIP 2981
*/

/*
   ___                            __  ___         ______                  _         __    __       __     
  / _ \___ _    _____ _______ ___/ / / _ )__ __  /_  _________ ____  ___ (____ ___ / /_  / / ___ _/ /  ___
 / ___/ _ | |/|/ / -_/ __/ -_/ _  / / _  / // /   / / / __/ _ `/ _ \(_-</ / -_/ _ / __/ / /_/ _ `/ _ \(_-<
/_/   \___|__,__/\__/_/  \__/\_,_/ /____/\_, /   /_/ /_/  \_,_/_//_/___/_/\__/_//_\__/ /____\_,_/_.__/___/
                                        /___/                                                             
*/

pragma solidity ^0.8.0;

import "ERC165.sol";
import "IEIP2981.sol";

contract EIP2981 is IEIP2981, ERC165 {

    address internal royaltyAddr;
    uint256 internal royaltyPerc; // percentage in basis (out of 10,000)

    /**
    *   @notice constructor
    *   @dev need inheriting contracts to accept the parameters in their constructor
    *   @param addr is the royalty payout address
    *   @param perc is the royalty percentage, multiplied by 10000. Ex: 7.5% => 750
    */
    constructor(address addr, uint256 perc) {
        royaltyAddr = addr;
        royaltyPerc = perc;
    }

    /**
    *   @notice override ERC 165 implementation of this function
    *   @dev if using this contract with another contract that suppports ERC 265, will have to override in the inheriting contract
    */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165) returns (bool) {
        return interfaceId == type(IEIP2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
    *   @notice EIP 2981 royalty support
    *   @dev royalty payout made to the owner of the contract and the owner can't be the 0 address
    *   @dev royalty amount determined when contract is deployed, and then divided by 1000 in this function
    *   @dev royalty amount not dependent on _tokenId
    */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) {
        require(royaltyAddr != address(0));
        return (royaltyAddr, royaltyPerc * _salePrice / 10000);
    }
}

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

pragma solidity ^0.8.0;

///
/// @dev Interface for the NFT Royalty Standard
///
interface IEIP2981 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver,uint256 royaltyAmount);
}

Settings
{
  "evmVersion": "istanbul",
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "libraries": {
    "BlockQueens.sol": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"address","name":"payout","type":"address"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"perc","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"uint256","name":"","type":"uint256"}],"name":"availableTokenIds","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPerc","type":"uint256"}],"name":"changeRoyaltyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRecipient","type":"address"}],"name":"changeRoyaltyRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_address","type":"address"}],"name":"getNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payoutAddr","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMintOpenTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintOpenTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSaleMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPublicMintStatus","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":"pure","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":[{"internalType":"uint256","name":"allowance","type":"uint256"}],"name":"updateMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267030d98d59a960000600e553480156200001d57600080fd5b506040516200336738038062003367833981016040819052620000409162000297565b604080518082018252600c81526b426c6f636b20517565656e7360a01b60208083019182528351808501909452600280855261425160f01b91850191909152600080546001600160a01b0319166001600160a01b03881617905560018590558251929392620000b09290620001d4565b508051620000c6906003906020840190620001d4565b505050620000e3620000dd6200017e60201b60201c565b62000182565b6009849055601080546001600160a01b0319166001600160a01b03851617905560005b6103e78161ffff1610156200017357601162000124826001620002f6565b81546001810183556000928352602090922060108304018054600f9093166002026101000a61ffff818102199094169290931692909202179055806200016a816200031f565b91505062000106565b505050505062000381565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e29062000344565b90600052602060002090601f01602090048101928262000206576000855562000251565b82601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b506200025f92915062000263565b5090565b5b808211156200025f576000815560010162000264565b80516001600160a01b03811681146200029257600080fd5b919050565b60008060008060808587031215620002ae57600080fd5b84519350620002c0602086016200027a565b9250620002d0604086016200027a565b6060959095015193969295505050565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115620003165762000316620002e0565b01949350505050565b600061ffff808316818114156200033a576200033a620002e0565b6001019392505050565b600181811c908216806200035957607f821691505b602082108114156200037b57634e487b7160e01b600052602260045260246000fd5b50919050565b612fd680620003916000396000f3fe6080604052600436106102dc5760003560e01c806365f83c3b11610184578063a22cb465116100d6578063bcc9ca5b1161008a578063e4b7fb7311610064578063e4b7fb73146107f9578063e985e9c51461080e578063f2fde38b1461085757600080fd5b8063bcc9ca5b146107a5578063c87b56dd146107c4578063d111515d146107e457600080fd5b8063b61ff93c116100bb578063b61ff93c14610752578063b77a147b14610772578063b88d4fde1461078557600080fd5b8063a22cb4651461071d578063b12dc9911461073d57600080fd5b8063774b5c23116101385780638da5cb5b116101125780638da5cb5b146106ca57806395d89b41146106e8578063980f3abc146106fd57600080fd5b8063774b5c23146106645780637a4a7b3e1461067e5780638a59a7fd1461069457600080fd5b806370a082311161016957806370a082311461061a578063715018a61461063a5780637362377b1461064f57600080fd5b806365f83c3b146105e45780636817c76c1461060457600080fd5b80632eb4a7ab1161023d5780633f04923a116101f15780634bd0d89c116101cb5780634bd0d89c1461058457806355f804b3146105a45780636352211e146105c457600080fd5b80633f04923a1461052e57806342842e0e1461054457806342966c681461056457600080fd5b806336c4ff7a1161022257806336c4ff7a146104d8578063396876bd146104f85780633a45a5d31461050e57600080fd5b80632eb4a7ab146104a257806333ea51a8146104b857600080fd5b806318160ddd1161029457806320fc7eb21161027957806320fc7eb21461041657806323b872dd146104435780632a55205a1461046357600080fd5b806318160ddd146103c45780631f283fc2146103e357600080fd5b806306fdde03116102c557806306fdde0314610348578063081812fc1461036a578063095ea7b3146103a257600080fd5b806301ffc9a7146102e1578063054f7d9c14610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612a46565b610877565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b506010546103019074010000000000000000000000000000000000000000900460ff1681565b34801561035457600080fd5b5061035d610888565b60405161030d9190612abb565b34801561037657600080fd5b5061038a610385366004612ace565b61091a565b6040516001600160a01b03909116815260200161030d565b3480156103ae57600080fd5b506103c26103bd366004612b03565b6109c5565b005b3480156103d057600080fd5b506103e75b60405190815260200161030d565b3480156103ef57600080fd5b506104036103fe366004612ace565b610af7565b60405161ffff909116815260200161030d565b34801561042257600080fd5b506103d5610431366004612b2d565b600d6020526000908152604090205481565b34801561044f57600080fd5b506103c261045e366004612b48565b610b2f565b34801561046f57600080fd5b5061048361047e366004612b84565b610bb6565b604080516001600160a01b03909316835260208301919091520161030d565b3480156104ae57600080fd5b506103d560095481565b3480156104c457600080fd5b506103c26104d3366004612b2d565b610c04565b3480156104e457600080fd5b5060105461038a906001600160a01b031681565b34801561050457600080fd5b506103d5600f5481565b34801561051a57600080fd5b506103c2610529366004612b2d565b610c8d565b34801561053a57600080fd5b506103d5600c5481565b34801561055057600080fd5b506103c261055f366004612b48565b610d92565b34801561057057600080fd5b506103c261057f366004612ace565b610dad565b34801561059057600080fd5b506103c261059f366004612ace565b610e0f565b3480156105b057600080fd5b506103c26105bf366004612c32565b610ee6565b3480156105d057600080fd5b5061038a6105df366004612ace565b610fc2565b3480156105f057600080fd5b506103c26105ff366004612c8b565b61104d565b34801561061057600080fd5b506103d5600e5481565b34801561062657600080fd5b506103d5610635366004612b2d565b6110f6565b34801561064657600080fd5b506103c2611190565b34801561065b57600080fd5b506103c26111f6565b34801561067057600080fd5b50600a546103019060ff1681565b34801561068a57600080fd5b506103d5600b5481565b3480156106a057600080fd5b506103d56106af366004612b2d565b6001600160a01b03166000908152600d602052604090205490565b3480156106d657600080fd5b506008546001600160a01b031661038a565b3480156106f457600080fd5b5061035d611289565b34801561070957600080fd5b506103c2610718366004612ace565b611298565b34801561072957600080fd5b506103c2610738366004612ca6565b6112f7565b34801561074957600080fd5b506103c2611302565b34801561075e57600080fd5b506103c261076d366004612c8b565b6114c0565b6103c2610780366004612cd9565b61158d565b34801561079157600080fd5b506103c26107a0366004612d4e565b61198a565b3480156107b157600080fd5b50600a5461030190610100900460ff1681565b3480156107d057600080fd5b5061035d6107df366004612ace565b611a18565b3480156107f057600080fd5b506103c2611b01565b34801561080557600080fd5b506011546103d5565b34801561081a57600080fd5b50610301610829366004612dca565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561086357600080fd5b506103c2610872366004612b2d565b611b9c565b600061088282611c7b565b92915050565b60606002805461089790612df4565b80601f01602080910402602001604051908101604052809291908181526020018280546108c390612df4565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166109a95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109d082610fc2565b9050806001600160a01b0316836001600160a01b03161415610a5a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109a0565b336001600160a01b0382161480610a765750610a768133610829565b610ae85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a0565b610af28383611d1d565b505050565b60118181548110610b0757600080fd5b9060005260206000209060109182820401919006600202915054906101000a900461ffff1681565b610b393382611d98565b610bab5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a0565b610af2838383611ea0565b6000805481906001600160a01b0316610bce57600080fd5b6000546001546001600160a01b039091169061271090610bef908690612e45565b610bf99190612e7a565b915091509250929050565b6008546001600160a01b03163314610c5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6010805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610ce75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6001600160a01b038116610d635760405162461bcd60e51b815260206004820152602860248201527f4572726f723a206e657720726563697069656e7420697320746865207a65726f60448201527f206164647265737300000000000000000000000000000000000000000000000060648201526084016109a0565b6000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610af28383836040518060200160405280600081525061198a565b610db73382611d98565b610e035760405162461bcd60e51b815260206004820152601560248201527f4e6f7420417070726f766564206f72204f776e6572000000000000000000000060448201526064016109a0565b610e0c8161207a565b50565b6008546001600160a01b03163314610e695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b612710811115610ee15760405162461bcd60e51b815260206004820152602d60248201527f4572726f723a206e65772070657263656e74616765206973206772656174657260448201527f207468616e2031302c303030300000000000000000000000000000000000000060648201526084016109a0565b600155565b6008546001600160a01b03163314610f405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b60105474010000000000000000000000000000000000000000900460ff1615610fab5760405162461bcd60e51b815260206004820152601960248201527f4572726f723a204d657461646174612069732066726f7a656e0000000000000060448201526064016109a0565b8051610fbe90601290602084019061297f565b5050565b6000818152600460205260408120546001600160a01b0316806108825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109a0565b6008546001600160a01b031633146110a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b600a805460ff191682151590811790915560ff1680156110c75750600b54155b156110dc576110d842610e10612e8e565b600b555b600a5460ff166110ee57506000600f55565b506001600f55565b60006001600160a01b0382166111745760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109a0565b506001600160a01b031660009081526005602052604090205490565b6008546001600160a01b031633146111ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6111f46000612122565b565b6008546001600160a01b031633146112505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6010546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e0c573d6000803e3d6000fd5b60606003805461089790612df4565b6008546001600160a01b031633146112f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b600f55565b610fbe338383612181565b6008546001600160a01b0316331461135c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6011546113ab5760405162461bcd60e51b815260206004820152601b60248201527f416c6c207069656365732068617665206265656e206d696e746564000000000060448201526064016109a0565b6011546000906113ba90612250565b90506113fa33601183815481106113d3576113d3612ea6565b60009182526020909120601082040154600f9091166002026101000a900461ffff166122bd565b6011805461140a90600190612ebc565b8154811061141a5761141a612ea6565b90600052602060002090601091828204019190066002029054906101000a900461ffff166011828154811061145157611451612ea6565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601180548061149157611491612ed3565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905550565b6008546001600160a01b0316331461151a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101008315158102919091179182905560ff91041680156115615750600c54155b156115765761157242610e10612e8e565b600c555b600a54610100900460ff166110ee57506000600f55565b6011546115dc5760405162461bcd60e51b815260206004820152601b60248201527f416c6c207069656365732068617665206265656e206d696e746564000000000060448201526064016109a0565b600e5434101561162e5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420656e6f7567682065746865720000000000000000000000000000000060448201526064016109a0565b600f54336000908152600d60205260409020541061168e5760405162461bcd60e51b815260206004820152601260248201527f52656163686564206d696e74206c696d6974000000000000000000000000000060448201526064016109a0565b600a5460ff1680156116a85750600a54610100900460ff16155b156117cb57600b544210156116ff5760405162461bcd60e51b815260206004820152601a60248201527f5072652d73616c65206d696e74206e6f74206f70656e2079657400000000000060448201526064016109a0565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506117798383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060095491508490506122d7565b6117c55760405162461bcd60e51b815260206004820152601060248201527f4e6f74206f6e20616c6c6f776c6973740000000000000000000000000000000060448201526064016109a0565b5061187a565b600a54610100900460ff161561183257600c5442101561182d5760405162461bcd60e51b815260206004820152601860248201527f5075626c6963206d696e74206e6f74206f70656e20796574000000000000000060448201526064016109a0565b61187a565b60405162461bcd60e51b815260206004820152601060248201527f4d696e74696e67206e6f74206f70656e0000000000000000000000000000000060448201526064016109a0565b60115460009061188990612250565b90506118a233601183815481106113d3576113d3612ea6565b336000908152600d602052604081208054916118bd83612ee9565b9091555050601180546118d290600190612ebc565b815481106118e2576118e2612ea6565b90600052602060002090601091828204019190066002029054906101000a900461ffff166011828154811061191957611919612ea6565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601180548061195957611959612ed3565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055505050565b6119943383611d98565b611a065760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a0565b611a12848484846122ed565b50505050565b6000818152600460205260409020546060906001600160a01b0316611aa55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109a0565b6000611aaf612376565b90506000815111611acf5760405180602001604052806000815250611afa565b80611ad984612385565b604051602001611aea929190612f04565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611b5b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6008546001600160a01b03163314611bf65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6001600160a01b038116611c725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109a0565b610e0c81612122565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611d0e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108825750610882826124b7565b6000818152600660205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611d5f82610fc2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316611e225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109a0565b6000611e2d83610fc2565b9050806001600160a01b0316846001600160a01b03161480611e685750836001600160a01b0316611e5d8461091a565b6001600160a01b0316145b80611e9857506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611eb382610fc2565b6001600160a01b031614611f2f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109a0565b6001600160a01b038216611faa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109a0565b611fb5600082611d1d565b6001600160a01b0383166000908152600560205260408120805460019290611fde908490612ebc565b90915550506001600160a01b038216600090815260056020526040812080546001929061200c908490612e8e565b9091555050600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061208582610fc2565b9050612092600083611d1d565b6001600160a01b03811660009081526005602052604081208054600192906120bb908490612ebc565b9091555050600082815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121e35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a0565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008061225e600143612ebc565b60408051914060208301526bffffffffffffffffffffffff1941606090811b8216928401929092524460548401523390911b16607482015260880160408051601f1981840301815291905280516020909101209050611afa8382612f33565b610fbe82826040518060200160405280600081525061254e565b6000826122e485846125d7565b14949350505050565b6122f8848484611ea0565b61230484848484612683565b611a125760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a0565b60606012805461089790612df4565b6060816123c557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156123ef57806123d981612ee9565b91506123e89050600a83612e7a565b91506123c9565b60008167ffffffffffffffff81111561240a5761240a612ba6565b6040519080825280601f01601f191660200182016040528015612434576020820181803683370190505b5090505b8415611e9857612449600183612ebc565b9150612456600a86612f33565b612461906030612e8e565b60f81b81838151811061247657612476612ea6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506124b0600a86612e7a565b9450612438565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061088257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610882565b6125588383612830565b6125656000848484612683565b610af25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a0565b600081815b845181101561267b5760008582815181106125f9576125f9612ea6565b6020026020010151905080831161263b576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612668565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061267381612ee9565b9150506125dc565b509392505050565b60006001600160a01b0384163b15612825576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906126e0903390899088908890600401612f47565b602060405180830381600087803b1580156126fa57600080fd5b505af192505050801561272a575060408051601f3d908101601f1916820190925261272791810190612f83565b60015b6127da573d808015612758576040519150601f19603f3d011682016040523d82523d6000602084013e61275d565b606091505b5080516127d25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a0565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611e98565b506001949350505050565b6001600160a01b0382166128865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a0565b6000818152600460205260409020546001600160a01b0316156128eb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a0565b6001600160a01b0382166000908152600560205260408120805460019290612914908490612e8e565b9091555050600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461298b90612df4565b90600052602060002090601f0160209004810192826129ad57600085556129f3565b82601f106129c657805160ff19168380011785556129f3565b828001600101855582156129f3579182015b828111156129f35782518255916020019190600101906129d8565b506129ff929150612a03565b5090565b5b808211156129ff5760008155600101612a04565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e0c57600080fd5b600060208284031215612a5857600080fd5b8135611afa81612a18565b60005b83811015612a7e578181015183820152602001612a66565b83811115611a125750506000910152565b60008151808452612aa7816020860160208601612a63565b601f01601f19169290920160200192915050565b602081526000611afa6020830184612a8f565b600060208284031215612ae057600080fd5b5035919050565b80356001600160a01b0381168114612afe57600080fd5b919050565b60008060408385031215612b1657600080fd5b612b1f83612ae7565b946020939093013593505050565b600060208284031215612b3f57600080fd5b611afa82612ae7565b600080600060608486031215612b5d57600080fd5b612b6684612ae7565b9250612b7460208501612ae7565b9150604084013590509250925092565b60008060408385031215612b9757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612bd757612bd7612ba6565b604051601f8501601f19908116603f01168101908282118183101715612bff57612bff612ba6565b81604052809350858152868686011115612c1857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612c4457600080fd5b813567ffffffffffffffff811115612c5b57600080fd5b8201601f81018413612c6c57600080fd5b611e9884823560208401612bbc565b80358015158114612afe57600080fd5b600060208284031215612c9d57600080fd5b611afa82612c7b565b60008060408385031215612cb957600080fd5b612cc283612ae7565b9150612cd060208401612c7b565b90509250929050565b60008060208385031215612cec57600080fd5b823567ffffffffffffffff80821115612d0457600080fd5b818501915085601f830112612d1857600080fd5b813581811115612d2757600080fd5b8660208260051b8501011115612d3c57600080fd5b60209290920196919550909350505050565b60008060008060808587031215612d6457600080fd5b612d6d85612ae7565b9350612d7b60208601612ae7565b925060408501359150606085013567ffffffffffffffff811115612d9e57600080fd5b8501601f81018713612daf57600080fd5b612dbe87823560208401612bbc565b91505092959194509250565b60008060408385031215612ddd57600080fd5b612de683612ae7565b9150612cd060208401612ae7565b600181811c90821680612e0857607f821691505b60208210811415612e2957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612e5f57612e5f612e2f565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e8957612e89612e64565b500490565b60008219821115612ea157612ea1612e2f565b500190565b634e487b7160e01b600052603260045260246000fd5b600082821015612ece57612ece612e2f565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612efd57612efd612e2f565b5060010190565b60008351612f16818460208801612a63565b835190830190612f2a818360208801612a63565b01949350505050565b600082612f4257612f42612e64565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612f796080830184612a8f565b9695505050505050565b600060208284031215612f9557600080fd5b8151611afa81612a1856fea2646970667358221220ecc099756f24c01eb02cb6f8321da607b0336e0e83d2ab4f2e7ac805a86c344564736f6c63430008090033bbefcc813b7f3227809b1e17ba8cb7cdb3e759e375f0d5534542ddb7e492b808000000000000000000000000db287dc45bb7bf3e9e80091354324065bc20ad5e000000000000000000000000db287dc45bb7bf3e9e80091354324065bc20ad5e000000000000000000000000000000000000000000000000000000000000028a

Deployed Bytecode

0x6080604052600436106102dc5760003560e01c806365f83c3b11610184578063a22cb465116100d6578063bcc9ca5b1161008a578063e4b7fb7311610064578063e4b7fb73146107f9578063e985e9c51461080e578063f2fde38b1461085757600080fd5b8063bcc9ca5b146107a5578063c87b56dd146107c4578063d111515d146107e457600080fd5b8063b61ff93c116100bb578063b61ff93c14610752578063b77a147b14610772578063b88d4fde1461078557600080fd5b8063a22cb4651461071d578063b12dc9911461073d57600080fd5b8063774b5c23116101385780638da5cb5b116101125780638da5cb5b146106ca57806395d89b41146106e8578063980f3abc146106fd57600080fd5b8063774b5c23146106645780637a4a7b3e1461067e5780638a59a7fd1461069457600080fd5b806370a082311161016957806370a082311461061a578063715018a61461063a5780637362377b1461064f57600080fd5b806365f83c3b146105e45780636817c76c1461060457600080fd5b80632eb4a7ab1161023d5780633f04923a116101f15780634bd0d89c116101cb5780634bd0d89c1461058457806355f804b3146105a45780636352211e146105c457600080fd5b80633f04923a1461052e57806342842e0e1461054457806342966c681461056457600080fd5b806336c4ff7a1161022257806336c4ff7a146104d8578063396876bd146104f85780633a45a5d31461050e57600080fd5b80632eb4a7ab146104a257806333ea51a8146104b857600080fd5b806318160ddd1161029457806320fc7eb21161027957806320fc7eb21461041657806323b872dd146104435780632a55205a1461046357600080fd5b806318160ddd146103c45780631f283fc2146103e357600080fd5b806306fdde03116102c557806306fdde0314610348578063081812fc1461036a578063095ea7b3146103a257600080fd5b806301ffc9a7146102e1578063054f7d9c14610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612a46565b610877565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b506010546103019074010000000000000000000000000000000000000000900460ff1681565b34801561035457600080fd5b5061035d610888565b60405161030d9190612abb565b34801561037657600080fd5b5061038a610385366004612ace565b61091a565b6040516001600160a01b03909116815260200161030d565b3480156103ae57600080fd5b506103c26103bd366004612b03565b6109c5565b005b3480156103d057600080fd5b506103e75b60405190815260200161030d565b3480156103ef57600080fd5b506104036103fe366004612ace565b610af7565b60405161ffff909116815260200161030d565b34801561042257600080fd5b506103d5610431366004612b2d565b600d6020526000908152604090205481565b34801561044f57600080fd5b506103c261045e366004612b48565b610b2f565b34801561046f57600080fd5b5061048361047e366004612b84565b610bb6565b604080516001600160a01b03909316835260208301919091520161030d565b3480156104ae57600080fd5b506103d560095481565b3480156104c457600080fd5b506103c26104d3366004612b2d565b610c04565b3480156104e457600080fd5b5060105461038a906001600160a01b031681565b34801561050457600080fd5b506103d5600f5481565b34801561051a57600080fd5b506103c2610529366004612b2d565b610c8d565b34801561053a57600080fd5b506103d5600c5481565b34801561055057600080fd5b506103c261055f366004612b48565b610d92565b34801561057057600080fd5b506103c261057f366004612ace565b610dad565b34801561059057600080fd5b506103c261059f366004612ace565b610e0f565b3480156105b057600080fd5b506103c26105bf366004612c32565b610ee6565b3480156105d057600080fd5b5061038a6105df366004612ace565b610fc2565b3480156105f057600080fd5b506103c26105ff366004612c8b565b61104d565b34801561061057600080fd5b506103d5600e5481565b34801561062657600080fd5b506103d5610635366004612b2d565b6110f6565b34801561064657600080fd5b506103c2611190565b34801561065b57600080fd5b506103c26111f6565b34801561067057600080fd5b50600a546103019060ff1681565b34801561068a57600080fd5b506103d5600b5481565b3480156106a057600080fd5b506103d56106af366004612b2d565b6001600160a01b03166000908152600d602052604090205490565b3480156106d657600080fd5b506008546001600160a01b031661038a565b3480156106f457600080fd5b5061035d611289565b34801561070957600080fd5b506103c2610718366004612ace565b611298565b34801561072957600080fd5b506103c2610738366004612ca6565b6112f7565b34801561074957600080fd5b506103c2611302565b34801561075e57600080fd5b506103c261076d366004612c8b565b6114c0565b6103c2610780366004612cd9565b61158d565b34801561079157600080fd5b506103c26107a0366004612d4e565b61198a565b3480156107b157600080fd5b50600a5461030190610100900460ff1681565b3480156107d057600080fd5b5061035d6107df366004612ace565b611a18565b3480156107f057600080fd5b506103c2611b01565b34801561080557600080fd5b506011546103d5565b34801561081a57600080fd5b50610301610829366004612dca565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561086357600080fd5b506103c2610872366004612b2d565b611b9c565b600061088282611c7b565b92915050565b60606002805461089790612df4565b80601f01602080910402602001604051908101604052809291908181526020018280546108c390612df4565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166109a95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109d082610fc2565b9050806001600160a01b0316836001600160a01b03161415610a5a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109a0565b336001600160a01b0382161480610a765750610a768133610829565b610ae85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a0565b610af28383611d1d565b505050565b60118181548110610b0757600080fd5b9060005260206000209060109182820401919006600202915054906101000a900461ffff1681565b610b393382611d98565b610bab5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a0565b610af2838383611ea0565b6000805481906001600160a01b0316610bce57600080fd5b6000546001546001600160a01b039091169061271090610bef908690612e45565b610bf99190612e7a565b915091509250929050565b6008546001600160a01b03163314610c5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6010805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610ce75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6001600160a01b038116610d635760405162461bcd60e51b815260206004820152602860248201527f4572726f723a206e657720726563697069656e7420697320746865207a65726f60448201527f206164647265737300000000000000000000000000000000000000000000000060648201526084016109a0565b6000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610af28383836040518060200160405280600081525061198a565b610db73382611d98565b610e035760405162461bcd60e51b815260206004820152601560248201527f4e6f7420417070726f766564206f72204f776e6572000000000000000000000060448201526064016109a0565b610e0c8161207a565b50565b6008546001600160a01b03163314610e695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b612710811115610ee15760405162461bcd60e51b815260206004820152602d60248201527f4572726f723a206e65772070657263656e74616765206973206772656174657260448201527f207468616e2031302c303030300000000000000000000000000000000000000060648201526084016109a0565b600155565b6008546001600160a01b03163314610f405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b60105474010000000000000000000000000000000000000000900460ff1615610fab5760405162461bcd60e51b815260206004820152601960248201527f4572726f723a204d657461646174612069732066726f7a656e0000000000000060448201526064016109a0565b8051610fbe90601290602084019061297f565b5050565b6000818152600460205260408120546001600160a01b0316806108825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109a0565b6008546001600160a01b031633146110a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b600a805460ff191682151590811790915560ff1680156110c75750600b54155b156110dc576110d842610e10612e8e565b600b555b600a5460ff166110ee57506000600f55565b506001600f55565b60006001600160a01b0382166111745760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109a0565b506001600160a01b031660009081526005602052604090205490565b6008546001600160a01b031633146111ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6111f46000612122565b565b6008546001600160a01b031633146112505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6010546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e0c573d6000803e3d6000fd5b60606003805461089790612df4565b6008546001600160a01b031633146112f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b600f55565b610fbe338383612181565b6008546001600160a01b0316331461135c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6011546113ab5760405162461bcd60e51b815260206004820152601b60248201527f416c6c207069656365732068617665206265656e206d696e746564000000000060448201526064016109a0565b6011546000906113ba90612250565b90506113fa33601183815481106113d3576113d3612ea6565b60009182526020909120601082040154600f9091166002026101000a900461ffff166122bd565b6011805461140a90600190612ebc565b8154811061141a5761141a612ea6565b90600052602060002090601091828204019190066002029054906101000a900461ffff166011828154811061145157611451612ea6565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601180548061149157611491612ed3565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905550565b6008546001600160a01b0316331461151a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101008315158102919091179182905560ff91041680156115615750600c54155b156115765761157242610e10612e8e565b600c555b600a54610100900460ff166110ee57506000600f55565b6011546115dc5760405162461bcd60e51b815260206004820152601b60248201527f416c6c207069656365732068617665206265656e206d696e746564000000000060448201526064016109a0565b600e5434101561162e5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420656e6f7567682065746865720000000000000000000000000000000060448201526064016109a0565b600f54336000908152600d60205260409020541061168e5760405162461bcd60e51b815260206004820152601260248201527f52656163686564206d696e74206c696d6974000000000000000000000000000060448201526064016109a0565b600a5460ff1680156116a85750600a54610100900460ff16155b156117cb57600b544210156116ff5760405162461bcd60e51b815260206004820152601a60248201527f5072652d73616c65206d696e74206e6f74206f70656e2079657400000000000060448201526064016109a0565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506117798383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060095491508490506122d7565b6117c55760405162461bcd60e51b815260206004820152601060248201527f4e6f74206f6e20616c6c6f776c6973740000000000000000000000000000000060448201526064016109a0565b5061187a565b600a54610100900460ff161561183257600c5442101561182d5760405162461bcd60e51b815260206004820152601860248201527f5075626c6963206d696e74206e6f74206f70656e20796574000000000000000060448201526064016109a0565b61187a565b60405162461bcd60e51b815260206004820152601060248201527f4d696e74696e67206e6f74206f70656e0000000000000000000000000000000060448201526064016109a0565b60115460009061188990612250565b90506118a233601183815481106113d3576113d3612ea6565b336000908152600d602052604081208054916118bd83612ee9565b9091555050601180546118d290600190612ebc565b815481106118e2576118e2612ea6565b90600052602060002090601091828204019190066002029054906101000a900461ffff166011828154811061191957611919612ea6565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601180548061195957611959612ed3565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055505050565b6119943383611d98565b611a065760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a0565b611a12848484846122ed565b50505050565b6000818152600460205260409020546060906001600160a01b0316611aa55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109a0565b6000611aaf612376565b90506000815111611acf5760405180602001604052806000815250611afa565b80611ad984612385565b604051602001611aea929190612f04565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611b5b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6008546001600160a01b03163314611bf65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a0565b6001600160a01b038116611c725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109a0565b610e0c81612122565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611d0e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108825750610882826124b7565b6000818152600660205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611d5f82610fc2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316611e225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109a0565b6000611e2d83610fc2565b9050806001600160a01b0316846001600160a01b03161480611e685750836001600160a01b0316611e5d8461091a565b6001600160a01b0316145b80611e9857506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611eb382610fc2565b6001600160a01b031614611f2f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109a0565b6001600160a01b038216611faa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109a0565b611fb5600082611d1d565b6001600160a01b0383166000908152600560205260408120805460019290611fde908490612ebc565b90915550506001600160a01b038216600090815260056020526040812080546001929061200c908490612e8e565b9091555050600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061208582610fc2565b9050612092600083611d1d565b6001600160a01b03811660009081526005602052604081208054600192906120bb908490612ebc565b9091555050600082815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121e35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a0565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008061225e600143612ebc565b60408051914060208301526bffffffffffffffffffffffff1941606090811b8216928401929092524460548401523390911b16607482015260880160408051601f1981840301815291905280516020909101209050611afa8382612f33565b610fbe82826040518060200160405280600081525061254e565b6000826122e485846125d7565b14949350505050565b6122f8848484611ea0565b61230484848484612683565b611a125760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a0565b60606012805461089790612df4565b6060816123c557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156123ef57806123d981612ee9565b91506123e89050600a83612e7a565b91506123c9565b60008167ffffffffffffffff81111561240a5761240a612ba6565b6040519080825280601f01601f191660200182016040528015612434576020820181803683370190505b5090505b8415611e9857612449600183612ebc565b9150612456600a86612f33565b612461906030612e8e565b60f81b81838151811061247657612476612ea6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506124b0600a86612e7a565b9450612438565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061088257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610882565b6125588383612830565b6125656000848484612683565b610af25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a0565b600081815b845181101561267b5760008582815181106125f9576125f9612ea6565b6020026020010151905080831161263b576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612668565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061267381612ee9565b9150506125dc565b509392505050565b60006001600160a01b0384163b15612825576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906126e0903390899088908890600401612f47565b602060405180830381600087803b1580156126fa57600080fd5b505af192505050801561272a575060408051601f3d908101601f1916820190925261272791810190612f83565b60015b6127da573d808015612758576040519150601f19603f3d011682016040523d82523d6000602084013e61275d565b606091505b5080516127d25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a0565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611e98565b506001949350505050565b6001600160a01b0382166128865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a0565b6000818152600460205260409020546001600160a01b0316156128eb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a0565b6001600160a01b0382166000908152600560205260408120805460019290612914908490612e8e565b9091555050600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461298b90612df4565b90600052602060002090601f0160209004810192826129ad57600085556129f3565b82601f106129c657805160ff19168380011785556129f3565b828001600101855582156129f3579182015b828111156129f35782518255916020019190600101906129d8565b506129ff929150612a03565b5090565b5b808211156129ff5760008155600101612a04565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e0c57600080fd5b600060208284031215612a5857600080fd5b8135611afa81612a18565b60005b83811015612a7e578181015183820152602001612a66565b83811115611a125750506000910152565b60008151808452612aa7816020860160208601612a63565b601f01601f19169290920160200192915050565b602081526000611afa6020830184612a8f565b600060208284031215612ae057600080fd5b5035919050565b80356001600160a01b0381168114612afe57600080fd5b919050565b60008060408385031215612b1657600080fd5b612b1f83612ae7565b946020939093013593505050565b600060208284031215612b3f57600080fd5b611afa82612ae7565b600080600060608486031215612b5d57600080fd5b612b6684612ae7565b9250612b7460208501612ae7565b9150604084013590509250925092565b60008060408385031215612b9757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612bd757612bd7612ba6565b604051601f8501601f19908116603f01168101908282118183101715612bff57612bff612ba6565b81604052809350858152868686011115612c1857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612c4457600080fd5b813567ffffffffffffffff811115612c5b57600080fd5b8201601f81018413612c6c57600080fd5b611e9884823560208401612bbc565b80358015158114612afe57600080fd5b600060208284031215612c9d57600080fd5b611afa82612c7b565b60008060408385031215612cb957600080fd5b612cc283612ae7565b9150612cd060208401612c7b565b90509250929050565b60008060208385031215612cec57600080fd5b823567ffffffffffffffff80821115612d0457600080fd5b818501915085601f830112612d1857600080fd5b813581811115612d2757600080fd5b8660208260051b8501011115612d3c57600080fd5b60209290920196919550909350505050565b60008060008060808587031215612d6457600080fd5b612d6d85612ae7565b9350612d7b60208601612ae7565b925060408501359150606085013567ffffffffffffffff811115612d9e57600080fd5b8501601f81018713612daf57600080fd5b612dbe87823560208401612bbc565b91505092959194509250565b60008060408385031215612ddd57600080fd5b612de683612ae7565b9150612cd060208401612ae7565b600181811c90821680612e0857607f821691505b60208210811415612e2957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612e5f57612e5f612e2f565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e8957612e89612e64565b500490565b60008219821115612ea157612ea1612e2f565b500190565b634e487b7160e01b600052603260045260246000fd5b600082821015612ece57612ece612e2f565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612efd57612efd612e2f565b5060010190565b60008351612f16818460208801612a63565b835190830190612f2a818360208801612a63565b01949350505050565b600082612f4257612f42612e64565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612f796080830184612a8f565b9695505050505050565b600060208284031215612f9557600080fd5b8151611afa81612a1856fea2646970667358221220ecc099756f24c01eb02cb6f8321da607b0336e0e83d2ab4f2e7ac805a86c344564736f6c63430008090033

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

bbefcc813b7f3227809b1e17ba8cb7cdb3e759e375f0d5534542ddb7e492b808000000000000000000000000db287dc45bb7bf3e9e80091354324065bc20ad5e000000000000000000000000db287dc45bb7bf3e9e80091354324065bc20ad5e000000000000000000000000000000000000000000000000000000000000028a

-----Decoded View---------------
Arg [0] : root (bytes32): 0xbbefcc813b7f3227809b1e17ba8cb7cdb3e759e375f0d5534542ddb7e492b808
Arg [1] : payout (address): 0xdb287dc45bB7bF3E9e80091354324065Bc20ad5e
Arg [2] : addr (address): 0xdb287dc45bB7bF3E9e80091354324065Bc20ad5e
Arg [3] : perc (uint256): 650

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : bbefcc813b7f3227809b1e17ba8cb7cdb3e759e375f0d5534542ddb7e492b808
Arg [1] : 000000000000000000000000db287dc45bb7bf3e9e80091354324065bc20ad5e
Arg [2] : 000000000000000000000000db287dc45bb7bf3e9e80091354324065bc20ad5e
Arg [3] : 000000000000000000000000000000000000000000000000000000000000028a


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.