ETH Price: $3,501.05 (+4.29%)
Gas: 4 Gwei

Token

Fomoverse (FOMO)
 

Overview

Max Total Supply

0 FOMO

Holders

699

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
manifoldvault.eth
Balance
1 FOMO
0x54ace8d119c4bd7baf11f750c690e9667a80801a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

You missed again.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Fomoverse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion
File 1 of 16 : Fomoverse.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @creator: Pak
/// @author: manifold.xyz

////////////////////////////////////////////////////////////
//                                                        //
//                                                        //
//    $$$$$$\ $$\   $$\                                   //
//    \_$$  _|$$$\  $$ |                                  //
//      $$ |  $$$$\ $$ |                                  //
//      $$ |  $$ $$\$$ |                                  //
//      $$ |  $$ \$$$$ |                                  //
//      $$ |  $$ |\$$$ |                                  //
//    $$$$$$\ $$ | \$$ |                                  //
//    \______|\__|  \__|                                  //
//                                                        //
//                                                        //
//    $$$$$$$$\  $$$$$$\  $$\      $$\  $$$$$$\           //
//    $$  _____|$$  __$$\ $$$\    $$$ |$$  __$$\          //
//    $$ |      $$ /  $$ |$$$$\  $$$$ |$$ /  $$ |         //
//    $$$$$\    $$ |  $$ |$$\$$\$$ $$ |$$ |  $$ |         //
//    $$  __|   $$ |  $$ |$$ \$$$  $$ |$$ |  $$ |         //
//    $$ |      $$ |  $$ |$$ |\$  /$$ |$$ |  $$ |         //
//    $$ |       $$$$$$  |$$ | \_/ $$ | $$$$$$  |         //
//    \__|       \______/ \__|     \__| \______/          //
//                                                        //
//                                                        //
//    $$\      $$\ $$$$$$$$\                              //
//    $$ | $\  $$ |$$  _____|                             //
//    $$ |$$$\ $$ |$$ |                                   //
//    $$ $$ $$\$$ |$$$$$\                                 //
//    $$$$  _$$$$ |$$  __|                                //
//    $$$  / \$$$ |$$ |                                   //
//    $$  /   \$$ |$$$$$$$$\                              //
//    \__/     \__|\________|                             //
//                                                        //
//                                                        //
//    $$$$$$$$\ $$$$$$$\  $$\   $$\  $$$$$$\ $$$$$$$$\    //
//    \__$$  __|$$  __$$\ $$ |  $$ |$$  __$$\\__$$  __|   //
//       $$ |   $$ |  $$ |$$ |  $$ |$$ /  \__|  $$ |      //
//       $$ |   $$$$$$$  |$$ |  $$ |\$$$$$$\    $$ |      //
//       $$ |   $$  __$$< $$ |  $$ | \____$$\   $$ |      //
//       $$ |   $$ |  $$ |$$ |  $$ |$$\   $$ |  $$ |      //
//       $$ |   $$ |  $$ |\$$$$$$  |\$$$$$$  |  $$ |      //
//       \__|   \__|  \__| \______/  \______/   \__|      //
//                                                        //
//                                                        //
////////////////////////////////////////////////////////////

import "@manifoldxyz/libraries-solidity/contracts/access/AdminControl.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract Fomoverse is ReentrancyGuard, AdminControl, ERC721 {

    using Address for address;
    using Strings for uint256;
    using EnumerableSet for EnumerableSet.AddressSet;

    uint256 private _mintCount;
    uint256 public currentMintCount;
    uint256 public currentMintLimit;
    address public ashContract;
    uint256 public ashThreshold;

    string private _commonURI;
    string private _prefixURI;
    EnumerableSet.AddressSet private _approvedTokenReceivers;

    uint256 private _royaltyBps;
    address payable private _royaltyRecipient;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_CREATORCORE = 0xbb3bafd6;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    bool public active;

    constructor() ERC721("Fomoverse", "FOMO") {
        _mintCount = 1;
        _mint(msg.sender, _mintCount);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(AdminControl, ERC721) returns (bool) {
        return ERC721.supportsInterface(interfaceId) || AdminControl.supportsInterface(interfaceId) 
            || interfaceId == _INTERFACE_ID_ROYALTIES_CREATORCORE || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 
            || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE;
    }

    function activate(uint256 limit, address ashContract_, uint256 ashThreshold_) external adminRequired {
        active = true;
        currentMintCount = 0;
        currentMintLimit = limit;
        ashContract = ashContract_;
        ashThreshold = ashThreshold_;
    }

    function deactivate() external adminRequired {
        active = false;
        currentMintCount = 0;
        currentMintLimit = 0;
    }

    function canMint() external view returns(bool) {
        return (active && currentMintCount < currentMintLimit && !msg.sender.isContract() && balanceOf(msg.sender) == 0 && IERC20(ashContract).balanceOf(msg.sender) >= ashThreshold);
    }

    function clear() external nonReentrant {
        require(active && currentMintCount < currentMintLimit, "Inactive");
        require(!msg.sender.isContract(), "Contracts cannot call mint");
        require(balanceOf(msg.sender) == 0, "Cannot mint more than one");

        // Private sale, check if individual has appropriate balance
        require(IERC20(ashContract).balanceOf(msg.sender) >= ashThreshold, "You do not have enough ASH to participate");

        _mintCount++;
        currentMintCount++;
        _mint(msg.sender, _mintCount);
    }

    /**
     * @dev Use a prefix commond uri for all tokens (<PREFIX><TOKEN_ID>).
     */
    function setPrefixURI(string calldata uri) external adminRequired {
        _prefixURI = uri;
        _commonURI = '';
    }

     /**
     * @dev Use a common uri for all tokens
     */
    function setCommonURI(string memory uri) external adminRequired {
        _commonURI = uri;
        _prefixURI = '';
    }

    function tokenURI(uint256 tokenId) public view override returns(string memory) {
        require(_exists(tokenId), "ERC721: URI query for nonexistent token");
        if (bytes(_commonURI).length > 0) {
          return _commonURI;
        }
        return string(abi.encodePacked(_prefixURI, tokenId.toString()));
    }


    /**
     * @dev Update royalties
     */
    function updateRoyalties(address payable recipient, uint256 bps) external adminRequired {
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
    }

    /**
     * ROYALTY FUNCTIONS
     */
    function getRoyalties(uint256) external view returns (address payable[] memory recipients, uint256[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return (recipients, bps);
    }

    function getFeeRecipients(uint256) external view returns (address payable[] memory recipients) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
        }
        return recipients;
    }

    function getFeeBps(uint256) external view returns (uint[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return bps;
    }

    function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) {
        return (_royaltyRecipient, value*_royaltyBps/10000);
    }


    /**
     * Functions to add/remove approved contract based token receivers
     */
    function addTokenReceivers(address[] calldata addresses) external adminRequired {
        for (uint i = 0; i < addresses.length; i++) {
            _approvedTokenReceivers.add(addresses[i]);
        }
    }
    function removeTokenReceivers(address[] calldata addresses) external adminRequired {
        for (uint i = 0; i < addresses.length; i++) {
            _approvedTokenReceivers.remove(addresses[i]);
        }
    }
    function approvedTokenReceivers() external view returns(address[] memory addresses) {
        addresses = new address[](_approvedTokenReceivers.length());
        for (uint i = 0; i < _approvedTokenReceivers.length(); i++) {
            addresses[i] = _approvedTokenReceivers.at(i);
        }
    }
    function _transfer(address from, address to, uint256 tokenId) internal virtual override {
        // Override transfer function to prevent transfers to unauthorized contracts
        if (to.isContract()) {
            require(_approvedTokenReceivers.contains(to), "Cannot transfer to contract");
        }
        super._transfer(from, to, tokenId);
    }
}

File 2 of 16 : AdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @author: manifold.xyz

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./IAdminControl.sol";

abstract contract AdminControl is Ownable, IAdminControl, ERC165 {
    using EnumerableSet for EnumerableSet.AddressSet;

    // Track registered admins
    EnumerableSet.AddressSet private _admins;

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

    /**
     * @dev Only allows approved admins to call the specified function
     */
    modifier adminRequired() {
        require(owner() == msg.sender || _admins.contains(msg.sender), "AdminControl: Must be owner or admin");
        _;
    }   

    /**
     * @dev See {IAdminControl-getAdmins}.
     */
    function getAdmins() external view override returns (address[] memory admins) {
        admins = new address[](_admins.length());
        for (uint i = 0; i < _admins.length(); i++) {
            admins[i] = _admins.at(i);
        }
        return admins;
    }

    /**
     * @dev See {IAdminControl-approveAdmin}.
     */
    function approveAdmin(address admin) external override onlyOwner {
        if (!_admins.contains(admin)) {
            emit AdminApproved(admin, msg.sender);
            _admins.add(admin);
        }
    }

    /**
     * @dev See {IAdminControl-revokeAdmin}.
     */
    function revokeAdmin(address admin) external override onlyOwner {
        if (_admins.contains(admin)) {
            emit AdminRevoked(admin, msg.sender);
            _admins.remove(admin);
        }
    }

    /**
     * @dev See {IAdminControl-isAdmin}.
     */
    function isAdmin(address admin) public override view returns (bool) {
        return (owner() == admin || _admins.contains(admin));
    }

}

File 3 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 16 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 5 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 6 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 7 of 16 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 8 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 9 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 11 of 16 : IAdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @author: manifold.xyz

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @dev Interface for admin control
 */
interface IAdminControl is IERC165 {

    event AdminApproved(address indexed account, address indexed sender);
    event AdminRevoked(address indexed account, address indexed sender);

    /**
     * @dev gets address of all admins
     */
    function getAdmins() external view returns (address[] memory);

    /**
     * @dev add an admin.  Can only be called by contract owner.
     */
    function approveAdmin(address admin) external;

    /**
     * @dev remove an admin.  Can only be called by contract owner.
     */
    function revokeAdmin(address admin) external;

    /**
     * @dev checks whether or not given address is an admin
     * Returns True if they are
     */
    function isAdmin(address admin) external view returns (bool);

}

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

pragma solidity ^0.8.0;

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

File 13 of 16 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"address","name":"ashContract_","type":"address"},{"internalType":"uint256","name":"ashThreshold_","type":"uint256"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addTokenReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"approveAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approvedTokenReceivers","outputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ashContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ashThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clear","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdmins","outputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"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":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeTokenReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"revokeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"setCommonURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setPrefixURI","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":[{"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":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526009815268466f6d6f766572736560b81b60208083019190915282518084019093526004835263464f4d4f60e01b908301526001600055906200005e33620000a6565b81516200007390600490602085019062000244565b5080516200008990600590602084019062000244565b50506001600a819055620000a091503390620000f8565b6200034e565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600660205260409020546001600160a01b031615620001bb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200014b565b6001600160a01b0382166000908152600760205260408120805460019290620001e6908490620002ea565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620002529062000311565b90600052602060002090601f016020900481019282620002765760008555620002c1565b82601f106200029157805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c1578251825591602001919060010190620002a4565b50620002cf929150620002d3565b5090565b5b80821115620002cf5760008155600101620002d4565b600082198211156200030c57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200032657607f821691505b602082108114156200034857634e487b7160e01b600052602260045260246000fd5b50919050565b612c72806200035e6000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80636d73e6691161013b578063b2c94ee6116100b8578063beb9716d1161007c578063beb9716d146104fa578063c87b56dd14610502578063e985e9c514610515578063f2fde38b14610551578063f76059551461056457600080fd5b8063b2c94ee61461048b578063b6c5abbb1461049e578063b88d4fde146104a6578063b9c4d9fb146104b9578063bb3bafd6146104d957600080fd5b806395d89b41116100ff57806395d89b411461044b57806399e831aa14610453578063a22cb4651461045c578063a40c3eab1461046f578063a420ed3e1461047857600080fd5b80636d73e669146103f957806370a082311461040c578063715018a61461041f5780638da5cb5b14610427578063917ef10e1461043857600080fd5b80632d345670116101c957806352efea6e1161018d57806352efea6e146103a557806355fc9893146103ad5780636352211e146103c057806369a2a4d6146103d35780636c2f5acd146103e657600080fd5b80632d3456701461034b57806331ae450b1461035e57806342842e0e14610373578063496977631461038657806351b42b001461039d57600080fd5b8063095ea7b311610210578063095ea7b3146102be5780630ebd4c7f146102d357806323b872dd146102f357806324d7806c146103065780632a55205a1461031957600080fd5b806301ffc9a71461024257806302fb0c5e1461026a57806306fdde031461027e578063081812fc14610293575b600080fd5b6102556102503660046126bf565b610577565b60405190151581526020015b60405180910390f35b60145461025590600160a01b900460ff1681565b6102866105e8565b6040516102619190612a54565b6102a66102a13660046127a2565b61067a565b6040516001600160a01b039091168152602001610261565b6102d16102cc3660046124f1565b610714565b005b6102e66102e13660046127a2565b610848565b6040516102619190612a41565b6102d1610301366004612556565b6108a4565b6102556103143660046124d4565b61091f565b61032c6103273660046127fb565b610958565b604080516001600160a01b039093168352602083019190915201610261565b6102d16103593660046124d4565b610992565b610366610a42565b60405161026191906129bc565b6102d1610381366004612556565b610af1565b61038f600b5481565b604051908152602001610261565b6102d1610b0c565b6102d1610b6f565b6102d16103bb366004612759565b610dda565b6102a66103ce3660046127a2565b610e56565b6102d16103e13660046127d4565b610ecd565b6102d16103f43660046124f1565b610f5b565b6102d16104073660046124d4565b610fcb565b61038f61041a3660046124d4565b611075565b6102d16110fc565b6001546001600160a01b03166102a6565b6102d161044636600461264a565b611162565b6102866111fc565b61038f600e5481565b6102d161046a366004612617565b61120b565b61038f600c5481565b600d546102a6906001600160a01b031681565b6102d16104993660046126f9565b6112d0565b610366611345565b6102d16104b4366004612597565b6113f0565b6104cc6104c73660046127a2565b611472565b6040516102619190612a09565b6104ec6104e73660046127a2565b6114eb565b604051610261929190612a1c565b61025561159f565b6102866105103660046127a2565b611668565b61025561052336600461251d565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6102d161055f3660046124d4565b6117ba565b6102d161057236600461264a565b611882565b60006105828261191c565b80610591575061059182611958565b806105ac57506001600160e01b03198216635d9dd7eb60e11b145b806105c757506001600160e01b0319821663152a902d60e11b145b806105e257506001600160e01b03198216632dde656160e21b145b92915050565b6060600480546105f790612b39565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612b39565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b6000818152600660205260408120546001600160a01b03166106f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061071f82610e56565b9050806001600160a01b0316836001600160a01b0316141561078d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ef565b336001600160a01b03821614806107c757506001600160a01b038116600090815260096020908152604080832033845290915290205460ff165b6108395760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ef565b610843838361198d565b505050565b6014546060906001600160a01b03161561089f5760408051600180825281830190925290602080830190803683370190505090506013548160008151811061089257610892612be5565b6020026020010181815250505b919050565b6108ae33826119fb565b6109145760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016106ef565b610843838383611af2565b6000816001600160a01b031661093d6001546001600160a01b031690565b6001600160a01b031614806105e257506105e2600283611b64565b60145460135460009182916001600160a01b03909116906127109061097d9086612ad7565b6109879190612ac3565b915091509250929050565b6001546001600160a01b031633146109ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b6109f7600282611b64565b15610a3f5760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a3610a3d600282611b89565b505b50565b6060610a4e6002611b9e565b67ffffffffffffffff811115610a6657610a66612bfb565b604051908082528060200260200182016040528015610a8f578160200160208202803683370190505b50905060005b610a9f6002611b9e565b811015610aed57610ab1600282611ba8565b828281518110610ac357610ac3612be5565b6001600160a01b039092166020928302919091019091015280610ae581612b74565b915050610a95565b5090565b610843838383604051806020016040528060008152506113f0565b33610b1f6001546001600160a01b031690565b6001600160a01b03161480610b3a5750610b3a600233611b64565b610b565760405162461bcd60e51b81526004016106ef90612a67565b6014805460ff60a01b191690556000600b819055600c55565b60026000541415610bc25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ef565b6002600055601454600160a01b900460ff168015610be35750600c54600b54105b610c1a5760405162461bcd60e51b8152602060048201526008602482015267496e61637469766560c01b60448201526064016106ef565b333b15610c695760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374732063616e6e6f742063616c6c206d696e7400000000000060448201526064016106ef565b610c7233611075565b15610cbf5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e74206d6f7265207468616e206f6e650000000000000060448201526064016106ef565b600e54600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610d0557600080fd5b505afa158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d91906127bb565b1015610d9d5760405162461bcd60e51b815260206004820152602960248201527f596f7520646f206e6f74206861766520656e6f7567682041534820746f20706160448201526872746963697061746560b81b60648201526084016106ef565b600a8054906000610dad83612b74565b9091555050600b8054906000610dc283612b74565b9190505550610dd333600a54611bb4565b6001600055565b33610ded6001546001600160a01b031690565b6001600160a01b03161480610e085750610e08600233611b64565b610e245760405162461bcd60e51b81526004016106ef90612a67565b8051610e3790600f906020840190612355565b50604080516020810191829052600090819052610a3d91601091612355565b6000818152600660205260408120546001600160a01b0316806105e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ef565b33610ee06001546001600160a01b031690565b6001600160a01b03161480610efb5750610efb600233611b64565b610f175760405162461bcd60e51b81526004016106ef90612a67565b6014805460ff60a01b1916600160a01b1790556000600b55600c92909255600d80546001600160a01b039092166001600160a01b0319909216919091179055600e55565b33610f6e6001546001600160a01b031690565b6001600160a01b03161480610f895750610f89600233611b64565b610fa55760405162461bcd60e51b81526004016106ef90612a67565b601480546001600160a01b0319166001600160a01b039390931692909217909155601355565b6001546001600160a01b031633146110255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b611030600282611b64565b610a3f5760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a3610a3d600282611cf6565b60006001600160a01b0382166110e05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ef565b506001600160a01b031660009081526007602052604090205490565b6001546001600160a01b031633146111565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b6111606000611d0b565b565b336111756001546001600160a01b031690565b6001600160a01b031614806111905750611190600233611b64565b6111ac5760405162461bcd60e51b81526004016106ef90612a67565b60005b81811015610843576111e98383838181106111cc576111cc612be5565b90506020020160208101906111e191906124d4565b601190611b89565b50806111f481612b74565b9150506111af565b6060600580546105f790612b39565b6001600160a01b0382163314156112645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ef565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b336112e36001546001600160a01b031690565b6001600160a01b031614806112fe57506112fe600233611b64565b61131a5760405162461bcd60e51b81526004016106ef90612a67565b611326601083836123d5565b5060408051602081019182905260009081905261084391600f91612355565b60606113516011611b9e565b67ffffffffffffffff81111561136957611369612bfb565b604051908082528060200260200182016040528015611392578160200160208202803683370190505b50905060005b6113a26011611b9e565b811015610aed576113b4601182611ba8565b8282815181106113c6576113c6612be5565b6001600160a01b0390921660209283029190910190910152806113e881612b74565b915050611398565b6113fa33836119fb565b6114605760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016106ef565b61146c84848484611d5d565b50505050565b6014546060906001600160a01b03161561089f576040805160018082528183019092529060208083019080368337505060145482519293506001600160a01b0316918391506000906114c6576114c6612be5565b60200260200101906001600160a01b031690816001600160a01b031681525050919050565b60145460609081906001600160a01b03161561159a576040805160018082528183019092529060208083019080368337505060145482519294506001600160a01b03169184915060009061154157611541612be5565b6001600160a01b03929092166020928302919091018201526040805160018082528183019092529182810190803683370190505090506013548160008151811061158d5761158d612be5565b6020026020010181815250505b915091565b601454600090600160a01b900460ff1680156115be5750600c54600b54105b80156115c95750333b155b80156115db57506115d933611075565b155b80156116635750600e54600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561162857600080fd5b505afa15801561163c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166091906127bb565b10155b905090565b6000818152600660205260409020546060906001600160a01b03166116df5760405162461bcd60e51b815260206004820152602760248201527f4552433732313a2055524920717565727920666f72206e6f6e6578697374656e6044820152663a103a37b5b2b760c91b60648201526084016106ef565b6000600f80546116ee90612b39565b9050111561178857600f805461170390612b39565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90612b39565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b50505050509050919050565b601061179383611ddb565b6040516020016117a49291906128d9565b6040516020818303038152906040529050919050565b6001546001600160a01b031633146118145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b6001600160a01b0381166118795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ef565b610a3f81611d0b565b336118956001546001600160a01b031690565b6001600160a01b031614806118b057506118b0600233611b64565b6118cc5760405162461bcd60e51b81526004016106ef90612a67565b60005b81811015610843576119098383838181106118ec576118ec612be5565b905060200201602081019061190191906124d4565b601190611cf6565b508061191481612b74565b9150506118cf565b60006001600160e01b031982166380ac58cd60e01b148061194d57506001600160e01b03198216635b5e139f60e01b145b806105e257506105e2825b60006001600160e01b03198216632a9f3abf60e11b14806105e257506301ffc9a760e01b6001600160e01b03198316146105e2565b600081815260086020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c282610e56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600660205260408120546001600160a01b0316611a745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ef565b6000611a7f83610e56565b9050806001600160a01b0316846001600160a01b03161480611aba5750836001600160a01b0316611aaf8461067a565b6001600160a01b0316145b80611aea57506001600160a01b0380821660009081526009602090815260408083209388168352929052205460ff165b949350505050565b6001600160a01b0382163b15611b5957611b0d601183611b64565b611b595760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74207472616e7366657220746f20636f6e7472616374000000000060448201526064016106ef565b610843838383611ef1565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6000611b82836001600160a01b038416612091565b60006105e2825490565b6000611b828383612184565b6001600160a01b038216611c0a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ef565b6000818152600660205260409020546001600160a01b031615611c6f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ef565b6001600160a01b0382166000908152600760205260408120805460019290611c98908490612aab565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611b82836001600160a01b0384166121ae565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d68848484611af2565b611d74848484846121fd565b61146c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ef565b606081611dff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e295780611e1381612b74565b9150611e229050600a83612ac3565b9150611e03565b60008167ffffffffffffffff811115611e4457611e44612bfb565b6040519080825280601f01601f191660200182016040528015611e6e576020820181803683370190505b5090505b8415611aea57611e83600183612af6565b9150611e90600a86612b8f565b611e9b906030612aab565b60f81b818381518110611eb057611eb0612be5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611eea600a86612ac3565b9450611e72565b826001600160a01b0316611f0482610e56565b6001600160a01b031614611f6c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ef565b6001600160a01b038216611fce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ef565b611fd960008261198d565b6001600160a01b0383166000908152600760205260408120805460019290612002908490612af6565b90915550506001600160a01b0382166000908152600760205260408120805460019290612030908490612aab565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000818152600183016020526040812054801561217a5760006120b5600183612af6565b85549091506000906120c990600190612af6565b905081811461212e5760008660000182815481106120e9576120e9612be5565b906000526020600020015490508087600001848154811061210c5761210c612be5565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061213f5761213f612bcf565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105e2565b60009150506105e2565b600082600001828154811061219b5761219b612be5565b9060005260206000200154905092915050565b60008181526001830160205260408120546121f5575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105e2565b5060006105e2565b60006001600160a01b0384163b1561234a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612241903390899088908890600401612980565b602060405180830381600087803b15801561225b57600080fd5b505af192505050801561228b575060408051601f3d908101601f19168201909252612288918101906126dc565b60015b612330573d8080156122b9576040519150601f19603f3d011682016040523d82523d6000602084013e6122be565b606091505b5080516123285760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aea565b506001949350505050565b82805461236190612b39565b90600052602060002090601f01602090048101928261238357600085556123c9565b82601f1061239c57805160ff19168380011785556123c9565b828001600101855582156123c9579182015b828111156123c95782518255916020019190600101906123ae565b50610aed929150612449565b8280546123e190612b39565b90600052602060002090601f01602090048101928261240357600085556123c9565b82601f1061241c5782800160ff198235161785556123c9565b828001600101855582156123c9579182015b828111156123c957823582559160200191906001019061242e565b5b80821115610aed576000815560010161244a565b600067ffffffffffffffff8084111561247957612479612bfb565b604051601f8501601f19908116603f011681019082821181831017156124a1576124a1612bfb565b816040528093508581528686860111156124ba57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124e657600080fd5b8135611b8281612c11565b6000806040838503121561250457600080fd5b823561250f81612c11565b946020939093013593505050565b6000806040838503121561253057600080fd5b823561253b81612c11565b9150602083013561254b81612c11565b809150509250929050565b60008060006060848603121561256b57600080fd5b833561257681612c11565b9250602084013561258681612c11565b929592945050506040919091013590565b600080600080608085870312156125ad57600080fd5b84356125b881612c11565b935060208501356125c881612c11565b925060408501359150606085013567ffffffffffffffff8111156125eb57600080fd5b8501601f810187136125fc57600080fd5b61260b8782356020840161245e565b91505092959194509250565b6000806040838503121561262a57600080fd5b823561263581612c11565b91506020830135801515811461254b57600080fd5b6000806020838503121561265d57600080fd5b823567ffffffffffffffff8082111561267557600080fd5b818501915085601f83011261268957600080fd5b81358181111561269857600080fd5b8660208260051b85010111156126ad57600080fd5b60209290920196919550909350505050565b6000602082840312156126d157600080fd5b8135611b8281612c26565b6000602082840312156126ee57600080fd5b8151611b8281612c26565b6000806020838503121561270c57600080fd5b823567ffffffffffffffff8082111561272457600080fd5b818501915085601f83011261273857600080fd5b81358181111561274757600080fd5b8660208285010111156126ad57600080fd5b60006020828403121561276b57600080fd5b813567ffffffffffffffff81111561278257600080fd5b8201601f8101841361279357600080fd5b611aea8482356020840161245e565b6000602082840312156127b457600080fd5b5035919050565b6000602082840312156127cd57600080fd5b5051919050565b6000806000606084860312156127e957600080fd5b83359250602084013561258681612c11565b6000806040838503121561280e57600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b838110156128565781516001600160a01b031687529582019590820190600101612831565b509495945050505050565b600081518084526020808501945080840160005b8381101561285657815187529582019590820190600101612875565b600081518084526128a9816020860160208601612b0d565b601f01601f19169290920160200192915050565b600081516128cf818560208601612b0d565b9290920192915050565b600080845481600182811c9150808316806128f557607f831692505b602080841082141561291557634e487b7160e01b86526022600452602486fd5b818015612929576001811461293a57612967565b60ff19861689528489019650612967565b60008b81526020902060005b8681101561295f5781548b820152908501908301612946565b505084890196505b50505050505061297781856128bd565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526129b26080830184612891565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129fd5783516001600160a01b0316835292840192918401916001016129d8565b50909695505050505050565b602081526000611b82602083018461281d565b604081526000612a2f604083018561281d565b82810360208401526129778185612861565b602081526000611b826020830184612861565b602081526000611b826020830184612891565b60208082526024908201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616040820152633236b4b760e11b606082015260800190565b60008219821115612abe57612abe612ba3565b500190565b600082612ad257612ad2612bb9565b500490565b6000816000190483118215151615612af157612af1612ba3565b500290565b600082821015612b0857612b08612ba3565b500390565b60005b83811015612b28578181015183820152602001612b10565b8381111561146c5750506000910152565b600181811c90821680612b4d57607f821691505b60208210811415612b6e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b8857612b88612ba3565b5060010190565b600082612b9e57612b9e612bb9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a3f57600080fd5b6001600160e01b031981168114610a3f57600080fdfea26469706673582212207cd8961c39808f06cd2f7e26bb1a038da24ee7542105672b270ae414b4db73c264736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c80636d73e6691161013b578063b2c94ee6116100b8578063beb9716d1161007c578063beb9716d146104fa578063c87b56dd14610502578063e985e9c514610515578063f2fde38b14610551578063f76059551461056457600080fd5b8063b2c94ee61461048b578063b6c5abbb1461049e578063b88d4fde146104a6578063b9c4d9fb146104b9578063bb3bafd6146104d957600080fd5b806395d89b41116100ff57806395d89b411461044b57806399e831aa14610453578063a22cb4651461045c578063a40c3eab1461046f578063a420ed3e1461047857600080fd5b80636d73e669146103f957806370a082311461040c578063715018a61461041f5780638da5cb5b14610427578063917ef10e1461043857600080fd5b80632d345670116101c957806352efea6e1161018d57806352efea6e146103a557806355fc9893146103ad5780636352211e146103c057806369a2a4d6146103d35780636c2f5acd146103e657600080fd5b80632d3456701461034b57806331ae450b1461035e57806342842e0e14610373578063496977631461038657806351b42b001461039d57600080fd5b8063095ea7b311610210578063095ea7b3146102be5780630ebd4c7f146102d357806323b872dd146102f357806324d7806c146103065780632a55205a1461031957600080fd5b806301ffc9a71461024257806302fb0c5e1461026a57806306fdde031461027e578063081812fc14610293575b600080fd5b6102556102503660046126bf565b610577565b60405190151581526020015b60405180910390f35b60145461025590600160a01b900460ff1681565b6102866105e8565b6040516102619190612a54565b6102a66102a13660046127a2565b61067a565b6040516001600160a01b039091168152602001610261565b6102d16102cc3660046124f1565b610714565b005b6102e66102e13660046127a2565b610848565b6040516102619190612a41565b6102d1610301366004612556565b6108a4565b6102556103143660046124d4565b61091f565b61032c6103273660046127fb565b610958565b604080516001600160a01b039093168352602083019190915201610261565b6102d16103593660046124d4565b610992565b610366610a42565b60405161026191906129bc565b6102d1610381366004612556565b610af1565b61038f600b5481565b604051908152602001610261565b6102d1610b0c565b6102d1610b6f565b6102d16103bb366004612759565b610dda565b6102a66103ce3660046127a2565b610e56565b6102d16103e13660046127d4565b610ecd565b6102d16103f43660046124f1565b610f5b565b6102d16104073660046124d4565b610fcb565b61038f61041a3660046124d4565b611075565b6102d16110fc565b6001546001600160a01b03166102a6565b6102d161044636600461264a565b611162565b6102866111fc565b61038f600e5481565b6102d161046a366004612617565b61120b565b61038f600c5481565b600d546102a6906001600160a01b031681565b6102d16104993660046126f9565b6112d0565b610366611345565b6102d16104b4366004612597565b6113f0565b6104cc6104c73660046127a2565b611472565b6040516102619190612a09565b6104ec6104e73660046127a2565b6114eb565b604051610261929190612a1c565b61025561159f565b6102866105103660046127a2565b611668565b61025561052336600461251d565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6102d161055f3660046124d4565b6117ba565b6102d161057236600461264a565b611882565b60006105828261191c565b80610591575061059182611958565b806105ac57506001600160e01b03198216635d9dd7eb60e11b145b806105c757506001600160e01b0319821663152a902d60e11b145b806105e257506001600160e01b03198216632dde656160e21b145b92915050565b6060600480546105f790612b39565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612b39565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b6000818152600660205260408120546001600160a01b03166106f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061071f82610e56565b9050806001600160a01b0316836001600160a01b0316141561078d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ef565b336001600160a01b03821614806107c757506001600160a01b038116600090815260096020908152604080832033845290915290205460ff165b6108395760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ef565b610843838361198d565b505050565b6014546060906001600160a01b03161561089f5760408051600180825281830190925290602080830190803683370190505090506013548160008151811061089257610892612be5565b6020026020010181815250505b919050565b6108ae33826119fb565b6109145760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016106ef565b610843838383611af2565b6000816001600160a01b031661093d6001546001600160a01b031690565b6001600160a01b031614806105e257506105e2600283611b64565b60145460135460009182916001600160a01b03909116906127109061097d9086612ad7565b6109879190612ac3565b915091509250929050565b6001546001600160a01b031633146109ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b6109f7600282611b64565b15610a3f5760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a3610a3d600282611b89565b505b50565b6060610a4e6002611b9e565b67ffffffffffffffff811115610a6657610a66612bfb565b604051908082528060200260200182016040528015610a8f578160200160208202803683370190505b50905060005b610a9f6002611b9e565b811015610aed57610ab1600282611ba8565b828281518110610ac357610ac3612be5565b6001600160a01b039092166020928302919091019091015280610ae581612b74565b915050610a95565b5090565b610843838383604051806020016040528060008152506113f0565b33610b1f6001546001600160a01b031690565b6001600160a01b03161480610b3a5750610b3a600233611b64565b610b565760405162461bcd60e51b81526004016106ef90612a67565b6014805460ff60a01b191690556000600b819055600c55565b60026000541415610bc25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ef565b6002600055601454600160a01b900460ff168015610be35750600c54600b54105b610c1a5760405162461bcd60e51b8152602060048201526008602482015267496e61637469766560c01b60448201526064016106ef565b333b15610c695760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374732063616e6e6f742063616c6c206d696e7400000000000060448201526064016106ef565b610c7233611075565b15610cbf5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e74206d6f7265207468616e206f6e650000000000000060448201526064016106ef565b600e54600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610d0557600080fd5b505afa158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d91906127bb565b1015610d9d5760405162461bcd60e51b815260206004820152602960248201527f596f7520646f206e6f74206861766520656e6f7567682041534820746f20706160448201526872746963697061746560b81b60648201526084016106ef565b600a8054906000610dad83612b74565b9091555050600b8054906000610dc283612b74565b9190505550610dd333600a54611bb4565b6001600055565b33610ded6001546001600160a01b031690565b6001600160a01b03161480610e085750610e08600233611b64565b610e245760405162461bcd60e51b81526004016106ef90612a67565b8051610e3790600f906020840190612355565b50604080516020810191829052600090819052610a3d91601091612355565b6000818152600660205260408120546001600160a01b0316806105e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ef565b33610ee06001546001600160a01b031690565b6001600160a01b03161480610efb5750610efb600233611b64565b610f175760405162461bcd60e51b81526004016106ef90612a67565b6014805460ff60a01b1916600160a01b1790556000600b55600c92909255600d80546001600160a01b039092166001600160a01b0319909216919091179055600e55565b33610f6e6001546001600160a01b031690565b6001600160a01b03161480610f895750610f89600233611b64565b610fa55760405162461bcd60e51b81526004016106ef90612a67565b601480546001600160a01b0319166001600160a01b039390931692909217909155601355565b6001546001600160a01b031633146110255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b611030600282611b64565b610a3f5760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a3610a3d600282611cf6565b60006001600160a01b0382166110e05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ef565b506001600160a01b031660009081526007602052604090205490565b6001546001600160a01b031633146111565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b6111606000611d0b565b565b336111756001546001600160a01b031690565b6001600160a01b031614806111905750611190600233611b64565b6111ac5760405162461bcd60e51b81526004016106ef90612a67565b60005b81811015610843576111e98383838181106111cc576111cc612be5565b90506020020160208101906111e191906124d4565b601190611b89565b50806111f481612b74565b9150506111af565b6060600580546105f790612b39565b6001600160a01b0382163314156112645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ef565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b336112e36001546001600160a01b031690565b6001600160a01b031614806112fe57506112fe600233611b64565b61131a5760405162461bcd60e51b81526004016106ef90612a67565b611326601083836123d5565b5060408051602081019182905260009081905261084391600f91612355565b60606113516011611b9e565b67ffffffffffffffff81111561136957611369612bfb565b604051908082528060200260200182016040528015611392578160200160208202803683370190505b50905060005b6113a26011611b9e565b811015610aed576113b4601182611ba8565b8282815181106113c6576113c6612be5565b6001600160a01b0390921660209283029190910190910152806113e881612b74565b915050611398565b6113fa33836119fb565b6114605760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016106ef565b61146c84848484611d5d565b50505050565b6014546060906001600160a01b03161561089f576040805160018082528183019092529060208083019080368337505060145482519293506001600160a01b0316918391506000906114c6576114c6612be5565b60200260200101906001600160a01b031690816001600160a01b031681525050919050565b60145460609081906001600160a01b03161561159a576040805160018082528183019092529060208083019080368337505060145482519294506001600160a01b03169184915060009061154157611541612be5565b6001600160a01b03929092166020928302919091018201526040805160018082528183019092529182810190803683370190505090506013548160008151811061158d5761158d612be5565b6020026020010181815250505b915091565b601454600090600160a01b900460ff1680156115be5750600c54600b54105b80156115c95750333b155b80156115db57506115d933611075565b155b80156116635750600e54600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561162857600080fd5b505afa15801561163c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166091906127bb565b10155b905090565b6000818152600660205260409020546060906001600160a01b03166116df5760405162461bcd60e51b815260206004820152602760248201527f4552433732313a2055524920717565727920666f72206e6f6e6578697374656e6044820152663a103a37b5b2b760c91b60648201526084016106ef565b6000600f80546116ee90612b39565b9050111561178857600f805461170390612b39565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90612b39565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b50505050509050919050565b601061179383611ddb565b6040516020016117a49291906128d9565b6040516020818303038152906040529050919050565b6001546001600160a01b031633146118145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b6001600160a01b0381166118795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ef565b610a3f81611d0b565b336118956001546001600160a01b031690565b6001600160a01b031614806118b057506118b0600233611b64565b6118cc5760405162461bcd60e51b81526004016106ef90612a67565b60005b81811015610843576119098383838181106118ec576118ec612be5565b905060200201602081019061190191906124d4565b601190611cf6565b508061191481612b74565b9150506118cf565b60006001600160e01b031982166380ac58cd60e01b148061194d57506001600160e01b03198216635b5e139f60e01b145b806105e257506105e2825b60006001600160e01b03198216632a9f3abf60e11b14806105e257506301ffc9a760e01b6001600160e01b03198316146105e2565b600081815260086020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c282610e56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600660205260408120546001600160a01b0316611a745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ef565b6000611a7f83610e56565b9050806001600160a01b0316846001600160a01b03161480611aba5750836001600160a01b0316611aaf8461067a565b6001600160a01b0316145b80611aea57506001600160a01b0380821660009081526009602090815260408083209388168352929052205460ff165b949350505050565b6001600160a01b0382163b15611b5957611b0d601183611b64565b611b595760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74207472616e7366657220746f20636f6e7472616374000000000060448201526064016106ef565b610843838383611ef1565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6000611b82836001600160a01b038416612091565b60006105e2825490565b6000611b828383612184565b6001600160a01b038216611c0a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ef565b6000818152600660205260409020546001600160a01b031615611c6f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ef565b6001600160a01b0382166000908152600760205260408120805460019290611c98908490612aab565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611b82836001600160a01b0384166121ae565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d68848484611af2565b611d74848484846121fd565b61146c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ef565b606081611dff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e295780611e1381612b74565b9150611e229050600a83612ac3565b9150611e03565b60008167ffffffffffffffff811115611e4457611e44612bfb565b6040519080825280601f01601f191660200182016040528015611e6e576020820181803683370190505b5090505b8415611aea57611e83600183612af6565b9150611e90600a86612b8f565b611e9b906030612aab565b60f81b818381518110611eb057611eb0612be5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611eea600a86612ac3565b9450611e72565b826001600160a01b0316611f0482610e56565b6001600160a01b031614611f6c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ef565b6001600160a01b038216611fce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ef565b611fd960008261198d565b6001600160a01b0383166000908152600760205260408120805460019290612002908490612af6565b90915550506001600160a01b0382166000908152600760205260408120805460019290612030908490612aab565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000818152600183016020526040812054801561217a5760006120b5600183612af6565b85549091506000906120c990600190612af6565b905081811461212e5760008660000182815481106120e9576120e9612be5565b906000526020600020015490508087600001848154811061210c5761210c612be5565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061213f5761213f612bcf565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105e2565b60009150506105e2565b600082600001828154811061219b5761219b612be5565b9060005260206000200154905092915050565b60008181526001830160205260408120546121f5575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105e2565b5060006105e2565b60006001600160a01b0384163b1561234a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612241903390899088908890600401612980565b602060405180830381600087803b15801561225b57600080fd5b505af192505050801561228b575060408051601f3d908101601f19168201909252612288918101906126dc565b60015b612330573d8080156122b9576040519150601f19603f3d011682016040523d82523d6000602084013e6122be565b606091505b5080516123285760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aea565b506001949350505050565b82805461236190612b39565b90600052602060002090601f01602090048101928261238357600085556123c9565b82601f1061239c57805160ff19168380011785556123c9565b828001600101855582156123c9579182015b828111156123c95782518255916020019190600101906123ae565b50610aed929150612449565b8280546123e190612b39565b90600052602060002090601f01602090048101928261240357600085556123c9565b82601f1061241c5782800160ff198235161785556123c9565b828001600101855582156123c9579182015b828111156123c957823582559160200191906001019061242e565b5b80821115610aed576000815560010161244a565b600067ffffffffffffffff8084111561247957612479612bfb565b604051601f8501601f19908116603f011681019082821181831017156124a1576124a1612bfb565b816040528093508581528686860111156124ba57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124e657600080fd5b8135611b8281612c11565b6000806040838503121561250457600080fd5b823561250f81612c11565b946020939093013593505050565b6000806040838503121561253057600080fd5b823561253b81612c11565b9150602083013561254b81612c11565b809150509250929050565b60008060006060848603121561256b57600080fd5b833561257681612c11565b9250602084013561258681612c11565b929592945050506040919091013590565b600080600080608085870312156125ad57600080fd5b84356125b881612c11565b935060208501356125c881612c11565b925060408501359150606085013567ffffffffffffffff8111156125eb57600080fd5b8501601f810187136125fc57600080fd5b61260b8782356020840161245e565b91505092959194509250565b6000806040838503121561262a57600080fd5b823561263581612c11565b91506020830135801515811461254b57600080fd5b6000806020838503121561265d57600080fd5b823567ffffffffffffffff8082111561267557600080fd5b818501915085601f83011261268957600080fd5b81358181111561269857600080fd5b8660208260051b85010111156126ad57600080fd5b60209290920196919550909350505050565b6000602082840312156126d157600080fd5b8135611b8281612c26565b6000602082840312156126ee57600080fd5b8151611b8281612c26565b6000806020838503121561270c57600080fd5b823567ffffffffffffffff8082111561272457600080fd5b818501915085601f83011261273857600080fd5b81358181111561274757600080fd5b8660208285010111156126ad57600080fd5b60006020828403121561276b57600080fd5b813567ffffffffffffffff81111561278257600080fd5b8201601f8101841361279357600080fd5b611aea8482356020840161245e565b6000602082840312156127b457600080fd5b5035919050565b6000602082840312156127cd57600080fd5b5051919050565b6000806000606084860312156127e957600080fd5b83359250602084013561258681612c11565b6000806040838503121561280e57600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b838110156128565781516001600160a01b031687529582019590820190600101612831565b509495945050505050565b600081518084526020808501945080840160005b8381101561285657815187529582019590820190600101612875565b600081518084526128a9816020860160208601612b0d565b601f01601f19169290920160200192915050565b600081516128cf818560208601612b0d565b9290920192915050565b600080845481600182811c9150808316806128f557607f831692505b602080841082141561291557634e487b7160e01b86526022600452602486fd5b818015612929576001811461293a57612967565b60ff19861689528489019650612967565b60008b81526020902060005b8681101561295f5781548b820152908501908301612946565b505084890196505b50505050505061297781856128bd565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526129b26080830184612891565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129fd5783516001600160a01b0316835292840192918401916001016129d8565b50909695505050505050565b602081526000611b82602083018461281d565b604081526000612a2f604083018561281d565b82810360208401526129778185612861565b602081526000611b826020830184612861565b602081526000611b826020830184612891565b60208082526024908201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616040820152633236b4b760e11b606082015260800190565b60008219821115612abe57612abe612ba3565b500190565b600082612ad257612ad2612bb9565b500490565b6000816000190483118215151615612af157612af1612ba3565b500290565b600082821015612b0857612b08612ba3565b500390565b60005b83811015612b28578181015183820152602001612b10565b8381111561146c5750506000910152565b600181811c90821680612b4d57607f821691505b60208210811415612b6e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b8857612b88612ba3565b5060010190565b600082612b9e57612b9e612bb9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a3f57600080fd5b6001600160e01b031981168114610a3f57600080fdfea26469706673582212207cd8961c39808f06cd2f7e26bb1a038da24ee7542105672b270ae414b4db73c264736f6c63430008070033

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.