ETH Price: $2,403.32 (-4.22%)

Token

NFTVenues (NVS)
 

Overview

Max Total Supply

1,789 NVS

Holders

243

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dwots.eth
Balance
1 NVS
0x21835583fe464ca956510590cd55adba8fce1eae
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:
NFTVenues

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract NFTVenues is ERC721, Ownable, ERC721Burnable {
    // Whitelist state
    // Merkle tree root hash
    bytes32 public _rootHash;

    // Token state
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 private _maxSupply = 2000;
    uint256 private _mintValue = 150000000000000000;
    address private _feeReceiver;


    string public _provenanceHash;
    string public _baseURL;

    bool private _isWhiteListOpen = false;
    bool private _isMintOpen = false;

    // One address can mint up to 10 tokens in the white list phase
    mapping(address => uint256) private _whiteListCapTracker;
    uint256 private WHITE_LIST_CAP = 4;


    constructor() ERC721("NFTVenues", "NVS") {}

    function _baseMint(uint256 count, address recipient) private {
        require(_tokenIds.current() + count <= _maxSupply, "Can not mint more than max supply.");
        require(msg.value >= count * _mintValue, "Insufficient payment");

        for (uint256 i = 0; i < count; i++) {
            _tokenIds.increment();
            _mint(recipient, _tokenIds.current());
        }

        bool success = false;
        (success,) = _feeReceiver.call{value : msg.value}("");
        require(success, "Failed to send to owner");
    }

    function mint(uint256 amount) external payable {
        require(_isMintOpen, "Mint is not active.");
        require(amount > 0 && amount <= 4, "You can mint between 1 and 4 in one transaction.");

        _baseMint(amount, msg.sender);
    }

    function whiteListMint(uint256 amount, bytes32[] calldata proof) external payable {
        require(_isWhiteListOpen, "Whitelist is not active.");
        require(amount > 0 && amount + _whiteListCapTracker[msg.sender] <= WHITE_LIST_CAP, "You can mint between 1 and 4 in total.");
        require(_verify(_leaf(msg.sender), proof), "Address not in white list.");
        _whiteListCapTracker[msg.sender] += amount;
        _baseMint(amount, msg.sender);
    }

    // Merkle utils
    function _leaf(address recipient)
    internal pure returns (bytes32)
    {
        return keccak256(abi.encodePacked(recipient));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof)
    internal view returns (bool)
    {
        return MerkleProof.verify(proof, _rootHash, leaf);
    }

    // Setters
    function flipWhiteListState() public onlyOwner {
        _isWhiteListOpen = !_isWhiteListOpen;
    }

    function flipMintState() public onlyOwner {
        _isMintOpen = !_isMintOpen;
    }

    function startMinting() public onlyOwner {
        _isWhiteListOpen = false;
        _isMintOpen = true;
    }

    function setMintValue(uint256 newMintValue) public onlyOwner {
        _mintValue = newMintValue;
    }

    function setFeeReceiver(address newFeeReceiver) public onlyOwner {
        _feeReceiver = newFeeReceiver;
    }

    function setRootHash(bytes32 newRootHash) public onlyOwner {
        _rootHash = newRootHash;
    }

    function setMaxSupply(uint256 newMaxSupply) public onlyOwner {
        _maxSupply = newMaxSupply;
    }

    function setProvenanceHash(string memory newProvenanceHash) public onlyOwner {
        _provenanceHash = newProvenanceHash;
    }

    function setBaseURL(string memory newBaseURI) public onlyOwner {
        _baseURL = newBaseURI;
    }

    // Getters
    function _baseURI() internal view override returns (string memory) {
        return _baseURL;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    function isWhiteListOpen() public view returns (bool) {
        return _isWhiteListOpen;
    }

    function isMintOpen() public view returns (bool) {
        return _isMintOpen;
    }

    function mintValue() public view returns (uint256) {
        return _mintValue;
    }

    function feeReceiver() public view returns (address) {
        return _feeReceiver;
    }

    function whiteListCapTracker(address wallet) public view returns (uint256) {
        return _whiteListCapTracker[wallet];
    }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 4 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 5 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev 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 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 : 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 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 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 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":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rootHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhiteListState","outputs":[],"stateMutability":"nonpayable","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":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhiteListOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"newBaseURI","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintValue","type":"uint256"}],"name":"setMintValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRootHash","type":"bytes32"}],"name":"setRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"whiteListCapTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526107d0600955670214e8348c4f0000600a556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690831515021790555060046010553480156200005e57600080fd5b506040518060400160405280600981526020017f4e465456656e75657300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e565300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e3929190620001f3565b508060019080519060200190620000fc929190620001f3565b5050506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002a3565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d2620002d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146c880620003186000396000f3fe6080604052600436106102255760003560e01c80636dbd181911610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461079d578063e985e9c5146107c8578063efdcd97414610805578063f2fde38b1461082e578063f9e0edae1461085757610225565b8063a22cb465146106ba578063b3f00674146106e3578063b88d4fde1461070e578063c01031c014610737578063c87b56dd1461076057610225565b806389c77dfe116100f257806389c77dfe146106065780638da5cb5b1461063157806395d89b411461065c5780639a65ea2614610687578063a0712d681461069e57610225565b80636dbd18191461054c5780636f8b44b01461058957806370a08231146105b2578063715018a6146105ef57610225565b806323b872dd116101b1578063534308cc11610175578063534308cc1461047757806359c74f29146104a25780635f8a958c146104b95780636283188c146104e45780636352211e1461050f57610225565b806323b872dd146103aa5780632d7eae66146103d357806342842e0e146103fc57806342966c681461042557806349f2553a1461044e57610225565b806310969523116101f857806310969523146102f857806311876875146103215780631594acf11461033d57806318160ddd14610354578063199080161461037f57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906130e7565b610882565b60405161025e9190613756565b60405180910390f35b34801561027357600080fd5b5061027c610964565b604051610289919061378c565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061318a565b6109f6565b6040516102c691906136ef565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061307a565b610a7b565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613141565b610b93565b005b61033b600480360381019061033691906131b7565b610c29565b005b34801561034957600080fd5b50610352610e0a565b005b34801561036057600080fd5b50610369610eb2565b6040516103769190613ace565b60405180910390f35b34801561038b57600080fd5b50610394610ec3565b6040516103a19190613756565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612f64565b610eda565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906130ba565b610f3a565b005b34801561040857600080fd5b50610423600480360381019061041e9190612f64565b610fc0565b005b34801561043157600080fd5b5061044c6004803603810190610447919061318a565b610fe0565b005b34801561045a57600080fd5b5061047560048036038101906104709190613141565b61103c565b005b34801561048357600080fd5b5061048c6110d2565b604051610499919061378c565b60405180910390f35b3480156104ae57600080fd5b506104b7611160565b005b3480156104c557600080fd5b506104ce611208565b6040516104db9190613756565b60405180910390f35b3480156104f057600080fd5b506104f961121f565b6040516105069190613771565b60405180910390f35b34801561051b57600080fd5b506105366004803603810190610531919061318a565b611225565b60405161054391906136ef565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612ef7565b6112d7565b6040516105809190613ace565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab919061318a565b611320565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612ef7565b6113a6565b6040516105e69190613ace565b60405180910390f35b3480156105fb57600080fd5b5061060461145e565b005b34801561061257600080fd5b5061061b6114e6565b6040516106289190613ace565b60405180910390f35b34801561063d57600080fd5b506106466114f0565b60405161065391906136ef565b60405180910390f35b34801561066857600080fd5b5061067161151a565b60405161067e919061378c565b60405180910390f35b34801561069357600080fd5b5061069c6115ac565b005b6106b860048036038101906106b3919061318a565b611660565b005b3480156106c657600080fd5b506106e160048036038101906106dc919061303a565b61170c565b005b3480156106ef57600080fd5b506106f8611722565b60405161070591906136ef565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612fb7565b61174c565b005b34801561074357600080fd5b5061075e6004803603810190610759919061318a565b6117ae565b005b34801561076c57600080fd5b506107876004803603810190610782919061318a565b611834565b604051610794919061378c565b60405180910390f35b3480156107a957600080fd5b506107b26118db565b6040516107bf9190613ace565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612f24565b6118e5565b6040516107fc9190613756565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190612ef7565b611979565b005b34801561083a57600080fd5b5061085560048036038101906108509190612ef7565b611a39565b005b34801561086357600080fd5b5061086c611b31565b604051610879919061378c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095d575061095c82611bbf565b5b9050919050565b60606000805461097390613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461099f90613d93565b80156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b5050505050905090565b6000610a0182611c29565b610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a37906139ce565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8682611225565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613a2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b16611c95565b73ffffffffffffffffffffffffffffffffffffffff161480610b455750610b4481610b3f611c95565b6118e5565b5b610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b9061390e565b60405180910390fd5b610b8e8383611c9d565b505050565b610b9b611c95565b73ffffffffffffffffffffffffffffffffffffffff16610bb96114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906139ee565b60405180910390fd5b80600c9080519060200190610c25929190612ca0565b5050565b600e60009054906101000a900460ff16610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613a8e565b60405180910390fd5b600083118015610cd45750601054600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610cd19190613bbe565b11155b610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a9061392e565b60405180910390fd5b610d66610d1f33611d56565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611d86565b610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c9061384e565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df49190613bbe565b92505081905550610e058333611d9d565b505050565b610e12611c95565b73ffffffffffffffffffffffffffffffffffffffff16610e306114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d906139ee565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000610ebe6008611f57565b905090565b6000600e60019054906101000a900460ff16905090565b610eeb610ee5611c95565b82611f65565b610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613a6e565b60405180910390fd5b610f35838383612043565b505050565b610f42611c95565b73ffffffffffffffffffffffffffffffffffffffff16610f606114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad906139ee565b60405180910390fd5b8060078190555050565b610fdb8383836040518060200160405280600081525061174c565b505050565b610ff1610feb611c95565b82611f65565b611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790613aae565b60405180910390fd5b611039816122aa565b50565b611044611c95565b73ffffffffffffffffffffffffffffffffffffffff166110626114f0565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af906139ee565b60405180910390fd5b80600d90805190602001906110ce929190612ca0565b5050565b600c80546110df90613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461110b90613d93565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b505050505081565b611168611c95565b73ffffffffffffffffffffffffffffffffffffffff166111866114f0565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d3906139ee565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000600e60009054906101000a900460ff16905090565b60075481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c59061396e565b60405180910390fd5b80915050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611328611c95565b73ffffffffffffffffffffffffffffffffffffffff166113466114f0565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906139ee565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e9061394e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611466611c95565b73ffffffffffffffffffffffffffffffffffffffff166114846114f0565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d1906139ee565b60405180910390fd5b6114e460006123c7565b565b6000600a54905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461152990613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613d93565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b6115b4611c95565b73ffffffffffffffffffffffffffffffffffffffff166115d26114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f906139ee565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550565b600e60019054906101000a900460ff166116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906137ae565b60405180910390fd5b6000811180156116c0575060048111155b6116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f690613a4e565b60405180910390fd5b6117098133611d9d565b50565b61171e611717611c95565b838361248d565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61175d611757611c95565b83611f65565b61179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390613a6e565b60405180910390fd5b6117a8848484846125fa565b50505050565b6117b6611c95565b73ffffffffffffffffffffffffffffffffffffffff166117d46114f0565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611821906139ee565b60405180910390fd5b80600a8190555050565b606061183f82611c29565b61187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590613a0e565b60405180910390fd5b6000611888612656565b905060008151116118a857604051806020016040528060008152506118d3565b806118b2846126e8565b6040516020016118c39291906136b6565b6040516020818303038152906040525b915050919050565b6000600954905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611981611c95565b73ffffffffffffffffffffffffffffffffffffffff1661199f6114f0565b73ffffffffffffffffffffffffffffffffffffffff16146119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906139ee565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a41611c95565b73ffffffffffffffffffffffffffffffffffffffff16611a5f6114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906139ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c906137ee565b60405180910390fd5b611b2e816123c7565b50565b600d8054611b3e90613d93565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6a90613d93565b8015611bb75780601f10611b8c57610100808354040283529160200191611bb7565b820191906000526020600020905b815481529060010190602001808311611b9a57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1083611225565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081604051602001611d69919061369b565b604051602081830303815290604052805190602001209050919050565b6000611d958260075485612849565b905092915050565b60095482611dab6008611f57565b611db59190613bbe565b1115611df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ded906138ce565b60405180910390fd5b600a5482611e049190613c45565b341015611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906139ae565b60405180910390fd5b60005b82811015611e8157611e5b6008612860565b611e6e82611e696008611f57565b612876565b8080611e7990613df6565b915050611e49565b506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1634604051611eca906136da565b60006040518083038185875af1925050503d8060008114611f07576040519150601f19603f3d011682016040523d82523d6000602084013e611f0c565b606091505b50508091505080611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f49906138ae565b60405180910390fd5b505050565b600081600001549050919050565b6000611f7082611c29565b611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa6906138ee565b60405180910390fd5b6000611fba83611225565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ffc5750611ffb81856118e5565b5b8061203a57508373ffffffffffffffffffffffffffffffffffffffff16612022846109f6565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661206382611225565b73ffffffffffffffffffffffffffffffffffffffff16146120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b09061380e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612129576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121209061386e565b60405180910390fd5b612134838383612a50565b61213f600082611c9d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218f9190613c9f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e69190613bbe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122a5838383612a55565b505050565b60006122b582611225565b90506122c381600084612a50565b6122ce600083611c9d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461231e9190613c9f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c381600084612a55565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f39061388e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125ed9190613756565b60405180910390a3505050565b612605848484612043565b61261184848484612a5a565b612650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612647906137ce565b60405180910390fd5b50505050565b6060600d805461266590613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461269190613d93565b80156126de5780601f106126b3576101008083540402835291602001916126de565b820191906000526020600020905b8154815290600101906020018083116126c157829003601f168201915b5050505050905090565b60606000821415612730576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612844565b600082905060005b6000821461276257808061274b90613df6565b915050600a8261275b9190613c14565b9150612738565b60008167ffffffffffffffff81111561277e5761277d613f50565b5b6040519080825280601f01601f1916602001820160405280156127b05781602001600182028036833780820191505090505b5090505b6000851461283d576001826127c99190613c9f565b9150600a856127d89190613e63565b60306127e49190613bbe565b60f81b8183815181106127fa576127f9613f21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128369190613c14565b94506127b4565b8093505050505b919050565b6000826128568584612bf1565b1490509392505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd9061398e565b60405180910390fd5b6128ef81611c29565b1561292f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129269061382e565b60405180910390fd5b61293b60008383612a50565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298b9190613bbe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4c60008383612a55565b5050565b505050565b505050565b6000612a7b8473ffffffffffffffffffffffffffffffffffffffff16612c66565b15612be4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa4611c95565b8786866040518563ffffffff1660e01b8152600401612ac6949392919061370a565b602060405180830381600087803b158015612ae057600080fd5b505af1925050508015612b1157506040513d601f19601f82011682018060405250810190612b0e9190613114565b60015b612b94573d8060008114612b41576040519150601f19603f3d011682016040523d82523d6000602084013e612b46565b606091505b50600081511415612b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b83906137ce565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612be9565b600190505b949350505050565b60008082905060005b8451811015612c5b576000858281518110612c1857612c17613f21565b5b60200260200101519050808311612c3a57612c338382612c89565b9250612c47565b612c448184612c89565b92505b508080612c5390613df6565b915050612bfa565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612cac90613d93565b90600052602060002090601f016020900481019282612cce5760008555612d15565b82601f10612ce757805160ff1916838001178555612d15565b82800160010185558215612d15579182015b82811115612d14578251825591602001919060010190612cf9565b5b509050612d229190612d26565b5090565b5b80821115612d3f576000816000905550600101612d27565b5090565b6000612d56612d5184613b0e565b613ae9565b905082815260208101848484011115612d7257612d71613f8e565b5b612d7d848285613d51565b509392505050565b6000612d98612d9384613b3f565b613ae9565b905082815260208101848484011115612db457612db3613f8e565b5b612dbf848285613d51565b509392505050565b600081359050612dd68161461f565b92915050565b60008083601f840112612df257612df1613f84565b5b8235905067ffffffffffffffff811115612e0f57612e0e613f7f565b5b602083019150836020820283011115612e2b57612e2a613f89565b5b9250929050565b600081359050612e4181614636565b92915050565b600081359050612e568161464d565b92915050565b600081359050612e6b81614664565b92915050565b600081519050612e8081614664565b92915050565b600082601f830112612e9b57612e9a613f84565b5b8135612eab848260208601612d43565b91505092915050565b600082601f830112612ec957612ec8613f84565b5b8135612ed9848260208601612d85565b91505092915050565b600081359050612ef18161467b565b92915050565b600060208284031215612f0d57612f0c613f98565b5b6000612f1b84828501612dc7565b91505092915050565b60008060408385031215612f3b57612f3a613f98565b5b6000612f4985828601612dc7565b9250506020612f5a85828601612dc7565b9150509250929050565b600080600060608486031215612f7d57612f7c613f98565b5b6000612f8b86828701612dc7565b9350506020612f9c86828701612dc7565b9250506040612fad86828701612ee2565b9150509250925092565b60008060008060808587031215612fd157612fd0613f98565b5b6000612fdf87828801612dc7565b9450506020612ff087828801612dc7565b935050604061300187828801612ee2565b925050606085013567ffffffffffffffff81111561302257613021613f93565b5b61302e87828801612e86565b91505092959194509250565b6000806040838503121561305157613050613f98565b5b600061305f85828601612dc7565b925050602061307085828601612e32565b9150509250929050565b6000806040838503121561309157613090613f98565b5b600061309f85828601612dc7565b92505060206130b085828601612ee2565b9150509250929050565b6000602082840312156130d0576130cf613f98565b5b60006130de84828501612e47565b91505092915050565b6000602082840312156130fd576130fc613f98565b5b600061310b84828501612e5c565b91505092915050565b60006020828403121561312a57613129613f98565b5b600061313884828501612e71565b91505092915050565b60006020828403121561315757613156613f98565b5b600082013567ffffffffffffffff81111561317557613174613f93565b5b61318184828501612eb4565b91505092915050565b6000602082840312156131a05761319f613f98565b5b60006131ae84828501612ee2565b91505092915050565b6000806000604084860312156131d0576131cf613f98565b5b60006131de86828701612ee2565b935050602084013567ffffffffffffffff8111156131ff576131fe613f93565b5b61320b86828701612ddc565b92509250509250925092565b61322081613cd3565b82525050565b61323761323282613cd3565b613e3f565b82525050565b61324681613ce5565b82525050565b61325581613cf1565b82525050565b600061326682613b70565b6132708185613b86565b9350613280818560208601613d60565b61328981613f9d565b840191505092915050565b600061329f82613b7b565b6132a98185613ba2565b93506132b9818560208601613d60565b6132c281613f9d565b840191505092915050565b60006132d882613b7b565b6132e28185613bb3565b93506132f2818560208601613d60565b80840191505092915050565b600061330b601383613ba2565b915061331682613fbb565b602082019050919050565b600061332e603283613ba2565b915061333982613fe4565b604082019050919050565b6000613351602683613ba2565b915061335c82614033565b604082019050919050565b6000613374602583613ba2565b915061337f82614082565b604082019050919050565b6000613397601c83613ba2565b91506133a2826140d1565b602082019050919050565b60006133ba601a83613ba2565b91506133c5826140fa565b602082019050919050565b60006133dd602483613ba2565b91506133e882614123565b604082019050919050565b6000613400601983613ba2565b915061340b82614172565b602082019050919050565b6000613423601783613ba2565b915061342e8261419b565b602082019050919050565b6000613446602283613ba2565b9150613451826141c4565b604082019050919050565b6000613469602c83613ba2565b915061347482614213565b604082019050919050565b600061348c603883613ba2565b915061349782614262565b604082019050919050565b60006134af602683613ba2565b91506134ba826142b1565b604082019050919050565b60006134d2602a83613ba2565b91506134dd82614300565b604082019050919050565b60006134f5602983613ba2565b91506135008261434f565b604082019050919050565b6000613518602083613ba2565b91506135238261439e565b602082019050919050565b600061353b601483613ba2565b9150613546826143c7565b602082019050919050565b600061355e602c83613ba2565b9150613569826143f0565b604082019050919050565b6000613581602083613ba2565b915061358c8261443f565b602082019050919050565b60006135a4602f83613ba2565b91506135af82614468565b604082019050919050565b60006135c7602183613ba2565b91506135d2826144b7565b604082019050919050565b60006135ea603083613ba2565b91506135f582614506565b604082019050919050565b600061360d600083613b97565b915061361882614555565b600082019050919050565b6000613630603183613ba2565b915061363b82614558565b604082019050919050565b6000613653601883613ba2565b915061365e826145a7565b602082019050919050565b6000613676603083613ba2565b9150613681826145d0565b604082019050919050565b61369581613d47565b82525050565b60006136a78284613226565b60148201915081905092915050565b60006136c282856132cd565b91506136ce82846132cd565b91508190509392505050565b60006136e582613600565b9150819050919050565b60006020820190506137046000830184613217565b92915050565b600060808201905061371f6000830187613217565b61372c6020830186613217565b613739604083018561368c565b818103606083015261374b818461325b565b905095945050505050565b600060208201905061376b600083018461323d565b92915050565b6000602082019050613786600083018461324c565b92915050565b600060208201905081810360008301526137a68184613294565b905092915050565b600060208201905081810360008301526137c7816132fe565b9050919050565b600060208201905081810360008301526137e781613321565b9050919050565b6000602082019050818103600083015261380781613344565b9050919050565b6000602082019050818103600083015261382781613367565b9050919050565b600060208201905081810360008301526138478161338a565b9050919050565b60006020820190508181036000830152613867816133ad565b9050919050565b60006020820190508181036000830152613887816133d0565b9050919050565b600060208201905081810360008301526138a7816133f3565b9050919050565b600060208201905081810360008301526138c781613416565b9050919050565b600060208201905081810360008301526138e781613439565b9050919050565b600060208201905081810360008301526139078161345c565b9050919050565b600060208201905081810360008301526139278161347f565b9050919050565b60006020820190508181036000830152613947816134a2565b9050919050565b60006020820190508181036000830152613967816134c5565b9050919050565b60006020820190508181036000830152613987816134e8565b9050919050565b600060208201905081810360008301526139a78161350b565b9050919050565b600060208201905081810360008301526139c78161352e565b9050919050565b600060208201905081810360008301526139e781613551565b9050919050565b60006020820190508181036000830152613a0781613574565b9050919050565b60006020820190508181036000830152613a2781613597565b9050919050565b60006020820190508181036000830152613a47816135ba565b9050919050565b60006020820190508181036000830152613a67816135dd565b9050919050565b60006020820190508181036000830152613a8781613623565b9050919050565b60006020820190508181036000830152613aa781613646565b9050919050565b60006020820190508181036000830152613ac781613669565b9050919050565b6000602082019050613ae3600083018461368c565b92915050565b6000613af3613b04565b9050613aff8282613dc5565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2957613b28613f50565b5b613b3282613f9d565b9050602081019050919050565b600067ffffffffffffffff821115613b5a57613b59613f50565b5b613b6382613f9d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bc982613d47565b9150613bd483613d47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0957613c08613e94565b5b828201905092915050565b6000613c1f82613d47565b9150613c2a83613d47565b925082613c3a57613c39613ec3565b5b828204905092915050565b6000613c5082613d47565b9150613c5b83613d47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9457613c93613e94565b5b828202905092915050565b6000613caa82613d47565b9150613cb583613d47565b925082821015613cc857613cc7613e94565b5b828203905092915050565b6000613cde82613d27565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d7e578082015181840152602081019050613d63565b83811115613d8d576000848401525b50505050565b60006002820490506001821680613dab57607f821691505b60208210811415613dbf57613dbe613ef2565b5b50919050565b613dce82613f9d565b810181811067ffffffffffffffff82111715613ded57613dec613f50565b5b80604052505050565b6000613e0182613d47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3457613e33613e94565b5b600182019050919050565b6000613e4a82613e51565b9050919050565b6000613e5c82613fae565b9050919050565b6000613e6e82613d47565b9150613e7983613d47565b925082613e8957613e88613ec3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f41646472657373206e6f7420696e207768697465206c6973742e000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4661696c656420746f2073656e6420746f206f776e6572000000000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e206d696e74206265747765656e203120616e64203420696e2060008201527f746f74616c2e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e74206265747765656e203120616e64203420696e2060008201527f6f6e65207472616e73616374696f6e2e00000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57686974656c697374206973206e6f74206163746976652e0000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61462881613cd3565b811461463357600080fd5b50565b61463f81613ce5565b811461464a57600080fd5b50565b61465681613cf1565b811461466157600080fd5b50565b61466d81613cfb565b811461467857600080fd5b50565b61468481613d47565b811461468f57600080fd5b5056fea26469706673582212206bef0fb4fe40a4d2f081894d687fe870b255a9cb9a6e87eb47ecdc16bb94a1ba64736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636dbd181911610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461079d578063e985e9c5146107c8578063efdcd97414610805578063f2fde38b1461082e578063f9e0edae1461085757610225565b8063a22cb465146106ba578063b3f00674146106e3578063b88d4fde1461070e578063c01031c014610737578063c87b56dd1461076057610225565b806389c77dfe116100f257806389c77dfe146106065780638da5cb5b1461063157806395d89b411461065c5780639a65ea2614610687578063a0712d681461069e57610225565b80636dbd18191461054c5780636f8b44b01461058957806370a08231146105b2578063715018a6146105ef57610225565b806323b872dd116101b1578063534308cc11610175578063534308cc1461047757806359c74f29146104a25780635f8a958c146104b95780636283188c146104e45780636352211e1461050f57610225565b806323b872dd146103aa5780632d7eae66146103d357806342842e0e146103fc57806342966c681461042557806349f2553a1461044e57610225565b806310969523116101f857806310969523146102f857806311876875146103215780631594acf11461033d57806318160ddd14610354578063199080161461037f57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906130e7565b610882565b60405161025e9190613756565b60405180910390f35b34801561027357600080fd5b5061027c610964565b604051610289919061378c565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061318a565b6109f6565b6040516102c691906136ef565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061307a565b610a7b565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613141565b610b93565b005b61033b600480360381019061033691906131b7565b610c29565b005b34801561034957600080fd5b50610352610e0a565b005b34801561036057600080fd5b50610369610eb2565b6040516103769190613ace565b60405180910390f35b34801561038b57600080fd5b50610394610ec3565b6040516103a19190613756565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612f64565b610eda565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906130ba565b610f3a565b005b34801561040857600080fd5b50610423600480360381019061041e9190612f64565b610fc0565b005b34801561043157600080fd5b5061044c6004803603810190610447919061318a565b610fe0565b005b34801561045a57600080fd5b5061047560048036038101906104709190613141565b61103c565b005b34801561048357600080fd5b5061048c6110d2565b604051610499919061378c565b60405180910390f35b3480156104ae57600080fd5b506104b7611160565b005b3480156104c557600080fd5b506104ce611208565b6040516104db9190613756565b60405180910390f35b3480156104f057600080fd5b506104f961121f565b6040516105069190613771565b60405180910390f35b34801561051b57600080fd5b506105366004803603810190610531919061318a565b611225565b60405161054391906136ef565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612ef7565b6112d7565b6040516105809190613ace565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab919061318a565b611320565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612ef7565b6113a6565b6040516105e69190613ace565b60405180910390f35b3480156105fb57600080fd5b5061060461145e565b005b34801561061257600080fd5b5061061b6114e6565b6040516106289190613ace565b60405180910390f35b34801561063d57600080fd5b506106466114f0565b60405161065391906136ef565b60405180910390f35b34801561066857600080fd5b5061067161151a565b60405161067e919061378c565b60405180910390f35b34801561069357600080fd5b5061069c6115ac565b005b6106b860048036038101906106b3919061318a565b611660565b005b3480156106c657600080fd5b506106e160048036038101906106dc919061303a565b61170c565b005b3480156106ef57600080fd5b506106f8611722565b60405161070591906136ef565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612fb7565b61174c565b005b34801561074357600080fd5b5061075e6004803603810190610759919061318a565b6117ae565b005b34801561076c57600080fd5b506107876004803603810190610782919061318a565b611834565b604051610794919061378c565b60405180910390f35b3480156107a957600080fd5b506107b26118db565b6040516107bf9190613ace565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612f24565b6118e5565b6040516107fc9190613756565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190612ef7565b611979565b005b34801561083a57600080fd5b5061085560048036038101906108509190612ef7565b611a39565b005b34801561086357600080fd5b5061086c611b31565b604051610879919061378c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095d575061095c82611bbf565b5b9050919050565b60606000805461097390613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461099f90613d93565b80156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b5050505050905090565b6000610a0182611c29565b610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a37906139ce565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8682611225565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613a2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b16611c95565b73ffffffffffffffffffffffffffffffffffffffff161480610b455750610b4481610b3f611c95565b6118e5565b5b610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b9061390e565b60405180910390fd5b610b8e8383611c9d565b505050565b610b9b611c95565b73ffffffffffffffffffffffffffffffffffffffff16610bb96114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906139ee565b60405180910390fd5b80600c9080519060200190610c25929190612ca0565b5050565b600e60009054906101000a900460ff16610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613a8e565b60405180910390fd5b600083118015610cd45750601054600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610cd19190613bbe565b11155b610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a9061392e565b60405180910390fd5b610d66610d1f33611d56565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611d86565b610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c9061384e565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df49190613bbe565b92505081905550610e058333611d9d565b505050565b610e12611c95565b73ffffffffffffffffffffffffffffffffffffffff16610e306114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d906139ee565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000610ebe6008611f57565b905090565b6000600e60019054906101000a900460ff16905090565b610eeb610ee5611c95565b82611f65565b610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613a6e565b60405180910390fd5b610f35838383612043565b505050565b610f42611c95565b73ffffffffffffffffffffffffffffffffffffffff16610f606114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad906139ee565b60405180910390fd5b8060078190555050565b610fdb8383836040518060200160405280600081525061174c565b505050565b610ff1610feb611c95565b82611f65565b611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790613aae565b60405180910390fd5b611039816122aa565b50565b611044611c95565b73ffffffffffffffffffffffffffffffffffffffff166110626114f0565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af906139ee565b60405180910390fd5b80600d90805190602001906110ce929190612ca0565b5050565b600c80546110df90613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461110b90613d93565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b505050505081565b611168611c95565b73ffffffffffffffffffffffffffffffffffffffff166111866114f0565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d3906139ee565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000600e60009054906101000a900460ff16905090565b60075481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c59061396e565b60405180910390fd5b80915050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611328611c95565b73ffffffffffffffffffffffffffffffffffffffff166113466114f0565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906139ee565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e9061394e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611466611c95565b73ffffffffffffffffffffffffffffffffffffffff166114846114f0565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d1906139ee565b60405180910390fd5b6114e460006123c7565b565b6000600a54905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461152990613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613d93565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b6115b4611c95565b73ffffffffffffffffffffffffffffffffffffffff166115d26114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f906139ee565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550565b600e60019054906101000a900460ff166116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906137ae565b60405180910390fd5b6000811180156116c0575060048111155b6116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f690613a4e565b60405180910390fd5b6117098133611d9d565b50565b61171e611717611c95565b838361248d565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61175d611757611c95565b83611f65565b61179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390613a6e565b60405180910390fd5b6117a8848484846125fa565b50505050565b6117b6611c95565b73ffffffffffffffffffffffffffffffffffffffff166117d46114f0565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611821906139ee565b60405180910390fd5b80600a8190555050565b606061183f82611c29565b61187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590613a0e565b60405180910390fd5b6000611888612656565b905060008151116118a857604051806020016040528060008152506118d3565b806118b2846126e8565b6040516020016118c39291906136b6565b6040516020818303038152906040525b915050919050565b6000600954905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611981611c95565b73ffffffffffffffffffffffffffffffffffffffff1661199f6114f0565b73ffffffffffffffffffffffffffffffffffffffff16146119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906139ee565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a41611c95565b73ffffffffffffffffffffffffffffffffffffffff16611a5f6114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906139ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c906137ee565b60405180910390fd5b611b2e816123c7565b50565b600d8054611b3e90613d93565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6a90613d93565b8015611bb75780601f10611b8c57610100808354040283529160200191611bb7565b820191906000526020600020905b815481529060010190602001808311611b9a57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1083611225565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081604051602001611d69919061369b565b604051602081830303815290604052805190602001209050919050565b6000611d958260075485612849565b905092915050565b60095482611dab6008611f57565b611db59190613bbe565b1115611df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ded906138ce565b60405180910390fd5b600a5482611e049190613c45565b341015611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906139ae565b60405180910390fd5b60005b82811015611e8157611e5b6008612860565b611e6e82611e696008611f57565b612876565b8080611e7990613df6565b915050611e49565b506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1634604051611eca906136da565b60006040518083038185875af1925050503d8060008114611f07576040519150601f19603f3d011682016040523d82523d6000602084013e611f0c565b606091505b50508091505080611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f49906138ae565b60405180910390fd5b505050565b600081600001549050919050565b6000611f7082611c29565b611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa6906138ee565b60405180910390fd5b6000611fba83611225565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ffc5750611ffb81856118e5565b5b8061203a57508373ffffffffffffffffffffffffffffffffffffffff16612022846109f6565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661206382611225565b73ffffffffffffffffffffffffffffffffffffffff16146120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b09061380e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612129576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121209061386e565b60405180910390fd5b612134838383612a50565b61213f600082611c9d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218f9190613c9f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e69190613bbe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122a5838383612a55565b505050565b60006122b582611225565b90506122c381600084612a50565b6122ce600083611c9d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461231e9190613c9f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c381600084612a55565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f39061388e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125ed9190613756565b60405180910390a3505050565b612605848484612043565b61261184848484612a5a565b612650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612647906137ce565b60405180910390fd5b50505050565b6060600d805461266590613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461269190613d93565b80156126de5780601f106126b3576101008083540402835291602001916126de565b820191906000526020600020905b8154815290600101906020018083116126c157829003601f168201915b5050505050905090565b60606000821415612730576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612844565b600082905060005b6000821461276257808061274b90613df6565b915050600a8261275b9190613c14565b9150612738565b60008167ffffffffffffffff81111561277e5761277d613f50565b5b6040519080825280601f01601f1916602001820160405280156127b05781602001600182028036833780820191505090505b5090505b6000851461283d576001826127c99190613c9f565b9150600a856127d89190613e63565b60306127e49190613bbe565b60f81b8183815181106127fa576127f9613f21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128369190613c14565b94506127b4565b8093505050505b919050565b6000826128568584612bf1565b1490509392505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd9061398e565b60405180910390fd5b6128ef81611c29565b1561292f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129269061382e565b60405180910390fd5b61293b60008383612a50565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298b9190613bbe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4c60008383612a55565b5050565b505050565b505050565b6000612a7b8473ffffffffffffffffffffffffffffffffffffffff16612c66565b15612be4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa4611c95565b8786866040518563ffffffff1660e01b8152600401612ac6949392919061370a565b602060405180830381600087803b158015612ae057600080fd5b505af1925050508015612b1157506040513d601f19601f82011682018060405250810190612b0e9190613114565b60015b612b94573d8060008114612b41576040519150601f19603f3d011682016040523d82523d6000602084013e612b46565b606091505b50600081511415612b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b83906137ce565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612be9565b600190505b949350505050565b60008082905060005b8451811015612c5b576000858281518110612c1857612c17613f21565b5b60200260200101519050808311612c3a57612c338382612c89565b9250612c47565b612c448184612c89565b92505b508080612c5390613df6565b915050612bfa565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612cac90613d93565b90600052602060002090601f016020900481019282612cce5760008555612d15565b82601f10612ce757805160ff1916838001178555612d15565b82800160010185558215612d15579182015b82811115612d14578251825591602001919060010190612cf9565b5b509050612d229190612d26565b5090565b5b80821115612d3f576000816000905550600101612d27565b5090565b6000612d56612d5184613b0e565b613ae9565b905082815260208101848484011115612d7257612d71613f8e565b5b612d7d848285613d51565b509392505050565b6000612d98612d9384613b3f565b613ae9565b905082815260208101848484011115612db457612db3613f8e565b5b612dbf848285613d51565b509392505050565b600081359050612dd68161461f565b92915050565b60008083601f840112612df257612df1613f84565b5b8235905067ffffffffffffffff811115612e0f57612e0e613f7f565b5b602083019150836020820283011115612e2b57612e2a613f89565b5b9250929050565b600081359050612e4181614636565b92915050565b600081359050612e568161464d565b92915050565b600081359050612e6b81614664565b92915050565b600081519050612e8081614664565b92915050565b600082601f830112612e9b57612e9a613f84565b5b8135612eab848260208601612d43565b91505092915050565b600082601f830112612ec957612ec8613f84565b5b8135612ed9848260208601612d85565b91505092915050565b600081359050612ef18161467b565b92915050565b600060208284031215612f0d57612f0c613f98565b5b6000612f1b84828501612dc7565b91505092915050565b60008060408385031215612f3b57612f3a613f98565b5b6000612f4985828601612dc7565b9250506020612f5a85828601612dc7565b9150509250929050565b600080600060608486031215612f7d57612f7c613f98565b5b6000612f8b86828701612dc7565b9350506020612f9c86828701612dc7565b9250506040612fad86828701612ee2565b9150509250925092565b60008060008060808587031215612fd157612fd0613f98565b5b6000612fdf87828801612dc7565b9450506020612ff087828801612dc7565b935050604061300187828801612ee2565b925050606085013567ffffffffffffffff81111561302257613021613f93565b5b61302e87828801612e86565b91505092959194509250565b6000806040838503121561305157613050613f98565b5b600061305f85828601612dc7565b925050602061307085828601612e32565b9150509250929050565b6000806040838503121561309157613090613f98565b5b600061309f85828601612dc7565b92505060206130b085828601612ee2565b9150509250929050565b6000602082840312156130d0576130cf613f98565b5b60006130de84828501612e47565b91505092915050565b6000602082840312156130fd576130fc613f98565b5b600061310b84828501612e5c565b91505092915050565b60006020828403121561312a57613129613f98565b5b600061313884828501612e71565b91505092915050565b60006020828403121561315757613156613f98565b5b600082013567ffffffffffffffff81111561317557613174613f93565b5b61318184828501612eb4565b91505092915050565b6000602082840312156131a05761319f613f98565b5b60006131ae84828501612ee2565b91505092915050565b6000806000604084860312156131d0576131cf613f98565b5b60006131de86828701612ee2565b935050602084013567ffffffffffffffff8111156131ff576131fe613f93565b5b61320b86828701612ddc565b92509250509250925092565b61322081613cd3565b82525050565b61323761323282613cd3565b613e3f565b82525050565b61324681613ce5565b82525050565b61325581613cf1565b82525050565b600061326682613b70565b6132708185613b86565b9350613280818560208601613d60565b61328981613f9d565b840191505092915050565b600061329f82613b7b565b6132a98185613ba2565b93506132b9818560208601613d60565b6132c281613f9d565b840191505092915050565b60006132d882613b7b565b6132e28185613bb3565b93506132f2818560208601613d60565b80840191505092915050565b600061330b601383613ba2565b915061331682613fbb565b602082019050919050565b600061332e603283613ba2565b915061333982613fe4565b604082019050919050565b6000613351602683613ba2565b915061335c82614033565b604082019050919050565b6000613374602583613ba2565b915061337f82614082565b604082019050919050565b6000613397601c83613ba2565b91506133a2826140d1565b602082019050919050565b60006133ba601a83613ba2565b91506133c5826140fa565b602082019050919050565b60006133dd602483613ba2565b91506133e882614123565b604082019050919050565b6000613400601983613ba2565b915061340b82614172565b602082019050919050565b6000613423601783613ba2565b915061342e8261419b565b602082019050919050565b6000613446602283613ba2565b9150613451826141c4565b604082019050919050565b6000613469602c83613ba2565b915061347482614213565b604082019050919050565b600061348c603883613ba2565b915061349782614262565b604082019050919050565b60006134af602683613ba2565b91506134ba826142b1565b604082019050919050565b60006134d2602a83613ba2565b91506134dd82614300565b604082019050919050565b60006134f5602983613ba2565b91506135008261434f565b604082019050919050565b6000613518602083613ba2565b91506135238261439e565b602082019050919050565b600061353b601483613ba2565b9150613546826143c7565b602082019050919050565b600061355e602c83613ba2565b9150613569826143f0565b604082019050919050565b6000613581602083613ba2565b915061358c8261443f565b602082019050919050565b60006135a4602f83613ba2565b91506135af82614468565b604082019050919050565b60006135c7602183613ba2565b91506135d2826144b7565b604082019050919050565b60006135ea603083613ba2565b91506135f582614506565b604082019050919050565b600061360d600083613b97565b915061361882614555565b600082019050919050565b6000613630603183613ba2565b915061363b82614558565b604082019050919050565b6000613653601883613ba2565b915061365e826145a7565b602082019050919050565b6000613676603083613ba2565b9150613681826145d0565b604082019050919050565b61369581613d47565b82525050565b60006136a78284613226565b60148201915081905092915050565b60006136c282856132cd565b91506136ce82846132cd565b91508190509392505050565b60006136e582613600565b9150819050919050565b60006020820190506137046000830184613217565b92915050565b600060808201905061371f6000830187613217565b61372c6020830186613217565b613739604083018561368c565b818103606083015261374b818461325b565b905095945050505050565b600060208201905061376b600083018461323d565b92915050565b6000602082019050613786600083018461324c565b92915050565b600060208201905081810360008301526137a68184613294565b905092915050565b600060208201905081810360008301526137c7816132fe565b9050919050565b600060208201905081810360008301526137e781613321565b9050919050565b6000602082019050818103600083015261380781613344565b9050919050565b6000602082019050818103600083015261382781613367565b9050919050565b600060208201905081810360008301526138478161338a565b9050919050565b60006020820190508181036000830152613867816133ad565b9050919050565b60006020820190508181036000830152613887816133d0565b9050919050565b600060208201905081810360008301526138a7816133f3565b9050919050565b600060208201905081810360008301526138c781613416565b9050919050565b600060208201905081810360008301526138e781613439565b9050919050565b600060208201905081810360008301526139078161345c565b9050919050565b600060208201905081810360008301526139278161347f565b9050919050565b60006020820190508181036000830152613947816134a2565b9050919050565b60006020820190508181036000830152613967816134c5565b9050919050565b60006020820190508181036000830152613987816134e8565b9050919050565b600060208201905081810360008301526139a78161350b565b9050919050565b600060208201905081810360008301526139c78161352e565b9050919050565b600060208201905081810360008301526139e781613551565b9050919050565b60006020820190508181036000830152613a0781613574565b9050919050565b60006020820190508181036000830152613a2781613597565b9050919050565b60006020820190508181036000830152613a47816135ba565b9050919050565b60006020820190508181036000830152613a67816135dd565b9050919050565b60006020820190508181036000830152613a8781613623565b9050919050565b60006020820190508181036000830152613aa781613646565b9050919050565b60006020820190508181036000830152613ac781613669565b9050919050565b6000602082019050613ae3600083018461368c565b92915050565b6000613af3613b04565b9050613aff8282613dc5565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2957613b28613f50565b5b613b3282613f9d565b9050602081019050919050565b600067ffffffffffffffff821115613b5a57613b59613f50565b5b613b6382613f9d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bc982613d47565b9150613bd483613d47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0957613c08613e94565b5b828201905092915050565b6000613c1f82613d47565b9150613c2a83613d47565b925082613c3a57613c39613ec3565b5b828204905092915050565b6000613c5082613d47565b9150613c5b83613d47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9457613c93613e94565b5b828202905092915050565b6000613caa82613d47565b9150613cb583613d47565b925082821015613cc857613cc7613e94565b5b828203905092915050565b6000613cde82613d27565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d7e578082015181840152602081019050613d63565b83811115613d8d576000848401525b50505050565b60006002820490506001821680613dab57607f821691505b60208210811415613dbf57613dbe613ef2565b5b50919050565b613dce82613f9d565b810181811067ffffffffffffffff82111715613ded57613dec613f50565b5b80604052505050565b6000613e0182613d47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3457613e33613e94565b5b600182019050919050565b6000613e4a82613e51565b9050919050565b6000613e5c82613fae565b9050919050565b6000613e6e82613d47565b9150613e7983613d47565b925082613e8957613e88613ec3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f41646472657373206e6f7420696e207768697465206c6973742e000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4661696c656420746f2073656e6420746f206f776e6572000000000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e206d696e74206265747765656e203120616e64203420696e2060008201527f746f74616c2e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e74206265747765656e203120616e64203420696e2060008201527f6f6e65207472616e73616374696f6e2e00000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57686974656c697374206973206e6f74206163746976652e0000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61462881613cd3565b811461463357600080fd5b50565b61463f81613ce5565b811461464a57600080fd5b50565b61465681613cf1565b811461466157600080fd5b50565b61466d81613cfb565b811461467857600080fd5b50565b61468481613d47565b811461468f57600080fd5b5056fea26469706673582212206bef0fb4fe40a4d2f081894d687fe870b255a9cb9a6e87eb47ecdc16bb94a1ba64736f6c63430008060033

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.