ETH Price: $3,155.30 (+0.36%)
Gas: 2 Gwei

Token

TheNerdCollectiveGenesisPFP (TNC)
 

Overview

Max Total Supply

0 TNC

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TNC
0x41eb782baeaa5fdf4b36e16809a23a895167da40
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:
TheNerdCollectiveGenesisPFP

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : TheNerdCollectiveGenesisToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import {MerkleProof} from '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

interface FounderInterface {
  function ownerOf(uint256 tokenId) external view returns (address owner);
}

contract TheNerdCollectiveGenesisPFP is ERC721, Ownable, ReentrancyGuard {

    address public founderAddress = 0xb9Cc3F6cd058Cdf7e9b5E960505aefd1b0195D16;
    FounderInterface founderContract = FounderInterface(founderAddress);
    
    using Counters for Counters.Counter;
    Counters.Counter public _tokenIds;

    string  public _baseTokenURI = "https://tnc-api.vercel.app/api/genesis/";
    uint256 public _status = 0;        
    bool    public _whitelistFixed = true;   
    uint256 public _whitelistWalletLimit = 2; 
    uint256 public _maxTokens = 6283;
    uint256 public _price = 0.088 ether;
    uint256 public _foundersTokens = 628;
    bytes32 public _merkleRoot = 0x424bd10029d1354c2a9b3b63503d61eba99f57a0d8cd5c14fbbc7bc7b236c285;
    
    mapping(address => uint256) private _walletMints;
    mapping(uint256 => bool)    public _founderMints;

    constructor() ERC721("TheNerdCollectiveGenesisPFP", "TNC") {}

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

    function setBaseTokenURI(string memory val) public onlyOwner {
        _baseTokenURI = val;
    }

    function setMerkleRoot(bytes32 val) public onlyOwner {
        _merkleRoot = val;
    }

    function setStatus(uint256 val) public onlyOwner {
        _status = val;
    }

    function setMaxTokens(uint256 val) public onlyOwner {
        _maxTokens = val;
    }

    function setPrice(uint256 val) public onlyOwner {
        _price = val;
    }

    function setWhitelistLimit(uint256 _newLimit) public onlyOwner {
        _whitelistWalletLimit = _newLimit;
    }

    function setWhitelistFixed(bool val) public onlyOwner {
        _whitelistFixed = val;
    }

    function withdraw() public onlyOwner {
        uint256 value = address(this).balance;
        address payable to = payable(msg.sender);
        (bool success, ) = to.call{value: value}("");
        require(success, "Transfer failed.");
    }

    function whitelistMint(uint256 _amount, bytes32[] calldata merkleProof) public payable nonReentrant
    {
        bytes32 node = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(merkleProof, _merkleRoot, node),             "Invalid proof");
        require(msg.value >= _price * _amount,                                  "Insufficient funds");   
        require(_tokenIds.current() + _amount <= (_maxTokens - _foundersTokens),"All tokens have already been minted!");
        require(_status == 1,                                                   "Whitelist Mint paused" );

        if(_whitelistFixed) {
            require(_walletMints[msg.sender] + _amount <= _whitelistWalletLimit, "Exceeds wallet limit");
            _walletMints[msg.sender] += _amount;
        } 

        for(uint256 i; i < _amount; i++){
            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
            _tokenIds.increment();
        }
    }

    function claim(uint256[] calldata _founderTokens) public
    {
        for(uint256 i = 0; i < _founderTokens.length; i++){
            require( _founderMints[_founderTokens[i]] == false,                     'Founder token has already been claimed');
            require(founderContract.ownerOf(_founderTokens[i]) == msg.sender,       'Not the owner of this founders token');
        }

        require(_tokenIds.current() + _founderTokens.length <= _maxTokens,          "All tokens have already been minted!");
        require(_status == 2,                                                       "Claim Mint paused" );
        
        for(uint256 i = 0; i < _founderTokens.length; i++){
            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
            _tokenIds.increment();
            _founderMints[_founderTokens[i]] = true;
        }
    }

    function mint(uint256 _amount) public payable nonReentrant
    {
        require(msg.value >= _price * _amount,                      "Insufficient funds");   
        require(_tokenIds.current() + _amount <= _maxTokens,        "All tokens have already been minted!");
        require(_status == 3,                                       "Mint paused" );
        
        for(uint256 i = 0; i < _amount; i++){
            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
            _tokenIds.increment();
        }
    }

    function ownerMint(address _to, uint256 _amount) public onlyOwner {
        require(_tokenIds.current() + _amount <= _maxTokens,        "All tokens have already been minted!");

        for(uint256 i; i < _amount; i++){
            uint256 newItemId = _tokenIds.current();
            _safeMint( _to, newItemId);
            _tokenIds.increment();
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 11 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_founderMints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_foundersTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenIds","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistFixed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistWalletLimit","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":[{"internalType":"uint256[]","name":"_founderTokens","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"founderAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"val","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"val","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setWhitelistFixed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setWhitelistLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273b9cc3f6cd058cdf7e9b5e960505aefd1b0195d16600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806027815260200162004bef60279139600b9081620000e6919062000561565b506000600c556001600d60006101000a81548160ff0219169083151502179055506002600e5561188b600f55670138a388a43c00006010556102746011557f424bd10029d1354c2a9b3b63503d61eba99f57a0d8cd5c14fbbc7bc7b236c28560001b6012553480156200015857600080fd5b506040518060400160405280601b81526020017f5468654e657264436f6c6c65637469766547656e6573697350465000000000008152506040518060400160405280600381526020017f544e4300000000000000000000000000000000000000000000000000000000008152508160009081620001d6919062000561565b508060019081620001e8919062000561565b5050506200020b620001ff6200021960201b60201c565b6200022160201b60201c565b600160078190555062000648565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036957607f821691505b6020821081036200037f576200037e62000321565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003aa565b620003f58683620003aa565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004426200043c62000436846200040d565b62000417565b6200040d565b9050919050565b6000819050919050565b6200045e8362000421565b620004766200046d8262000449565b848454620003b7565b825550505050565b600090565b6200048d6200047e565b6200049a81848462000453565b505050565b5b81811015620004c257620004b660008262000483565b600181019050620004a0565b5050565b601f8211156200051157620004db8162000385565b620004e6846200039a565b81016020851015620004f6578190505b6200050e62000505856200039a565b8301826200049f565b50505b505050565b600082821c905092915050565b6000620005366000198460080262000516565b1980831691505092915050565b600062000551838362000523565b9150826002028217905092915050565b6200056c82620002e7565b67ffffffffffffffff811115620005885762000587620002f2565b5b62000594825462000350565b620005a1828285620004c6565b600060209050601f831160018114620005d95760008415620005c4578287015190505b620005d0858262000543565b86555062000640565b601f198416620005e98662000385565b60005b828110156200061357848901518255600182019150602085019450602081019050620005ec565b868310156200063357848901516200062f601f89168262000523565b8355505b6001600288020188555050505b505050505050565b61459780620006586000396000f3fe6080604052600436106102305760003560e01c806369ba1a751161012e578063a22cb465116100ab578063d2521ae81161006f578063d2521ae814610808578063d2cab05614610831578063e985e9c51461084d578063ee4da6561461088a578063f2fde38b146108b357610230565b8063a22cb46514610723578063aa46a4001461074c578063b88d4fde14610777578063c87b56dd146107a0578063cfc86f7b146107dd57610230565b80637cb64759116100f25780637cb647591461065f5780638da5cb5b1461068857806391b7f5ed146106b357806395d89b41146106dc578063a0712d681461070757610230565b806369ba1a751461058e5780636ba4c138146105b757806370a08231146105e0578063715018a61461061d5780637b05a8461461063457610230565b80632fc37ab2116101bc578063484b973c11610180578063484b973c146104a7578063487c70fc146104d05780635dd6fc5c146104fb5780636352211e1461052657806365af1d821461056357610230565b80632fc37ab2146103e857806330176e13146104135780633ccfd60b1461043c57806342842e0e1461045357806346bb28331461047c57610230565b8063095ea7b311610203578063095ea7b3146103175780630fb3844c1461034057806311e776fe1461036b578063235b6ea11461039457806323b872dd146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063077088ef1461029d578063081812fc146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612a5d565b6108dc565b6040516102699190612aa5565b60405180910390f35b34801561027e57600080fd5b506102876109be565b6040516102949190612b50565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612ba8565b610a50565b6040516102d19190612aa5565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612ba8565b610a70565b60405161030e9190612c16565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612c5d565b610ab6565b005b34801561034c57600080fd5b50610355610bcd565b6040516103629190612cac565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612ba8565b610bd3565b005b3480156103a057600080fd5b506103a9610be5565b6040516103b69190612cac565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190612cc7565b610beb565b005b3480156103f457600080fd5b506103fd610c4b565b60405161040a9190612d33565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612e83565b610c51565b005b34801561044857600080fd5b50610451610c6c565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612cc7565b610d2f565b005b34801561048857600080fd5b50610491610d4f565b60405161049e9190612c16565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612c5d565b610d75565b005b3480156104dc57600080fd5b506104e5610e1c565b6040516104f29190612cac565b60405180910390f35b34801561050757600080fd5b50610510610e22565b60405161051d9190612aa5565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612ba8565b610e35565b60405161055a9190612c16565b60405180910390f35b34801561056f57600080fd5b50610578610ee6565b6040516105859190612cac565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612ba8565b610eec565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612f2c565b610efe565b005b3480156105ec57600080fd5b5061060760048036038101906106029190612f79565b6111f1565b6040516106149190612cac565b60405180910390f35b34801561062957600080fd5b506106326112a8565b005b34801561064057600080fd5b506106496112bc565b6040516106569190612cac565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612fd2565b6112c2565b005b34801561069457600080fd5b5061069d6112d4565b6040516106aa9190612c16565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190612ba8565b6112fe565b005b3480156106e857600080fd5b506106f1611310565b6040516106fe9190612b50565b60405180910390f35b610721600480360381019061071c9190612ba8565b6113a2565b005b34801561072f57600080fd5b5061074a6004803603810190610745919061302b565b61152a565b005b34801561075857600080fd5b50610761611540565b60405161076e9190612cac565b60405180910390f35b34801561078357600080fd5b5061079e6004803603810190610799919061310c565b61154c565b005b3480156107ac57600080fd5b506107c760048036038101906107c29190612ba8565b6115ae565b6040516107d49190612b50565b60405180910390f35b3480156107e957600080fd5b506107f2611616565b6040516107ff9190612b50565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190612ba8565b6116a4565b005b61084b600480360381019061084691906131e5565b6116b6565b005b34801561085957600080fd5b50610874600480360381019061086f9190613245565b611a01565b6040516108819190612aa5565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190613285565b611a95565b005b3480156108bf57600080fd5b506108da60048036038101906108d59190612f79565b611aba565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b757506109b682611b3d565b5b9050919050565b6060600080546109cd906132e1565b80601f01602080910402602001604051908101604052809291908181526020018280546109f9906132e1565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b5050505050905090565b60146020528060005260406000206000915054906101000a900460ff1681565b6000610a7b82611ba7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac182610e35565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613384565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b50611bf2565b73ffffffffffffffffffffffffffffffffffffffff161480610b7f5750610b7e81610b79611bf2565b611a01565b5b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590613416565b60405180910390fd5b610bc88383611bfa565b505050565b600c5481565b610bdb611cb3565b80600f8190555050565b60105481565b610bfc610bf6611bf2565b82611d31565b610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906134a8565b60405180910390fd5b610c46838383611dc6565b505050565b60125481565b610c59611cb3565b80600b9081610c689190613674565b5050565b610c74611cb3565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610ca490613777565b60006040518083038185875af1925050503d8060008114610ce1576040519150601f19603f3d011682016040523d82523d6000602084013e610ce6565b606091505b5050905080610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906137d8565b60405180910390fd5b505050565b610d4a8383836040518060200160405280600081525061154c565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d7d611cb3565b600f5481610d8b600a61202c565b610d959190613827565b1115610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906138cd565b60405180910390fd5b60005b81811015610e17576000610ded600a61202c565b9050610df9848261203a565b610e03600a612058565b508080610e0f906138ed565b915050610dd9565b505050565b600f5481565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490613981565b60405180910390fd5b80915050919050565b600e5481565b610ef4611cb3565b80600c8190555050565b60005b828290508110156110c1576000151560146000858585818110610f2757610f266139a1565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16151514610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390613a42565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858585818110610ff457610ff36139a1565b5b905060200201356040518263ffffffff1660e01b81526004016110179190612cac565b602060405180830381865afa158015611034573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110589190613a77565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613b16565b60405180910390fd5b80806110b9906138ed565b915050610f01565b50600f54828290506110d3600a61202c565b6110dd9190613827565b111561111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906138cd565b60405180910390fd5b6002600c5414611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613b82565b60405180910390fd5b60005b828290508110156111ec57600061117d600a61202c565b9050611189338261203a565b611193600a612058565b6001601460008686868181106111ac576111ab6139a1565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806111e4906138ed565b915050611166565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613c14565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112b0611cb3565b6112ba600061206e565b565b60115481565b6112ca611cb3565b8060128190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611306611cb3565b8060108190555050565b60606001805461131f906132e1565b80601f016020809104026020016040519081016040528092919081815260200182805461134b906132e1565b80156113985780601f1061136d57610100808354040283529160200191611398565b820191906000526020600020905b81548152906001019060200180831161137b57829003601f168201915b5050505050905090565b6002600754036113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90613c80565b60405180910390fd5b6002600781905550806010546113fd9190613ca0565b34101561143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613d2e565b60405180910390fd5b600f548161144d600a61202c565b6114579190613827565b1115611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906138cd565b60405180910390fd5b6003600c54146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613d9a565b60405180910390fd5b60005b8181101561151e5760006114f4600a61202c565b9050611500338261203a565b61150a600a612058565b508080611516906138ed565b9150506114e0565b50600160078190555050565b61153c611535611bf2565b8383612134565b5050565b600a8060000154905081565b61155d611557611bf2565b83611d31565b61159c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611593906134a8565b60405180910390fd5b6115a8848484846122a0565b50505050565b60606115b982611ba7565b60006115c36122fc565b905060008151116115e3576040518060200160405280600081525061160e565b806115ed8461238e565b6040516020016115fe929190613df6565b6040516020818303038152906040525b915050919050565b600b8054611623906132e1565b80601f016020809104026020016040519081016040528092919081815260200182805461164f906132e1565b801561169c5780601f106116715761010080835404028352916020019161169c565b820191906000526020600020905b81548152906001019060200180831161167f57829003601f168201915b505050505081565b6116ac611cb3565b80600e8190555050565b6002600754036116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613c80565b60405180910390fd5b60026007819055506000336040516020016117169190613e62565b60405160208183030381529060405280519060200120905061177c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254836124ee565b6117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290613ec9565b60405180910390fd5b836010546117c99190613ca0565b34101561180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290613d2e565b60405180910390fd5b601154600f5461181b9190613ee9565b84611826600a61202c565b6118309190613827565b1115611871576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611868906138cd565b60405180910390fd5b6001600c54146118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90613f69565b60405180910390fd5b600d60009054906101000a900460ff16156119b157600e5484601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199190613827565b111561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613fd5565b60405180910390fd5b83601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119a99190613827565b925050819055505b60005b848110156119f25760006119c8600a61202c565b90506119d4338261203a565b6119de600a612058565b5080806119ea906138ed565b9150506119b4565b50506001600781905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a9d611cb3565b80600d60006101000a81548160ff02191690831515021790555050565b611ac2611cb3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890614067565b60405180910390fd5b611b3a8161206e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611bb081612505565b611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690613981565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6d83610e35565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611cbb611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611cd96112d4565b73ffffffffffffffffffffffffffffffffffffffff1614611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906140d3565b60405180910390fd5b565b600080611d3d83610e35565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7f5750611d7e8185611a01565b5b80611dbd57508373ffffffffffffffffffffffffffffffffffffffff16611da584610a70565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611de682610e35565b73ffffffffffffffffffffffffffffffffffffffff1614611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390614165565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea2906141f7565b60405180910390fd5b611eb6838383612571565b611ec1600082611bfa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f119190613ee9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f689190613827565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612027838383612576565b505050565b600081600001549050919050565b61205482826040518060200160405280600081525061257b565b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219990614263565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122939190612aa5565b60405180910390a3505050565b6122ab848484611dc6565b6122b7848484846125d6565b6122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed906142f5565b60405180910390fd5b50505050565b6060600b805461230b906132e1565b80601f0160208091040260200160405190810160405280929190818152602001828054612337906132e1565b80156123845780601f1061235957610100808354040283529160200191612384565b820191906000526020600020905b81548152906001019060200180831161236757829003601f168201915b5050505050905090565b6060600082036123d5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124e9565b600082905060005b600082146124075780806123f0906138ed565b915050600a826124009190614344565b91506123dd565b60008167ffffffffffffffff81111561242357612422612d58565b5b6040519080825280601f01601f1916602001820160405280156124555781602001600182028036833780820191505090505b5090505b600085146124e25760018261246e9190613ee9565b9150600a8561247d9190614375565b60306124899190613827565b60f81b81838151811061249f5761249e6139a1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124db9190614344565b9450612459565b8093505050505b919050565b6000826124fb858461275d565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61258583836127b3565b61259260008484846125d6565b6125d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c8906142f5565b60405180910390fd5b505050565b60006125f78473ffffffffffffffffffffffffffffffffffffffff1661298c565b15612750578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612620611bf2565b8786866040518563ffffffff1660e01b815260040161264294939291906143fb565b6020604051808303816000875af192505050801561267e57506040513d601f19601f8201168201806040525081019061267b919061445c565b60015b612700573d80600081146126ae576040519150601f19603f3d011682016040523d82523d6000602084013e6126b3565b606091505b5060008151036126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906142f5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612755565b600190505b949350505050565b60008082905060005b84518110156127a85761279382868381518110612786576127856139a1565b5b60200260200101516129af565b915080806127a0906138ed565b915050612766565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612819906144d5565b60405180910390fd5b61282b81612505565b1561286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286290614541565b60405180910390fd5b61287760008383612571565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c79190613827565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461298860008383612576565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106129c7576129c282846129da565b6129d2565b6129d183836129da565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3a81612a05565b8114612a4557600080fd5b50565b600081359050612a5781612a31565b92915050565b600060208284031215612a7357612a726129fb565b5b6000612a8184828501612a48565b91505092915050565b60008115159050919050565b612a9f81612a8a565b82525050565b6000602082019050612aba6000830184612a96565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612afa578082015181840152602081019050612adf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b2282612ac0565b612b2c8185612acb565b9350612b3c818560208601612adc565b612b4581612b06565b840191505092915050565b60006020820190508181036000830152612b6a8184612b17565b905092915050565b6000819050919050565b612b8581612b72565b8114612b9057600080fd5b50565b600081359050612ba281612b7c565b92915050565b600060208284031215612bbe57612bbd6129fb565b5b6000612bcc84828501612b93565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c0082612bd5565b9050919050565b612c1081612bf5565b82525050565b6000602082019050612c2b6000830184612c07565b92915050565b612c3a81612bf5565b8114612c4557600080fd5b50565b600081359050612c5781612c31565b92915050565b60008060408385031215612c7457612c736129fb565b5b6000612c8285828601612c48565b9250506020612c9385828601612b93565b9150509250929050565b612ca681612b72565b82525050565b6000602082019050612cc16000830184612c9d565b92915050565b600080600060608486031215612ce057612cdf6129fb565b5b6000612cee86828701612c48565b9350506020612cff86828701612c48565b9250506040612d1086828701612b93565b9150509250925092565b6000819050919050565b612d2d81612d1a565b82525050565b6000602082019050612d486000830184612d24565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9082612b06565b810181811067ffffffffffffffff82111715612daf57612dae612d58565b5b80604052505050565b6000612dc26129f1565b9050612dce8282612d87565b919050565b600067ffffffffffffffff821115612dee57612ded612d58565b5b612df782612b06565b9050602081019050919050565b82818337600083830152505050565b6000612e26612e2184612dd3565b612db8565b905082815260208101848484011115612e4257612e41612d53565b5b612e4d848285612e04565b509392505050565b600082601f830112612e6a57612e69612d4e565b5b8135612e7a848260208601612e13565b91505092915050565b600060208284031215612e9957612e986129fb565b5b600082013567ffffffffffffffff811115612eb757612eb6612a00565b5b612ec384828501612e55565b91505092915050565b600080fd5b600080fd5b60008083601f840112612eec57612eeb612d4e565b5b8235905067ffffffffffffffff811115612f0957612f08612ecc565b5b602083019150836020820283011115612f2557612f24612ed1565b5b9250929050565b60008060208385031215612f4357612f426129fb565b5b600083013567ffffffffffffffff811115612f6157612f60612a00565b5b612f6d85828601612ed6565b92509250509250929050565b600060208284031215612f8f57612f8e6129fb565b5b6000612f9d84828501612c48565b91505092915050565b612faf81612d1a565b8114612fba57600080fd5b50565b600081359050612fcc81612fa6565b92915050565b600060208284031215612fe857612fe76129fb565b5b6000612ff684828501612fbd565b91505092915050565b61300881612a8a565b811461301357600080fd5b50565b60008135905061302581612fff565b92915050565b60008060408385031215613042576130416129fb565b5b600061305085828601612c48565b925050602061306185828601613016565b9150509250929050565b600067ffffffffffffffff82111561308657613085612d58565b5b61308f82612b06565b9050602081019050919050565b60006130af6130aa8461306b565b612db8565b9050828152602081018484840111156130cb576130ca612d53565b5b6130d6848285612e04565b509392505050565b600082601f8301126130f3576130f2612d4e565b5b813561310384826020860161309c565b91505092915050565b60008060008060808587031215613126576131256129fb565b5b600061313487828801612c48565b945050602061314587828801612c48565b935050604061315687828801612b93565b925050606085013567ffffffffffffffff81111561317757613176612a00565b5b613183878288016130de565b91505092959194509250565b60008083601f8401126131a5576131a4612d4e565b5b8235905067ffffffffffffffff8111156131c2576131c1612ecc565b5b6020830191508360208202830111156131de576131dd612ed1565b5b9250929050565b6000806000604084860312156131fe576131fd6129fb565b5b600061320c86828701612b93565b935050602084013567ffffffffffffffff81111561322d5761322c612a00565b5b6132398682870161318f565b92509250509250925092565b6000806040838503121561325c5761325b6129fb565b5b600061326a85828601612c48565b925050602061327b85828601612c48565b9150509250929050565b60006020828403121561329b5761329a6129fb565b5b60006132a984828501613016565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132f957607f821691505b60208210810361330c5761330b6132b2565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061336e602183612acb565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613400603e83612acb565b915061340b826133a4565b604082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613492602e83612acb565b915061349d82613436565b604082019050919050565b600060208201905081810360008301526134c181613485565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261352a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134ed565b61353486836134ed565b95508019841693508086168417925050509392505050565b6000819050919050565b600061357161356c61356784612b72565b61354c565b612b72565b9050919050565b6000819050919050565b61358b83613556565b61359f61359782613578565b8484546134fa565b825550505050565b600090565b6135b46135a7565b6135bf818484613582565b505050565b5b818110156135e3576135d86000826135ac565b6001810190506135c5565b5050565b601f821115613628576135f9816134c8565b613602846134dd565b81016020851015613611578190505b61362561361d856134dd565b8301826135c4565b50505b505050565b600082821c905092915050565b600061364b6000198460080261362d565b1980831691505092915050565b6000613664838361363a565b9150826002028217905092915050565b61367d82612ac0565b67ffffffffffffffff81111561369657613695612d58565b5b6136a082546132e1565b6136ab8282856135e7565b600060209050601f8311600181146136de57600084156136cc578287015190505b6136d68582613658565b86555061373e565b601f1984166136ec866134c8565b60005b82811015613714578489015182556001820191506020850194506020810190506136ef565b86831015613731578489015161372d601f89168261363a565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b6000613761600083613746565b915061376c82613751565b600082019050919050565b600061378282613754565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006137c2601083612acb565b91506137cd8261378c565b602082019050919050565b600060208201905081810360008301526137f1816137b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061383282612b72565b915061383d83612b72565b9250828201905080821115613855576138546137f8565b5b92915050565b7f416c6c20746f6b656e73206861766520616c7265616479206265656e206d696e60008201527f7465642100000000000000000000000000000000000000000000000000000000602082015250565b60006138b7602483612acb565b91506138c28261385b565b604082019050919050565b600060208201905081810360008301526138e6816138aa565b9050919050565b60006138f882612b72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361392a576139296137f8565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061396b601883612acb565b915061397682613935565b602082019050919050565b6000602082019050818103600083015261399a8161395e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f466f756e64657220746f6b656e2068617320616c7265616479206265656e206360008201527f6c61696d65640000000000000000000000000000000000000000000000000000602082015250565b6000613a2c602683612acb565b9150613a37826139d0565b604082019050919050565b60006020820190508181036000830152613a5b81613a1f565b9050919050565b600081519050613a7181612c31565b92915050565b600060208284031215613a8d57613a8c6129fb565b5b6000613a9b84828501613a62565b91505092915050565b7f4e6f7420746865206f776e6572206f66207468697320666f756e64657273207460008201527f6f6b656e00000000000000000000000000000000000000000000000000000000602082015250565b6000613b00602483612acb565b9150613b0b82613aa4565b604082019050919050565b60006020820190508181036000830152613b2f81613af3565b9050919050565b7f436c61696d204d696e7420706175736564000000000000000000000000000000600082015250565b6000613b6c601183612acb565b9150613b7782613b36565b602082019050919050565b60006020820190508181036000830152613b9b81613b5f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613bfe602983612acb565b9150613c0982613ba2565b604082019050919050565b60006020820190508181036000830152613c2d81613bf1565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613c6a601f83612acb565b9150613c7582613c34565b602082019050919050565b60006020820190508181036000830152613c9981613c5d565b9050919050565b6000613cab82612b72565b9150613cb683612b72565b9250828202613cc481612b72565b91508282048414831517613cdb57613cda6137f8565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613d18601283612acb565b9150613d2382613ce2565b602082019050919050565b60006020820190508181036000830152613d4781613d0b565b9050919050565b7f4d696e7420706175736564000000000000000000000000000000000000000000600082015250565b6000613d84600b83612acb565b9150613d8f82613d4e565b602082019050919050565b60006020820190508181036000830152613db381613d77565b9050919050565b600081905092915050565b6000613dd082612ac0565b613dda8185613dba565b9350613dea818560208601612adc565b80840191505092915050565b6000613e028285613dc5565b9150613e0e8284613dc5565b91508190509392505050565b60008160601b9050919050565b6000613e3282613e1a565b9050919050565b6000613e4482613e27565b9050919050565b613e5c613e5782612bf5565b613e39565b82525050565b6000613e6e8284613e4b565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000613eb3600d83612acb565b9150613ebe82613e7d565b602082019050919050565b60006020820190508181036000830152613ee281613ea6565b9050919050565b6000613ef482612b72565b9150613eff83612b72565b9250828203905081811115613f1757613f166137f8565b5b92915050565b7f57686974656c697374204d696e74207061757365640000000000000000000000600082015250565b6000613f53601583612acb565b9150613f5e82613f1d565b602082019050919050565b60006020820190508181036000830152613f8281613f46565b9050919050565b7f457863656564732077616c6c6574206c696d6974000000000000000000000000600082015250565b6000613fbf601483612acb565b9150613fca82613f89565b602082019050919050565b60006020820190508181036000830152613fee81613fb2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614051602683612acb565b915061405c82613ff5565b604082019050919050565b6000602082019050818103600083015261408081614044565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140bd602083612acb565b91506140c882614087565b602082019050919050565b600060208201905081810360008301526140ec816140b0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061414f602583612acb565b915061415a826140f3565b604082019050919050565b6000602082019050818103600083015261417e81614142565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141e1602483612acb565b91506141ec82614185565b604082019050919050565b60006020820190508181036000830152614210816141d4565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061424d601983612acb565b915061425882614217565b602082019050919050565b6000602082019050818103600083015261427c81614240565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006142df603283612acb565b91506142ea82614283565b604082019050919050565b6000602082019050818103600083015261430e816142d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434f82612b72565b915061435a83612b72565b92508261436a57614369614315565b5b828204905092915050565b600061438082612b72565b915061438b83612b72565b92508261439b5761439a614315565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006143cd826143a6565b6143d781856143b1565b93506143e7818560208601612adc565b6143f081612b06565b840191505092915050565b60006080820190506144106000830187612c07565b61441d6020830186612c07565b61442a6040830185612c9d565b818103606083015261443c81846143c2565b905095945050505050565b60008151905061445681612a31565b92915050565b600060208284031215614472576144716129fb565b5b600061448084828501614447565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006144bf602083612acb565b91506144ca82614489565b602082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061452b601c83612acb565b9150614536826144f5565b602082019050919050565b6000602082019050818103600083015261455a8161451e565b905091905056fea2646970667358221220f9291b628d7525fe3ffed4825e9eb01fd9c9471511314a566acc637793901aee64736f6c6343000811003368747470733a2f2f746e632d6170692e76657263656c2e6170702f6170692f67656e657369732f

Deployed Bytecode

0x6080604052600436106102305760003560e01c806369ba1a751161012e578063a22cb465116100ab578063d2521ae81161006f578063d2521ae814610808578063d2cab05614610831578063e985e9c51461084d578063ee4da6561461088a578063f2fde38b146108b357610230565b8063a22cb46514610723578063aa46a4001461074c578063b88d4fde14610777578063c87b56dd146107a0578063cfc86f7b146107dd57610230565b80637cb64759116100f25780637cb647591461065f5780638da5cb5b1461068857806391b7f5ed146106b357806395d89b41146106dc578063a0712d681461070757610230565b806369ba1a751461058e5780636ba4c138146105b757806370a08231146105e0578063715018a61461061d5780637b05a8461461063457610230565b80632fc37ab2116101bc578063484b973c11610180578063484b973c146104a7578063487c70fc146104d05780635dd6fc5c146104fb5780636352211e1461052657806365af1d821461056357610230565b80632fc37ab2146103e857806330176e13146104135780633ccfd60b1461043c57806342842e0e1461045357806346bb28331461047c57610230565b8063095ea7b311610203578063095ea7b3146103175780630fb3844c1461034057806311e776fe1461036b578063235b6ea11461039457806323b872dd146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063077088ef1461029d578063081812fc146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612a5d565b6108dc565b6040516102699190612aa5565b60405180910390f35b34801561027e57600080fd5b506102876109be565b6040516102949190612b50565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612ba8565b610a50565b6040516102d19190612aa5565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612ba8565b610a70565b60405161030e9190612c16565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612c5d565b610ab6565b005b34801561034c57600080fd5b50610355610bcd565b6040516103629190612cac565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612ba8565b610bd3565b005b3480156103a057600080fd5b506103a9610be5565b6040516103b69190612cac565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190612cc7565b610beb565b005b3480156103f457600080fd5b506103fd610c4b565b60405161040a9190612d33565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612e83565b610c51565b005b34801561044857600080fd5b50610451610c6c565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612cc7565b610d2f565b005b34801561048857600080fd5b50610491610d4f565b60405161049e9190612c16565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612c5d565b610d75565b005b3480156104dc57600080fd5b506104e5610e1c565b6040516104f29190612cac565b60405180910390f35b34801561050757600080fd5b50610510610e22565b60405161051d9190612aa5565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612ba8565b610e35565b60405161055a9190612c16565b60405180910390f35b34801561056f57600080fd5b50610578610ee6565b6040516105859190612cac565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612ba8565b610eec565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612f2c565b610efe565b005b3480156105ec57600080fd5b5061060760048036038101906106029190612f79565b6111f1565b6040516106149190612cac565b60405180910390f35b34801561062957600080fd5b506106326112a8565b005b34801561064057600080fd5b506106496112bc565b6040516106569190612cac565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612fd2565b6112c2565b005b34801561069457600080fd5b5061069d6112d4565b6040516106aa9190612c16565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190612ba8565b6112fe565b005b3480156106e857600080fd5b506106f1611310565b6040516106fe9190612b50565b60405180910390f35b610721600480360381019061071c9190612ba8565b6113a2565b005b34801561072f57600080fd5b5061074a6004803603810190610745919061302b565b61152a565b005b34801561075857600080fd5b50610761611540565b60405161076e9190612cac565b60405180910390f35b34801561078357600080fd5b5061079e6004803603810190610799919061310c565b61154c565b005b3480156107ac57600080fd5b506107c760048036038101906107c29190612ba8565b6115ae565b6040516107d49190612b50565b60405180910390f35b3480156107e957600080fd5b506107f2611616565b6040516107ff9190612b50565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190612ba8565b6116a4565b005b61084b600480360381019061084691906131e5565b6116b6565b005b34801561085957600080fd5b50610874600480360381019061086f9190613245565b611a01565b6040516108819190612aa5565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190613285565b611a95565b005b3480156108bf57600080fd5b506108da60048036038101906108d59190612f79565b611aba565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b757506109b682611b3d565b5b9050919050565b6060600080546109cd906132e1565b80601f01602080910402602001604051908101604052809291908181526020018280546109f9906132e1565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b5050505050905090565b60146020528060005260406000206000915054906101000a900460ff1681565b6000610a7b82611ba7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac182610e35565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613384565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b50611bf2565b73ffffffffffffffffffffffffffffffffffffffff161480610b7f5750610b7e81610b79611bf2565b611a01565b5b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590613416565b60405180910390fd5b610bc88383611bfa565b505050565b600c5481565b610bdb611cb3565b80600f8190555050565b60105481565b610bfc610bf6611bf2565b82611d31565b610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906134a8565b60405180910390fd5b610c46838383611dc6565b505050565b60125481565b610c59611cb3565b80600b9081610c689190613674565b5050565b610c74611cb3565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610ca490613777565b60006040518083038185875af1925050503d8060008114610ce1576040519150601f19603f3d011682016040523d82523d6000602084013e610ce6565b606091505b5050905080610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906137d8565b60405180910390fd5b505050565b610d4a8383836040518060200160405280600081525061154c565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d7d611cb3565b600f5481610d8b600a61202c565b610d959190613827565b1115610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906138cd565b60405180910390fd5b60005b81811015610e17576000610ded600a61202c565b9050610df9848261203a565b610e03600a612058565b508080610e0f906138ed565b915050610dd9565b505050565b600f5481565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490613981565b60405180910390fd5b80915050919050565b600e5481565b610ef4611cb3565b80600c8190555050565b60005b828290508110156110c1576000151560146000858585818110610f2757610f266139a1565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16151514610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390613a42565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858585818110610ff457610ff36139a1565b5b905060200201356040518263ffffffff1660e01b81526004016110179190612cac565b602060405180830381865afa158015611034573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110589190613a77565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613b16565b60405180910390fd5b80806110b9906138ed565b915050610f01565b50600f54828290506110d3600a61202c565b6110dd9190613827565b111561111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906138cd565b60405180910390fd5b6002600c5414611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613b82565b60405180910390fd5b60005b828290508110156111ec57600061117d600a61202c565b9050611189338261203a565b611193600a612058565b6001601460008686868181106111ac576111ab6139a1565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806111e4906138ed565b915050611166565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613c14565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112b0611cb3565b6112ba600061206e565b565b60115481565b6112ca611cb3565b8060128190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611306611cb3565b8060108190555050565b60606001805461131f906132e1565b80601f016020809104026020016040519081016040528092919081815260200182805461134b906132e1565b80156113985780601f1061136d57610100808354040283529160200191611398565b820191906000526020600020905b81548152906001019060200180831161137b57829003601f168201915b5050505050905090565b6002600754036113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90613c80565b60405180910390fd5b6002600781905550806010546113fd9190613ca0565b34101561143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613d2e565b60405180910390fd5b600f548161144d600a61202c565b6114579190613827565b1115611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906138cd565b60405180910390fd5b6003600c54146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613d9a565b60405180910390fd5b60005b8181101561151e5760006114f4600a61202c565b9050611500338261203a565b61150a600a612058565b508080611516906138ed565b9150506114e0565b50600160078190555050565b61153c611535611bf2565b8383612134565b5050565b600a8060000154905081565b61155d611557611bf2565b83611d31565b61159c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611593906134a8565b60405180910390fd5b6115a8848484846122a0565b50505050565b60606115b982611ba7565b60006115c36122fc565b905060008151116115e3576040518060200160405280600081525061160e565b806115ed8461238e565b6040516020016115fe929190613df6565b6040516020818303038152906040525b915050919050565b600b8054611623906132e1565b80601f016020809104026020016040519081016040528092919081815260200182805461164f906132e1565b801561169c5780601f106116715761010080835404028352916020019161169c565b820191906000526020600020905b81548152906001019060200180831161167f57829003601f168201915b505050505081565b6116ac611cb3565b80600e8190555050565b6002600754036116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613c80565b60405180910390fd5b60026007819055506000336040516020016117169190613e62565b60405160208183030381529060405280519060200120905061177c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254836124ee565b6117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290613ec9565b60405180910390fd5b836010546117c99190613ca0565b34101561180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290613d2e565b60405180910390fd5b601154600f5461181b9190613ee9565b84611826600a61202c565b6118309190613827565b1115611871576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611868906138cd565b60405180910390fd5b6001600c54146118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90613f69565b60405180910390fd5b600d60009054906101000a900460ff16156119b157600e5484601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199190613827565b111561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613fd5565b60405180910390fd5b83601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119a99190613827565b925050819055505b60005b848110156119f25760006119c8600a61202c565b90506119d4338261203a565b6119de600a612058565b5080806119ea906138ed565b9150506119b4565b50506001600781905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a9d611cb3565b80600d60006101000a81548160ff02191690831515021790555050565b611ac2611cb3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890614067565b60405180910390fd5b611b3a8161206e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611bb081612505565b611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690613981565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6d83610e35565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611cbb611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611cd96112d4565b73ffffffffffffffffffffffffffffffffffffffff1614611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906140d3565b60405180910390fd5b565b600080611d3d83610e35565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7f5750611d7e8185611a01565b5b80611dbd57508373ffffffffffffffffffffffffffffffffffffffff16611da584610a70565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611de682610e35565b73ffffffffffffffffffffffffffffffffffffffff1614611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390614165565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea2906141f7565b60405180910390fd5b611eb6838383612571565b611ec1600082611bfa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f119190613ee9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f689190613827565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612027838383612576565b505050565b600081600001549050919050565b61205482826040518060200160405280600081525061257b565b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219990614263565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122939190612aa5565b60405180910390a3505050565b6122ab848484611dc6565b6122b7848484846125d6565b6122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed906142f5565b60405180910390fd5b50505050565b6060600b805461230b906132e1565b80601f0160208091040260200160405190810160405280929190818152602001828054612337906132e1565b80156123845780601f1061235957610100808354040283529160200191612384565b820191906000526020600020905b81548152906001019060200180831161236757829003601f168201915b5050505050905090565b6060600082036123d5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124e9565b600082905060005b600082146124075780806123f0906138ed565b915050600a826124009190614344565b91506123dd565b60008167ffffffffffffffff81111561242357612422612d58565b5b6040519080825280601f01601f1916602001820160405280156124555781602001600182028036833780820191505090505b5090505b600085146124e25760018261246e9190613ee9565b9150600a8561247d9190614375565b60306124899190613827565b60f81b81838151811061249f5761249e6139a1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124db9190614344565b9450612459565b8093505050505b919050565b6000826124fb858461275d565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61258583836127b3565b61259260008484846125d6565b6125d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c8906142f5565b60405180910390fd5b505050565b60006125f78473ffffffffffffffffffffffffffffffffffffffff1661298c565b15612750578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612620611bf2565b8786866040518563ffffffff1660e01b815260040161264294939291906143fb565b6020604051808303816000875af192505050801561267e57506040513d601f19601f8201168201806040525081019061267b919061445c565b60015b612700573d80600081146126ae576040519150601f19603f3d011682016040523d82523d6000602084013e6126b3565b606091505b5060008151036126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906142f5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612755565b600190505b949350505050565b60008082905060005b84518110156127a85761279382868381518110612786576127856139a1565b5b60200260200101516129af565b915080806127a0906138ed565b915050612766565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612819906144d5565b60405180910390fd5b61282b81612505565b1561286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286290614541565b60405180910390fd5b61287760008383612571565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c79190613827565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461298860008383612576565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106129c7576129c282846129da565b6129d2565b6129d183836129da565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3a81612a05565b8114612a4557600080fd5b50565b600081359050612a5781612a31565b92915050565b600060208284031215612a7357612a726129fb565b5b6000612a8184828501612a48565b91505092915050565b60008115159050919050565b612a9f81612a8a565b82525050565b6000602082019050612aba6000830184612a96565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612afa578082015181840152602081019050612adf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b2282612ac0565b612b2c8185612acb565b9350612b3c818560208601612adc565b612b4581612b06565b840191505092915050565b60006020820190508181036000830152612b6a8184612b17565b905092915050565b6000819050919050565b612b8581612b72565b8114612b9057600080fd5b50565b600081359050612ba281612b7c565b92915050565b600060208284031215612bbe57612bbd6129fb565b5b6000612bcc84828501612b93565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c0082612bd5565b9050919050565b612c1081612bf5565b82525050565b6000602082019050612c2b6000830184612c07565b92915050565b612c3a81612bf5565b8114612c4557600080fd5b50565b600081359050612c5781612c31565b92915050565b60008060408385031215612c7457612c736129fb565b5b6000612c8285828601612c48565b9250506020612c9385828601612b93565b9150509250929050565b612ca681612b72565b82525050565b6000602082019050612cc16000830184612c9d565b92915050565b600080600060608486031215612ce057612cdf6129fb565b5b6000612cee86828701612c48565b9350506020612cff86828701612c48565b9250506040612d1086828701612b93565b9150509250925092565b6000819050919050565b612d2d81612d1a565b82525050565b6000602082019050612d486000830184612d24565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9082612b06565b810181811067ffffffffffffffff82111715612daf57612dae612d58565b5b80604052505050565b6000612dc26129f1565b9050612dce8282612d87565b919050565b600067ffffffffffffffff821115612dee57612ded612d58565b5b612df782612b06565b9050602081019050919050565b82818337600083830152505050565b6000612e26612e2184612dd3565b612db8565b905082815260208101848484011115612e4257612e41612d53565b5b612e4d848285612e04565b509392505050565b600082601f830112612e6a57612e69612d4e565b5b8135612e7a848260208601612e13565b91505092915050565b600060208284031215612e9957612e986129fb565b5b600082013567ffffffffffffffff811115612eb757612eb6612a00565b5b612ec384828501612e55565b91505092915050565b600080fd5b600080fd5b60008083601f840112612eec57612eeb612d4e565b5b8235905067ffffffffffffffff811115612f0957612f08612ecc565b5b602083019150836020820283011115612f2557612f24612ed1565b5b9250929050565b60008060208385031215612f4357612f426129fb565b5b600083013567ffffffffffffffff811115612f6157612f60612a00565b5b612f6d85828601612ed6565b92509250509250929050565b600060208284031215612f8f57612f8e6129fb565b5b6000612f9d84828501612c48565b91505092915050565b612faf81612d1a565b8114612fba57600080fd5b50565b600081359050612fcc81612fa6565b92915050565b600060208284031215612fe857612fe76129fb565b5b6000612ff684828501612fbd565b91505092915050565b61300881612a8a565b811461301357600080fd5b50565b60008135905061302581612fff565b92915050565b60008060408385031215613042576130416129fb565b5b600061305085828601612c48565b925050602061306185828601613016565b9150509250929050565b600067ffffffffffffffff82111561308657613085612d58565b5b61308f82612b06565b9050602081019050919050565b60006130af6130aa8461306b565b612db8565b9050828152602081018484840111156130cb576130ca612d53565b5b6130d6848285612e04565b509392505050565b600082601f8301126130f3576130f2612d4e565b5b813561310384826020860161309c565b91505092915050565b60008060008060808587031215613126576131256129fb565b5b600061313487828801612c48565b945050602061314587828801612c48565b935050604061315687828801612b93565b925050606085013567ffffffffffffffff81111561317757613176612a00565b5b613183878288016130de565b91505092959194509250565b60008083601f8401126131a5576131a4612d4e565b5b8235905067ffffffffffffffff8111156131c2576131c1612ecc565b5b6020830191508360208202830111156131de576131dd612ed1565b5b9250929050565b6000806000604084860312156131fe576131fd6129fb565b5b600061320c86828701612b93565b935050602084013567ffffffffffffffff81111561322d5761322c612a00565b5b6132398682870161318f565b92509250509250925092565b6000806040838503121561325c5761325b6129fb565b5b600061326a85828601612c48565b925050602061327b85828601612c48565b9150509250929050565b60006020828403121561329b5761329a6129fb565b5b60006132a984828501613016565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132f957607f821691505b60208210810361330c5761330b6132b2565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061336e602183612acb565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613400603e83612acb565b915061340b826133a4565b604082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613492602e83612acb565b915061349d82613436565b604082019050919050565b600060208201905081810360008301526134c181613485565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261352a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134ed565b61353486836134ed565b95508019841693508086168417925050509392505050565b6000819050919050565b600061357161356c61356784612b72565b61354c565b612b72565b9050919050565b6000819050919050565b61358b83613556565b61359f61359782613578565b8484546134fa565b825550505050565b600090565b6135b46135a7565b6135bf818484613582565b505050565b5b818110156135e3576135d86000826135ac565b6001810190506135c5565b5050565b601f821115613628576135f9816134c8565b613602846134dd565b81016020851015613611578190505b61362561361d856134dd565b8301826135c4565b50505b505050565b600082821c905092915050565b600061364b6000198460080261362d565b1980831691505092915050565b6000613664838361363a565b9150826002028217905092915050565b61367d82612ac0565b67ffffffffffffffff81111561369657613695612d58565b5b6136a082546132e1565b6136ab8282856135e7565b600060209050601f8311600181146136de57600084156136cc578287015190505b6136d68582613658565b86555061373e565b601f1984166136ec866134c8565b60005b82811015613714578489015182556001820191506020850194506020810190506136ef565b86831015613731578489015161372d601f89168261363a565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b6000613761600083613746565b915061376c82613751565b600082019050919050565b600061378282613754565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006137c2601083612acb565b91506137cd8261378c565b602082019050919050565b600060208201905081810360008301526137f1816137b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061383282612b72565b915061383d83612b72565b9250828201905080821115613855576138546137f8565b5b92915050565b7f416c6c20746f6b656e73206861766520616c7265616479206265656e206d696e60008201527f7465642100000000000000000000000000000000000000000000000000000000602082015250565b60006138b7602483612acb565b91506138c28261385b565b604082019050919050565b600060208201905081810360008301526138e6816138aa565b9050919050565b60006138f882612b72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361392a576139296137f8565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061396b601883612acb565b915061397682613935565b602082019050919050565b6000602082019050818103600083015261399a8161395e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f466f756e64657220746f6b656e2068617320616c7265616479206265656e206360008201527f6c61696d65640000000000000000000000000000000000000000000000000000602082015250565b6000613a2c602683612acb565b9150613a37826139d0565b604082019050919050565b60006020820190508181036000830152613a5b81613a1f565b9050919050565b600081519050613a7181612c31565b92915050565b600060208284031215613a8d57613a8c6129fb565b5b6000613a9b84828501613a62565b91505092915050565b7f4e6f7420746865206f776e6572206f66207468697320666f756e64657273207460008201527f6f6b656e00000000000000000000000000000000000000000000000000000000602082015250565b6000613b00602483612acb565b9150613b0b82613aa4565b604082019050919050565b60006020820190508181036000830152613b2f81613af3565b9050919050565b7f436c61696d204d696e7420706175736564000000000000000000000000000000600082015250565b6000613b6c601183612acb565b9150613b7782613b36565b602082019050919050565b60006020820190508181036000830152613b9b81613b5f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613bfe602983612acb565b9150613c0982613ba2565b604082019050919050565b60006020820190508181036000830152613c2d81613bf1565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613c6a601f83612acb565b9150613c7582613c34565b602082019050919050565b60006020820190508181036000830152613c9981613c5d565b9050919050565b6000613cab82612b72565b9150613cb683612b72565b9250828202613cc481612b72565b91508282048414831517613cdb57613cda6137f8565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613d18601283612acb565b9150613d2382613ce2565b602082019050919050565b60006020820190508181036000830152613d4781613d0b565b9050919050565b7f4d696e7420706175736564000000000000000000000000000000000000000000600082015250565b6000613d84600b83612acb565b9150613d8f82613d4e565b602082019050919050565b60006020820190508181036000830152613db381613d77565b9050919050565b600081905092915050565b6000613dd082612ac0565b613dda8185613dba565b9350613dea818560208601612adc565b80840191505092915050565b6000613e028285613dc5565b9150613e0e8284613dc5565b91508190509392505050565b60008160601b9050919050565b6000613e3282613e1a565b9050919050565b6000613e4482613e27565b9050919050565b613e5c613e5782612bf5565b613e39565b82525050565b6000613e6e8284613e4b565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000613eb3600d83612acb565b9150613ebe82613e7d565b602082019050919050565b60006020820190508181036000830152613ee281613ea6565b9050919050565b6000613ef482612b72565b9150613eff83612b72565b9250828203905081811115613f1757613f166137f8565b5b92915050565b7f57686974656c697374204d696e74207061757365640000000000000000000000600082015250565b6000613f53601583612acb565b9150613f5e82613f1d565b602082019050919050565b60006020820190508181036000830152613f8281613f46565b9050919050565b7f457863656564732077616c6c6574206c696d6974000000000000000000000000600082015250565b6000613fbf601483612acb565b9150613fca82613f89565b602082019050919050565b60006020820190508181036000830152613fee81613fb2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614051602683612acb565b915061405c82613ff5565b604082019050919050565b6000602082019050818103600083015261408081614044565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140bd602083612acb565b91506140c882614087565b602082019050919050565b600060208201905081810360008301526140ec816140b0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061414f602583612acb565b915061415a826140f3565b604082019050919050565b6000602082019050818103600083015261417e81614142565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141e1602483612acb565b91506141ec82614185565b604082019050919050565b60006020820190508181036000830152614210816141d4565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061424d601983612acb565b915061425882614217565b602082019050919050565b6000602082019050818103600083015261427c81614240565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006142df603283612acb565b91506142ea82614283565b604082019050919050565b6000602082019050818103600083015261430e816142d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434f82612b72565b915061435a83612b72565b92508261436a57614369614315565b5b828204905092915050565b600061438082612b72565b915061438b83612b72565b92508261439b5761439a614315565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006143cd826143a6565b6143d781856143b1565b93506143e7818560208601612adc565b6143f081612b06565b840191505092915050565b60006080820190506144106000830187612c07565b61441d6020830186612c07565b61442a6040830185612c9d565b818103606083015261443c81846143c2565b905095945050505050565b60008151905061445681612a31565b92915050565b600060208284031215614472576144716129fb565b5b600061448084828501614447565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006144bf602083612acb565b91506144ca82614489565b602082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061452b601c83612acb565b9150614536826144f5565b602082019050919050565b6000602082019050818103600083015261455a8161451e565b905091905056fea2646970667358221220f9291b628d7525fe3ffed4825e9eb01fd9c9471511314a566acc637793901aee64736f6c63430008110033

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.