ETH Price: $3,386.16 (+4.24%)
Gas: 2 Gwei

Token

NFT-GENERATOR (NFT-GEN)
 

Overview

Max Total Supply

84 NFT-GEN

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fcfs.eth
Balance
1 NFT-GEN
0x0508fa31697d460E62bB918C7E08340Fb2FF78A6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UniqGenerator

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 20 : UniqGenerator2.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721Tradable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./utils/IERC20.sol";

contract UniqGenerator is ERC721Tradable{
    // ----- VARIABLES ----- //
    uint256 internal _verificationPrice;
    address internal _tokenForPaying;
    string public METADATA_PROVENANCE_HASH;
    uint256 public immutable ROYALTY_FEE;
    string internal _token_uri;
    mapping(bytes32 => bool) internal _isItemMinted;
    mapping(uint256 => bytes32) internal _hashOf;
    mapping(bytes32 => address) internal _verificationRequester;
    uint256 internal _tokenNumber;
    address internal _claimingAddress;

    // ----- MODIFIERS ----- //
    modifier notZeroAddress(address a) {
        require(a != address(0), "ZERO address can not be used");
        _;
    }

    constructor(
        address _proxyRegistryAddress,
        string memory _name,
        string memory _symbol,
        uint256 _verfifyPrice,
        address _tokenERC20,
        string memory _ttokenUri
    )
        notZeroAddress(_proxyRegistryAddress)
        ERC721Tradable(_name, _symbol, _proxyRegistryAddress)
    {
        ROYALTY_FEE = 750000; //7.5%
        _verificationPrice = _verfifyPrice;
        _tokenForPaying = _tokenERC20;
        _token_uri = _ttokenUri;
    }

    function getMessageHash(address _requester, bytes32 _itemHash)
        public
        pure
        returns (bytes32)
    {
        return keccak256(abi.encodePacked(_requester, _itemHash));
    }

    function burn(uint256 _tokenId) external {
        if (msg.sender != _claimingAddress) {
            require(
                _isApprovedOrOwner(msg.sender, _tokenId),
                "Ownership or approval required"
            );
        }
        _burn(_tokenId);
    }

    function getEthSignedMessageHash(bytes32 _messageHash)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    _messageHash
                )
            );
    }

    function verifySignature(
        address _requester,
        bytes32 _itemHash,
        bytes memory _signature
    ) internal view returns (bool) {
        bytes32 messageHash = getMessageHash(_requester, _itemHash);
        bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);
        return recoverSigner(ethSignedMessageHash, _signature) == owner();
    }

    function recoverSigner(
        bytes32 _ethSignedMessageHash,
        bytes memory _signature
    ) internal pure returns (address) {
        require(_signature.length == 65, "invalid signature length");
        bytes32 r;
        bytes32 s;
        uint8 v;
        assembly {
            r := mload(add(_signature, 32))
            s := mload(add(_signature, 64))
            v := byte(0, mload(add(_signature, 96)))
        }
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function isMintedForHash(bytes32 _itemHash) external view returns (bool) {
        return _isItemMinted[_itemHash];
    }

    function hashOf(uint256 _id) external view returns (bytes32) {
        return _hashOf[_id];
    }

    function royaltyInfo(uint256)
        external
        view
        returns (address receiver, uint256 amount)
    {
        return (owner(), ROYALTY_FEE);
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function verificationRequester(bytes32 _itemHash)
        external
        view
        returns (address)
    {
        return _verificationRequester[_itemHash];
    }

    function getClaimerAddress() external view returns (address) {
        return _claimingAddress;
    }

    function getVerificationPrice() external view returns (uint256) {
        return _verificationPrice;
    }

    function baseTokenURI() override public view returns (string memory) {
        return _token_uri;
    }

    function contractURI() public pure returns (string memory) {
        return "https://uniqly.com/api/nft-generator/";
    }

    // ----- PUBLIC METHODS ----- //
    function payForVerification(bytes32 _itemHash) external {
        require(!_isItemMinted[_itemHash], "Already minted");
        require(
            _verificationRequester[_itemHash] == address(0),
            "Verification already requested"
        );
        require(
            IERC20(_tokenForPaying).transferFrom(
                msg.sender,
                address(this),
                _verificationPrice
            )
        );
        _verificationRequester[_itemHash] = msg.sender;
    }

    function mintVerified(bytes32 _itemHash, bytes memory _signature) external {
        require(
            _verificationRequester[_itemHash] == msg.sender,
            "Verification Requester mismatch"
        );
        require(!_isItemMinted[_itemHash], "Already minted");
        require(
            verifySignature(msg.sender, _itemHash, _signature),
            "Signature mismatch"
        );
        _isItemMinted[_itemHash] = true;
        _safeMint(msg.sender, _tokenNumber);
        _hashOf[_tokenNumber] = _itemHash;
        _tokenNumber++;
    }

    // ----- OWNERS METHODS ----- //
    function setProvenanceHash(string memory _hash) external onlyOwner {
        METADATA_PROVENANCE_HASH = _hash;
    }

    function editTokenUri(string memory _ttokenUri) external onlyOwner{
        _token_uri = _ttokenUri;
    }

    function setTokenAddress(address _newAddress) external onlyOwner {
        _tokenForPaying = _newAddress;
    }

    function editVireficationPrice(uint256 _newPrice) external onlyOwner {
        _verificationPrice = _newPrice;
    }

    function editClaimingAdress(address _newAddress) external onlyOwner {
        _claimingAddress = _newAddress;
    }

    function recoverERC20(address token) external onlyOwner {
        uint256 val = IERC20(token).balanceOf(address(this));
        require(val > 0, "Nothing to recover");
        // use interface that not return value (USDT case)
        Ierc20(token).transfer(owner(), val);
    }

    function receivedRoyalties(
        address,
        address _buyer,
        uint256 _tokenId,
        address _tokenPaid,
        uint256 _amount
    ) external {
        emit ReceivedRoyalties(owner(), _buyer, _tokenId, _tokenPaid, _amount);
    }

    event ReceivedRoyalties(
        address indexed _royaltyRecipient,
        address indexed _buyer,
        uint256 indexed _tokenId,
        address _tokenPaid,
        uint256 _amount
    );
}

interface Ierc20 {
    function transfer(address, uint256) external;
}

File 2 of 20 : ERC721Tradable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "./common/meta-transactions/ContentMixin.sol";
import "./common/meta-transactions/NativeMetaTransaction.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;
    uint256 private _currentTokenId = 0;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        _currentTokenId++;
    }

    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

File 3 of 20 : ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 4 of 20 : NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {SafeMath} from  "@openzeppelin/contracts/utils/math/SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 5 of 20 : EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 6 of 20 : Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 7 of 20 : 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 8 of 20 : 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 9 of 20 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 10 of 20 : 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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 11 of 20 : 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 12 of 20 : 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 20 : 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 14 of 20 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 15 of 20 : 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 17 of 20 : 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 18 of 20 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 19 of 20 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 20 of 20 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_verfifyPrice","type":"uint256"},{"internalType":"address","name":"_tokenERC20","type":"address"},{"internalType":"string","name":"_ttokenUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"_royaltyRecipient","type":"address"},{"indexed":true,"internalType":"address","name":"_buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"_tokenPaid","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceivedRoyalties","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"editClaimingAdress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ttokenUri","type":"string"}],"name":"editTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"editVireficationPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_requester","type":"address"},{"internalType":"bytes32","name":"_itemHash","type":"bytes32"}],"name":"getMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVerificationPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"hashOf","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_itemHash","type":"bytes32"}],"name":"isMintedForHash","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_itemHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintVerified","outputs":[],"stateMutability":"nonpayable","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":"bytes32","name":"_itemHash","type":"bytes32"}],"name":"payForVerification","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"_buyer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_tokenPaid","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"receivedRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","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":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setTokenAddress","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_itemHash","type":"bytes32"}],"name":"verificationRequester","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60a0604052600a805460ff191690556000600f553480156200002057600080fd5b50604051620039e5380380620039e58339810160408190526200004391620004a2565b848487828281600090805190602001906200006092919062000328565b5080516200007690600190602084019062000328565b50505060006200008b620001aa60201b60201c565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e80546001600160a01b0319166001600160a01b038316179055620000ff83620001c6565b50879150506001600160a01b038116620001605760405162461bcd60e51b815260206004820152601c60248201527f5a45524f20616464726573732063616e206e6f7420626520757365640000000060448201526064015b60405180910390fd5b620b71b06080526010849055601180546001600160a01b0319166001600160a01b03851617905581516200019c90601390602085019062000328565b5050505050505050620005b5565b6000620001c16200022760201b62001d191760201c565b905090565b600a5460ff16156200020c5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640162000157565b620002178162000286565b50600a805460ff19166001179055565b6000333014156200028057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002839050565b50335b90565b6040518060800160405280604f815260200162003996604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620003369062000562565b90600052602060002090601f0160209004810192826200035a5760008555620003a5565b82601f106200037557805160ff1916838001178555620003a5565b82800160010185558215620003a5579182015b82811115620003a557825182559160200191906001019062000388565b50620003b3929150620003b7565b5090565b5b80821115620003b35760008155600101620003b8565b80516001600160a01b0381168114620003e657600080fd5b919050565b600082601f830112620003fd57600080fd5b81516001600160401b03808211156200041a576200041a6200059f565b604051601f8301601f19908116603f011681019082821181831017156200044557620004456200059f565b816040528381526020925086838588010111156200046257600080fd5b600091505b8382101562000486578582018301518183018401529082019062000467565b83821115620004985760008385830101525b9695505050505050565b60008060008060008060c08789031215620004bc57600080fd5b620004c787620003ce565b60208801519096506001600160401b0380821115620004e557600080fd5b620004f38a838b01620003eb565b965060408901519150808211156200050a57600080fd5b620005188a838b01620003eb565b9550606089015194506200052f60808a01620003ce565b935060a08901519150808211156200054657600080fd5b506200055589828a01620003eb565b9150509295509295509295565b600181811c908216806200057757607f821691505b602082108114156200059957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6080516133be620005d86000396000818161047a015261183701526133be6000f3fe6080604052600436106102885760003560e01c806370a082311161015a578063b88d4fde116100c1578063d955ec551161007a578063d955ec551461080e578063e8a3d4851461082e578063e985e9c514610843578063ec9c045714610863578063f0c9dc6014610893578063f2fde38b146108a857600080fd5b8063b88d4fde1461073a578063c87b56dd1461075a578063cef6d3681461077a578063d547cfb7146107b9578063d867484a146107ce578063d9158d21146107ee57600080fd5b80638c831aa4116101135780638c831aa4146106715780638da5cb5b1461069157806395d89b41146106af5780639e8c708e146106c4578063a22cb465146106e4578063a7799c551461070457600080fd5b806370a08231146105a2578063715018a6146105c2578063755edd17146105d75780637e551b75146105f75780638462151c146106245780638589ff451461065157600080fd5b80632d0335ab116101fe5780634f6ccce7116101b75780634f6ccce7146104ef5780635b5c709b1461050f5780635d152500146105245780636352211e14610544578063652489d414610564578063661b1d2c1461058457600080fd5b80632d0335ab146104125780632f745c5914610448578063335477fc146104685780633408e4701461049c57806342842e0e146104af57806342966c68146104cf57600080fd5b80630f7e5970116102505780630f7e597014610351578063109695231461037e57806318160ddd1461039e57806320379ee5146103bd57806323b872dd146103d257806326a4e8d2146103f257600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630c53c51c1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612e9e565b6108c8565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108f3565b6040516102b991906130bb565b3480156102f057600080fd5b506103046102ff366004612e3e565b610985565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612d77565b610a1f565b005b6102d761034c366004612da3565b610b47565b34801561035d57600080fd5b506102d7604051806040016040528060018152602001603160f81b81525081565b34801561038a57600080fd5b5061033c610399366004612ef5565b610d31565b3480156103aa57600080fd5b506008545b6040519081526020016102b9565b3480156103c957600080fd5b50600b546103af565b3480156103de57600080fd5b5061033c6103ed366004612c41565b610d91565b3480156103fe57600080fd5b5061033c61040d366004612beb565b610dc9565b34801561041e57600080fd5b506103af61042d366004612beb565b6001600160a01b03166000908152600c602052604090205490565b34801561045457600080fd5b506103af610463366004612d77565b610e34565b34801561047457600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a857600080fd5b50466103af565b3480156104bb57600080fd5b5061033c6104ca366004612c41565b610eca565b3480156104db57600080fd5b5061033c6104ea366004612e3e565b610ee5565b3480156104fb57600080fd5b506103af61050a366004612e3e565b610f59565b34801561051b57600080fd5b506010546103af565b34801561053057600080fd5b5061033c61053f366004612e57565b610fec565b34801561055057600080fd5b5061030461055f366004612e3e565b611140565b34801561057057600080fd5b5061033c61057f366004612ef5565b6111b7565b34801561059057600080fd5b506018546001600160a01b0316610304565b3480156105ae57600080fd5b506103af6105bd366004612beb565b611213565b3480156105ce57600080fd5b5061033c61129a565b3480156105e357600080fd5b5061033c6105f2366004612beb565b61132d565b34801561060357600080fd5b506103af610612366004612e3e565b60009081526015602052604090205490565b34801561063057600080fd5b5061064461063f366004612beb565b611394565b6040516102b99190613077565b34801561065d57600080fd5b5061033c61066c366004612c82565b611453565b34801561067d57600080fd5b506103af61068c366004612d77565b6114bf565b34801561069d57600080fd5b50600d546001600160a01b0316610304565b3480156106bb57600080fd5b506102d7611506565b3480156106d057600080fd5b5061033c6106df366004612beb565b611515565b3480156106f057600080fd5b5061033c6106ff366004612d49565b6116a4565b34801561071057600080fd5b5061030461071f366004612e3e565b6000908152601660205260409020546001600160a01b031690565b34801561074657600080fd5b5061033c610755366004612cdd565b6117a6565b34801561076657600080fd5b506102d7610775366004612e3e565b6117e5565b34801561078657600080fd5b5061079a610795366004612e3e565b61181f565b604080516001600160a01b0390931683526020830191909152016102b9565b3480156107c557600080fd5b506102d761185d565b3480156107da57600080fd5b5061033c6107e9366004612e3e565b61186c565b3480156107fa57600080fd5b5061033c610809366004612e3e565b6118ba565b34801561081a57600080fd5b5061033c610829366004612beb565b611a26565b34801561083a57600080fd5b506102d7611a91565b34801561084f57600080fd5b506102ad61085e366004612c08565b611ab1565b34801561086f57600080fd5b506102ad61087e366004612e3e565b60009081526014602052604090205460ff1690565b34801561089f57600080fd5b506102d7611b81565b3480156108b457600080fd5b5061033c6108c3366004612beb565b611c0f565b60006001600160e01b0319821663780e9d6360e01b14806108ed57506108ed82611d76565b92915050565b60606000805461090290613215565b80601f016020809104026020016040519081016040528092919081815260200182805461092e90613215565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a2a82611140565b9050806001600160a01b0316836001600160a01b03161415610a985760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109fa565b806001600160a01b0316610aaa611dc6565b6001600160a01b03161480610ac65750610ac68161085e611dc6565b610b385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109fa565b610b428383611dd5565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610b858782878787611e43565b610bdb5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016109fa565b6001600160a01b0387166000908152600c6020526040902054610bff906001611f33565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610c4f90899033908a90613005565b60405180910390a1600080306001600160a01b0316888a604051602001610c77929190612f9f565b60408051601f1981840301815290829052610c9191612f83565b6000604051808303816000865af19150503d8060008114610cce576040519150601f19603f3d011682016040523d82523d6000602084013e610cd3565b606091505b509150915081610d255760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016109fa565b98975050505050505050565b610d39611dc6565b6001600160a01b0316610d54600d546001600160a01b031690565b6001600160a01b031614610d7a5760405162461bcd60e51b81526004016109fa90613120565b8051610d8d906012906020840190612abc565b5050565b610da2610d9c611dc6565b82611f46565b610dbe5760405162461bcd60e51b81526004016109fa90613155565b610b42838383612015565b610dd1611dc6565b6001600160a01b0316610dec600d546001600160a01b031690565b6001600160a01b031614610e125760405162461bcd60e51b81526004016109fa90613120565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e3f83611213565b8210610ea15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109fa565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b42838383604051806020016040528060008152506117a6565b6018546001600160a01b03163314610f4d57610f013382611f46565b610f4d5760405162461bcd60e51b815260206004820152601e60248201527f4f776e657273686970206f7220617070726f76616c207265717569726564000060448201526064016109fa565b610f56816121c0565b50565b6000610f6460085490565b8210610fc75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109fa565b60088281548110610fda57610fda6132bb565b90600052602060002001549050919050565b6000828152601660205260409020546001600160a01b031633146110525760405162461bcd60e51b815260206004820152601f60248201527f566572696669636174696f6e20526571756573746572206d69736d617463680060448201526064016109fa565b60008281526014602052604090205460ff16156110a25760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016109fa565b6110ad338383612267565b6110ee5760405162461bcd60e51b81526020600482015260126024820152710a6d2cedcc2e8eae4ca40dad2e6dac2e8c6d60731b60448201526064016109fa565b6000828152601460205260409020805460ff191660011790556017546111159033906122bc565b601780546000908152601560205260408120849055815491906111378361324a565b91905055505050565b6000818152600260205260408120546001600160a01b0316806108ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109fa565b6111bf611dc6565b6001600160a01b03166111da600d546001600160a01b031690565b6001600160a01b0316146112005760405162461bcd60e51b81526004016109fa90613120565b8051610d8d906013906020840190612abc565b60006001600160a01b03821661127e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109fa565b506001600160a01b031660009081526003602052604090205490565b6112a2611dc6565b6001600160a01b03166112bd600d546001600160a01b031690565b6001600160a01b0316146112e35760405162461bcd60e51b81526004016109fa90613120565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b611335611dc6565b6001600160a01b0316611350600d546001600160a01b031690565b6001600160a01b0316146113765760405162461bcd60e51b81526004016109fa90613120565b60006113806122d6565b905061138c82826122e7565b610d8d612435565b606060006113a183611213565b9050806113c25760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156113dd576113dd6132d1565b604051908082528060200260200182016040528015611406578160200160208202803683370190505b50905060005b828110156113ba5761141e8582610e34565b828281518110611430576114306132bb565b6020908102919091010152806114458161324a565b91505061140c565b50919050565b82846001600160a01b0316611470600d546001600160a01b031690565b604080516001600160a01b0387811682526020820187905292909216917f096a55ec842afaa98cb78cb0352921e73c0d1caa9136309fa9c07f13f4a39a60910160405180910390a45050505050565b6040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b60606001805461090290613215565b61151d611dc6565b6001600160a01b0316611538600d546001600160a01b031690565b6001600160a01b03161461155e5760405162461bcd60e51b81526004016109fa90613120565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b1580156115a057600080fd5b505afa1580156115b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d89190612f3e565b90506000811161161f5760405162461bcd60e51b81526020600482015260126024820152712737ba3434b733903a37903932b1b7bb32b960711b60448201526064016109fa565b816001600160a01b031663a9059cbb611640600d546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b15801561168857600080fd5b505af115801561169c573d6000803e3d6000fd5b505050505050565b6116ac611dc6565b6001600160a01b0316826001600160a01b0316141561170d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109fa565b806005600061171a611dc6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561175e611dc6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161179a911515815260200190565b60405180910390a35050565b6117b76117b1611dc6565b83611f46565b6117d35760405162461bcd60e51b81526004016109fa90613155565b6117df8484848461244c565b50505050565b60606117ef61185d565b6117f88361247f565b604051602001611809929190612fd6565b6040516020818303038152906040529050919050565b600080611834600d546001600160a01b031690565b937f00000000000000000000000000000000000000000000000000000000000000009350915050565b60606013805461090290613215565b611874611dc6565b6001600160a01b031661188f600d546001600160a01b031690565b6001600160a01b0316146118b55760405162461bcd60e51b81526004016109fa90613120565b601055565b60008181526014602052604090205460ff161561190a5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016109fa565b6000818152601660205260409020546001600160a01b03161561196f5760405162461bcd60e51b815260206004820152601e60248201527f566572696669636174696f6e20616c726561647920726571756573746564000060448201526064016109fa565b6011546010546040516323b872dd60e01b815233600482015230602482015260448101919091526001600160a01b03909116906323b872dd90606401602060405180830381600087803b1580156119c557600080fd5b505af11580156119d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119fd9190612e21565b611a0657600080fd5b600090815260166020526040902080546001600160a01b03191633179055565b611a2e611dc6565b6001600160a01b0316611a49600d546001600160a01b031690565b6001600160a01b031614611a6f5760405162461bcd60e51b81526004016109fa90613120565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b606060405180606001604052806025815260200161336460259139905090565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611afe57600080fd5b505afa158015611b12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b369190612ed8565b6001600160a01b03161415611b4f5760019150506108ed565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b60128054611b8e90613215565b80601f0160208091040260200160405190810160405280929190818152602001828054611bba90613215565b8015611c075780601f10611bdc57610100808354040283529160200191611c07565b820191906000526020600020905b815481529060010190602001808311611bea57829003601f168201915b505050505081565b611c17611dc6565b6001600160a01b0316611c32600d546001600160a01b031690565b6001600160a01b031614611c585760405162461bcd60e51b81526004016109fa90613120565b6001600160a01b038116611cbd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109fa565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600033301415611d7057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611d739050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611da757506001600160e01b03198216635b5e139f60e01b145b806108ed57506301ffc9a760e01b6001600160e01b03198316146108ed565b6000611dd0611d19565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e0a82611140565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611ea95760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016109fa565b6001611ebc611eb78761257d565b6125fa565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611f0a573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611f3f82846131a6565b9392505050565b6000818152600260205260408120546001600160a01b0316611fbf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109fa565b6000611fca83611140565b9050806001600160a01b0316846001600160a01b031614806120055750836001600160a01b0316611ffa84610985565b6001600160a01b0316145b80611b795750611b798185611ab1565b826001600160a01b031661202882611140565b6001600160a01b0316146120905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109fa565b6001600160a01b0382166120f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109fa565b6120fd83838361262a565b612108600082611dd5565b6001600160a01b03831660009081526003602052604081208054600192906121319084906131d2565b90915550506001600160a01b038216600090815260036020526040812080546001929061215f9084906131a6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006121cb82611140565b90506121d98160008461262a565b6121e4600083611dd5565b6001600160a01b038116600090815260036020526040812080546001929061220d9084906131d2565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008061227485856114bf565b90506000612281826126e2565b9050612295600d546001600160a01b031690565b6001600160a01b03166122a8828661271d565b6001600160a01b0316149695505050505050565b610d8d8282604051806020016040528060008152506127e5565b600f54600090611dd0906001611f33565b6001600160a01b03821661233d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109fa565b6000818152600260205260409020546001600160a01b0316156123a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109fa565b6123ae6000838361262a565b6001600160a01b03821660009081526003602052604081208054600192906123d79084906131a6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f80549060006124458361324a565b9190505550565b612457848484612015565b61246384848484612818565b6117df5760405162461bcd60e51b81526004016109fa906130ce565b6060816124a35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124cd57806124b78161324a565b91506124c69050600a836131be565b91506124a7565b60008167ffffffffffffffff8111156124e8576124e86132d1565b6040519080825280601f01601f191660200182016040528015612512576020820181803683370190505b5090505b8415611b79576125276001836131d2565b9150612534600a86613265565b61253f9060306131a6565b60f81b818381518110612554576125546132bb565b60200101906001600160f81b031916908160001a905350612576600a866131be565b9450612516565b600060405180608001604052806043815260200161332160439139805160209182012083518483015160408087015180519086012090516125dd950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612605600b5490565b60405161190160f01b60208201526022810191909152604281018390526062016125dd565b6001600160a01b0383166126855761268081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126a8565b816001600160a01b0316836001600160a01b0316146126a8576126a8838261292c565b6001600160a01b0382166126bf57610b42816129c9565b826001600160a01b0316826001600160a01b031614610b4257610b428282612a78565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c016125dd565b600081516041146127705760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e677468000000000000000060448201526064016109fa565b602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa1580156127d0573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6127ef83836122e7565b6127fc6000848484612818565b610b425760405162461bcd60e51b81526004016109fa906130ce565b60006001600160a01b0384163b1561292157836001600160a01b031663150b7a02612841611dc6565b8786866040518563ffffffff1660e01b8152600401612863949392919061303a565b602060405180830381600087803b15801561287d57600080fd5b505af19250505080156128ad575060408051601f3d908101601f191682019092526128aa91810190612ebb565b60015b612907573d8080156128db576040519150601f19603f3d011682016040523d82523d6000602084013e6128e0565b606091505b5080516128ff5760405162461bcd60e51b81526004016109fa906130ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b79565b506001949350505050565b6000600161293984611213565b61294391906131d2565b600083815260076020526040902054909150808214612996576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129db906001906131d2565b60008381526009602052604081205460088054939450909284908110612a0357612a036132bb565b906000526020600020015490508060088381548110612a2457612a246132bb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a5c57612a5c6132a5565b6001900381819060005260206000200160009055905550505050565b6000612a8383611213565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612ac890613215565b90600052602060002090601f016020900481019282612aea5760008555612b30565b82601f10612b0357805160ff1916838001178555612b30565b82800160010185558215612b30579182015b82811115612b30578251825591602001919060010190612b15565b50612b3c929150612b40565b5090565b5b80821115612b3c5760008155600101612b41565b600067ffffffffffffffff80841115612b7057612b706132d1565b604051601f8501601f19908116603f01168101908282118183101715612b9857612b986132d1565b81604052809350858152868686011115612bb157600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612bdc57600080fd5b611f3f83833560208501612b55565b600060208284031215612bfd57600080fd5b8135611f3f816132e7565b60008060408385031215612c1b57600080fd5b8235612c26816132e7565b91506020830135612c36816132e7565b809150509250929050565b600080600060608486031215612c5657600080fd5b8335612c61816132e7565b92506020840135612c71816132e7565b929592945050506040919091013590565b600080600080600060a08688031215612c9a57600080fd5b8535612ca5816132e7565b94506020860135612cb5816132e7565b9350604086013592506060860135612ccc816132e7565b949793965091946080013592915050565b60008060008060808587031215612cf357600080fd5b8435612cfe816132e7565b93506020850135612d0e816132e7565b925060408501359150606085013567ffffffffffffffff811115612d3157600080fd5b612d3d87828801612bcb565b91505092959194509250565b60008060408385031215612d5c57600080fd5b8235612d67816132e7565b91506020830135612c36816132fc565b60008060408385031215612d8a57600080fd5b8235612d95816132e7565b946020939093013593505050565b600080600080600060a08688031215612dbb57600080fd5b8535612dc6816132e7565b9450602086013567ffffffffffffffff811115612de257600080fd5b612dee88828901612bcb565b9450506040860135925060608601359150608086013560ff81168114612e1357600080fd5b809150509295509295909350565b600060208284031215612e3357600080fd5b8151611f3f816132fc565b600060208284031215612e5057600080fd5b5035919050565b60008060408385031215612e6a57600080fd5b82359150602083013567ffffffffffffffff811115612e8857600080fd5b612e9485828601612bcb565b9150509250929050565b600060208284031215612eb057600080fd5b8135611f3f8161330a565b600060208284031215612ecd57600080fd5b8151611f3f8161330a565b600060208284031215612eea57600080fd5b8151611f3f816132e7565b600060208284031215612f0757600080fd5b813567ffffffffffffffff811115612f1e57600080fd5b8201601f81018413612f2f57600080fd5b611b7984823560208401612b55565b600060208284031215612f5057600080fd5b5051919050565b60008151808452612f6f8160208601602086016131e9565b601f01601f19169290920160200192915050565b60008251612f958184602087016131e9565b9190910192915050565b60008351612fb18184602088016131e9565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008351612fe88184602088016131e9565b835190830190612ffc8183602088016131e9565b01949350505050565b6001600160a01b0384811682528316602082015260606040820181905260009061303190830184612f57565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061306d90830184612f57565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156130af57835183529284019291840191600101613093565b50909695505050505050565b602081526000611f3f6020830184612f57565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156131b9576131b9613279565b500190565b6000826131cd576131cd61328f565b500490565b6000828210156131e4576131e4613279565b500390565b60005b838110156132045781810151838201526020016131ec565b838111156117df5750506000910152565b600181811c9082168061322957607f821691505b6020821081141561144d57634e487b7160e01b600052602260045260246000fd5b600060001982141561325e5761325e613279565b5060010190565b6000826132745761327461328f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f5657600080fd5b8015158114610f5657600080fd5b6001600160e01b031981168114610f5657600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f756e69716c792e636f6d2f6170692f6e66742d67656e657261746f722fa26469706673582212208684d54a22c734896df6299361d52ced1d6d29a3d3f98e0413f94190e5a256b764736f6c63430008060033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000003758e00b100876c854636ef8db61988931bb80250000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000d4e46542d47454e455241544f520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e46542d47454e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f7777772e756e69716c792e696f2f6170692f6d657461646174612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c806370a082311161015a578063b88d4fde116100c1578063d955ec551161007a578063d955ec551461080e578063e8a3d4851461082e578063e985e9c514610843578063ec9c045714610863578063f0c9dc6014610893578063f2fde38b146108a857600080fd5b8063b88d4fde1461073a578063c87b56dd1461075a578063cef6d3681461077a578063d547cfb7146107b9578063d867484a146107ce578063d9158d21146107ee57600080fd5b80638c831aa4116101135780638c831aa4146106715780638da5cb5b1461069157806395d89b41146106af5780639e8c708e146106c4578063a22cb465146106e4578063a7799c551461070457600080fd5b806370a08231146105a2578063715018a6146105c2578063755edd17146105d75780637e551b75146105f75780638462151c146106245780638589ff451461065157600080fd5b80632d0335ab116101fe5780634f6ccce7116101b75780634f6ccce7146104ef5780635b5c709b1461050f5780635d152500146105245780636352211e14610544578063652489d414610564578063661b1d2c1461058457600080fd5b80632d0335ab146104125780632f745c5914610448578063335477fc146104685780633408e4701461049c57806342842e0e146104af57806342966c68146104cf57600080fd5b80630f7e5970116102505780630f7e597014610351578063109695231461037e57806318160ddd1461039e57806320379ee5146103bd57806323b872dd146103d257806326a4e8d2146103f257600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630c53c51c1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612e9e565b6108c8565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108f3565b6040516102b991906130bb565b3480156102f057600080fd5b506103046102ff366004612e3e565b610985565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612d77565b610a1f565b005b6102d761034c366004612da3565b610b47565b34801561035d57600080fd5b506102d7604051806040016040528060018152602001603160f81b81525081565b34801561038a57600080fd5b5061033c610399366004612ef5565b610d31565b3480156103aa57600080fd5b506008545b6040519081526020016102b9565b3480156103c957600080fd5b50600b546103af565b3480156103de57600080fd5b5061033c6103ed366004612c41565b610d91565b3480156103fe57600080fd5b5061033c61040d366004612beb565b610dc9565b34801561041e57600080fd5b506103af61042d366004612beb565b6001600160a01b03166000908152600c602052604090205490565b34801561045457600080fd5b506103af610463366004612d77565b610e34565b34801561047457600080fd5b506103af7f00000000000000000000000000000000000000000000000000000000000b71b081565b3480156104a857600080fd5b50466103af565b3480156104bb57600080fd5b5061033c6104ca366004612c41565b610eca565b3480156104db57600080fd5b5061033c6104ea366004612e3e565b610ee5565b3480156104fb57600080fd5b506103af61050a366004612e3e565b610f59565b34801561051b57600080fd5b506010546103af565b34801561053057600080fd5b5061033c61053f366004612e57565b610fec565b34801561055057600080fd5b5061030461055f366004612e3e565b611140565b34801561057057600080fd5b5061033c61057f366004612ef5565b6111b7565b34801561059057600080fd5b506018546001600160a01b0316610304565b3480156105ae57600080fd5b506103af6105bd366004612beb565b611213565b3480156105ce57600080fd5b5061033c61129a565b3480156105e357600080fd5b5061033c6105f2366004612beb565b61132d565b34801561060357600080fd5b506103af610612366004612e3e565b60009081526015602052604090205490565b34801561063057600080fd5b5061064461063f366004612beb565b611394565b6040516102b99190613077565b34801561065d57600080fd5b5061033c61066c366004612c82565b611453565b34801561067d57600080fd5b506103af61068c366004612d77565b6114bf565b34801561069d57600080fd5b50600d546001600160a01b0316610304565b3480156106bb57600080fd5b506102d7611506565b3480156106d057600080fd5b5061033c6106df366004612beb565b611515565b3480156106f057600080fd5b5061033c6106ff366004612d49565b6116a4565b34801561071057600080fd5b5061030461071f366004612e3e565b6000908152601660205260409020546001600160a01b031690565b34801561074657600080fd5b5061033c610755366004612cdd565b6117a6565b34801561076657600080fd5b506102d7610775366004612e3e565b6117e5565b34801561078657600080fd5b5061079a610795366004612e3e565b61181f565b604080516001600160a01b0390931683526020830191909152016102b9565b3480156107c557600080fd5b506102d761185d565b3480156107da57600080fd5b5061033c6107e9366004612e3e565b61186c565b3480156107fa57600080fd5b5061033c610809366004612e3e565b6118ba565b34801561081a57600080fd5b5061033c610829366004612beb565b611a26565b34801561083a57600080fd5b506102d7611a91565b34801561084f57600080fd5b506102ad61085e366004612c08565b611ab1565b34801561086f57600080fd5b506102ad61087e366004612e3e565b60009081526014602052604090205460ff1690565b34801561089f57600080fd5b506102d7611b81565b3480156108b457600080fd5b5061033c6108c3366004612beb565b611c0f565b60006001600160e01b0319821663780e9d6360e01b14806108ed57506108ed82611d76565b92915050565b60606000805461090290613215565b80601f016020809104026020016040519081016040528092919081815260200182805461092e90613215565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a2a82611140565b9050806001600160a01b0316836001600160a01b03161415610a985760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109fa565b806001600160a01b0316610aaa611dc6565b6001600160a01b03161480610ac65750610ac68161085e611dc6565b610b385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109fa565b610b428383611dd5565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610b858782878787611e43565b610bdb5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016109fa565b6001600160a01b0387166000908152600c6020526040902054610bff906001611f33565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610c4f90899033908a90613005565b60405180910390a1600080306001600160a01b0316888a604051602001610c77929190612f9f565b60408051601f1981840301815290829052610c9191612f83565b6000604051808303816000865af19150503d8060008114610cce576040519150601f19603f3d011682016040523d82523d6000602084013e610cd3565b606091505b509150915081610d255760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016109fa565b98975050505050505050565b610d39611dc6565b6001600160a01b0316610d54600d546001600160a01b031690565b6001600160a01b031614610d7a5760405162461bcd60e51b81526004016109fa90613120565b8051610d8d906012906020840190612abc565b5050565b610da2610d9c611dc6565b82611f46565b610dbe5760405162461bcd60e51b81526004016109fa90613155565b610b42838383612015565b610dd1611dc6565b6001600160a01b0316610dec600d546001600160a01b031690565b6001600160a01b031614610e125760405162461bcd60e51b81526004016109fa90613120565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e3f83611213565b8210610ea15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109fa565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b42838383604051806020016040528060008152506117a6565b6018546001600160a01b03163314610f4d57610f013382611f46565b610f4d5760405162461bcd60e51b815260206004820152601e60248201527f4f776e657273686970206f7220617070726f76616c207265717569726564000060448201526064016109fa565b610f56816121c0565b50565b6000610f6460085490565b8210610fc75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109fa565b60088281548110610fda57610fda6132bb565b90600052602060002001549050919050565b6000828152601660205260409020546001600160a01b031633146110525760405162461bcd60e51b815260206004820152601f60248201527f566572696669636174696f6e20526571756573746572206d69736d617463680060448201526064016109fa565b60008281526014602052604090205460ff16156110a25760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016109fa565b6110ad338383612267565b6110ee5760405162461bcd60e51b81526020600482015260126024820152710a6d2cedcc2e8eae4ca40dad2e6dac2e8c6d60731b60448201526064016109fa565b6000828152601460205260409020805460ff191660011790556017546111159033906122bc565b601780546000908152601560205260408120849055815491906111378361324a565b91905055505050565b6000818152600260205260408120546001600160a01b0316806108ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109fa565b6111bf611dc6565b6001600160a01b03166111da600d546001600160a01b031690565b6001600160a01b0316146112005760405162461bcd60e51b81526004016109fa90613120565b8051610d8d906013906020840190612abc565b60006001600160a01b03821661127e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109fa565b506001600160a01b031660009081526003602052604090205490565b6112a2611dc6565b6001600160a01b03166112bd600d546001600160a01b031690565b6001600160a01b0316146112e35760405162461bcd60e51b81526004016109fa90613120565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b611335611dc6565b6001600160a01b0316611350600d546001600160a01b031690565b6001600160a01b0316146113765760405162461bcd60e51b81526004016109fa90613120565b60006113806122d6565b905061138c82826122e7565b610d8d612435565b606060006113a183611213565b9050806113c25760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156113dd576113dd6132d1565b604051908082528060200260200182016040528015611406578160200160208202803683370190505b50905060005b828110156113ba5761141e8582610e34565b828281518110611430576114306132bb565b6020908102919091010152806114458161324a565b91505061140c565b50919050565b82846001600160a01b0316611470600d546001600160a01b031690565b604080516001600160a01b0387811682526020820187905292909216917f096a55ec842afaa98cb78cb0352921e73c0d1caa9136309fa9c07f13f4a39a60910160405180910390a45050505050565b6040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b60606001805461090290613215565b61151d611dc6565b6001600160a01b0316611538600d546001600160a01b031690565b6001600160a01b03161461155e5760405162461bcd60e51b81526004016109fa90613120565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b1580156115a057600080fd5b505afa1580156115b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d89190612f3e565b90506000811161161f5760405162461bcd60e51b81526020600482015260126024820152712737ba3434b733903a37903932b1b7bb32b960711b60448201526064016109fa565b816001600160a01b031663a9059cbb611640600d546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b15801561168857600080fd5b505af115801561169c573d6000803e3d6000fd5b505050505050565b6116ac611dc6565b6001600160a01b0316826001600160a01b0316141561170d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109fa565b806005600061171a611dc6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561175e611dc6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161179a911515815260200190565b60405180910390a35050565b6117b76117b1611dc6565b83611f46565b6117d35760405162461bcd60e51b81526004016109fa90613155565b6117df8484848461244c565b50505050565b60606117ef61185d565b6117f88361247f565b604051602001611809929190612fd6565b6040516020818303038152906040529050919050565b600080611834600d546001600160a01b031690565b937f00000000000000000000000000000000000000000000000000000000000b71b09350915050565b60606013805461090290613215565b611874611dc6565b6001600160a01b031661188f600d546001600160a01b031690565b6001600160a01b0316146118b55760405162461bcd60e51b81526004016109fa90613120565b601055565b60008181526014602052604090205460ff161561190a5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016109fa565b6000818152601660205260409020546001600160a01b03161561196f5760405162461bcd60e51b815260206004820152601e60248201527f566572696669636174696f6e20616c726561647920726571756573746564000060448201526064016109fa565b6011546010546040516323b872dd60e01b815233600482015230602482015260448101919091526001600160a01b03909116906323b872dd90606401602060405180830381600087803b1580156119c557600080fd5b505af11580156119d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119fd9190612e21565b611a0657600080fd5b600090815260166020526040902080546001600160a01b03191633179055565b611a2e611dc6565b6001600160a01b0316611a49600d546001600160a01b031690565b6001600160a01b031614611a6f5760405162461bcd60e51b81526004016109fa90613120565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b606060405180606001604052806025815260200161336460259139905090565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611afe57600080fd5b505afa158015611b12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b369190612ed8565b6001600160a01b03161415611b4f5760019150506108ed565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b60128054611b8e90613215565b80601f0160208091040260200160405190810160405280929190818152602001828054611bba90613215565b8015611c075780601f10611bdc57610100808354040283529160200191611c07565b820191906000526020600020905b815481529060010190602001808311611bea57829003601f168201915b505050505081565b611c17611dc6565b6001600160a01b0316611c32600d546001600160a01b031690565b6001600160a01b031614611c585760405162461bcd60e51b81526004016109fa90613120565b6001600160a01b038116611cbd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109fa565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600033301415611d7057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611d739050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611da757506001600160e01b03198216635b5e139f60e01b145b806108ed57506301ffc9a760e01b6001600160e01b03198316146108ed565b6000611dd0611d19565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e0a82611140565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611ea95760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016109fa565b6001611ebc611eb78761257d565b6125fa565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611f0a573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611f3f82846131a6565b9392505050565b6000818152600260205260408120546001600160a01b0316611fbf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109fa565b6000611fca83611140565b9050806001600160a01b0316846001600160a01b031614806120055750836001600160a01b0316611ffa84610985565b6001600160a01b0316145b80611b795750611b798185611ab1565b826001600160a01b031661202882611140565b6001600160a01b0316146120905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109fa565b6001600160a01b0382166120f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109fa565b6120fd83838361262a565b612108600082611dd5565b6001600160a01b03831660009081526003602052604081208054600192906121319084906131d2565b90915550506001600160a01b038216600090815260036020526040812080546001929061215f9084906131a6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006121cb82611140565b90506121d98160008461262a565b6121e4600083611dd5565b6001600160a01b038116600090815260036020526040812080546001929061220d9084906131d2565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008061227485856114bf565b90506000612281826126e2565b9050612295600d546001600160a01b031690565b6001600160a01b03166122a8828661271d565b6001600160a01b0316149695505050505050565b610d8d8282604051806020016040528060008152506127e5565b600f54600090611dd0906001611f33565b6001600160a01b03821661233d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109fa565b6000818152600260205260409020546001600160a01b0316156123a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109fa565b6123ae6000838361262a565b6001600160a01b03821660009081526003602052604081208054600192906123d79084906131a6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f80549060006124458361324a565b9190505550565b612457848484612015565b61246384848484612818565b6117df5760405162461bcd60e51b81526004016109fa906130ce565b6060816124a35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124cd57806124b78161324a565b91506124c69050600a836131be565b91506124a7565b60008167ffffffffffffffff8111156124e8576124e86132d1565b6040519080825280601f01601f191660200182016040528015612512576020820181803683370190505b5090505b8415611b79576125276001836131d2565b9150612534600a86613265565b61253f9060306131a6565b60f81b818381518110612554576125546132bb565b60200101906001600160f81b031916908160001a905350612576600a866131be565b9450612516565b600060405180608001604052806043815260200161332160439139805160209182012083518483015160408087015180519086012090516125dd950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612605600b5490565b60405161190160f01b60208201526022810191909152604281018390526062016125dd565b6001600160a01b0383166126855761268081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126a8565b816001600160a01b0316836001600160a01b0316146126a8576126a8838261292c565b6001600160a01b0382166126bf57610b42816129c9565b826001600160a01b0316826001600160a01b031614610b4257610b428282612a78565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c016125dd565b600081516041146127705760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e677468000000000000000060448201526064016109fa565b602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa1580156127d0573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6127ef83836122e7565b6127fc6000848484612818565b610b425760405162461bcd60e51b81526004016109fa906130ce565b60006001600160a01b0384163b1561292157836001600160a01b031663150b7a02612841611dc6565b8786866040518563ffffffff1660e01b8152600401612863949392919061303a565b602060405180830381600087803b15801561287d57600080fd5b505af19250505080156128ad575060408051601f3d908101601f191682019092526128aa91810190612ebb565b60015b612907573d8080156128db576040519150601f19603f3d011682016040523d82523d6000602084013e6128e0565b606091505b5080516128ff5760405162461bcd60e51b81526004016109fa906130ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b79565b506001949350505050565b6000600161293984611213565b61294391906131d2565b600083815260076020526040902054909150808214612996576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129db906001906131d2565b60008381526009602052604081205460088054939450909284908110612a0357612a036132bb565b906000526020600020015490508060088381548110612a2457612a246132bb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a5c57612a5c6132a5565b6001900381819060005260206000200160009055905550505050565b6000612a8383611213565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612ac890613215565b90600052602060002090601f016020900481019282612aea5760008555612b30565b82601f10612b0357805160ff1916838001178555612b30565b82800160010185558215612b30579182015b82811115612b30578251825591602001919060010190612b15565b50612b3c929150612b40565b5090565b5b80821115612b3c5760008155600101612b41565b600067ffffffffffffffff80841115612b7057612b706132d1565b604051601f8501601f19908116603f01168101908282118183101715612b9857612b986132d1565b81604052809350858152868686011115612bb157600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612bdc57600080fd5b611f3f83833560208501612b55565b600060208284031215612bfd57600080fd5b8135611f3f816132e7565b60008060408385031215612c1b57600080fd5b8235612c26816132e7565b91506020830135612c36816132e7565b809150509250929050565b600080600060608486031215612c5657600080fd5b8335612c61816132e7565b92506020840135612c71816132e7565b929592945050506040919091013590565b600080600080600060a08688031215612c9a57600080fd5b8535612ca5816132e7565b94506020860135612cb5816132e7565b9350604086013592506060860135612ccc816132e7565b949793965091946080013592915050565b60008060008060808587031215612cf357600080fd5b8435612cfe816132e7565b93506020850135612d0e816132e7565b925060408501359150606085013567ffffffffffffffff811115612d3157600080fd5b612d3d87828801612bcb565b91505092959194509250565b60008060408385031215612d5c57600080fd5b8235612d67816132e7565b91506020830135612c36816132fc565b60008060408385031215612d8a57600080fd5b8235612d95816132e7565b946020939093013593505050565b600080600080600060a08688031215612dbb57600080fd5b8535612dc6816132e7565b9450602086013567ffffffffffffffff811115612de257600080fd5b612dee88828901612bcb565b9450506040860135925060608601359150608086013560ff81168114612e1357600080fd5b809150509295509295909350565b600060208284031215612e3357600080fd5b8151611f3f816132fc565b600060208284031215612e5057600080fd5b5035919050565b60008060408385031215612e6a57600080fd5b82359150602083013567ffffffffffffffff811115612e8857600080fd5b612e9485828601612bcb565b9150509250929050565b600060208284031215612eb057600080fd5b8135611f3f8161330a565b600060208284031215612ecd57600080fd5b8151611f3f8161330a565b600060208284031215612eea57600080fd5b8151611f3f816132e7565b600060208284031215612f0757600080fd5b813567ffffffffffffffff811115612f1e57600080fd5b8201601f81018413612f2f57600080fd5b611b7984823560208401612b55565b600060208284031215612f5057600080fd5b5051919050565b60008151808452612f6f8160208601602086016131e9565b601f01601f19169290920160200192915050565b60008251612f958184602087016131e9565b9190910192915050565b60008351612fb18184602088016131e9565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008351612fe88184602088016131e9565b835190830190612ffc8183602088016131e9565b01949350505050565b6001600160a01b0384811682528316602082015260606040820181905260009061303190830184612f57565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061306d90830184612f57565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156130af57835183529284019291840191600101613093565b50909695505050505050565b602081526000611f3f6020830184612f57565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156131b9576131b9613279565b500190565b6000826131cd576131cd61328f565b500490565b6000828210156131e4576131e4613279565b500390565b60005b838110156132045781810151838201526020016131ec565b838111156117df5750506000910152565b600181811c9082168061322957607f821691505b6020821081141561144d57634e487b7160e01b600052602260045260246000fd5b600060001982141561325e5761325e613279565b5060010190565b6000826132745761327461328f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f5657600080fd5b8015158114610f5657600080fd5b6001600160e01b031981168114610f5657600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f756e69716c792e636f6d2f6170692f6e66742d67656e657261746f722fa26469706673582212208684d54a22c734896df6299361d52ced1d6d29a3d3f98e0413f94190e5a256b764736f6c63430008060033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000003758e00b100876c854636ef8db61988931bb80250000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000d4e46542d47454e455241544f520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e46542d47454e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f7777772e756e69716c792e696f2f6170692f6d657461646174612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _name (string): NFT-GENERATOR
Arg [2] : _symbol (string): NFT-GEN
Arg [3] : _verfifyPrice (uint256): 100000000000000000000
Arg [4] : _tokenERC20 (address): 0x3758e00b100876C854636eF8Db61988931BB8025
Arg [5] : _ttokenUri (string): https://www.uniqly.io/api/metadata/

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [4] : 0000000000000000000000003758e00b100876c854636ef8db61988931bb8025
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 4e46542d47454e455241544f5200000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 4e46542d47454e00000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [11] : 68747470733a2f2f7777772e756e69716c792e696f2f6170692f6d6574616461
Arg [12] : 74612f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

172:6904:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:234:11;;;;;;;;;;-1:-1:-1;910:234:11;;;;;:::i;:::-;;:::i;:::-;;;12671:14:20;;12664:22;12646:41;;12634:2;12619:18;910:234:11;;;;;;;;2408:98:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3820:217::-;;;;;;;;;;-1:-1:-1;3820:217:8;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10237:32:20;;;10219:51;;10207:2;10192:18;3820:217:8;10174:102:20;3371:388:8;;;;;;;;;;-1:-1:-1;3371:388:8;;;;;:::i;:::-;;:::i;:::-;;976:1117:5;;;;;;:::i;:::-;;:::i;288:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:3;;;;;5749:116:1;;;;;;;;;;-1:-1:-1;5749:116:1;;;;;:::i;:::-;;:::i;1547:111:11:-;;;;;;;;;;-1:-1:-1;1634:10:11;:17;1547:111;;;12844:25:20;;;12832:2;12817:18;1547:111:11;12799:76:20;1264:99:3;;;;;;;;;;-1:-1:-1;1341:15:3;;1264:99;;4684:300:8;;;;;;;;;;-1:-1:-1;4684:300:8;;;;;:::i;:::-;;:::i;5983:111:1:-;;;;;;;;;;-1:-1:-1;5983:111:1;;;;;:::i;:::-;;:::i;2501:105:5:-;;;;;;;;;;-1:-1:-1;2501:105:5;;;;;:::i;:::-;-1:-1:-1;;;;;2587:12:5;2554:13;2587:12;;;:6;:12;;;;;;;2501:105;1223:253:11;;;;;;;;;;-1:-1:-1;1223:253:11;;;;;:::i;:::-;;:::i;373:36:1:-;;;;;;;;;;;;;;;1369:155:3;;;;;;;;;;-1:-1:-1;1480:9:3;1369:155;;5050:149:8;;;;;;;;;;-1:-1:-1;5050:149:8;;;;;:::i;:::-;;:::i;1537:272:1:-;;;;;;;;;;-1:-1:-1;1537:272:1;;;;;:::i;:::-;;:::i;1730:230:11:-;;;;;;;;;;-1:-1:-1;1730:230:11;;;;;:::i;:::-;;:::i;4256:106:1:-;;;;;;;;;;-1:-1:-1;4337:18:1;;4256:106;;5149:557;;;;;;;;;;-1:-1:-1;5149:557:1;;;;;:::i;:::-;;:::i;2111:235:8:-;;;;;;;;;;-1:-1:-1;2111:235:8;;;;;:::i;:::-;;:::i;5871:106:1:-;;;;;;;;;;-1:-1:-1;5871:106:1;;;;;:::i;:::-;;:::i;4149:101::-;;;;;;;;;;-1:-1:-1;4227:16:1;;-1:-1:-1;;;;;4227:16:1;4149:101;;1849:205:8;;;;;;;;;;-1:-1:-1;1849:205:8;;;;;:::i;:::-;;:::i;1700:145:7:-;;;;;;;;;;;;;:::i;1322:162:0:-;;;;;;;;;;-1:-1:-1;1322:162:0;;;;;:::i;:::-;;:::i;3145:97:1:-;;;;;;;;;;-1:-1:-1;3145:97:1;;;;;:::i;:::-;3197:7;3223:12;;;:7;:12;;;;;;;3145:97;3415:555;;;;;;;;;;-1:-1:-1;3415:555:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6627:249::-;;;;;;;;;;-1:-1:-1;6627:249:1;;;;;:::i;:::-;;:::i;1336:195::-;;;;;;;;;;-1:-1:-1;1336:195:1;;;;;:::i;:::-;;:::i;1068:85:7:-;;;;;;;;;;-1:-1:-1;1140:6:7;;-1:-1:-1;;;;;1140:6:7;1068:85;;2570:102:8;;;;;;;;;;;;;:::i;6343:278:1:-;;;;;;;;;;-1:-1:-1;6343:278:1;;;;;:::i;:::-;;:::i;4104:290:8:-;;;;;;;;;;-1:-1:-1;4104:290:8;;;;;:::i;:::-;;:::i;3976:167:1:-;;;;;;;;;;-1:-1:-1;3976:167:1;;;;;:::i;:::-;4073:7;4103:33;;;:22;:33;;;;;;-1:-1:-1;;;;;4103:33:1;;3976:167;5265:282:8;;;;;;;;;;-1:-1:-1;5265:282:8;;;;;:::i;:::-;;:::i;1955:173:0:-;;;;;;;;;;-1:-1:-1;1955:173:0;;;;;:::i;:::-;;:::i;3248:161:1:-;;;;;;;;;;-1:-1:-1;3248:161:1;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;11782:32:20;;;11764:51;;11846:2;11831:18;;11824:34;;;;11737:18;3248:161:1;11719:145:20;4368:103:1;;;;;;;;;;;;;:::i;6100:116::-;;;;;;;;;;-1:-1:-1;6100:116:1;;;;;:::i;:::-;;:::i;4642:501::-;;;;;;;;;;-1:-1:-1;4642:501:1;;;;;:::i;:::-;;:::i;6222:115::-;;;;;;;;;;-1:-1:-1;6222:115:1;;;;;:::i;:::-;;:::i;4477:122::-;;;;;;;;;;;;;:::i;2255:432:0:-;;;;;;;;;;-1:-1:-1;2255:432:0;;;;;:::i;:::-;;:::i;3018:121:1:-;;;;;;;;;;-1:-1:-1;3018:121:1;;;;;:::i;:::-;3085:4;3108:24;;;:13;:24;;;;;;;;;3018:121;329:38;;;;;;;;;;;;;:::i;1994:240:7:-;;;;;;;;;;-1:-1:-1;1994:240:7;;;;;:::i;:::-;;:::i;910:234:11:-;1012:4;-1:-1:-1;;;;;;1035:50:11;;-1:-1:-1;;;1035:50:11;;:102;;;1101:36;1125:11;1101:23;:36::i;:::-;1028:109;910:234;-1:-1:-1;;910:234:11:o;2408:98:8:-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3820:217::-;3896:7;7069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7069:16:8;3915:73;;;;-1:-1:-1;;;3915:73:8;;21245:2:20;3915:73:8;;;21227:21:20;21284:2;21264:18;;;21257:30;21323:34;21303:18;;;21296:62;-1:-1:-1;;;21374:18:20;;;21367:42;21426:19;;3915:73:8;;;;;;;;;-1:-1:-1;4006:24:8;;;;:15;:24;;;;;;-1:-1:-1;;;;;4006:24:8;;3820:217::o;3371:388::-;3451:13;3467:23;3482:7;3467:14;:23::i;:::-;3451:39;;3514:5;-1:-1:-1;;;;;3508:11:8;:2;-1:-1:-1;;;;;3508:11:8;;;3500:57;;;;-1:-1:-1;;;3500:57:8;;23191:2:20;3500:57:8;;;23173:21:20;23230:2;23210:18;;;23203:30;23269:34;23249:18;;;23242:62;-1:-1:-1;;;23320:18:20;;;23313:31;23361:19;;3500:57:8;23163:223:20;3500:57:8;3592:5;-1:-1:-1;;;;;3576:21:8;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3576:21:8;;:62;;;;3601:37;3618:5;3625:12;:10;:12::i;3601:37::-;3568:152;;;;-1:-1:-1;;;3568:152:8;;18932:2:20;3568:152:8;;;18914:21:20;18971:2;18951:18;;;18944:30;19010:34;18990:18;;;18983:62;19081:26;19061:18;;;19054:54;19125:19;;3568:152:8;18904:246:20;3568:152:8;3731:21;3740:2;3744:7;3731:8;:21::i;:::-;3441:318;3371:388;;:::o;976:1117:5:-;1227:148;;;1171:12;1227:148;;;;;-1:-1:-1;;;;;1264:19:5;;1195:29;1264:19;;;:6;:19;;;;;;;;;1227:148;;;;;;;;;;;1407:45;1271:11;1227:148;1435:4;1441;1447;1407:6;:45::i;:::-;1386:125;;;;-1:-1:-1;;;1386:125:5;;22789:2:20;1386:125:5;;;22771:21:20;22828:2;22808:18;;;22801:30;22867:34;22847:18;;;22840:62;-1:-1:-1;;;22918:18:20;;;22911:31;22959:19;;1386:125:5;22761:223:20;1386:125:5;-1:-1:-1;;;;;1597:19:5;;;;;;:6;:19;;;;;;:26;;1621:1;1597:23;:26::i;:::-;-1:-1:-1;;;;;1575:19:5;;;;;;:6;:19;;;;;;;:48;;;;1639:122;;;;;1582:11;;1709:10;;1734:17;;1639:122;:::i;:::-;;;;;;;;1869:12;1883:23;1918:4;-1:-1:-1;;;;;1910:18:5;1959:17;1978:11;1942:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1942:48:5;;;;;;;;;;1910:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1868:132;;;;2018:7;2010:48;;;;-1:-1:-1;;;2010:48:5;;16281:2:20;2010:48:5;;;16263:21:20;16320:2;16300:18;;;16293:30;16359;16339:18;;;16332:58;16407:18;;2010:48:5;16253:178:20;2010:48:5;2076:10;976:1117;-1:-1:-1;;;;;;;;976:1117:5:o;5749:116:1:-;1291:12:7;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;5826:32:1;;::::1;::::0;:24:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5749:116:::0;:::o;4684:300:8:-;4843:41;4862:12;:10;:12::i;:::-;4876:7;4843:18;:41::i;:::-;4835:103;;;;-1:-1:-1;;;4835:103:8;;;;;;;:::i;:::-;4949:28;4959:4;4965:2;4969:7;4949:9;:28::i;5983:111:1:-;1291:12:7;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;6058:15:1::1;:29:::0;;-1:-1:-1;;;;;;6058:29:1::1;-1:-1:-1::0;;;;;6058:29:1;;;::::1;::::0;;;::::1;::::0;;5983:111::o;1223:253:11:-;1320:7;1355:23;1372:5;1355:16;:23::i;:::-;1347:5;:31;1339:87;;;;-1:-1:-1;;;1339:87:11;;15043:2:20;1339:87:11;;;15025:21:20;15082:2;15062:18;;;15055:30;15121:34;15101:18;;;15094:62;-1:-1:-1;;;15172:18:20;;;15165:41;15223:19;;1339:87:11;15015:233:20;1339:87:11;-1:-1:-1;;;;;;1443:19:11;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1223:253::o;5050:149:8:-;5153:39;5170:4;5176:2;5180:7;5153:39;;;;;;;;;;;;:16;:39::i;1537:272:1:-;1606:16;;-1:-1:-1;;;;;1606:16:1;1592:10;:30;1588:190;;1663:40;1682:10;1694:8;1663:18;:40::i;:::-;1638:129;;;;-1:-1:-1;;;1638:129:1;;20178:2:20;1638:129:1;;;20160:21:20;20217:2;20197:18;;;20190:30;20256:32;20236:18;;;20229:60;20306:18;;1638:129:1;20150:180:20;1638:129:1;1787:15;1793:8;1787:5;:15::i;:::-;1537:272;:::o;1730:230:11:-;1805:7;1840:30;1634:10;:17;;1547:111;1840:30;1832:5;:38;1824:95;;;;-1:-1:-1;;;1824:95:11;;24011:2:20;1824:95:11;;;23993:21:20;24050:2;24030:18;;;24023:30;24089:34;24069:18;;;24062:62;-1:-1:-1;;;24140:18:20;;;24133:42;24192:19;;1824:95:11;23983:234:20;1824:95:11;1936:10;1947:5;1936:17;;;;;;;;:::i;:::-;;;;;;;;;1929:24;;1730:230;;;:::o;5149:557:1:-;5255:33;;;;:22;:33;;;;;;-1:-1:-1;;;;;5255:33:1;5292:10;5255:47;5234:125;;;;-1:-1:-1;;;5234:125:1;;21658:2:20;5234:125:1;;;21640:21:20;21697:2;21677:18;;;21670:30;21736:33;21716:18;;;21709:61;21787:18;;5234:125:1;21630:181:20;5234:125:1;5378:24;;;;:13;:24;;;;;;;;5377:25;5369:52;;;;-1:-1:-1;;;5369:52:1;;14700:2:20;5369:52:1;;;14682:21:20;14739:2;14719:18;;;14712:30;-1:-1:-1;;;14758:18:20;;;14751:44;14812:18;;5369:52:1;14672:164:20;5369:52:1;5452:50;5468:10;5480:9;5491:10;5452:15;:50::i;:::-;5431:115;;;;-1:-1:-1;;;5431:115:1;;20898:2:20;5431:115:1;;;20880:21:20;20937:2;20917:18;;;20910:30;-1:-1:-1;;;20956:18:20;;;20949:48;21014:18;;5431:115:1;20870:168:20;5431:115:1;5556:24;;;;:13;:24;;;;;:31;;-1:-1:-1;;5556:31:1;5583:4;5556:31;;;5619:12;;5597:35;;5607:10;;5597:9;:35::i;:::-;5650:12;;;5642:21;;;;:7;:21;;;;;:33;;;5685:14;;;5650:12;5685:14;;;:::i;:::-;;;;;;5149:557;;:::o;2111:235:8:-;2183:7;2218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2218:16:8;2252:19;2244:73;;;;-1:-1:-1;;;2244:73:8;;19768:2:20;2244:73:8;;;19750:21:20;19807:2;19787:18;;;19780:30;19846:34;19826:18;;;19819:62;-1:-1:-1;;;19897:18:20;;;19890:39;19946:19;;2244:73:8;19740:231:20;5871:106:1;1291:12:7;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;5947:23:1;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;1849:205:8:-:0;1921:7;-1:-1:-1;;;;;1948:19:8;;1940:74;;;;-1:-1:-1;;;1940:74:8;;19357:2:20;1940:74:8;;;19339:21:20;19396:2;19376:18;;;19369:30;19435:34;19415:18;;;19408:62;-1:-1:-1;;;19486:18:20;;;19479:40;19536:19;;1940:74:8;19329:232:20;1940:74:8;-1:-1:-1;;;;;;2031:16:8;;;;;:9;:16;;;;;;;1849:205::o;1700:145:7:-;1291:12;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;1790:6:::1;::::0;1769:40:::1;::::0;1806:1:::1;::::0;-1:-1:-1;;;;;1790:6:7::1;::::0;1769:40:::1;::::0;1806:1;;1769:40:::1;1819:6;:19:::0;;-1:-1:-1;;;;;;1819:19:7::1;::::0;;1700:145::o;1322:162:0:-;1291:12:7;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;1378:18:0::1;1399:17;:15;:17::i;:::-;1378:38;;1426:22;1432:3;1437:10;1426:5;:22::i;:::-;1458:19;:17;:19::i;3415:555:1:-:0;3501:16;3533:18;3554:17;3564:6;3554:9;:17::i;:::-;3533:38;-1:-1:-1;3585:15:1;3581:383;;3660:16;;;3674:1;3660:16;;;;;;;;;;;-1:-1:-1;3653:23:1;3415:555;-1:-1:-1;;;3415:555:1:o;3581:383::-;3707:23;3747:10;3733:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3733:25:1;;3707:51;;3772:13;3799:128;3823:10;3815:5;:18;3799:128;;;3878:34;3898:6;3906:5;3878:19;:34::i;:::-;3862:6;3869:5;3862:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;3835:7;;;;:::i;:::-;;;;3799:128;;3581:383;3523:447;3415:555;;;:::o;6627:249::-;6839:8;6831:6;-1:-1:-1;;;;;6804:65:1;6822:7;1140:6:7;;-1:-1:-1;;;;;1140:6:7;;1068:85;6822:7:1;6804:65;;;-1:-1:-1;;;;;11782:32:20;;;11764:51;;11846:2;11831:18;;11824:34;;;6804:65:1;;;;;;;11737:18:20;6804:65:1;;;;;;;6627:249;;;;;:::o;1336:195::-;1484:39;;-1:-1:-1;;7995:2:20;7991:15;;;7987:53;1484:39:1;;;7975:66:20;8057:12;;;8050:28;;;1444:7:1;;8094:12:20;;1484:39:1;;;;;;;;;;;;1474:50;;;;;;1467:57;;1336:195;;;;:::o;2570:102:8:-;2626:13;2658:7;2651:14;;;;;:::i;6343:278:1:-;1291:12:7;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;6423:38:1::1;::::0;-1:-1:-1;;;6423:38:1;;6455:4:::1;6423:38;::::0;::::1;10219:51:20::0;6409:11:1::1;::::0;-1:-1:-1;;;;;6423:23:1;::::1;::::0;::::1;::::0;10192:18:20;;6423:38:1::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6409:52;;6485:1;6479:3;:7;6471:38;;;::::0;-1:-1:-1;;;6471:38:1;;14353:2:20;6471:38:1::1;::::0;::::1;14335:21:20::0;14392:2;14372:18;;;14365:30;-1:-1:-1;;;14411:18:20;;;14404:48;14469:18;;6471:38:1::1;14325:168:20::0;6471:38:1::1;6585:5;-1:-1:-1::0;;;;;6578:22:1::1;;6601:7;1140:6:7::0;;-1:-1:-1;;;;;1140:6:7;;1068:85;6601:7:1::1;6578:36;::::0;-1:-1:-1;;;;;;6578:36:1::1;::::0;;;;;;-1:-1:-1;;;;;11782:32:20;;;6578:36:1::1;::::0;::::1;11764:51:20::0;11831:18;;;11824:34;;;11737:18;;6578:36:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6399:222;6343:278:::0;:::o;4104:290:8:-;4218:12;:10;:12::i;:::-;-1:-1:-1;;;;;4206:24:8;:8;-1:-1:-1;;;;;4206:24:8;;;4198:62;;;;-1:-1:-1;;;4198:62:8;;17759:2:20;4198:62:8;;;17741:21:20;17798:2;17778:18;;;17771:30;17837:27;17817:18;;;17810:55;17882:18;;4198:62:8;17731:175:20;4198:62:8;4316:8;4271:18;:32;4290:12;:10;:12::i;:::-;-1:-1:-1;;;;;4271:32:8;;;;;;;;;;;;;;;;;-1:-1:-1;4271:32:8;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4271:53:8;;;;;;;;;;;4354:12;:10;:12::i;:::-;-1:-1:-1;;;;;4339:48:8;;4378:8;4339:48;;;;12671:14:20;12664:22;12646:41;;12634:2;12619:18;;12601:92;4339:48:8;;;;;;;;4104:290;;:::o;5265:282::-;5396:41;5415:12;:10;:12::i;:::-;5429:7;5396:18;:41::i;:::-;5388:103;;;;-1:-1:-1;;;5388:103:8;;;;;;;:::i;:::-;5501:39;5515:4;5521:2;5525:7;5534:5;5501:13;:39::i;:::-;5265:282;;;;:::o;1955:173:0:-;2021:13;2077:14;:12;:14::i;:::-;2093:26;2110:8;2093:16;:26::i;:::-;2060:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2046:75;;1955:173;;;:::o;3248:161:1:-;3325:16;3343:14;3381:7;1140:6:7;;-1:-1:-1;;;;;1140:6:7;;1068:85;3381:7:1;3373:29;3390:11;;-1:-1:-1;3248:161:1;-1:-1:-1;;3248:161:1:o;4368:103::-;4422:13;4454:10;4447:17;;;;;:::i;6100:116::-;1291:12:7;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;6179:18:1::1;:30:::0;6100:116::o;4642:501::-;4717:24;;;;:13;:24;;;;;;;;4716:25;4708:52;;;;-1:-1:-1;;;4708:52:1;;14700:2:20;4708:52:1;;;14682:21:20;14739:2;14719:18;;;14712:30;-1:-1:-1;;;14758:18:20;;;14751:44;14812:18;;4708:52:1;14672:164:20;4708:52:1;4836:1;4791:33;;;:22;:33;;;;;;-1:-1:-1;;;;;4791:33:1;:47;4770:124;;;;-1:-1:-1;;;4770:124:1;;16995:2:20;4770:124:1;;;16977:21:20;17034:2;17014:18;;;17007:30;17073:32;17053:18;;;17046:60;17123:18;;4770:124:1;16967:180:20;4770:124:1;4932:15;;5038:18;;4925:145;;-1:-1:-1;;;4925:145:1;;4979:10;4925:145;;;10957:34:20;5015:4:1;11007:18:20;;;11000:43;11059:18;;;11052:34;;;;-1:-1:-1;;;;;4932:15:1;;;;4925:36;;10892:18:20;;4925:145:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4904:176;;;;;;5090:33;;;;:22;:33;;;;;:46;;-1:-1:-1;;;;;;5090:46:1;5126:10;5090:46;;;4642:501::o;6222:115::-;1291:12:7;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;6300:16:1::1;:30:::0;;-1:-1:-1;;;;;;6300:30:1::1;-1:-1:-1::0;;;;;6300:30:1;;;::::1;::::0;;;::::1;::::0;;6222:115::o;4477:122::-;4521:13;4546:46;;;;;;;;;;;;;;;;;;;4477:122;:::o;2255:432:0:-;2502:20;;2545:28;;-1:-1:-1;;;2545:28:0;;-1:-1:-1;;;;;10237:32:20;;;2545:28:0;;;10219:51:20;2376:4:0;;2502:20;;;2537:49;;;;2502:20;;2545:21;;10192:18:20;;2545:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2537:49:0;;2533:91;;;2609:4;2602:11;;;;;2533:91;-1:-1:-1;;;;;4580:25:8;;;4557:4;4580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;2641:39:0;2634:46;2255:432;-1:-1:-1;;;;2255:432:0:o;329:38:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1994:240:7:-;1291:12;:10;:12::i;:::-;-1:-1:-1;;;;;1280:23:7;:7;1140:6;;-1:-1:-1;;;;;1140:6:7;;1068:85;1280:7;-1:-1:-1;;;;;1280:23:7;;1272:68;;;;-1:-1:-1;;;1272:68:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;2082:22:7;::::1;2074:73;;;::::0;-1:-1:-1;;;2074:73:7;;15874:2:20;2074:73:7::1;::::0;::::1;15856:21:20::0;15913:2;15893:18;;;15886:30;15952:34;15932:18;;;15925:62;-1:-1:-1;;;16003:18:20;;;15996:36;16049:19;;2074:73:7::1;15846:228:20::0;2074:73:7::1;2183:6;::::0;2162:38:::1;::::0;-1:-1:-1;;;;;2162:38:7;;::::1;::::0;2183:6:::1;::::0;2162:38:::1;::::0;2183:6:::1;::::0;2162:38:::1;2210:6;:17:::0;;-1:-1:-1;;;;;;2210:17:7::1;-1:-1:-1::0;;;;;2210:17:7;;;::::1;::::0;;;::::1;::::0;;1994:240::o;95:631:2:-;163:22;205:10;227:4;205:27;201:496;;;248:18;269:8;;248:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;307:8:2;514:17;508:24;-1:-1:-1;;;;;483:131:2;;-1:-1:-1;201:496:2;;-1:-1:-1;201:496:2;;-1:-1:-1;675:10:2;201:496;95:631;:::o;1502:288:8:-;1604:4;-1:-1:-1;;;;;;1627:40:8;;-1:-1:-1;;;1627:40:8;;:104;;-1:-1:-1;;;;;;;1683:48:8;;-1:-1:-1;;;1683:48:8;1627:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:17;;;1747:36:8;763:155:17;2826:154:0;2912:14;2949:24;:22;:24::i;:::-;2942:31;;2826:154;:::o;10738:171:8:-;10812:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10812:29:8;-1:-1:-1;;;;;10812:29:8;;;;;;;;:24;;10865:23;10812:24;10865:14;:23::i;:::-;-1:-1:-1;;;;;10856:46:8;;;;;;;;;;;10738:171;;:::o;2612:470:5:-;2784:4;-1:-1:-1;;;;;2808:20:5;;2800:70;;;;-1:-1:-1;;;2800:70:5;;18526:2:20;2800:70:5;;;18508:21:20;18565:2;18545:18;;;18538:30;18604:34;18584:18;;;18577:62;-1:-1:-1;;;18655:18:20;;;18648:35;18700:19;;2800:70:5;18498:227:20;2800:70:5;2921:154;2948:47;2967:27;2987:6;2967:19;:27::i;:::-;2948:18;:47::i;:::-;2921:154;;;;;;;;;;;;13529:25:20;;;;13602:4;13590:17;;13570:18;;;13563:45;13624:18;;;13617:34;;;13667:18;;;13660:34;;;13501:19;;2921:154:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2899:176:5;:6;-1:-1:-1;;;;;2899:176:5;;2880:195;;2612:470;;;;;;;:::o;2672:96:19:-;2730:7;2756:5;2760:1;2756;:5;:::i;:::-;2749:12;2672:96;-1:-1:-1;;;2672:96:19:o;7264:344:8:-;7357:4;7069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7069:16:8;7373:73;;;;-1:-1:-1;;;7373:73:8;;18113:2:20;7373:73:8;;;18095:21:20;18152:2;18132:18;;;18125:30;18191:34;18171:18;;;18164:62;-1:-1:-1;;;18242:18:20;;;18235:42;18294:19;;7373:73:8;18085:234:20;7373:73:8;7456:13;7472:23;7487:7;7472:14;:23::i;:::-;7456:39;;7524:5;-1:-1:-1;;;;;7513:16:8;:7;-1:-1:-1;;;;;7513:16:8;;:51;;;;7557:7;-1:-1:-1;;;;;7533:31:8;:20;7545:7;7533:11;:20::i;:::-;-1:-1:-1;;;;;7533:31:8;;7513:51;:87;;;;7568:32;7585:5;7592:7;7568:16;:32::i;10097:530::-;10221:4;-1:-1:-1;;;;;10194:31:8;:23;10209:7;10194:14;:23::i;:::-;-1:-1:-1;;;;;10194:31:8;;10186:85;;;;-1:-1:-1;;;10186:85:8;;22379:2:20;10186:85:8;;;22361:21:20;22418:2;22398:18;;;22391:30;22457:34;22437:18;;;22430:62;-1:-1:-1;;;22508:18:20;;;22501:39;22557:19;;10186:85:8;22351:231:20;10186:85:8;-1:-1:-1;;;;;10289:16:8;;10281:65;;;;-1:-1:-1;;;10281:65:8;;17354:2:20;10281:65:8;;;17336:21:20;17393:2;17373:18;;;17366:30;17432:34;17412:18;;;17405:62;-1:-1:-1;;;17483:18:20;;;17476:34;17527:19;;10281:65:8;17326:226:20;10281:65:8;10357:39;10378:4;10384:2;10388:7;10357:20;:39::i;:::-;10458:29;10475:1;10479:7;10458:8;:29::i;:::-;-1:-1:-1;;;;;10498:15:8;;;;;;:9;:15;;;;;:20;;10517:1;;10498:15;:20;;10517:1;;10498:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10528:13:8;;;;;;:9;:13;;;;;:18;;10545:1;;10528:13;:18;;10545:1;;10528:18;:::i;:::-;;;;-1:-1:-1;;10556:16:8;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10556:21:8;-1:-1:-1;;;;;10556:21:8;;;;;;;;;10593:27;;10556:16;;10593:27;;;;;;;10097:530;;;:::o;9425:348::-;9484:13;9500:23;9515:7;9500:14;:23::i;:::-;9484:39;;9534:48;9555:5;9570:1;9574:7;9534:20;:48::i;:::-;9620:29;9637:1;9641:7;9620:8;:29::i;:::-;-1:-1:-1;;;;;9660:16:8;;;;;;:9;:16;;;;;:21;;9680:1;;9660:16;:21;;9680:1;;9660:21;:::i;:::-;;;;-1:-1:-1;;9698:16:8;;;;:7;:16;;;;;;9691:23;;-1:-1:-1;;;;;;9691:23:8;;;9730:36;9706:7;;9698:16;-1:-1:-1;;;;;9730:36:8;;;;;9698:16;;9730:36;9474:299;9425:348;:::o;2137:376:1:-;2279:4;2295:19;2317:37;2332:10;2344:9;2317:14;:37::i;:::-;2295:59;;2364:28;2395:36;2419:11;2395:23;:36::i;:::-;2364:67;;2499:7;1140:6:7;;-1:-1:-1;;;;;1140:6:7;;1068:85;2499:7:1;-1:-1:-1;;;;;2448:58:1;:47;2462:20;2484:10;2448:13;:47::i;:::-;-1:-1:-1;;;;;2448:58:1;;;2137:376;-1:-1:-1;;;;;;2137:376:1:o;7938:108:8:-;8013:26;8023:2;8027:7;8013:26;;;;;;;;;;;;:9;:26::i;1626:104:0:-;1701:15;;1675:7;;1701:22;;1721:1;1701:19;:22::i;8836:372:8:-;-1:-1:-1;;;;;8915:16:8;;8907:61;;;;-1:-1:-1;;;8907:61:8;;20537:2:20;8907:61:8;;;20519:21:20;;;20556:18;;;20549:30;20615:34;20595:18;;;20588:62;20667:18;;8907:61:8;20509:182:20;8907:61:8;7046:4;7069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7069:16:8;:30;8978:58;;;;-1:-1:-1;;;8978:58:8;;16638:2:20;8978:58:8;;;16620:21:20;16677:2;16657:18;;;16650:30;16716;16696:18;;;16689:58;16764:18;;8978:58:8;16610:178:20;8978:58:8;9047:45;9076:1;9080:2;9084:7;9047:20;:45::i;:::-;-1:-1:-1;;;;;9103:13:8;;;;;;:9;:13;;;;;:18;;9120:1;;9103:13;:18;;9120:1;;9103:18;:::i;:::-;;;;-1:-1:-1;;9131:16:8;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9131:21:8;-1:-1:-1;;;;;9131:21:8;;;;;;;;9168:33;;9131:16;;;9168:33;;9131:16;;9168:33;8836:372;;:::o;1804:71:0:-;1851:15;:17;;;:15;:17;;;:::i;:::-;;;;;;1804:71::o;6409:269:8:-;6522:28;6532:4;6538:2;6542:7;6522:9;:28::i;:::-;6568:48;6591:4;6597:2;6601:7;6610:5;6568:22;:48::i;:::-;6560:111;;;;-1:-1:-1;;;6560:111:8;;;;;;;:::i;271:703:16:-;327:13;544:10;540:51;;-1:-1:-1;;570:10:16;;;;;;;;;;;;-1:-1:-1;;;570:10:16;;;;;271:703::o;540:51::-;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:16;;-1:-1:-1;716:2:16;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:16;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:16;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;845:56:16;;;;;;;;-1:-1:-1;915:11:16;924:2;915:11;;:::i;:::-;;;787:150;;2099:396:5;2206:7;334:98;;;;;;;;;;;;;;;;;315:123;;;;;;;2354:12;;2388:11;;;;2431:24;;;;;2421:35;;;;;;2275:199;;;;;13111:25:20;;;13167:2;13152:18;;13145:34;;;;-1:-1:-1;;;;;13215:32:20;13210:2;13195:18;;13188:60;13279:2;13264:18;;13257:34;13098:3;13083:19;;13065:232;2275:199:5;;;;;;;;;;;;;2248:240;;;;;;2229:259;;2099:396;;;:::o;1884:249:3:-;1980:7;2078:20;1341:15;;;1264:99;2078:20;2049:63;;-1:-1:-1;;;2049:63:3;;;9934:27:20;9977:11;;;9970:27;;;;10013:12;;;10006:28;;;10050:12;;2049:63:3;9924:144:20;2556:542:11;-1:-1:-1;;;;;2725:18:11;;2721:183;;2759:40;2791:7;3907:10;:17;;3880:24;;;;:15;:24;;;;;:44;;;3934:24;;;;;;;;;;;;3804:161;2759:40;2721:183;;;2828:2;-1:-1:-1;;;;;2820:10:11;:4;-1:-1:-1;;;;;2820:10:11;;2816:88;;2846:47;2879:4;2885:7;2846:32;:47::i;:::-;-1:-1:-1;;;;;2917:16:11;;2913:179;;2949:45;2986:7;2949:36;:45::i;2913:179::-;3021:4;-1:-1:-1;;;;;3015:10:11;:2;-1:-1:-1;;;;;3015:10:11;;3011:81;;3041:40;3069:2;3073:7;3041:27;:40::i;1815:316:1:-;1986:124;;9533:66:20;1986:124:1;;;9521:79:20;9616:12;;;9609:28;;;1917:7:1;;9653:12:20;;1986:124:1;9511:160:20;2519:493:1;2643:7;2670:10;:17;2691:2;2670:23;2662:60;;;;-1:-1:-1;;;2662:60:1;;24424:2:20;2662:60:1;;;24406:21:20;24463:2;24443:18;;;24436:30;24502:26;24482:18;;;24475:54;24546:18;;2662:60:1;24396:174:20;2662:60:1;2837:2;2821:19;;;2815:26;2881:2;2865:19;;;2859:26;2933:2;2917:19;;;2911:26;2964:41;;2732:9;2964:41;;;;;;;;;13529:25:20;;;2903:35:1;;13570:18:20;;;13563:45;;;13624:18;;13617:34;;;13667:18;;;13660:34;;;2815:26:1;;2964:41;;13501:19:20;;2964:41:1;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2964:41:1;;-1:-1:-1;;2964:41:1;;;2519:493;-1:-1:-1;;;;;;;2519:493:1:o;8267:247:8:-;8362:18;8368:2;8372:7;8362:5;:18::i;:::-;8398:54;8429:1;8433:2;8437:7;8446:5;8398:22;:54::i;:::-;8390:117;;;;-1:-1:-1;;;8390:117:8;;;;;;;:::i;11462:824::-;11582:4;-1:-1:-1;;;;;11606:13:8;;1078:20:14;1116:8;11602:678:8;;11657:2;-1:-1:-1;;;;;11641:36:8;;11678:12;:10;:12::i;:::-;11692:4;11698:7;11707:5;11641:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11641:72:8;;;;;;;;-1:-1:-1;;11641:72:8;;;;;;;;;;;;:::i;:::-;;;11637:591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11884:13:8;;11880:334;;11926:60;;-1:-1:-1;;;11926:60:8;;;;;;;:::i;11880:334::-;12166:6;12160:13;12151:6;12147:2;12143:15;12136:38;11637:591;-1:-1:-1;;;;;;11763:55:8;-1:-1:-1;;;11763:55:8;;-1:-1:-1;11756:62:8;;11602:678;-1:-1:-1;12265:4:8;11462:824;;;;;;:::o;4582:970:11:-;4844:22;4894:1;4869:22;4886:4;4869:16;:22::i;:::-;:26;;;;:::i;:::-;4905:18;4926:26;;;:17;:26;;;;;;4844:51;;-1:-1:-1;5056:28:11;;;5052:323;;-1:-1:-1;;;;;5122:18:11;;5100:19;5122:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5171:30;;;;;;:44;;;5287:30;;:17;:30;;;;;:43;;;5052:323;-1:-1:-1;5468:26:11;;;;:17;:26;;;;;;;;5461:33;;;-1:-1:-1;;;;;5511:18:11;;;;;:12;:18;;;;;:34;;;;;;;5504:41;4582:970::o;5840:1061::-;6114:10;:17;6089:22;;6114:21;;6134:1;;6114:21;:::i;:::-;6145:18;6166:24;;;:15;:24;;;;;;6534:10;:26;;6089:46;;-1:-1:-1;6166:24:11;;6089:46;;6534:26;;;;;;:::i;:::-;;;;;;;;;6512:48;;6596:11;6571:10;6582;6571:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6675:28;;;:15;:28;;;;;;;:41;;;6844:24;;;;;6837:31;6878:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5911:990;;;5840:1061;:::o;3392:217::-;3476:14;3493:20;3510:2;3493:16;:20::i;:::-;-1:-1:-1;;;;;3523:16:11;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3567:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3392:217:11:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:20;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:20;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:220::-;692:5;745:3;738:4;730:6;726:17;722:27;712:2;;763:1;760;753:12;712:2;785:79;860:3;851:6;838:20;831:4;823:6;819:17;785:79;:::i;875:247::-;934:6;987:2;975:9;966:7;962:23;958:32;955:2;;;1003:1;1000;993:12;955:2;1042:9;1029:23;1061:31;1086:5;1061:31;:::i;1127:388::-;1195:6;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1272:1;1269;1262:12;1224:2;1311:9;1298:23;1330:31;1355:5;1330:31;:::i;:::-;1380:5;-1:-1:-1;1437:2:20;1422:18;;1409:32;1450:33;1409:32;1450:33;:::i;:::-;1502:7;1492:17;;;1214:301;;;;;:::o;1520:456::-;1597:6;1605;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:2;;;1682:1;1679;1672:12;1634:2;1721:9;1708:23;1740:31;1765:5;1740:31;:::i;:::-;1790:5;-1:-1:-1;1847:2:20;1832:18;;1819:32;1860:33;1819:32;1860:33;:::i;:::-;1624:352;;1912:7;;-1:-1:-1;;;1966:2:20;1951:18;;;;1938:32;;1624:352::o;1981:667::-;2076:6;2084;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:2;;;2178:1;2175;2168:12;2129:2;2217:9;2204:23;2236:31;2261:5;2236:31;:::i;:::-;2286:5;-1:-1:-1;2343:2:20;2328:18;;2315:32;2356:33;2315:32;2356:33;:::i;:::-;2408:7;-1:-1:-1;2462:2:20;2447:18;;2434:32;;-1:-1:-1;2518:2:20;2503:18;;2490:32;2531:33;2490:32;2531:33;:::i;:::-;2119:529;;;;-1:-1:-1;2119:529:20;;2637:3;2622:19;2609:33;;2119:529;-1:-1:-1;;2119:529:20:o;2653:665::-;2748:6;2756;2764;2772;2825:3;2813:9;2804:7;2800:23;2796:33;2793:2;;;2842:1;2839;2832:12;2793:2;2881:9;2868:23;2900:31;2925:5;2900:31;:::i;:::-;2950:5;-1:-1:-1;3007:2:20;2992:18;;2979:32;3020:33;2979:32;3020:33;:::i;:::-;3072:7;-1:-1:-1;3126:2:20;3111:18;;3098:32;;-1:-1:-1;3181:2:20;3166:18;;3153:32;3208:18;3197:30;;3194:2;;;3240:1;3237;3230:12;3194:2;3263:49;3304:7;3295:6;3284:9;3280:22;3263:49;:::i;:::-;3253:59;;;2783:535;;;;;;;:::o;3323:382::-;3388:6;3396;3449:2;3437:9;3428:7;3424:23;3420:32;3417:2;;;3465:1;3462;3455:12;3417:2;3504:9;3491:23;3523:31;3548:5;3523:31;:::i;:::-;3573:5;-1:-1:-1;3630:2:20;3615:18;;3602:32;3643:30;3602:32;3643:30;:::i;3710:315::-;3778:6;3786;3839:2;3827:9;3818:7;3814:23;3810:32;3807:2;;;3855:1;3852;3845:12;3807:2;3894:9;3881:23;3913:31;3938:5;3913:31;:::i;:::-;3963:5;4015:2;4000:18;;;;3987:32;;-1:-1:-1;;;3797:228:20:o;4030:758::-;4132:6;4140;4148;4156;4164;4217:3;4205:9;4196:7;4192:23;4188:33;4185:2;;;4234:1;4231;4224:12;4185:2;4273:9;4260:23;4292:31;4317:5;4292:31;:::i;:::-;4342:5;-1:-1:-1;4398:2:20;4383:18;;4370:32;4425:18;4414:30;;4411:2;;;4457:1;4454;4447:12;4411:2;4480:49;4521:7;4512:6;4501:9;4497:22;4480:49;:::i;:::-;4470:59;;;4576:2;4565:9;4561:18;4548:32;4538:42;;4627:2;4616:9;4612:18;4599:32;4589:42;;4683:3;4672:9;4668:19;4655:33;4732:4;4723:7;4719:18;4710:7;4707:31;4697:2;;4752:1;4749;4742:12;4697:2;4775:7;4765:17;;;4175:613;;;;;;;;:::o;5113:245::-;5180:6;5233:2;5221:9;5212:7;5208:23;5204:32;5201:2;;;5249:1;5246;5239:12;5201:2;5281:9;5275:16;5300:28;5322:5;5300:28;:::i;5363:180::-;5422:6;5475:2;5463:9;5454:7;5450:23;5446:32;5443:2;;;5491:1;5488;5481:12;5443:2;-1:-1:-1;5514:23:20;;5433:110;-1:-1:-1;5433:110:20:o;5548:388::-;5625:6;5633;5686:2;5674:9;5665:7;5661:23;5657:32;5654:2;;;5702:1;5699;5692:12;5654:2;5738:9;5725:23;5715:33;;5799:2;5788:9;5784:18;5771:32;5826:18;5818:6;5815:30;5812:2;;;5858:1;5855;5848:12;5812:2;5881:49;5922:7;5913:6;5902:9;5898:22;5881:49;:::i;:::-;5871:59;;;5644:292;;;;;:::o;5941:245::-;5999:6;6052:2;6040:9;6031:7;6027:23;6023:32;6020:2;;;6068:1;6065;6058:12;6020:2;6107:9;6094:23;6126:30;6150:5;6126:30;:::i;6191:249::-;6260:6;6313:2;6301:9;6292:7;6288:23;6284:32;6281:2;;;6329:1;6326;6319:12;6281:2;6361:9;6355:16;6380:30;6404:5;6380:30;:::i;6445:277::-;6541:6;6594:2;6582:9;6573:7;6569:23;6565:32;6562:2;;;6610:1;6607;6600:12;6562:2;6642:9;6636:16;6661:31;6686:5;6661:31;:::i;6727:450::-;6796:6;6849:2;6837:9;6828:7;6824:23;6820:32;6817:2;;;6865:1;6862;6855:12;6817:2;6905:9;6892:23;6938:18;6930:6;6927:30;6924:2;;;6970:1;6967;6960:12;6924:2;6993:22;;7046:4;7038:13;;7034:27;-1:-1:-1;7024:2:20;;7075:1;7072;7065:12;7024:2;7098:73;7163:7;7158:2;7145:16;7140:2;7136;7132:11;7098:73;:::i;7367:184::-;7437:6;7490:2;7478:9;7469:7;7465:23;7461:32;7458:2;;;7506:1;7503;7496:12;7458:2;-1:-1:-1;7529:16:20;;7448:103;-1:-1:-1;7448:103:20:o;7556:257::-;7597:3;7635:5;7629:12;7662:6;7657:3;7650:19;7678:63;7734:6;7727:4;7722:3;7718:14;7711:4;7704:5;7700:16;7678:63;:::i;:::-;7795:2;7774:15;-1:-1:-1;;7770:29:20;7761:39;;;;7802:4;7757:50;;7605:208;-1:-1:-1;;7605:208:20:o;8117:274::-;8246:3;8284:6;8278:13;8300:53;8346:6;8341:3;8334:4;8326:6;8322:17;8300:53;:::i;:::-;8369:16;;;;;8254:137;-1:-1:-1;;8254:137:20:o;8396:415::-;8553:3;8591:6;8585:13;8607:53;8653:6;8648:3;8641:4;8633:6;8629:17;8607:53;:::i;:::-;8729:2;8725:15;;;;-1:-1:-1;;8721:53:20;8682:16;;;;8707:68;;;8802:2;8791:14;;8561:250;-1:-1:-1;;8561:250:20:o;8816:470::-;8995:3;9033:6;9027:13;9049:53;9095:6;9090:3;9083:4;9075:6;9071:17;9049:53;:::i;:::-;9165:13;;9124:16;;;;9187:57;9165:13;9124:16;9221:4;9209:17;;9187:57;:::i;:::-;9260:20;;9003:283;-1:-1:-1;;;;9003:283:20:o;10281:431::-;-1:-1:-1;;;;;10538:15:20;;;10520:34;;10590:15;;10585:2;10570:18;;10563:43;10642:2;10637;10622:18;;10615:30;;;10463:4;;10662:44;;10687:18;;10679:6;10662:44;:::i;:::-;10654:52;10472:240;-1:-1:-1;;;;;10472:240:20:o;11097:488::-;-1:-1:-1;;;;;11366:15:20;;;11348:34;;11418:15;;11413:2;11398:18;;11391:43;11465:2;11450:18;;11443:34;;;11513:3;11508:2;11493:18;;11486:31;;;11291:4;;11534:45;;11559:19;;11551:6;11534:45;:::i;:::-;11526:53;11300:285;-1:-1:-1;;;;;;11300:285:20:o;11869:632::-;12040:2;12092:21;;;12162:13;;12065:18;;;12184:22;;;12011:4;;12040:2;12263:15;;;;12237:2;12222:18;;;12011:4;12306:169;12320:6;12317:1;12314:13;12306:169;;;12381:13;;12369:26;;12450:15;;;;12415:12;;;;12342:1;12335:9;12306:169;;;-1:-1:-1;12492:3:20;;12020:481;-1:-1:-1;;;;;;12020:481:20:o;13705:217::-;13852:2;13841:9;13834:21;13815:4;13872:44;13912:2;13901:9;13897:18;13889:6;13872:44;:::i;15253:414::-;15455:2;15437:21;;;15494:2;15474:18;;;15467:30;15533:34;15528:2;15513:18;;15506:62;-1:-1:-1;;;15599:2:20;15584:18;;15577:48;15657:3;15642:19;;15427:240::o;21816:356::-;22018:2;22000:21;;;22037:18;;;22030:30;22096:34;22091:2;22076:18;;22069:62;22163:2;22148:18;;21990:182::o;23391:413::-;23593:2;23575:21;;;23632:2;23612:18;;;23605:30;23671:34;23666:2;23651:18;;23644:62;-1:-1:-1;;;23737:2:20;23722:18;;23715:47;23794:3;23779:19;;23565:239::o;24757:128::-;24797:3;24828:1;24824:6;24821:1;24818:13;24815:2;;;24834:18;;:::i;:::-;-1:-1:-1;24870:9:20;;24805:80::o;24890:120::-;24930:1;24956;24946:2;;24961:18;;:::i;:::-;-1:-1:-1;24995:9:20;;24936:74::o;25015:125::-;25055:4;25083:1;25080;25077:8;25074:2;;;25088:18;;:::i;:::-;-1:-1:-1;25125:9:20;;25064:76::o;25145:258::-;25217:1;25227:113;25241:6;25238:1;25235:13;25227:113;;;25317:11;;;25311:18;25298:11;;;25291:39;25263:2;25256:10;25227:113;;;25358:6;25355:1;25352:13;25349:2;;;-1:-1:-1;;25393:1:20;25375:16;;25368:27;25198:205::o;25408:380::-;25487:1;25483:12;;;;25530;;;25551:2;;25605:4;25597:6;25593:17;25583:27;;25551:2;25658;25650:6;25647:14;25627:18;25624:38;25621:2;;;25704:10;25699:3;25695:20;25692:1;25685:31;25739:4;25736:1;25729:15;25767:4;25764:1;25757:15;25793:135;25832:3;-1:-1:-1;;25853:17:20;;25850:2;;;25873:18;;:::i;:::-;-1:-1:-1;25920:1:20;25909:13;;25840:88::o;25933:112::-;25965:1;25991;25981:2;;25996:18;;:::i;:::-;-1:-1:-1;26030:9:20;;25971:74::o;26050:127::-;26111:10;26106:3;26102:20;26099:1;26092:31;26142:4;26139:1;26132:15;26166:4;26163:1;26156:15;26182:127;26243:10;26238:3;26234:20;26231:1;26224:31;26274:4;26271:1;26264:15;26298:4;26295:1;26288:15;26314:127;26375:10;26370:3;26366:20;26363:1;26356:31;26406:4;26403:1;26396:15;26430:4;26427:1;26420:15;26446:127;26507:10;26502:3;26498:20;26495:1;26488:31;26538:4;26535:1;26528:15;26562:4;26559:1;26552:15;26578:127;26639:10;26634:3;26630:20;26627:1;26620:31;26670:4;26667:1;26660:15;26694:4;26691:1;26684:15;26710:131;-1:-1:-1;;;;;26785:31:20;;26775:42;;26765:2;;26831:1;26828;26821:12;26846:118;26932:5;26925:13;26918:21;26911:5;26908:32;26898:2;;26954:1;26951;26944:12;26969:131;-1:-1:-1;;;;;;27043:32:20;;27033:43;;27023:2;;27090:1;27087;27080:12

Swarm Source

ipfs://8684d54a22c734896df6299361d52ced1d6d29a3d3f98e0413f94190e5a256b7
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.