ETH Price: $3,397.11 (+6.44%)
Gas: 22 Gwei

Token

Monoglyph (MNGL)
 

Overview

Max Total Supply

256 MNGL

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
reylarsdayum.eth
Balance
1 MNGL
0xea1c7edf57c7302679807bd7de1d21501bd61c03
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:
Monoglyph

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : monoglyph.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract Monoglyph is ReentrancyGuard, ERC721, Ownable {
    using Strings for uint256;

    IERC721Enumerable private _parent;

    uint256 public constant MAX_ALLOWLIST_MINT = 1;
    uint256 public constant MAX_PUBLIC_MINT = 3;
    uint256 public constant MAX_SUPPLY = 256;

    uint256 public pricePerToken = 0.1 ether;

    bool public isAllowListActive;
    bool public isSaleActive;
    bool public isClaimActive;

    mapping(address => uint256) public allowListNumMinted;
    mapping(uint256 => string) public scripts;
    mapping(uint256 => bytes32[]) internal _tokenSeeds;

    string public communityHash;
    string public traitScript;
    string public provenanceHash;
    bytes32 public merkleRoot;

    string private _baseURIextended;
    uint256 public immutable PARENT_SUPPLY;

    using Counters for Counters.Counter;
    Counters.Counter private _totalPublicSupply;

    constructor(address parentAddress, uint256 _parentSupply)
        ERC721("Monoglyph", "MNGL")
    {
        require(
            IERC721Enumerable(parentAddress).supportsInterface(0x780e9d63),
            "Not ERC721Enumerable"
        );
        _parent = IERC721Enumerable(parentAddress);
        PARENT_SUPPLY = _parentSupply;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function _claim(uint256 startingIndex, uint256 numberOfTokens) internal {
        require(isClaimActive, "Claim must be active to mint tokens");
        require(numberOfTokens > 0, "Must claim at least one token.");
        uint256 balance = _parent.balanceOf(msg.sender);
        require(
            balance >= startingIndex + numberOfTokens,
            "Insufficient parent tokens."
        );

        for (uint256 i; i < balance && i < numberOfTokens; i++) {
            uint256 parentTokenId = _parent.tokenOfOwnerByIndex(
                msg.sender,
                i + startingIndex
            );
            if (!_exists(parentTokenId)) {
                _mintToken(msg.sender, parentTokenId);
            }
        }
    }

    function claim(uint256 startingIndex, uint256 numberOfTokens)
        external
        nonReentrant
        callerIsUser
    {
        _claim(startingIndex, numberOfTokens);
    }

    function claimAll() external nonReentrant callerIsUser {
        _claim(0, _parent.balanceOf(msg.sender));
    }

    function claimByTokenIds(uint256[] calldata _parentTokenIds)
        external
        nonReentrant
        callerIsUser
    {
        require(isClaimActive, "Claim must be active to mint tokens");
        require(_parentTokenIds.length > 0, "Must claim at least one token.");
        for (uint256 i; i < _parentTokenIds.length; i++) {
            require(
                _parent.ownerOf(_parentTokenIds[i]) == msg.sender,
                "Must own all parent tokens."
            );
            if (!_exists(_parentTokenIds[i])) {
                _mintToken(msg.sender, _parentTokenIds[i]);
            }
        }
    }

    function mintAllowList(uint256 numberOfTokens, bytes32[] memory merkleProof)
        external
        payable
        nonReentrant
        callerIsUser
    {
        require(isAllowListActive, "Allow list is not active");
        require(onAllowList(msg.sender, merkleProof), "Not on allow list");
        require(
            numberOfTokens <=
                MAX_ALLOWLIST_MINT - allowListNumMinted[msg.sender],
            "Exceeded max available to purchase"
        );
        require(
            this.totalSupply() + numberOfTokens <= MAX_SUPPLY,
            "Purchase would exceed max tokens"
        );
        require(
            pricePerToken * numberOfTokens <= msg.value,
            "Ether value sent is not correct"
        );

        allowListNumMinted[msg.sender] += numberOfTokens;
        for (uint256 i; i < numberOfTokens; i++) {
            uint256 tokenId = this.totalSupply();
            _mintToken(msg.sender, tokenId);
            _totalPublicSupply.increment();
        }
    }

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        callerIsUser
    {
        require(isSaleActive, "Sale must be active to mint tokens");
        require(
            numberOfTokens <= MAX_PUBLIC_MINT,
            "Exceeded max token purchase"
        );
        require(
            this.totalSupply() + numberOfTokens <= MAX_SUPPLY,
            "Purchase would exceed max tokens"
        );
        require(
            pricePerToken * numberOfTokens <= msg.value,
            "Ether value sent is not correct"
        );

        for (uint256 i; i < numberOfTokens; i++) {
            uint256 tokenId = this.totalSupply();
            _mintToken(msg.sender, tokenId);
            _totalPublicSupply.increment();
        }
    }

    function _mintToken(address _to, uint256 _tokenId) internal {
        bytes32 seed = keccak256(
            abi.encodePacked(_tokenId, provenanceHash, communityHash)
        );
        _tokenSeeds[_tokenId].push(seed);
        _safeMint(_to, _tokenId);
    }

    function setSaleActive(bool newState) external onlyOwner {
        isSaleActive = newState;
    }

    function setClaimActive(bool newState) external onlyOwner {
        isClaimActive = newState;
    }

    function setAllowListActive(bool newState) external onlyOwner {
        isAllowListActive = newState;
    }

    function setAllowList(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function onAllowList(address claimer, bytes32[] memory proof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(claimer));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    function numAvailableToMint(address claimer, bytes32[] memory proof)
        public
        view
        returns (uint256)
    {
        if (onAllowList(claimer, proof)) {
            return MAX_ALLOWLIST_MINT - allowListNumMinted[claimer];
        } else {
            return 0;
        }
    }

    function setScript(uint256 _indexes, string memory _script)
        external
        onlyOwner
    {
        scripts[_indexes] = _script;
    }

    function setCommunityHash(string memory _communityHash) external onlyOwner {
        communityHash = _communityHash;
    }

    function setProvenanceHash(string memory _provenanceHash) external onlyOwner {
        provenanceHash = _provenanceHash;
    }

    function setTraitScript(string memory _traitScript) external onlyOwner {
        traitScript = _traitScript;
    }

    function showTokenSeeds(uint256 _tokenId)
        external
        view
        returns (bytes32[] memory)
    {
        return _tokenSeeds[_tokenId];
    }

    function totalSupply() public view returns (uint256) {
        return _totalPublicSupply.current() + PARENT_SUPPLY;
    }

    function isMinted(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token ID does not exist");
        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, _tokenId.toString()));
    }

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

File 2 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 3 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

File 4 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 8 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 9 of 16 : 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 10 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

File 11 of 16 : 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 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 16 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"parentAddress","type":"address"},{"internalType":"uint256","name":"_parentSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ALLOWLIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARENT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startingIndex","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_parentTokenIds","type":"uint256[]"}],"name":"claimByTokenIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"claimer","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"claimer","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"","type":"uint256"}],"name":"scripts","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setAllowListActive","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_communityHash","type":"string"}],"name":"setCommunityHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_indexes","type":"uint256"},{"internalType":"string","name":"_script","type":"string"}],"name":"setScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_traitScript","type":"string"}],"name":"setTraitScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"showTokenSeeds","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"view","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":[],"name":"traitScript","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405267016345785d8a00006009553480156200001d57600080fd5b506040516200621138038062006211833981810160405281019062000043919062000386565b6040518060400160405280600981526020017f4d6f6e6f676c79706800000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4e474c0000000000000000000000000000000000000000000000000000000081525060016000819055508160019081620000c891906200063d565b508060029081620000da91906200063d565b505050620000fd620000f16200021360201b60201c565b6200021b60201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff166301ffc9a763780e9d636040518263ffffffff1660e01b81526004016200013c9190620007a0565b602060405180830381865afa1580156200015a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001809190620007fa565b620001c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b9906200088d565b60405180910390fd5b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080608081815250505050620008af565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200031382620002e6565b9050919050565b620003258162000306565b81146200033157600080fd5b50565b60008151905062000345816200031a565b92915050565b6000819050919050565b62000360816200034b565b81146200036c57600080fd5b50565b600081519050620003808162000355565b92915050565b60008060408385031215620003a0576200039f620002e1565b5b6000620003b08582860162000334565b9250506020620003c3858286016200036f565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044f57607f821691505b60208210810362000465576200046462000407565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000490565b620004db868362000490565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200051e6200051862000512846200034b565b620004f3565b6200034b565b9050919050565b6000819050919050565b6200053a83620004fd565b62000552620005498262000525565b8484546200049d565b825550505050565b600090565b620005696200055a565b620005768184846200052f565b505050565b5b818110156200059e57620005926000826200055f565b6001810190506200057c565b5050565b601f821115620005ed57620005b7816200046b565b620005c28462000480565b81016020851015620005d2578190505b620005ea620005e18562000480565b8301826200057b565b50505b505050565b600082821c905092915050565b60006200061260001984600802620005f2565b1980831691505092915050565b60006200062d8383620005ff565b9150826002028217905092915050565b6200064882620003cd565b67ffffffffffffffff811115620006645762000663620003d8565b5b62000670825462000436565b6200067d828285620005a2565b600060209050601f831160018114620006b55760008415620006a0578287015190505b620006ac85826200061f565b8655506200071c565b601f198416620006c5866200046b565b60005b82811015620006ef57848901518255600182019150602085019450602081019050620006c8565b868310156200070f57848901516200070b601f891682620005ff565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008160e01b9050919050565b600062000788620007826200077c8462000724565b6200075a565b6200072e565b9050919050565b6200079a8162000767565b82525050565b6000602082019050620007b760008301846200078f565b92915050565b60008115159050919050565b620007d481620007bd565b8114620007e057600080fd5b50565b600081519050620007f481620007c9565b92915050565b600060208284031215620008135762000812620002e1565b5b60006200082384828501620007e3565b91505092915050565b600082825260208201905092915050565b7f4e6f7420455243373231456e756d657261626c65000000000000000000000000600082015250565b6000620008756014836200082c565b915062000882826200083d565b602082019050919050565b60006020820190508181036000830152620008a88162000866565b9050919050565b60805161593f620008d260003960008181610f20015261133d015261593f6000f3fe6080604052600436106102c95760003560e01c806379a801c011610175578063b88d4fde116100dc578063e0c9f80c11610095578063f2fde38b1161006f578063f2fde38b14610ae5578063f6c11dad14610b0e578063fa05a65714610b4b578063fc8504ea14610b67576102c9565b8063e0c9f80c14610a54578063e2ba90ae14610a7f578063e985e9c514610aa8576102c9565b8063b88d4fde14610958578063c349026314610981578063c6ab67a3146109aa578063c87b56dd146109d5578063d1058e5914610a12578063d410cb6414610a29576102c9565b80638da5cb5b1161012e5780638da5cb5b1461085757806395d89b4114610882578063a0712d68146108ad578063a22cb465146108c9578063a282a60e146108f2578063b32c56801461091b576102c9565b806379a801c0146107475780637b1b1de6146107725780637fc278031461079d578063841718a6146107c857806384584d07146107f157806388879b1c1461081a576102c9565b80633a73c58d1161023457806365f13097116101ed57806371199d30116101c757806371199d30146106b3578063715018a6146106dc57806372f85d51146106f357806373417b091461071e576102c9565b806365f130971461060e578063697c64f91461063957806370a0823114610676576102c9565b80633a73c58d146105145780633ccfd60b1461053d57806342842e0e1461055457806355f804b31461057d578063564566a8146105a65780636352211e146105d1576102c9565b806318160ddd1161028657806318160ddd1461040257806323b872dd1461042d57806329fc6bae146104565780632eb4a7ab1461048157806332cb6b0c146104ac57806333c41a90146104d7576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc1461033657806308ff7f6114610373578063095ea7b3146103b057806310969523146103d9575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613932565b610b90565b604051610302919061397a565b60405180910390f35b34801561031757600080fd5b50610320610c72565b60405161032d9190613a25565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613a7d565b610d04565b60405161036a9190613aeb565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613a7d565b610d4a565b6040516103a79190613a25565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190613b32565b610dea565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190613ca7565b610f01565b005b34801561040e57600080fd5b50610417610f1c565b6040516104249190613cff565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613d1a565b610f58565b005b34801561046257600080fd5b5061046b610fb8565b604051610478919061397a565b60405180910390f35b34801561048d57600080fd5b50610496610fcb565b6040516104a39190613d86565b60405180910390f35b3480156104b857600080fd5b506104c1610fd1565b6040516104ce9190613cff565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613a7d565b610fd7565b60405161050b919061397a565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613dcd565b610fe9565b005b34801561054957600080fd5b5061055261100e565b005b34801561056057600080fd5b5061057b60048036038101906105769190613d1a565b6110d5565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613ca7565b6110f5565b005b3480156105b257600080fd5b506105bb611110565b6040516105c8919061397a565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190613a7d565b611123565b6040516106059190613aeb565b60405180910390f35b34801561061a57600080fd5b506106236111a9565b6040516106309190613cff565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190613a7d565b6111ae565b60405161066d9190613eb8565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613eda565b611219565b6040516106aa9190613cff565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190613f07565b6112d0565b005b3480156106e857600080fd5b506106f16112fd565b005b3480156106ff57600080fd5b50610708611311565b6040516107159190613cff565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190613dcd565b611316565b005b34801561075357600080fd5b5061075c61133b565b6040516107699190613cff565b60405180910390f35b34801561077e57600080fd5b5061078761135f565b6040516107949190613cff565b60405180910390f35b3480156107a957600080fd5b506107b2611365565b6040516107bf919061397a565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613dcd565b611378565b005b3480156107fd57600080fd5b5061081860048036038101906108139190613f8f565b61139d565b005b34801561082657600080fd5b50610841600480360381019061083c9190613eda565b6113af565b60405161084e9190613cff565b60405180910390f35b34801561086357600080fd5b5061086c6113c7565b6040516108799190613aeb565b60405180910390f35b34801561088e57600080fd5b506108976113f1565b6040516108a49190613a25565b60405180910390f35b6108c760048036038101906108c29190613a7d565b611483565b005b3480156108d557600080fd5b506108f060048036038101906108eb9190613fbc565b61174c565b005b3480156108fe57600080fd5b5061091960048036038101906109149190613ca7565b611762565b005b34801561092757600080fd5b50610942600480360381019061093d91906140c4565b61177d565b60405161094f919061397a565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a91906141c1565b6117bf565b005b34801561098d57600080fd5b506109a860048036038101906109a39190614244565b611821565b005b3480156109b657600080fd5b506109bf6118ad565b6040516109cc9190613a25565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613a7d565b61193b565b604051610a099190613a25565b60405180910390f35b348015610a1e57600080fd5b50610a276119c3565b005b348015610a3557600080fd5b50610a3e611ae9565b604051610a4b9190613a25565b60405180910390f35b348015610a6057600080fd5b50610a69611b77565b604051610a769190613a25565b60405180910390f35b348015610a8b57600080fd5b50610aa66004803603810190610aa19190613ca7565b611c05565b005b348015610ab457600080fd5b50610acf6004803603810190610aca9190614284565b611c20565b604051610adc919061397a565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b079190613eda565b611cb4565b005b348015610b1a57600080fd5b50610b356004803603810190610b3091906140c4565b611d37565b604051610b429190613cff565b60405180910390f35b610b656004803603810190610b6091906142c4565b611da6565b005b348015610b7357600080fd5b50610b8e6004803603810190610b89919061437b565b612159565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c5b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c6b5750610c6a826123fe565b5b9050919050565b606060018054610c81906143f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610cad906143f7565b8015610cfa5780601f10610ccf57610100808354040283529160200191610cfa565b820191906000526020600020905b815481529060010190602001808311610cdd57829003601f168201915b5050505050905090565b6000610d0f82612468565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c6020528060005260406000206000915090508054610d69906143f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d95906143f7565b8015610de25780601f10610db757610100808354040283529160200191610de2565b820191906000526020600020905b815481529060010190602001808311610dc557829003601f168201915b505050505081565b6000610df582611123565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c9061449a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e846124b3565b73ffffffffffffffffffffffffffffffffffffffff161480610eb35750610eb281610ead6124b3565b611c20565b5b610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061452c565b60405180910390fd5b610efc83836124bb565b505050565b610f09612574565b8060109081610f1891906146f8565b5050565b60007f0000000000000000000000000000000000000000000000000000000000000000610f4960136125f2565b610f5391906147f9565b905090565b610f69610f636124b3565b82612600565b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061489f565b60405180910390fd5b610fb3838383612695565b505050565b600a60009054906101000a900460ff1681565b60115481565b61010081565b6000610fe28261298e565b9050919050565b610ff1612574565b80600a60006101000a81548160ff02191690831515021790555050565b611016612574565b61101e6129cf565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611044906148f0565b60006040518083038185875af1925050503d8060008114611081576040519150601f19603f3d011682016040523d82523d6000602084013e611086565b606091505b50509050806110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190614951565b60405180910390fd5b506110d3612a1e565b565b6110f0838383604051806020016040528060008152506117bf565b505050565b6110fd612574565b806012908161110c91906146f8565b5050565b600a60019054906101000a900460ff1681565b60008061112f83612a28565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611197906149bd565b60405180910390fd5b80915050919050565b600381565b6060600d600083815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561120d57602002820191906000526020600020905b8154815260200190600101908083116111f9575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614a4f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d8612574565b80600c600084815260200190815260200160002090816112f891906146f8565b505050565b611305612574565b61130f6000612a65565b565b600181565b61131e612574565b80600a60026101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095481565b600a60029054906101000a900460ff1681565b611380612574565b80600a60016101000a81548160ff02191690831515021790555050565b6113a5612574565b8060118190555050565b600b6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611400906143f7565b80601f016020809104026020016040519081016040528092919081815260200182805461142c906143f7565b80156114795780601f1061144e57610100808354040283529160200191611479565b820191906000526020600020905b81548152906001019060200180831161145c57829003601f168201915b5050505050905090565b61148b6129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090614abb565b60405180910390fd5b600a60019054906101000a900460ff16611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90614b4d565b60405180910390fd5b600381111561158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390614bb9565b60405180910390fd5b610100813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ff9190614bee565b61160991906147f9565b111561164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190614c67565b60405180910390fd5b34816009546116599190614c87565b111561169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190614d15565b60405180910390fd5b60005b818110156117405760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117169190614bee565b90506117223382612b2b565b61172c6013612ba5565b50808061173890614d35565b91505061169d565b50611749612a1e565b50565b61175e6117576124b3565b8383612bbb565b5050565b61176a612574565b80600f908161177991906146f8565b5050565b600080836040516020016117919190614dc5565b6040516020818303038152906040528051906020012090506117b68360115483612d27565b91505092915050565b6117d06117ca6124b3565b83612600565b61180f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118069061489f565b60405180910390fd5b61181b84848484612d3e565b50505050565b6118296129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90614abb565b60405180910390fd5b6118a18282612d9a565b6118a9612a1e565b5050565b601080546118ba906143f7565b80601f01602080910402602001604051908101604052809291908181526020018280546118e6906143f7565b80156119335780601f1061190857610100808354040283529160200191611933565b820191906000526020600020905b81548152906001019060200180831161191657829003601f168201915b505050505081565b60606119468261298e565b611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90614e2c565b60405180910390fd5b600061198f61300f565b90508061199b846130a1565b6040516020016119ac929190614e88565b604051602081830303815290604052915050919050565b6119cb6129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090614abb565b60405180910390fd5b611adf6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611a999190613aeb565b602060405180830381865afa158015611ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ada9190614bee565b612d9a565b611ae7612a1e565b565b600f8054611af6906143f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b22906143f7565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505081565b600e8054611b84906143f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb0906143f7565b8015611bfd5780601f10611bd257610100808354040283529160200191611bfd565b820191906000526020600020905b815481529060010190602001808311611be057829003601f168201915b505050505081565b611c0d612574565b80600e9081611c1c91906146f8565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cbc612574565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290614f1e565b60405180910390fd5b611d3481612a65565b50565b6000611d43838361177d565b15611d9b57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611d949190614f3e565b9050611da0565b600090505b92915050565b611dae6129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1390614abb565b60405180910390fd5b600a60009054906101000a900460ff16611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614fbe565b60405180910390fd5b611e75338261177d565b611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab9061502a565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611f009190614f3e565b821115611f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f39906150bc565b60405180910390fd5b610100823073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb59190614bee565b611fbf91906147f9565b1115612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790614c67565b60405180910390fd5b348260095461200f9190614c87565b1115612050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204790614d15565b60405180910390fd5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209f91906147f9565b9250508190555060005b8281101561214c5760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121229190614bee565b905061212e3382612b2b565b6121386013612ba5565b50808061214490614d35565b9150506120a9565b50612155612a1e565b5050565b6121616129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690614abb565b60405180910390fd5b600a60029054906101000a900460ff1661221e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122159061514e565b60405180910390fd5b60008282905011612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b906151ba565b60405180910390fd5b60005b828290508110156123f1573373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8585858181106122da576122d96151da565b5b905060200201356040518263ffffffff1660e01b81526004016122fd9190613cff565b602060405180830381865afa15801561231a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233e919061521e565b73ffffffffffffffffffffffffffffffffffffffff1614612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90615297565b60405180910390fd5b6123b68383838181106123aa576123a96151da565b5b9050602002013561298e565b6123de576123dd338484848181106123d1576123d06151da565b5b90506020020135612b2b565b5b80806123e990614d35565b915050612267565b506123fa612a1e565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124718161298e565b6124b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a7906149bd565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661252e83611123565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61257c6124b3565b73ffffffffffffffffffffffffffffffffffffffff1661259a6113c7565b73ffffffffffffffffffffffffffffffffffffffff16146125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e790615303565b60405180910390fd5b565b600081600001549050919050565b60008061260c83611123565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061264e575061264d8185611c20565b5b8061268c57508373ffffffffffffffffffffffffffffffffffffffff1661267484610d04565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126b582611123565b73ffffffffffffffffffffffffffffffffffffffff161461270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290615395565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361277a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277190615427565b60405180910390fd5b612787838383600161316f565b8273ffffffffffffffffffffffffffffffffffffffff166127a782611123565b73ffffffffffffffffffffffffffffffffffffffff16146127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490615395565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129898383836001613295565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166129b083612a28565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600260005403612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b90615493565b60405180910390fd5b6002600081905550565b6001600081905550565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816010600e604051602001612b4493929190615557565b604051602081830303815290604052805190602001209050600d6000838152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055612ba0838361329b565b505050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c20906155d8565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d1a919061397a565b60405180910390a3505050565b600082612d3485846132b9565b1490509392505050565b612d49848484612695565b612d558484848461330f565b612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b9061566a565b60405180910390fd5b50505050565b600a60029054906101000a900460ff16612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de09061514e565b60405180910390fd5b60008111612e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e23906151ba565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401612e899190613aeb565b602060405180830381865afa158015612ea6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eca9190614bee565b90508183612ed891906147f9565b811015612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f11906156d6565b60405180910390fd5b60005b8181108015612f2b57508281105b15613009576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59338785612f7d91906147f9565b6040518363ffffffff1660e01b8152600401612f9a9291906156f6565b602060405180830381865afa158015612fb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fdb9190614bee565b9050612fe68161298e565b612ff557612ff43382612b2b565b5b50808061300190614d35565b915050612f1d565b50505050565b60606012805461301e906143f7565b80601f016020809104026020016040519081016040528092919081815260200182805461304a906143f7565b80156130975780601f1061306c57610100808354040283529160200191613097565b820191906000526020600020905b81548152906001019060200180831161307a57829003601f168201915b5050505050905090565b6060600060016130b084613496565b01905060008167ffffffffffffffff8111156130cf576130ce613b7c565b5b6040519080825280601f01601f1916602001820160405280156131015781602001600182028036833780820191505090505b509050600082602001820190505b600115613164578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816131585761315761571f565b5b0494506000850361310f575b819350505050919050565b600181111561328f57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146132035780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131fb9190614f3e565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461328e5780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461328691906147f9565b925050819055505b5b50505050565b50505050565b6132b58282604051806020016040528060008152506135e9565b5050565b60008082905060005b8451811015613304576132ef828683815181106132e2576132e16151da565b5b6020026020010151613644565b915080806132fc90614d35565b9150506132c2565b508091505092915050565b60006133308473ffffffffffffffffffffffffffffffffffffffff1661366f565b15613489578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133596124b3565b8786866040518563ffffffff1660e01b815260040161337b94939291906157a3565b6020604051808303816000875af19250505080156133b757506040513d601f19601f820116820180604052508101906133b49190615804565b60015b613439573d80600081146133e7576040519150601f19603f3d011682016040523d82523d6000602084013e6133ec565b606091505b506000815103613431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134289061566a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061348e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106134f4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816134ea576134e961571f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613531576d04ee2d6d415b85acef810000000083816135275761352661571f565b5b0492506020810190505b662386f26fc10000831061356057662386f26fc1000083816135565761355561571f565b5b0492506010810190505b6305f5e1008310613589576305f5e100838161357f5761357e61571f565b5b0492506008810190505b61271083106135ae5761271083816135a4576135a361571f565b5b0492506004810190505b606483106135d157606483816135c7576135c661571f565b5b0492506002810190505b600a83106135e0576001810190505b80915050919050565b6135f38383613692565b613600600084848461330f565b61363f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136369061566a565b60405180910390fd5b505050565b600081831061365c5761365782846138af565b613667565b61366683836138af565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f89061587d565b60405180910390fd5b61370a8161298e565b1561374a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613741906158e9565b60405180910390fd5b61375860008383600161316f565b6137618161298e565b156137a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613798906158e9565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138ab600083836001613295565b5050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61390f816138da565b811461391a57600080fd5b50565b60008135905061392c81613906565b92915050565b600060208284031215613948576139476138d0565b5b60006139568482850161391d565b91505092915050565b60008115159050919050565b6139748161395f565b82525050565b600060208201905061398f600083018461396b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139cf5780820151818401526020810190506139b4565b60008484015250505050565b6000601f19601f8301169050919050565b60006139f782613995565b613a0181856139a0565b9350613a118185602086016139b1565b613a1a816139db565b840191505092915050565b60006020820190508181036000830152613a3f81846139ec565b905092915050565b6000819050919050565b613a5a81613a47565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b600060208284031215613a9357613a926138d0565b5b6000613aa184828501613a68565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ad582613aaa565b9050919050565b613ae581613aca565b82525050565b6000602082019050613b006000830184613adc565b92915050565b613b0f81613aca565b8114613b1a57600080fd5b50565b600081359050613b2c81613b06565b92915050565b60008060408385031215613b4957613b486138d0565b5b6000613b5785828601613b1d565b9250506020613b6885828601613a68565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bb4826139db565b810181811067ffffffffffffffff82111715613bd357613bd2613b7c565b5b80604052505050565b6000613be66138c6565b9050613bf28282613bab565b919050565b600067ffffffffffffffff821115613c1257613c11613b7c565b5b613c1b826139db565b9050602081019050919050565b82818337600083830152505050565b6000613c4a613c4584613bf7565b613bdc565b905082815260208101848484011115613c6657613c65613b77565b5b613c71848285613c28565b509392505050565b600082601f830112613c8e57613c8d613b72565b5b8135613c9e848260208601613c37565b91505092915050565b600060208284031215613cbd57613cbc6138d0565b5b600082013567ffffffffffffffff811115613cdb57613cda6138d5565b5b613ce784828501613c79565b91505092915050565b613cf981613a47565b82525050565b6000602082019050613d146000830184613cf0565b92915050565b600080600060608486031215613d3357613d326138d0565b5b6000613d4186828701613b1d565b9350506020613d5286828701613b1d565b9250506040613d6386828701613a68565b9150509250925092565b6000819050919050565b613d8081613d6d565b82525050565b6000602082019050613d9b6000830184613d77565b92915050565b613daa8161395f565b8114613db557600080fd5b50565b600081359050613dc781613da1565b92915050565b600060208284031215613de357613de26138d0565b5b6000613df184828501613db8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e2f81613d6d565b82525050565b6000613e418383613e26565b60208301905092915050565b6000602082019050919050565b6000613e6582613dfa565b613e6f8185613e05565b9350613e7a83613e16565b8060005b83811015613eab578151613e928882613e35565b9750613e9d83613e4d565b925050600181019050613e7e565b5085935050505092915050565b60006020820190508181036000830152613ed28184613e5a565b905092915050565b600060208284031215613ef057613eef6138d0565b5b6000613efe84828501613b1d565b91505092915050565b60008060408385031215613f1e57613f1d6138d0565b5b6000613f2c85828601613a68565b925050602083013567ffffffffffffffff811115613f4d57613f4c6138d5565b5b613f5985828601613c79565b9150509250929050565b613f6c81613d6d565b8114613f7757600080fd5b50565b600081359050613f8981613f63565b92915050565b600060208284031215613fa557613fa46138d0565b5b6000613fb384828501613f7a565b91505092915050565b60008060408385031215613fd357613fd26138d0565b5b6000613fe185828601613b1d565b9250506020613ff285828601613db8565b9150509250929050565b600067ffffffffffffffff82111561401757614016613b7c565b5b602082029050602081019050919050565b600080fd5b600061404061403b84613ffc565b613bdc565b9050808382526020820190506020840283018581111561406357614062614028565b5b835b8181101561408c57806140788882613f7a565b845260208401935050602081019050614065565b5050509392505050565b600082601f8301126140ab576140aa613b72565b5b81356140bb84826020860161402d565b91505092915050565b600080604083850312156140db576140da6138d0565b5b60006140e985828601613b1d565b925050602083013567ffffffffffffffff81111561410a576141096138d5565b5b61411685828601614096565b9150509250929050565b600067ffffffffffffffff82111561413b5761413a613b7c565b5b614144826139db565b9050602081019050919050565b600061416461415f84614120565b613bdc565b9050828152602081018484840111156141805761417f613b77565b5b61418b848285613c28565b509392505050565b600082601f8301126141a8576141a7613b72565b5b81356141b8848260208601614151565b91505092915050565b600080600080608085870312156141db576141da6138d0565b5b60006141e987828801613b1d565b94505060206141fa87828801613b1d565b935050604061420b87828801613a68565b925050606085013567ffffffffffffffff81111561422c5761422b6138d5565b5b61423887828801614193565b91505092959194509250565b6000806040838503121561425b5761425a6138d0565b5b600061426985828601613a68565b925050602061427a85828601613a68565b9150509250929050565b6000806040838503121561429b5761429a6138d0565b5b60006142a985828601613b1d565b92505060206142ba85828601613b1d565b9150509250929050565b600080604083850312156142db576142da6138d0565b5b60006142e985828601613a68565b925050602083013567ffffffffffffffff81111561430a576143096138d5565b5b61431685828601614096565b9150509250929050565b600080fd5b60008083601f84011261433b5761433a613b72565b5b8235905067ffffffffffffffff81111561435857614357614320565b5b60208301915083602082028301111561437457614373614028565b5b9250929050565b60008060208385031215614392576143916138d0565b5b600083013567ffffffffffffffff8111156143b0576143af6138d5565b5b6143bc85828601614325565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061440f57607f821691505b602082108103614422576144216143c8565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006144846021836139a0565b915061448f82614428565b604082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614516603d836139a0565b9150614521826144ba565b604082019050919050565b6000602082019050818103600083015261454581614509565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614571565b6145b88683614571565b95508019841693508086168417925050509392505050565b6000819050919050565b60006145f56145f06145eb84613a47565b6145d0565b613a47565b9050919050565b6000819050919050565b61460f836145da565b61462361461b826145fc565b84845461457e565b825550505050565b600090565b61463861462b565b614643818484614606565b505050565b5b818110156146675761465c600082614630565b600181019050614649565b5050565b601f8211156146ac5761467d8161454c565b61468684614561565b81016020851015614695578190505b6146a96146a185614561565b830182614648565b50505b505050565b600082821c905092915050565b60006146cf600019846008026146b1565b1980831691505092915050565b60006146e883836146be565b9150826002028217905092915050565b61470182613995565b67ffffffffffffffff81111561471a57614719613b7c565b5b61472482546143f7565b61472f82828561466b565b600060209050601f8311600181146147625760008415614750578287015190505b61475a85826146dc565b8655506147c2565b601f1984166147708661454c565b60005b8281101561479857848901518255600182019150602085019450602081019050614773565b868310156147b557848901516147b1601f8916826146be565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061480482613a47565b915061480f83613a47565b9250828201905080821115614827576148266147ca565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614889602d836139a0565b91506148948261482d565b604082019050919050565b600060208201905081810360008301526148b88161487c565b9050919050565b600081905092915050565b50565b60006148da6000836148bf565b91506148e5826148ca565b600082019050919050565b60006148fb826148cd565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061493b6010836139a0565b915061494682614905565b602082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006149a76018836139a0565b91506149b282614971565b602082019050919050565b600060208201905081810360008301526149d68161499a565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614a396029836139a0565b9150614a44826149dd565b604082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614aa5601e836139a0565b9150614ab082614a6f565b602082019050919050565b60006020820190508181036000830152614ad481614a98565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b376022836139a0565b9150614b4282614adb565b604082019050919050565b60006020820190508181036000830152614b6681614b2a565b9050919050565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b6000614ba3601b836139a0565b9150614bae82614b6d565b602082019050919050565b60006020820190508181036000830152614bd281614b96565b9050919050565b600081519050614be881613a51565b92915050565b600060208284031215614c0457614c036138d0565b5b6000614c1284828501614bd9565b91505092915050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b6000614c516020836139a0565b9150614c5c82614c1b565b602082019050919050565b60006020820190508181036000830152614c8081614c44565b9050919050565b6000614c9282613a47565b9150614c9d83613a47565b9250828202614cab81613a47565b91508282048414831517614cc257614cc16147ca565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614cff601f836139a0565b9150614d0a82614cc9565b602082019050919050565b60006020820190508181036000830152614d2e81614cf2565b9050919050565b6000614d4082613a47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d7257614d716147ca565b5b600182019050919050565b60008160601b9050919050565b6000614d9582614d7d565b9050919050565b6000614da782614d8a565b9050919050565b614dbf614dba82613aca565b614d9c565b82525050565b6000614dd18284614dae565b60148201915081905092915050565b7f546f6b656e20494420646f6573206e6f74206578697374000000000000000000600082015250565b6000614e166017836139a0565b9150614e2182614de0565b602082019050919050565b60006020820190508181036000830152614e4581614e09565b9050919050565b600081905092915050565b6000614e6282613995565b614e6c8185614e4c565b9350614e7c8185602086016139b1565b80840191505092915050565b6000614e948285614e57565b9150614ea08284614e57565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f086026836139a0565b9150614f1382614eac565b604082019050919050565b60006020820190508181036000830152614f3781614efb565b9050919050565b6000614f4982613a47565b9150614f5483613a47565b9250828203905081811115614f6c57614f6b6147ca565b5b92915050565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b6000614fa86018836139a0565b9150614fb382614f72565b602082019050919050565b60006020820190508181036000830152614fd781614f9b565b9050919050565b7f4e6f74206f6e20616c6c6f77206c697374000000000000000000000000000000600082015250565b60006150146011836139a0565b915061501f82614fde565b602082019050919050565b6000602082019050818103600083015261504381615007565b9050919050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b60006150a66022836139a0565b91506150b18261504a565b604082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f436c61696d206d7573742062652061637469766520746f206d696e7420746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b60006151386023836139a0565b9150615143826150dc565b604082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f4d75737420636c61696d206174206c65617374206f6e6520746f6b656e2e0000600082015250565b60006151a4601e836139a0565b91506151af8261516e565b602082019050919050565b600060208201905081810360008301526151d381615197565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061521881613b06565b92915050565b600060208284031215615234576152336138d0565b5b600061524284828501615209565b91505092915050565b7f4d757374206f776e20616c6c20706172656e7420746f6b656e732e0000000000600082015250565b6000615281601b836139a0565b915061528c8261524b565b602082019050919050565b600060208201905081810360008301526152b081615274565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006152ed6020836139a0565b91506152f8826152b7565b602082019050919050565b6000602082019050818103600083015261531c816152e0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061537f6025836139a0565b915061538a82615323565b604082019050919050565b600060208201905081810360008301526153ae81615372565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006154116024836139a0565b915061541c826153b5565b604082019050919050565b6000602082019050818103600083015261544081615404565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061547d601f836139a0565b915061548882615447565b602082019050919050565b600060208201905081810360008301526154ac81615470565b9050919050565b6000819050919050565b6154ce6154c982613a47565b6154b3565b82525050565b600081546154e1816143f7565b6154eb8186614e4c565b94506001821660008114615506576001811461551b5761554e565b60ff198316865281151582028601935061554e565b6155248561454c565b60005b8381101561554657815481890152600182019150602081019050615527565b838801955050505b50505092915050565b600061556382866154bd565b60208201915061557382856154d4565b915061557f82846154d4565b9150819050949350505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006155c26019836139a0565b91506155cd8261558c565b602082019050919050565b600060208201905081810360008301526155f1816155b5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006156546032836139a0565b915061565f826155f8565b604082019050919050565b6000602082019050818103600083015261568381615647565b9050919050565b7f496e73756666696369656e7420706172656e7420746f6b656e732e0000000000600082015250565b60006156c0601b836139a0565b91506156cb8261568a565b602082019050919050565b600060208201905081810360008301526156ef816156b3565b9050919050565b600060408201905061570b6000830185613adc565b6157186020830184613cf0565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006157758261574e565b61577f8185615759565b935061578f8185602086016139b1565b615798816139db565b840191505092915050565b60006080820190506157b86000830187613adc565b6157c56020830186613adc565b6157d26040830185613cf0565b81810360608301526157e4818461576a565b905095945050505050565b6000815190506157fe81613906565b92915050565b60006020828403121561581a576158196138d0565b5b6000615828848285016157ef565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006158676020836139a0565b915061587282615831565b602082019050919050565b600060208201905081810360008301526158968161585a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006158d3601c836139a0565b91506158de8261589d565b602082019050919050565b60006020820190508181036000830152615902816158c6565b905091905056fea264697066735822122039d5dc2891688c1b64098c225cb0819d0323ac055cfd1f61b393663e7470670064736f6c634300081200330000000000000000000000002083bfc586265b3dfac363f075ef7bd2e1b443700000000000000000000000000000000000000000000000000000000000000080

Deployed Bytecode

0x6080604052600436106102c95760003560e01c806379a801c011610175578063b88d4fde116100dc578063e0c9f80c11610095578063f2fde38b1161006f578063f2fde38b14610ae5578063f6c11dad14610b0e578063fa05a65714610b4b578063fc8504ea14610b67576102c9565b8063e0c9f80c14610a54578063e2ba90ae14610a7f578063e985e9c514610aa8576102c9565b8063b88d4fde14610958578063c349026314610981578063c6ab67a3146109aa578063c87b56dd146109d5578063d1058e5914610a12578063d410cb6414610a29576102c9565b80638da5cb5b1161012e5780638da5cb5b1461085757806395d89b4114610882578063a0712d68146108ad578063a22cb465146108c9578063a282a60e146108f2578063b32c56801461091b576102c9565b806379a801c0146107475780637b1b1de6146107725780637fc278031461079d578063841718a6146107c857806384584d07146107f157806388879b1c1461081a576102c9565b80633a73c58d1161023457806365f13097116101ed57806371199d30116101c757806371199d30146106b3578063715018a6146106dc57806372f85d51146106f357806373417b091461071e576102c9565b806365f130971461060e578063697c64f91461063957806370a0823114610676576102c9565b80633a73c58d146105145780633ccfd60b1461053d57806342842e0e1461055457806355f804b31461057d578063564566a8146105a65780636352211e146105d1576102c9565b806318160ddd1161028657806318160ddd1461040257806323b872dd1461042d57806329fc6bae146104565780632eb4a7ab1461048157806332cb6b0c146104ac57806333c41a90146104d7576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc1461033657806308ff7f6114610373578063095ea7b3146103b057806310969523146103d9575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613932565b610b90565b604051610302919061397a565b60405180910390f35b34801561031757600080fd5b50610320610c72565b60405161032d9190613a25565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613a7d565b610d04565b60405161036a9190613aeb565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613a7d565b610d4a565b6040516103a79190613a25565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190613b32565b610dea565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190613ca7565b610f01565b005b34801561040e57600080fd5b50610417610f1c565b6040516104249190613cff565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613d1a565b610f58565b005b34801561046257600080fd5b5061046b610fb8565b604051610478919061397a565b60405180910390f35b34801561048d57600080fd5b50610496610fcb565b6040516104a39190613d86565b60405180910390f35b3480156104b857600080fd5b506104c1610fd1565b6040516104ce9190613cff565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613a7d565b610fd7565b60405161050b919061397a565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613dcd565b610fe9565b005b34801561054957600080fd5b5061055261100e565b005b34801561056057600080fd5b5061057b60048036038101906105769190613d1a565b6110d5565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613ca7565b6110f5565b005b3480156105b257600080fd5b506105bb611110565b6040516105c8919061397a565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190613a7d565b611123565b6040516106059190613aeb565b60405180910390f35b34801561061a57600080fd5b506106236111a9565b6040516106309190613cff565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190613a7d565b6111ae565b60405161066d9190613eb8565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613eda565b611219565b6040516106aa9190613cff565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190613f07565b6112d0565b005b3480156106e857600080fd5b506106f16112fd565b005b3480156106ff57600080fd5b50610708611311565b6040516107159190613cff565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190613dcd565b611316565b005b34801561075357600080fd5b5061075c61133b565b6040516107699190613cff565b60405180910390f35b34801561077e57600080fd5b5061078761135f565b6040516107949190613cff565b60405180910390f35b3480156107a957600080fd5b506107b2611365565b6040516107bf919061397a565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613dcd565b611378565b005b3480156107fd57600080fd5b5061081860048036038101906108139190613f8f565b61139d565b005b34801561082657600080fd5b50610841600480360381019061083c9190613eda565b6113af565b60405161084e9190613cff565b60405180910390f35b34801561086357600080fd5b5061086c6113c7565b6040516108799190613aeb565b60405180910390f35b34801561088e57600080fd5b506108976113f1565b6040516108a49190613a25565b60405180910390f35b6108c760048036038101906108c29190613a7d565b611483565b005b3480156108d557600080fd5b506108f060048036038101906108eb9190613fbc565b61174c565b005b3480156108fe57600080fd5b5061091960048036038101906109149190613ca7565b611762565b005b34801561092757600080fd5b50610942600480360381019061093d91906140c4565b61177d565b60405161094f919061397a565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a91906141c1565b6117bf565b005b34801561098d57600080fd5b506109a860048036038101906109a39190614244565b611821565b005b3480156109b657600080fd5b506109bf6118ad565b6040516109cc9190613a25565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613a7d565b61193b565b604051610a099190613a25565b60405180910390f35b348015610a1e57600080fd5b50610a276119c3565b005b348015610a3557600080fd5b50610a3e611ae9565b604051610a4b9190613a25565b60405180910390f35b348015610a6057600080fd5b50610a69611b77565b604051610a769190613a25565b60405180910390f35b348015610a8b57600080fd5b50610aa66004803603810190610aa19190613ca7565b611c05565b005b348015610ab457600080fd5b50610acf6004803603810190610aca9190614284565b611c20565b604051610adc919061397a565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b079190613eda565b611cb4565b005b348015610b1a57600080fd5b50610b356004803603810190610b3091906140c4565b611d37565b604051610b429190613cff565b60405180910390f35b610b656004803603810190610b6091906142c4565b611da6565b005b348015610b7357600080fd5b50610b8e6004803603810190610b89919061437b565b612159565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c5b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c6b5750610c6a826123fe565b5b9050919050565b606060018054610c81906143f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610cad906143f7565b8015610cfa5780601f10610ccf57610100808354040283529160200191610cfa565b820191906000526020600020905b815481529060010190602001808311610cdd57829003601f168201915b5050505050905090565b6000610d0f82612468565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c6020528060005260406000206000915090508054610d69906143f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d95906143f7565b8015610de25780601f10610db757610100808354040283529160200191610de2565b820191906000526020600020905b815481529060010190602001808311610dc557829003601f168201915b505050505081565b6000610df582611123565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c9061449a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e846124b3565b73ffffffffffffffffffffffffffffffffffffffff161480610eb35750610eb281610ead6124b3565b611c20565b5b610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061452c565b60405180910390fd5b610efc83836124bb565b505050565b610f09612574565b8060109081610f1891906146f8565b5050565b60007f0000000000000000000000000000000000000000000000000000000000000080610f4960136125f2565b610f5391906147f9565b905090565b610f69610f636124b3565b82612600565b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061489f565b60405180910390fd5b610fb3838383612695565b505050565b600a60009054906101000a900460ff1681565b60115481565b61010081565b6000610fe28261298e565b9050919050565b610ff1612574565b80600a60006101000a81548160ff02191690831515021790555050565b611016612574565b61101e6129cf565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611044906148f0565b60006040518083038185875af1925050503d8060008114611081576040519150601f19603f3d011682016040523d82523d6000602084013e611086565b606091505b50509050806110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190614951565b60405180910390fd5b506110d3612a1e565b565b6110f0838383604051806020016040528060008152506117bf565b505050565b6110fd612574565b806012908161110c91906146f8565b5050565b600a60019054906101000a900460ff1681565b60008061112f83612a28565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611197906149bd565b60405180910390fd5b80915050919050565b600381565b6060600d600083815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561120d57602002820191906000526020600020905b8154815260200190600101908083116111f9575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614a4f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d8612574565b80600c600084815260200190815260200160002090816112f891906146f8565b505050565b611305612574565b61130f6000612a65565b565b600181565b61131e612574565b80600a60026101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000008081565b60095481565b600a60029054906101000a900460ff1681565b611380612574565b80600a60016101000a81548160ff02191690831515021790555050565b6113a5612574565b8060118190555050565b600b6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611400906143f7565b80601f016020809104026020016040519081016040528092919081815260200182805461142c906143f7565b80156114795780601f1061144e57610100808354040283529160200191611479565b820191906000526020600020905b81548152906001019060200180831161145c57829003601f168201915b5050505050905090565b61148b6129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090614abb565b60405180910390fd5b600a60019054906101000a900460ff16611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90614b4d565b60405180910390fd5b600381111561158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390614bb9565b60405180910390fd5b610100813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ff9190614bee565b61160991906147f9565b111561164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190614c67565b60405180910390fd5b34816009546116599190614c87565b111561169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190614d15565b60405180910390fd5b60005b818110156117405760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117169190614bee565b90506117223382612b2b565b61172c6013612ba5565b50808061173890614d35565b91505061169d565b50611749612a1e565b50565b61175e6117576124b3565b8383612bbb565b5050565b61176a612574565b80600f908161177991906146f8565b5050565b600080836040516020016117919190614dc5565b6040516020818303038152906040528051906020012090506117b68360115483612d27565b91505092915050565b6117d06117ca6124b3565b83612600565b61180f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118069061489f565b60405180910390fd5b61181b84848484612d3e565b50505050565b6118296129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90614abb565b60405180910390fd5b6118a18282612d9a565b6118a9612a1e565b5050565b601080546118ba906143f7565b80601f01602080910402602001604051908101604052809291908181526020018280546118e6906143f7565b80156119335780601f1061190857610100808354040283529160200191611933565b820191906000526020600020905b81548152906001019060200180831161191657829003601f168201915b505050505081565b60606119468261298e565b611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90614e2c565b60405180910390fd5b600061198f61300f565b90508061199b846130a1565b6040516020016119ac929190614e88565b604051602081830303815290604052915050919050565b6119cb6129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090614abb565b60405180910390fd5b611adf6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611a999190613aeb565b602060405180830381865afa158015611ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ada9190614bee565b612d9a565b611ae7612a1e565b565b600f8054611af6906143f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b22906143f7565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505081565b600e8054611b84906143f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb0906143f7565b8015611bfd5780601f10611bd257610100808354040283529160200191611bfd565b820191906000526020600020905b815481529060010190602001808311611be057829003601f168201915b505050505081565b611c0d612574565b80600e9081611c1c91906146f8565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cbc612574565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290614f1e565b60405180910390fd5b611d3481612a65565b50565b6000611d43838361177d565b15611d9b57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611d949190614f3e565b9050611da0565b600090505b92915050565b611dae6129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1390614abb565b60405180910390fd5b600a60009054906101000a900460ff16611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614fbe565b60405180910390fd5b611e75338261177d565b611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab9061502a565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611f009190614f3e565b821115611f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f39906150bc565b60405180910390fd5b610100823073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb59190614bee565b611fbf91906147f9565b1115612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790614c67565b60405180910390fd5b348260095461200f9190614c87565b1115612050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204790614d15565b60405180910390fd5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209f91906147f9565b9250508190555060005b8281101561214c5760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121229190614bee565b905061212e3382612b2b565b6121386013612ba5565b50808061214490614d35565b9150506120a9565b50612155612a1e565b5050565b6121616129cf565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690614abb565b60405180910390fd5b600a60029054906101000a900460ff1661221e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122159061514e565b60405180910390fd5b60008282905011612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b906151ba565b60405180910390fd5b60005b828290508110156123f1573373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8585858181106122da576122d96151da565b5b905060200201356040518263ffffffff1660e01b81526004016122fd9190613cff565b602060405180830381865afa15801561231a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233e919061521e565b73ffffffffffffffffffffffffffffffffffffffff1614612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90615297565b60405180910390fd5b6123b68383838181106123aa576123a96151da565b5b9050602002013561298e565b6123de576123dd338484848181106123d1576123d06151da565b5b90506020020135612b2b565b5b80806123e990614d35565b915050612267565b506123fa612a1e565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124718161298e565b6124b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a7906149bd565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661252e83611123565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61257c6124b3565b73ffffffffffffffffffffffffffffffffffffffff1661259a6113c7565b73ffffffffffffffffffffffffffffffffffffffff16146125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e790615303565b60405180910390fd5b565b600081600001549050919050565b60008061260c83611123565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061264e575061264d8185611c20565b5b8061268c57508373ffffffffffffffffffffffffffffffffffffffff1661267484610d04565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126b582611123565b73ffffffffffffffffffffffffffffffffffffffff161461270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290615395565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361277a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277190615427565b60405180910390fd5b612787838383600161316f565b8273ffffffffffffffffffffffffffffffffffffffff166127a782611123565b73ffffffffffffffffffffffffffffffffffffffff16146127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490615395565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129898383836001613295565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166129b083612a28565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600260005403612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b90615493565b60405180910390fd5b6002600081905550565b6001600081905550565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816010600e604051602001612b4493929190615557565b604051602081830303815290604052805190602001209050600d6000838152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055612ba0838361329b565b505050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c20906155d8565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d1a919061397a565b60405180910390a3505050565b600082612d3485846132b9565b1490509392505050565b612d49848484612695565b612d558484848461330f565b612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b9061566a565b60405180910390fd5b50505050565b600a60029054906101000a900460ff16612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de09061514e565b60405180910390fd5b60008111612e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e23906151ba565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401612e899190613aeb565b602060405180830381865afa158015612ea6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eca9190614bee565b90508183612ed891906147f9565b811015612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f11906156d6565b60405180910390fd5b60005b8181108015612f2b57508281105b15613009576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59338785612f7d91906147f9565b6040518363ffffffff1660e01b8152600401612f9a9291906156f6565b602060405180830381865afa158015612fb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fdb9190614bee565b9050612fe68161298e565b612ff557612ff43382612b2b565b5b50808061300190614d35565b915050612f1d565b50505050565b60606012805461301e906143f7565b80601f016020809104026020016040519081016040528092919081815260200182805461304a906143f7565b80156130975780601f1061306c57610100808354040283529160200191613097565b820191906000526020600020905b81548152906001019060200180831161307a57829003601f168201915b5050505050905090565b6060600060016130b084613496565b01905060008167ffffffffffffffff8111156130cf576130ce613b7c565b5b6040519080825280601f01601f1916602001820160405280156131015781602001600182028036833780820191505090505b509050600082602001820190505b600115613164578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816131585761315761571f565b5b0494506000850361310f575b819350505050919050565b600181111561328f57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146132035780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131fb9190614f3e565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461328e5780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461328691906147f9565b925050819055505b5b50505050565b50505050565b6132b58282604051806020016040528060008152506135e9565b5050565b60008082905060005b8451811015613304576132ef828683815181106132e2576132e16151da565b5b6020026020010151613644565b915080806132fc90614d35565b9150506132c2565b508091505092915050565b60006133308473ffffffffffffffffffffffffffffffffffffffff1661366f565b15613489578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133596124b3565b8786866040518563ffffffff1660e01b815260040161337b94939291906157a3565b6020604051808303816000875af19250505080156133b757506040513d601f19601f820116820180604052508101906133b49190615804565b60015b613439573d80600081146133e7576040519150601f19603f3d011682016040523d82523d6000602084013e6133ec565b606091505b506000815103613431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134289061566a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061348e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106134f4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816134ea576134e961571f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613531576d04ee2d6d415b85acef810000000083816135275761352661571f565b5b0492506020810190505b662386f26fc10000831061356057662386f26fc1000083816135565761355561571f565b5b0492506010810190505b6305f5e1008310613589576305f5e100838161357f5761357e61571f565b5b0492506008810190505b61271083106135ae5761271083816135a4576135a361571f565b5b0492506004810190505b606483106135d157606483816135c7576135c661571f565b5b0492506002810190505b600a83106135e0576001810190505b80915050919050565b6135f38383613692565b613600600084848461330f565b61363f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136369061566a565b60405180910390fd5b505050565b600081831061365c5761365782846138af565b613667565b61366683836138af565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f89061587d565b60405180910390fd5b61370a8161298e565b1561374a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613741906158e9565b60405180910390fd5b61375860008383600161316f565b6137618161298e565b156137a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613798906158e9565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138ab600083836001613295565b5050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61390f816138da565b811461391a57600080fd5b50565b60008135905061392c81613906565b92915050565b600060208284031215613948576139476138d0565b5b60006139568482850161391d565b91505092915050565b60008115159050919050565b6139748161395f565b82525050565b600060208201905061398f600083018461396b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139cf5780820151818401526020810190506139b4565b60008484015250505050565b6000601f19601f8301169050919050565b60006139f782613995565b613a0181856139a0565b9350613a118185602086016139b1565b613a1a816139db565b840191505092915050565b60006020820190508181036000830152613a3f81846139ec565b905092915050565b6000819050919050565b613a5a81613a47565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b600060208284031215613a9357613a926138d0565b5b6000613aa184828501613a68565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ad582613aaa565b9050919050565b613ae581613aca565b82525050565b6000602082019050613b006000830184613adc565b92915050565b613b0f81613aca565b8114613b1a57600080fd5b50565b600081359050613b2c81613b06565b92915050565b60008060408385031215613b4957613b486138d0565b5b6000613b5785828601613b1d565b9250506020613b6885828601613a68565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bb4826139db565b810181811067ffffffffffffffff82111715613bd357613bd2613b7c565b5b80604052505050565b6000613be66138c6565b9050613bf28282613bab565b919050565b600067ffffffffffffffff821115613c1257613c11613b7c565b5b613c1b826139db565b9050602081019050919050565b82818337600083830152505050565b6000613c4a613c4584613bf7565b613bdc565b905082815260208101848484011115613c6657613c65613b77565b5b613c71848285613c28565b509392505050565b600082601f830112613c8e57613c8d613b72565b5b8135613c9e848260208601613c37565b91505092915050565b600060208284031215613cbd57613cbc6138d0565b5b600082013567ffffffffffffffff811115613cdb57613cda6138d5565b5b613ce784828501613c79565b91505092915050565b613cf981613a47565b82525050565b6000602082019050613d146000830184613cf0565b92915050565b600080600060608486031215613d3357613d326138d0565b5b6000613d4186828701613b1d565b9350506020613d5286828701613b1d565b9250506040613d6386828701613a68565b9150509250925092565b6000819050919050565b613d8081613d6d565b82525050565b6000602082019050613d9b6000830184613d77565b92915050565b613daa8161395f565b8114613db557600080fd5b50565b600081359050613dc781613da1565b92915050565b600060208284031215613de357613de26138d0565b5b6000613df184828501613db8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e2f81613d6d565b82525050565b6000613e418383613e26565b60208301905092915050565b6000602082019050919050565b6000613e6582613dfa565b613e6f8185613e05565b9350613e7a83613e16565b8060005b83811015613eab578151613e928882613e35565b9750613e9d83613e4d565b925050600181019050613e7e565b5085935050505092915050565b60006020820190508181036000830152613ed28184613e5a565b905092915050565b600060208284031215613ef057613eef6138d0565b5b6000613efe84828501613b1d565b91505092915050565b60008060408385031215613f1e57613f1d6138d0565b5b6000613f2c85828601613a68565b925050602083013567ffffffffffffffff811115613f4d57613f4c6138d5565b5b613f5985828601613c79565b9150509250929050565b613f6c81613d6d565b8114613f7757600080fd5b50565b600081359050613f8981613f63565b92915050565b600060208284031215613fa557613fa46138d0565b5b6000613fb384828501613f7a565b91505092915050565b60008060408385031215613fd357613fd26138d0565b5b6000613fe185828601613b1d565b9250506020613ff285828601613db8565b9150509250929050565b600067ffffffffffffffff82111561401757614016613b7c565b5b602082029050602081019050919050565b600080fd5b600061404061403b84613ffc565b613bdc565b9050808382526020820190506020840283018581111561406357614062614028565b5b835b8181101561408c57806140788882613f7a565b845260208401935050602081019050614065565b5050509392505050565b600082601f8301126140ab576140aa613b72565b5b81356140bb84826020860161402d565b91505092915050565b600080604083850312156140db576140da6138d0565b5b60006140e985828601613b1d565b925050602083013567ffffffffffffffff81111561410a576141096138d5565b5b61411685828601614096565b9150509250929050565b600067ffffffffffffffff82111561413b5761413a613b7c565b5b614144826139db565b9050602081019050919050565b600061416461415f84614120565b613bdc565b9050828152602081018484840111156141805761417f613b77565b5b61418b848285613c28565b509392505050565b600082601f8301126141a8576141a7613b72565b5b81356141b8848260208601614151565b91505092915050565b600080600080608085870312156141db576141da6138d0565b5b60006141e987828801613b1d565b94505060206141fa87828801613b1d565b935050604061420b87828801613a68565b925050606085013567ffffffffffffffff81111561422c5761422b6138d5565b5b61423887828801614193565b91505092959194509250565b6000806040838503121561425b5761425a6138d0565b5b600061426985828601613a68565b925050602061427a85828601613a68565b9150509250929050565b6000806040838503121561429b5761429a6138d0565b5b60006142a985828601613b1d565b92505060206142ba85828601613b1d565b9150509250929050565b600080604083850312156142db576142da6138d0565b5b60006142e985828601613a68565b925050602083013567ffffffffffffffff81111561430a576143096138d5565b5b61431685828601614096565b9150509250929050565b600080fd5b60008083601f84011261433b5761433a613b72565b5b8235905067ffffffffffffffff81111561435857614357614320565b5b60208301915083602082028301111561437457614373614028565b5b9250929050565b60008060208385031215614392576143916138d0565b5b600083013567ffffffffffffffff8111156143b0576143af6138d5565b5b6143bc85828601614325565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061440f57607f821691505b602082108103614422576144216143c8565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006144846021836139a0565b915061448f82614428565b604082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614516603d836139a0565b9150614521826144ba565b604082019050919050565b6000602082019050818103600083015261454581614509565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614571565b6145b88683614571565b95508019841693508086168417925050509392505050565b6000819050919050565b60006145f56145f06145eb84613a47565b6145d0565b613a47565b9050919050565b6000819050919050565b61460f836145da565b61462361461b826145fc565b84845461457e565b825550505050565b600090565b61463861462b565b614643818484614606565b505050565b5b818110156146675761465c600082614630565b600181019050614649565b5050565b601f8211156146ac5761467d8161454c565b61468684614561565b81016020851015614695578190505b6146a96146a185614561565b830182614648565b50505b505050565b600082821c905092915050565b60006146cf600019846008026146b1565b1980831691505092915050565b60006146e883836146be565b9150826002028217905092915050565b61470182613995565b67ffffffffffffffff81111561471a57614719613b7c565b5b61472482546143f7565b61472f82828561466b565b600060209050601f8311600181146147625760008415614750578287015190505b61475a85826146dc565b8655506147c2565b601f1984166147708661454c565b60005b8281101561479857848901518255600182019150602085019450602081019050614773565b868310156147b557848901516147b1601f8916826146be565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061480482613a47565b915061480f83613a47565b9250828201905080821115614827576148266147ca565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614889602d836139a0565b91506148948261482d565b604082019050919050565b600060208201905081810360008301526148b88161487c565b9050919050565b600081905092915050565b50565b60006148da6000836148bf565b91506148e5826148ca565b600082019050919050565b60006148fb826148cd565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061493b6010836139a0565b915061494682614905565b602082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006149a76018836139a0565b91506149b282614971565b602082019050919050565b600060208201905081810360008301526149d68161499a565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614a396029836139a0565b9150614a44826149dd565b604082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614aa5601e836139a0565b9150614ab082614a6f565b602082019050919050565b60006020820190508181036000830152614ad481614a98565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b376022836139a0565b9150614b4282614adb565b604082019050919050565b60006020820190508181036000830152614b6681614b2a565b9050919050565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b6000614ba3601b836139a0565b9150614bae82614b6d565b602082019050919050565b60006020820190508181036000830152614bd281614b96565b9050919050565b600081519050614be881613a51565b92915050565b600060208284031215614c0457614c036138d0565b5b6000614c1284828501614bd9565b91505092915050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b6000614c516020836139a0565b9150614c5c82614c1b565b602082019050919050565b60006020820190508181036000830152614c8081614c44565b9050919050565b6000614c9282613a47565b9150614c9d83613a47565b9250828202614cab81613a47565b91508282048414831517614cc257614cc16147ca565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614cff601f836139a0565b9150614d0a82614cc9565b602082019050919050565b60006020820190508181036000830152614d2e81614cf2565b9050919050565b6000614d4082613a47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d7257614d716147ca565b5b600182019050919050565b60008160601b9050919050565b6000614d9582614d7d565b9050919050565b6000614da782614d8a565b9050919050565b614dbf614dba82613aca565b614d9c565b82525050565b6000614dd18284614dae565b60148201915081905092915050565b7f546f6b656e20494420646f6573206e6f74206578697374000000000000000000600082015250565b6000614e166017836139a0565b9150614e2182614de0565b602082019050919050565b60006020820190508181036000830152614e4581614e09565b9050919050565b600081905092915050565b6000614e6282613995565b614e6c8185614e4c565b9350614e7c8185602086016139b1565b80840191505092915050565b6000614e948285614e57565b9150614ea08284614e57565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f086026836139a0565b9150614f1382614eac565b604082019050919050565b60006020820190508181036000830152614f3781614efb565b9050919050565b6000614f4982613a47565b9150614f5483613a47565b9250828203905081811115614f6c57614f6b6147ca565b5b92915050565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b6000614fa86018836139a0565b9150614fb382614f72565b602082019050919050565b60006020820190508181036000830152614fd781614f9b565b9050919050565b7f4e6f74206f6e20616c6c6f77206c697374000000000000000000000000000000600082015250565b60006150146011836139a0565b915061501f82614fde565b602082019050919050565b6000602082019050818103600083015261504381615007565b9050919050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b60006150a66022836139a0565b91506150b18261504a565b604082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f436c61696d206d7573742062652061637469766520746f206d696e7420746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b60006151386023836139a0565b9150615143826150dc565b604082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f4d75737420636c61696d206174206c65617374206f6e6520746f6b656e2e0000600082015250565b60006151a4601e836139a0565b91506151af8261516e565b602082019050919050565b600060208201905081810360008301526151d381615197565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061521881613b06565b92915050565b600060208284031215615234576152336138d0565b5b600061524284828501615209565b91505092915050565b7f4d757374206f776e20616c6c20706172656e7420746f6b656e732e0000000000600082015250565b6000615281601b836139a0565b915061528c8261524b565b602082019050919050565b600060208201905081810360008301526152b081615274565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006152ed6020836139a0565b91506152f8826152b7565b602082019050919050565b6000602082019050818103600083015261531c816152e0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061537f6025836139a0565b915061538a82615323565b604082019050919050565b600060208201905081810360008301526153ae81615372565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006154116024836139a0565b915061541c826153b5565b604082019050919050565b6000602082019050818103600083015261544081615404565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061547d601f836139a0565b915061548882615447565b602082019050919050565b600060208201905081810360008301526154ac81615470565b9050919050565b6000819050919050565b6154ce6154c982613a47565b6154b3565b82525050565b600081546154e1816143f7565b6154eb8186614e4c565b94506001821660008114615506576001811461551b5761554e565b60ff198316865281151582028601935061554e565b6155248561454c565b60005b8381101561554657815481890152600182019150602081019050615527565b838801955050505b50505092915050565b600061556382866154bd565b60208201915061557382856154d4565b915061557f82846154d4565b9150819050949350505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006155c26019836139a0565b91506155cd8261558c565b602082019050919050565b600060208201905081810360008301526155f1816155b5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006156546032836139a0565b915061565f826155f8565b604082019050919050565b6000602082019050818103600083015261568381615647565b9050919050565b7f496e73756666696369656e7420706172656e7420746f6b656e732e0000000000600082015250565b60006156c0601b836139a0565b91506156cb8261568a565b602082019050919050565b600060208201905081810360008301526156ef816156b3565b9050919050565b600060408201905061570b6000830185613adc565b6157186020830184613cf0565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006157758261574e565b61577f8185615759565b935061578f8185602086016139b1565b615798816139db565b840191505092915050565b60006080820190506157b86000830187613adc565b6157c56020830186613adc565b6157d26040830185613cf0565b81810360608301526157e4818461576a565b905095945050505050565b6000815190506157fe81613906565b92915050565b60006020828403121561581a576158196138d0565b5b6000615828848285016157ef565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006158676020836139a0565b915061587282615831565b602082019050919050565b600060208201905081810360008301526158968161585a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006158d3601c836139a0565b91506158de8261589d565b602082019050919050565b60006020820190508181036000830152615902816158c6565b905091905056fea264697066735822122039d5dc2891688c1b64098c225cb0819d0323ac055cfd1f61b393663e7470670064736f6c63430008120033

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

0000000000000000000000002083bfc586265b3dfac363f075ef7bd2e1b443700000000000000000000000000000000000000000000000000000000000000080

-----Decoded View---------------
Arg [0] : parentAddress (address): 0x2083BfC586265b3DfAc363F075Ef7bd2e1b44370
Arg [1] : _parentSupply (uint256): 128

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002083bfc586265b3dfac363f075ef7bd2e1b44370
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080


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.