ETH Price: $2,606.37 (-1.54%)

Token

Celebes (CLBS)
 

Overview

Max Total Supply

210 CLBS

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
warm.0xwave.eth
Balance
4 CLBS
0xae91e781cc56694dc3aa66717784739b7f48d77d
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:
Celebes

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : celebes.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 Celebes 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("Celebes", "CLBS")
    {
        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 devMint(address to, uint256 numberOfTokens)
        external
        onlyOwner        
        nonReentrant
        callerIsUser
    {
        require(
            this.totalSupply() + numberOfTokens <= MAX_SUPPLY,
            "Dev mint would exceed max tokens"
        );

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

    function _mintToken(address _to, uint256 _tokenId) internal {
        bytes32 seed = keccak256(
            abi.encodePacked(_tokenId, provenanceHash, communityHash, msg.sender, block.number, blockhash(block.number - 1))
        );
        _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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60a060405267016345785d8a00006009553480156200001d57600080fd5b506040516200651738038062006517833981810160405281019062000043919062000386565b6040518060400160405280600781526020017f43656c65626573000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434c42530000000000000000000000000000000000000000000000000000000081525060016000819055508160019081620000c891906200063d565b508060029081620000da91906200063d565b505050620000fd620000f16200021360201b60201c565b6200021b60201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff166301ffc9a763780e9d636040518263ffffffff1660e01b81526004016200013c9190620007a0565b602060405180830381865afa1580156200015a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001809190620007fa565b620001c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b9906200088d565b60405180910390fd5b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080608081815250505050620008af565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200031382620002e6565b9050919050565b620003258162000306565b81146200033157600080fd5b50565b60008151905062000345816200031a565b92915050565b6000819050919050565b62000360816200034b565b81146200036c57600080fd5b50565b600081519050620003808162000355565b92915050565b60008060408385031215620003a0576200039f620002e1565b5b6000620003b08582860162000334565b9250506020620003c3858286016200036f565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044f57607f821691505b60208210810362000465576200046462000407565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000490565b620004db868362000490565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200051e6200051862000512846200034b565b620004f3565b6200034b565b9050919050565b6000819050919050565b6200053a83620004fd565b62000552620005498262000525565b8484546200049d565b825550505050565b600090565b620005696200055a565b620005768184846200052f565b505050565b5b818110156200059e57620005926000826200055f565b6001810190506200057c565b5050565b601f821115620005ed57620005b7816200046b565b620005c28462000480565b81016020851015620005d2578190505b620005ea620005e18562000480565b8301826200057b565b50505b505050565b600082821c905092915050565b60006200061260001984600802620005f2565b1980831691505092915050565b60006200062d8383620005ff565b9150826002028217905092915050565b6200064882620003cd565b67ffffffffffffffff811115620006645762000663620003d8565b5b62000670825462000436565b6200067d828285620005a2565b600060209050601f831160018114620006b55760008415620006a0578287015190505b620006ac85826200061f565b8655506200071c565b601f198416620006c5866200046b565b60005b82811015620006ef57848901518255600182019150602085019450602081019050620006c8565b868310156200070f57848901516200070b601f891682620005ff565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008160e01b9050919050565b600062000788620007826200077c8462000724565b6200075a565b6200072e565b9050919050565b6200079a8162000767565b82525050565b6000602082019050620007b760008301846200078f565b92915050565b60008115159050919050565b620007d481620007bd565b8114620007e057600080fd5b50565b600081519050620007f481620007c9565b92915050565b600060208284031215620008135762000812620002e1565b5b60006200082384828501620007e3565b91505092915050565b600082825260208201905092915050565b7f4e6f7420455243373231456e756d657261626c65000000000000000000000000600082015250565b6000620008756014836200082c565b915062000882826200083d565b602082019050919050565b60006020820190508181036000830152620008a88162000866565b9050919050565b608051615c45620008d260003960008181610f6401526115700152615c456000f3fe6080604052600436106102e45760003560e01c806373417b0911610190578063b88d4fde116100dc578063e0c9f80c11610095578063f2fde38b1161006f578063f2fde38b14610b29578063f6c11dad14610b52578063fa05a65714610b8f578063fc8504ea14610bab576102e4565b8063e0c9f80c14610a98578063e2ba90ae14610ac3578063e985e9c514610aec576102e4565b8063b88d4fde1461099c578063c3490263146109c5578063c6ab67a3146109ee578063c87b56dd14610a19578063d1058e5914610a56578063d410cb6414610a6d576102e4565b806388879b1c11610149578063a0712d6811610123578063a0712d68146108f1578063a22cb4651461090d578063a282a60e14610936578063b32c56801461095f576102e4565b806388879b1c1461085e5780638da5cb5b1461089b57806395d89b41146108c6576102e4565b806373417b091461076257806379a801c01461078b5780637b1b1de6146107b65780637fc27803146107e1578063841718a61461080c57806384584d0714610835576102e4565b80633a73c58d1161024f5780636352211e1161020857806370a08231116101e257806370a08231146106ba57806371199d30146106f7578063715018a61461072057806372f85d5114610737576102e4565b80636352211e1461061557806365f1309714610652578063697c64f91461067d576102e4565b80633a73c58d1461052f5780633ccfd60b1461055857806342842e0e1461056f57806355f804b314610598578063564566a8146105c1578063627804af146105ec576102e4565b806318160ddd116102a157806318160ddd1461041d57806323b872dd1461044857806329fc6bae146104715780632eb4a7ab1461049c57806332cb6b0c146104c757806333c41a90146104f2576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc1461035157806308ff7f611461038e578063095ea7b3146103cb57806310969523146103f4575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613b78565b610bd4565b60405161031d9190613bc0565b60405180910390f35b34801561033257600080fd5b5061033b610cb6565b6040516103489190613c6b565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613cc3565b610d48565b6040516103859190613d31565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613cc3565b610d8e565b6040516103c29190613c6b565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613d78565b610e2e565b005b34801561040057600080fd5b5061041b60048036038101906104169190613eed565b610f45565b005b34801561042957600080fd5b50610432610f60565b60405161043f9190613f45565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190613f60565b610f9c565b005b34801561047d57600080fd5b50610486610ffc565b6040516104939190613bc0565b60405180910390f35b3480156104a857600080fd5b506104b161100f565b6040516104be9190613fcc565b60405180910390f35b3480156104d357600080fd5b506104dc611015565b6040516104e99190613f45565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613cc3565b61101b565b6040516105269190613bc0565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190614013565b61102d565b005b34801561056457600080fd5b5061056d611052565b005b34801561057b57600080fd5b5061059660048036038101906105919190613f60565b611119565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190613eed565b611139565b005b3480156105cd57600080fd5b506105d6611154565b6040516105e39190613bc0565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190613d78565b611167565b005b34801561062157600080fd5b5061063c60048036038101906106379190613cc3565b611356565b6040516106499190613d31565b60405180910390f35b34801561065e57600080fd5b506106676113dc565b6040516106749190613f45565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613cc3565b6113e1565b6040516106b191906140fe565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190614120565b61144c565b6040516106ee9190613f45565b60405180910390f35b34801561070357600080fd5b5061071e6004803603810190610719919061414d565b611503565b005b34801561072c57600080fd5b50610735611530565b005b34801561074357600080fd5b5061074c611544565b6040516107599190613f45565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190614013565b611549565b005b34801561079757600080fd5b506107a061156e565b6040516107ad9190613f45565b60405180910390f35b3480156107c257600080fd5b506107cb611592565b6040516107d89190613f45565b60405180910390f35b3480156107ed57600080fd5b506107f6611598565b6040516108039190613bc0565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190614013565b6115ab565b005b34801561084157600080fd5b5061085c600480360381019061085791906141d5565b6115d0565b005b34801561086a57600080fd5b5061088560048036038101906108809190614120565b6115e2565b6040516108929190613f45565b60405180910390f35b3480156108a757600080fd5b506108b06115fa565b6040516108bd9190613d31565b60405180910390f35b3480156108d257600080fd5b506108db611624565b6040516108e89190613c6b565b60405180910390f35b61090b60048036038101906109069190613cc3565b6116b6565b005b34801561091957600080fd5b50610934600480360381019061092f9190614202565b61197f565b005b34801561094257600080fd5b5061095d60048036038101906109589190613eed565b611995565b005b34801561096b57600080fd5b506109866004803603810190610981919061430a565b6119b0565b6040516109939190613bc0565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be9190614407565b6119f2565b005b3480156109d157600080fd5b506109ec60048036038101906109e7919061448a565b611a54565b005b3480156109fa57600080fd5b50610a03611ae0565b604051610a109190613c6b565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b9190613cc3565b611b6e565b604051610a4d9190613c6b565b60405180910390f35b348015610a6257600080fd5b50610a6b611bf6565b005b348015610a7957600080fd5b50610a82611d1c565b604051610a8f9190613c6b565b60405180910390f35b348015610aa457600080fd5b50610aad611daa565b604051610aba9190613c6b565b60405180910390f35b348015610acf57600080fd5b50610aea6004803603810190610ae59190613eed565b611e38565b005b348015610af857600080fd5b50610b136004803603810190610b0e91906144ca565b611e53565b604051610b209190613bc0565b60405180910390f35b348015610b3557600080fd5b50610b506004803603810190610b4b9190614120565b611ee7565b005b348015610b5e57600080fd5b50610b796004803603810190610b74919061430a565b611f6a565b604051610b869190613f45565b60405180910390f35b610ba96004803603810190610ba4919061450a565b611fd9565b005b348015610bb757600080fd5b50610bd26004803603810190610bcd91906145c1565b61238c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610caf5750610cae82612631565b5b9050919050565b606060018054610cc59061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf19061463d565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b6000610d538261269b565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c6020528060005260406000206000915090508054610dad9061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd99061463d565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b505050505081565b6000610e3982611356565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea0906146e0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec86126e6565b73ffffffffffffffffffffffffffffffffffffffff161480610ef75750610ef681610ef16126e6565b611e53565b5b610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90614772565b60405180910390fd5b610f4083836126ee565b505050565b610f4d6127a7565b8060109081610f5c919061493e565b5050565b60007f0000000000000000000000000000000000000000000000000000000000000000610f8d6013612825565b610f979190614a3f565b905090565b610fad610fa76126e6565b82612833565b610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390614ae5565b60405180910390fd5b610ff78383836128c8565b505050565b600a60009054906101000a900460ff1681565b60115481565b61010081565b600061102682612bc1565b9050919050565b6110356127a7565b80600a60006101000a81548160ff02191690831515021790555050565b61105a6127a7565b611062612c02565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161108890614b36565b60006040518083038185875af1925050503d80600081146110c5576040519150601f19603f3d011682016040523d82523d6000602084013e6110ca565b606091505b505090508061110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590614b97565b60405180910390fd5b50611117612c51565b565b611134838383604051806020016040528060008152506119f2565b505050565b6111416127a7565b8060129081611150919061493e565b5050565b600a60019054906101000a900460ff1681565b61116f6127a7565b611177612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90614c03565b60405180910390fd5b610100813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112589190614c38565b6112629190614a3f565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90614cb1565b60405180910390fd5b60005b818110156113495760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131f9190614c38565b905061132b8482612c5b565b6113356013612ce8565b50808061134190614cd1565b9150506112a6565b50611352612c51565b5050565b60008061136283612cfe565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90614d65565b60405180910390fd5b80915050919050565b600381565b6060600d600083815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561144057602002820191906000526020600020905b81548152602001906001019080831161142c575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390614df7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61150b6127a7565b80600c6000848152602001908152602001600020908161152b919061493e565b505050565b6115386127a7565b6115426000612d3b565b565b600181565b6115516127a7565b80600a60026101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095481565b600a60029054906101000a900460ff1681565b6115b36127a7565b80600a60016101000a81548160ff02191690831515021790555050565b6115d86127a7565b8060118190555050565b600b6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116339061463d565b80601f016020809104026020016040519081016040528092919081815260200182805461165f9061463d565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050905090565b6116be612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390614c03565b60405180910390fd5b600a60019054906101000a900460ff1661177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290614e89565b60405180910390fd5b60038111156117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614ef5565b60405180910390fd5b610100813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561180e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118329190614c38565b61183c9190614a3f565b111561187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490614f61565b60405180910390fd5b348160095461188c9190614f81565b11156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c49061500f565b60405180910390fd5b60005b818110156119735760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119499190614c38565b90506119553382612c5b565b61195f6013612ce8565b50808061196b90614cd1565b9150506118d0565b5061197c612c51565b50565b61199161198a6126e6565b8383612e01565b5050565b61199d6127a7565b80600f90816119ac919061493e565b5050565b600080836040516020016119c49190615077565b6040516020818303038152906040528051906020012090506119e98360115483612f6d565b91505092915050565b611a036119fd6126e6565b83612833565b611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990614ae5565b60405180910390fd5b611a4e84848484612f84565b50505050565b611a5c612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190614c03565b60405180910390fd5b611ad48282612fe0565b611adc612c51565b5050565b60108054611aed9061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b199061463d565b8015611b665780601f10611b3b57610100808354040283529160200191611b66565b820191906000526020600020905b815481529060010190602001808311611b4957829003601f168201915b505050505081565b6060611b7982612bc1565b611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf906150de565b60405180910390fd5b6000611bc2613255565b905080611bce846132e7565b604051602001611bdf92919061513a565b604051602081830303815290604052915050919050565b611bfe612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6390614c03565b60405180910390fd5b611d126000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611ccc9190613d31565b602060405180830381865afa158015611ce9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0d9190614c38565b612fe0565b611d1a612c51565b565b600f8054611d299061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d559061463d565b8015611da25780601f10611d7757610100808354040283529160200191611da2565b820191906000526020600020905b815481529060010190602001808311611d8557829003601f168201915b505050505081565b600e8054611db79061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054611de39061463d565b8015611e305780601f10611e0557610100808354040283529160200191611e30565b820191906000526020600020905b815481529060010190602001808311611e1357829003601f168201915b505050505081565b611e406127a7565b80600e9081611e4f919061493e565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eef6127a7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f55906151d0565b60405180910390fd5b611f6781612d3b565b50565b6000611f7683836119b0565b15611fce57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611fc791906151f0565b9050611fd3565b600090505b92915050565b611fe1612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690614c03565b60405180910390fd5b600a60009054906101000a900460ff1661209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590615270565b60405180910390fd5b6120a833826119b0565b6120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de906152dc565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600161213391906151f0565b821115612175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216c9061536e565b60405180910390fd5b610100823073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121e89190614c38565b6121f29190614a3f565b1115612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a90614f61565b60405180910390fd5b34826009546122429190614f81565b1115612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a9061500f565b60405180910390fd5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d29190614a3f565b9250508190555060005b8281101561237f5760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123559190614c38565b90506123613382612c5b565b61236b6013612ce8565b50808061237790614cd1565b9150506122dc565b50612388612c51565b5050565b612394612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614c03565b60405180910390fd5b600a60029054906101000a900460ff16612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890615400565b60405180910390fd5b60008282905011612497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248e9061546c565b60405180910390fd5b60005b82829050811015612624573373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858581811061250d5761250c61548c565b5b905060200201356040518263ffffffff1660e01b81526004016125309190613f45565b602060405180830381865afa15801561254d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061257191906154d0565b73ffffffffffffffffffffffffffffffffffffffff16146125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be90615549565b60405180910390fd5b6125e98383838181106125dd576125dc61548c565b5b90506020020135612bc1565b61261157612610338484848181106126045761260361548c565b5b90506020020135612c5b565b5b808061261c90614cd1565b91505061249a565b5061262d612c51565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126a481612bc1565b6126e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126da90614d65565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661276183611356565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6127af6126e6565b73ffffffffffffffffffffffffffffffffffffffff166127cd6115fa565b73ffffffffffffffffffffffffffffffffffffffff1614612823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281a906155b5565b60405180910390fd5b565b600081600001549050919050565b60008061283f83611356565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061288157506128808185611e53565b5b806128bf57508373ffffffffffffffffffffffffffffffffffffffff166128a784610d48565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128e882611356565b73ffffffffffffffffffffffffffffffffffffffff161461293e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293590615647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a4906156d9565b60405180910390fd5b6129ba83838360016133b5565b8273ffffffffffffffffffffffffffffffffffffffff166129da82611356565b73ffffffffffffffffffffffffffffffffffffffff1614612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790615647565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bbc83838360016134db565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff16612be383612cfe565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600260005403612c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3e90615745565b60405180910390fd5b6002600081905550565b6001600081905550565b6000816010600e3343600143612c7191906151f0565b40604051602001612c879695949392919061582a565b604051602081830303815290604052805190602001209050600d6000838152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055612ce383836134e1565b505050565b6001816000016000828254019250508190555050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e66906158de565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f609190613bc0565b60405180910390a3505050565b600082612f7a85846134ff565b1490509392505050565b612f8f8484846128c8565b612f9b84848484613555565b612fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd190615970565b60405180910390fd5b50505050565b600a60029054906101000a900460ff1661302f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302690615400565b60405180910390fd5b60008111613072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130699061546c565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016130cf9190613d31565b602060405180830381865afa1580156130ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131109190614c38565b9050818361311e9190614a3f565b811015613160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613157906159dc565b60405180910390fd5b60005b818110801561317157508281105b1561324f576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c593387856131c39190614a3f565b6040518363ffffffff1660e01b81526004016131e09291906159fc565b602060405180830381865afa1580156131fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132219190614c38565b905061322c81612bc1565b61323b5761323a3382612c5b565b5b50808061324790614cd1565b915050613163565b50505050565b6060601280546132649061463d565b80601f01602080910402602001604051908101604052809291908181526020018280546132909061463d565b80156132dd5780601f106132b2576101008083540402835291602001916132dd565b820191906000526020600020905b8154815290600101906020018083116132c057829003601f168201915b5050505050905090565b6060600060016132f6846136dc565b01905060008167ffffffffffffffff81111561331557613314613dc2565b5b6040519080825280601f01601f1916602001820160405280156133475781602001600182028036833780820191505090505b509050600082602001820190505b6001156133aa578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161339e5761339d615a25565b5b04945060008503613355575b819350505050919050565b60018111156134d557600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146134495780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461344191906151f0565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134d45780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134cc9190614a3f565b925050819055505b5b50505050565b50505050565b6134fb82826040518060200160405280600081525061382f565b5050565b60008082905060005b845181101561354a57613535828683815181106135285761352761548c565b5b602002602001015161388a565b9150808061354290614cd1565b915050613508565b508091505092915050565b60006135768473ffffffffffffffffffffffffffffffffffffffff166138b5565b156136cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261359f6126e6565b8786866040518563ffffffff1660e01b81526004016135c19493929190615aa9565b6020604051808303816000875af19250505080156135fd57506040513d601f19601f820116820180604052508101906135fa9190615b0a565b60015b61367f573d806000811461362d576040519150601f19603f3d011682016040523d82523d6000602084013e613632565b606091505b506000815103613677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366e90615970565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136d4565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061373a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816137305761372f615a25565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613777576d04ee2d6d415b85acef8100000000838161376d5761376c615a25565b5b0492506020810190505b662386f26fc1000083106137a657662386f26fc10000838161379c5761379b615a25565b5b0492506010810190505b6305f5e10083106137cf576305f5e10083816137c5576137c4615a25565b5b0492506008810190505b61271083106137f45761271083816137ea576137e9615a25565b5b0492506004810190505b60648310613817576064838161380d5761380c615a25565b5b0492506002810190505b600a8310613826576001810190505b80915050919050565b61383983836138d8565b6138466000848484613555565b613885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387c90615970565b60405180910390fd5b505050565b60008183106138a25761389d8284613af5565b6138ad565b6138ac8383613af5565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393e90615b83565b60405180910390fd5b61395081612bc1565b15613990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398790615bef565b60405180910390fd5b61399e6000838360016133b5565b6139a781612bc1565b156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de90615bef565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613af16000838360016134db565b5050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b5581613b20565b8114613b6057600080fd5b50565b600081359050613b7281613b4c565b92915050565b600060208284031215613b8e57613b8d613b16565b5b6000613b9c84828501613b63565b91505092915050565b60008115159050919050565b613bba81613ba5565b82525050565b6000602082019050613bd56000830184613bb1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c15578082015181840152602081019050613bfa565b60008484015250505050565b6000601f19601f8301169050919050565b6000613c3d82613bdb565b613c478185613be6565b9350613c57818560208601613bf7565b613c6081613c21565b840191505092915050565b60006020820190508181036000830152613c858184613c32565b905092915050565b6000819050919050565b613ca081613c8d565b8114613cab57600080fd5b50565b600081359050613cbd81613c97565b92915050565b600060208284031215613cd957613cd8613b16565b5b6000613ce784828501613cae565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d1b82613cf0565b9050919050565b613d2b81613d10565b82525050565b6000602082019050613d466000830184613d22565b92915050565b613d5581613d10565b8114613d6057600080fd5b50565b600081359050613d7281613d4c565b92915050565b60008060408385031215613d8f57613d8e613b16565b5b6000613d9d85828601613d63565b9250506020613dae85828601613cae565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613dfa82613c21565b810181811067ffffffffffffffff82111715613e1957613e18613dc2565b5b80604052505050565b6000613e2c613b0c565b9050613e388282613df1565b919050565b600067ffffffffffffffff821115613e5857613e57613dc2565b5b613e6182613c21565b9050602081019050919050565b82818337600083830152505050565b6000613e90613e8b84613e3d565b613e22565b905082815260208101848484011115613eac57613eab613dbd565b5b613eb7848285613e6e565b509392505050565b600082601f830112613ed457613ed3613db8565b5b8135613ee4848260208601613e7d565b91505092915050565b600060208284031215613f0357613f02613b16565b5b600082013567ffffffffffffffff811115613f2157613f20613b1b565b5b613f2d84828501613ebf565b91505092915050565b613f3f81613c8d565b82525050565b6000602082019050613f5a6000830184613f36565b92915050565b600080600060608486031215613f7957613f78613b16565b5b6000613f8786828701613d63565b9350506020613f9886828701613d63565b9250506040613fa986828701613cae565b9150509250925092565b6000819050919050565b613fc681613fb3565b82525050565b6000602082019050613fe16000830184613fbd565b92915050565b613ff081613ba5565b8114613ffb57600080fd5b50565b60008135905061400d81613fe7565b92915050565b60006020828403121561402957614028613b16565b5b600061403784828501613ffe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61407581613fb3565b82525050565b6000614087838361406c565b60208301905092915050565b6000602082019050919050565b60006140ab82614040565b6140b5818561404b565b93506140c08361405c565b8060005b838110156140f15781516140d8888261407b565b97506140e383614093565b9250506001810190506140c4565b5085935050505092915050565b6000602082019050818103600083015261411881846140a0565b905092915050565b60006020828403121561413657614135613b16565b5b600061414484828501613d63565b91505092915050565b6000806040838503121561416457614163613b16565b5b600061417285828601613cae565b925050602083013567ffffffffffffffff81111561419357614192613b1b565b5b61419f85828601613ebf565b9150509250929050565b6141b281613fb3565b81146141bd57600080fd5b50565b6000813590506141cf816141a9565b92915050565b6000602082840312156141eb576141ea613b16565b5b60006141f9848285016141c0565b91505092915050565b6000806040838503121561421957614218613b16565b5b600061422785828601613d63565b925050602061423885828601613ffe565b9150509250929050565b600067ffffffffffffffff82111561425d5761425c613dc2565b5b602082029050602081019050919050565b600080fd5b600061428661428184614242565b613e22565b905080838252602082019050602084028301858111156142a9576142a861426e565b5b835b818110156142d257806142be88826141c0565b8452602084019350506020810190506142ab565b5050509392505050565b600082601f8301126142f1576142f0613db8565b5b8135614301848260208601614273565b91505092915050565b6000806040838503121561432157614320613b16565b5b600061432f85828601613d63565b925050602083013567ffffffffffffffff8111156143505761434f613b1b565b5b61435c858286016142dc565b9150509250929050565b600067ffffffffffffffff82111561438157614380613dc2565b5b61438a82613c21565b9050602081019050919050565b60006143aa6143a584614366565b613e22565b9050828152602081018484840111156143c6576143c5613dbd565b5b6143d1848285613e6e565b509392505050565b600082601f8301126143ee576143ed613db8565b5b81356143fe848260208601614397565b91505092915050565b6000806000806080858703121561442157614420613b16565b5b600061442f87828801613d63565b945050602061444087828801613d63565b935050604061445187828801613cae565b925050606085013567ffffffffffffffff81111561447257614471613b1b565b5b61447e878288016143d9565b91505092959194509250565b600080604083850312156144a1576144a0613b16565b5b60006144af85828601613cae565b92505060206144c085828601613cae565b9150509250929050565b600080604083850312156144e1576144e0613b16565b5b60006144ef85828601613d63565b925050602061450085828601613d63565b9150509250929050565b6000806040838503121561452157614520613b16565b5b600061452f85828601613cae565b925050602083013567ffffffffffffffff8111156145505761454f613b1b565b5b61455c858286016142dc565b9150509250929050565b600080fd5b60008083601f84011261458157614580613db8565b5b8235905067ffffffffffffffff81111561459e5761459d614566565b5b6020830191508360208202830111156145ba576145b961426e565b5b9250929050565b600080602083850312156145d8576145d7613b16565b5b600083013567ffffffffffffffff8111156145f6576145f5613b1b565b5b6146028582860161456b565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061465557607f821691505b6020821081036146685761466761460e565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ca602183613be6565b91506146d58261466e565b604082019050919050565b600060208201905081810360008301526146f9816146bd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061475c603d83613be6565b915061476782614700565b604082019050919050565b6000602082019050818103600083015261478b8161474f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826147b7565b6147fe86836147b7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061483b61483661483184613c8d565b614816565b613c8d565b9050919050565b6000819050919050565b61485583614820565b61486961486182614842565b8484546147c4565b825550505050565b600090565b61487e614871565b61488981848461484c565b505050565b5b818110156148ad576148a2600082614876565b60018101905061488f565b5050565b601f8211156148f2576148c381614792565b6148cc846147a7565b810160208510156148db578190505b6148ef6148e7856147a7565b83018261488e565b50505b505050565b600082821c905092915050565b6000614915600019846008026148f7565b1980831691505092915050565b600061492e8383614904565b9150826002028217905092915050565b61494782613bdb565b67ffffffffffffffff8111156149605761495f613dc2565b5b61496a825461463d565b6149758282856148b1565b600060209050601f8311600181146149a85760008415614996578287015190505b6149a08582614922565b865550614a08565b601f1984166149b686614792565b60005b828110156149de578489015182556001820191506020850194506020810190506149b9565b868310156149fb57848901516149f7601f891682614904565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4a82613c8d565b9150614a5583613c8d565b9250828201905080821115614a6d57614a6c614a10565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614acf602d83613be6565b9150614ada82614a73565b604082019050919050565b60006020820190508181036000830152614afe81614ac2565b9050919050565b600081905092915050565b50565b6000614b20600083614b05565b9150614b2b82614b10565b600082019050919050565b6000614b4182614b13565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614b81601083613be6565b9150614b8c82614b4b565b602082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614bed601e83613be6565b9150614bf882614bb7565b602082019050919050565b60006020820190508181036000830152614c1c81614be0565b9050919050565b600081519050614c3281613c97565b92915050565b600060208284031215614c4e57614c4d613b16565b5b6000614c5c84828501614c23565b91505092915050565b7f446576206d696e7420776f756c6420657863656564206d617820746f6b656e73600082015250565b6000614c9b602083613be6565b9150614ca682614c65565b602082019050919050565b60006020820190508181036000830152614cca81614c8e565b9050919050565b6000614cdc82613c8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d0e57614d0d614a10565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614d4f601883613be6565b9150614d5a82614d19565b602082019050919050565b60006020820190508181036000830152614d7e81614d42565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614de1602983613be6565b9150614dec82614d85565b604082019050919050565b60006020820190508181036000830152614e1081614dd4565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e73602283613be6565b9150614e7e82614e17565b604082019050919050565b60006020820190508181036000830152614ea281614e66565b9050919050565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b6000614edf601b83613be6565b9150614eea82614ea9565b602082019050919050565b60006020820190508181036000830152614f0e81614ed2565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b6000614f4b602083613be6565b9150614f5682614f15565b602082019050919050565b60006020820190508181036000830152614f7a81614f3e565b9050919050565b6000614f8c82613c8d565b9150614f9783613c8d565b9250828202614fa581613c8d565b91508282048414831517614fbc57614fbb614a10565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614ff9601f83613be6565b915061500482614fc3565b602082019050919050565b6000602082019050818103600083015261502881614fec565b9050919050565b60008160601b9050919050565b60006150478261502f565b9050919050565b60006150598261503c565b9050919050565b61507161506c82613d10565b61504e565b82525050565b60006150838284615060565b60148201915081905092915050565b7f546f6b656e20494420646f6573206e6f74206578697374000000000000000000600082015250565b60006150c8601783613be6565b91506150d382615092565b602082019050919050565b600060208201905081810360008301526150f7816150bb565b9050919050565b600081905092915050565b600061511482613bdb565b61511e81856150fe565b935061512e818560208601613bf7565b80840191505092915050565b60006151468285615109565b91506151528284615109565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151ba602683613be6565b91506151c58261515e565b604082019050919050565b600060208201905081810360008301526151e9816151ad565b9050919050565b60006151fb82613c8d565b915061520683613c8d565b925082820390508181111561521e5761521d614a10565b5b92915050565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b600061525a601883613be6565b915061526582615224565b602082019050919050565b600060208201905081810360008301526152898161524d565b9050919050565b7f4e6f74206f6e20616c6c6f77206c697374000000000000000000000000000000600082015250565b60006152c6601183613be6565b91506152d182615290565b602082019050919050565b600060208201905081810360008301526152f5816152b9565b9050919050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615358602283613be6565b9150615363826152fc565b604082019050919050565b600060208201905081810360008301526153878161534b565b9050919050565b7f436c61696d206d7573742062652061637469766520746f206d696e7420746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b60006153ea602383613be6565b91506153f58261538e565b604082019050919050565b60006020820190508181036000830152615419816153dd565b9050919050565b7f4d75737420636c61696d206174206c65617374206f6e6520746f6b656e2e0000600082015250565b6000615456601e83613be6565b915061546182615420565b602082019050919050565b6000602082019050818103600083015261548581615449565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506154ca81613d4c565b92915050565b6000602082840312156154e6576154e5613b16565b5b60006154f4848285016154bb565b91505092915050565b7f4d757374206f776e20616c6c20706172656e7420746f6b656e732e0000000000600082015250565b6000615533601b83613be6565b915061553e826154fd565b602082019050919050565b6000602082019050818103600083015261556281615526565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061559f602083613be6565b91506155aa82615569565b602082019050919050565b600060208201905081810360008301526155ce81615592565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615631602583613be6565b915061563c826155d5565b604082019050919050565b6000602082019050818103600083015261566081615624565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156c3602483613be6565b91506156ce82615667565b604082019050919050565b600060208201905081810360008301526156f2816156b6565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061572f601f83613be6565b915061573a826156f9565b602082019050919050565b6000602082019050818103600083015261575e81615722565b9050919050565b6000819050919050565b61578061577b82613c8d565b615765565b82525050565b600081546157938161463d565b61579d81866150fe565b945060018216600081146157b857600181146157cd57615800565b60ff1983168652811515820286019350615800565b6157d685614792565b60005b838110156157f8578154818901526001820191506020810190506157d9565b838801955050505b50505092915050565b6000819050919050565b61582461581f82613fb3565b615809565b82525050565b6000615836828961576f565b6020820191506158468288615786565b91506158528287615786565b915061585e8286615060565b60148201915061586e828561576f565b60208201915061587e8284615813565b602082019150819050979650505050505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006158c8601983613be6565b91506158d382615892565b602082019050919050565b600060208201905081810360008301526158f7816158bb565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061595a603283613be6565b9150615965826158fe565b604082019050919050565b600060208201905081810360008301526159898161594d565b9050919050565b7f496e73756666696369656e7420706172656e7420746f6b656e732e0000000000600082015250565b60006159c6601b83613be6565b91506159d182615990565b602082019050919050565b600060208201905081810360008301526159f5816159b9565b9050919050565b6000604082019050615a116000830185613d22565b615a1e6020830184613f36565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000615a7b82615a54565b615a858185615a5f565b9350615a95818560208601613bf7565b615a9e81613c21565b840191505092915050565b6000608082019050615abe6000830187613d22565b615acb6020830186613d22565b615ad86040830185613f36565b8181036060830152615aea8184615a70565b905095945050505050565b600081519050615b0481613b4c565b92915050565b600060208284031215615b2057615b1f613b16565b5b6000615b2e84828501615af5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615b6d602083613be6565b9150615b7882615b37565b602082019050919050565b60006020820190508181036000830152615b9c81615b60565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615bd9601c83613be6565b9150615be482615ba3565b602082019050919050565b60006020820190508181036000830152615c0881615bcc565b905091905056fea26469706673582212204e858ee43ee0c0062e5fdaaa130c600c85ef2baa72bed353e7ccc7fed359bf5864736f6c634300081200330000000000000000000000002083bfc586265b3dfac363f075ef7bd2e1b443700000000000000000000000000000000000000000000000000000000000000080

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806373417b0911610190578063b88d4fde116100dc578063e0c9f80c11610095578063f2fde38b1161006f578063f2fde38b14610b29578063f6c11dad14610b52578063fa05a65714610b8f578063fc8504ea14610bab576102e4565b8063e0c9f80c14610a98578063e2ba90ae14610ac3578063e985e9c514610aec576102e4565b8063b88d4fde1461099c578063c3490263146109c5578063c6ab67a3146109ee578063c87b56dd14610a19578063d1058e5914610a56578063d410cb6414610a6d576102e4565b806388879b1c11610149578063a0712d6811610123578063a0712d68146108f1578063a22cb4651461090d578063a282a60e14610936578063b32c56801461095f576102e4565b806388879b1c1461085e5780638da5cb5b1461089b57806395d89b41146108c6576102e4565b806373417b091461076257806379a801c01461078b5780637b1b1de6146107b65780637fc27803146107e1578063841718a61461080c57806384584d0714610835576102e4565b80633a73c58d1161024f5780636352211e1161020857806370a08231116101e257806370a08231146106ba57806371199d30146106f7578063715018a61461072057806372f85d5114610737576102e4565b80636352211e1461061557806365f1309714610652578063697c64f91461067d576102e4565b80633a73c58d1461052f5780633ccfd60b1461055857806342842e0e1461056f57806355f804b314610598578063564566a8146105c1578063627804af146105ec576102e4565b806318160ddd116102a157806318160ddd1461041d57806323b872dd1461044857806329fc6bae146104715780632eb4a7ab1461049c57806332cb6b0c146104c757806333c41a90146104f2576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc1461035157806308ff7f611461038e578063095ea7b3146103cb57806310969523146103f4575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613b78565b610bd4565b60405161031d9190613bc0565b60405180910390f35b34801561033257600080fd5b5061033b610cb6565b6040516103489190613c6b565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613cc3565b610d48565b6040516103859190613d31565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613cc3565b610d8e565b6040516103c29190613c6b565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613d78565b610e2e565b005b34801561040057600080fd5b5061041b60048036038101906104169190613eed565b610f45565b005b34801561042957600080fd5b50610432610f60565b60405161043f9190613f45565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190613f60565b610f9c565b005b34801561047d57600080fd5b50610486610ffc565b6040516104939190613bc0565b60405180910390f35b3480156104a857600080fd5b506104b161100f565b6040516104be9190613fcc565b60405180910390f35b3480156104d357600080fd5b506104dc611015565b6040516104e99190613f45565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613cc3565b61101b565b6040516105269190613bc0565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190614013565b61102d565b005b34801561056457600080fd5b5061056d611052565b005b34801561057b57600080fd5b5061059660048036038101906105919190613f60565b611119565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190613eed565b611139565b005b3480156105cd57600080fd5b506105d6611154565b6040516105e39190613bc0565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190613d78565b611167565b005b34801561062157600080fd5b5061063c60048036038101906106379190613cc3565b611356565b6040516106499190613d31565b60405180910390f35b34801561065e57600080fd5b506106676113dc565b6040516106749190613f45565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613cc3565b6113e1565b6040516106b191906140fe565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190614120565b61144c565b6040516106ee9190613f45565b60405180910390f35b34801561070357600080fd5b5061071e6004803603810190610719919061414d565b611503565b005b34801561072c57600080fd5b50610735611530565b005b34801561074357600080fd5b5061074c611544565b6040516107599190613f45565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190614013565b611549565b005b34801561079757600080fd5b506107a061156e565b6040516107ad9190613f45565b60405180910390f35b3480156107c257600080fd5b506107cb611592565b6040516107d89190613f45565b60405180910390f35b3480156107ed57600080fd5b506107f6611598565b6040516108039190613bc0565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190614013565b6115ab565b005b34801561084157600080fd5b5061085c600480360381019061085791906141d5565b6115d0565b005b34801561086a57600080fd5b5061088560048036038101906108809190614120565b6115e2565b6040516108929190613f45565b60405180910390f35b3480156108a757600080fd5b506108b06115fa565b6040516108bd9190613d31565b60405180910390f35b3480156108d257600080fd5b506108db611624565b6040516108e89190613c6b565b60405180910390f35b61090b60048036038101906109069190613cc3565b6116b6565b005b34801561091957600080fd5b50610934600480360381019061092f9190614202565b61197f565b005b34801561094257600080fd5b5061095d60048036038101906109589190613eed565b611995565b005b34801561096b57600080fd5b506109866004803603810190610981919061430a565b6119b0565b6040516109939190613bc0565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be9190614407565b6119f2565b005b3480156109d157600080fd5b506109ec60048036038101906109e7919061448a565b611a54565b005b3480156109fa57600080fd5b50610a03611ae0565b604051610a109190613c6b565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b9190613cc3565b611b6e565b604051610a4d9190613c6b565b60405180910390f35b348015610a6257600080fd5b50610a6b611bf6565b005b348015610a7957600080fd5b50610a82611d1c565b604051610a8f9190613c6b565b60405180910390f35b348015610aa457600080fd5b50610aad611daa565b604051610aba9190613c6b565b60405180910390f35b348015610acf57600080fd5b50610aea6004803603810190610ae59190613eed565b611e38565b005b348015610af857600080fd5b50610b136004803603810190610b0e91906144ca565b611e53565b604051610b209190613bc0565b60405180910390f35b348015610b3557600080fd5b50610b506004803603810190610b4b9190614120565b611ee7565b005b348015610b5e57600080fd5b50610b796004803603810190610b74919061430a565b611f6a565b604051610b869190613f45565b60405180910390f35b610ba96004803603810190610ba4919061450a565b611fd9565b005b348015610bb757600080fd5b50610bd26004803603810190610bcd91906145c1565b61238c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610caf5750610cae82612631565b5b9050919050565b606060018054610cc59061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf19061463d565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b6000610d538261269b565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c6020528060005260406000206000915090508054610dad9061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd99061463d565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b505050505081565b6000610e3982611356565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea0906146e0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec86126e6565b73ffffffffffffffffffffffffffffffffffffffff161480610ef75750610ef681610ef16126e6565b611e53565b5b610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90614772565b60405180910390fd5b610f4083836126ee565b505050565b610f4d6127a7565b8060109081610f5c919061493e565b5050565b60007f0000000000000000000000000000000000000000000000000000000000000080610f8d6013612825565b610f979190614a3f565b905090565b610fad610fa76126e6565b82612833565b610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390614ae5565b60405180910390fd5b610ff78383836128c8565b505050565b600a60009054906101000a900460ff1681565b60115481565b61010081565b600061102682612bc1565b9050919050565b6110356127a7565b80600a60006101000a81548160ff02191690831515021790555050565b61105a6127a7565b611062612c02565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161108890614b36565b60006040518083038185875af1925050503d80600081146110c5576040519150601f19603f3d011682016040523d82523d6000602084013e6110ca565b606091505b505090508061110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590614b97565b60405180910390fd5b50611117612c51565b565b611134838383604051806020016040528060008152506119f2565b505050565b6111416127a7565b8060129081611150919061493e565b5050565b600a60019054906101000a900460ff1681565b61116f6127a7565b611177612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90614c03565b60405180910390fd5b610100813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112589190614c38565b6112629190614a3f565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90614cb1565b60405180910390fd5b60005b818110156113495760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131f9190614c38565b905061132b8482612c5b565b6113356013612ce8565b50808061134190614cd1565b9150506112a6565b50611352612c51565b5050565b60008061136283612cfe565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90614d65565b60405180910390fd5b80915050919050565b600381565b6060600d600083815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561144057602002820191906000526020600020905b81548152602001906001019080831161142c575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390614df7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61150b6127a7565b80600c6000848152602001908152602001600020908161152b919061493e565b505050565b6115386127a7565b6115426000612d3b565b565b600181565b6115516127a7565b80600a60026101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000008081565b60095481565b600a60029054906101000a900460ff1681565b6115b36127a7565b80600a60016101000a81548160ff02191690831515021790555050565b6115d86127a7565b8060118190555050565b600b6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116339061463d565b80601f016020809104026020016040519081016040528092919081815260200182805461165f9061463d565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050905090565b6116be612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390614c03565b60405180910390fd5b600a60019054906101000a900460ff1661177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290614e89565b60405180910390fd5b60038111156117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614ef5565b60405180910390fd5b610100813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561180e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118329190614c38565b61183c9190614a3f565b111561187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490614f61565b60405180910390fd5b348160095461188c9190614f81565b11156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c49061500f565b60405180910390fd5b60005b818110156119735760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119499190614c38565b90506119553382612c5b565b61195f6013612ce8565b50808061196b90614cd1565b9150506118d0565b5061197c612c51565b50565b61199161198a6126e6565b8383612e01565b5050565b61199d6127a7565b80600f90816119ac919061493e565b5050565b600080836040516020016119c49190615077565b6040516020818303038152906040528051906020012090506119e98360115483612f6d565b91505092915050565b611a036119fd6126e6565b83612833565b611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990614ae5565b60405180910390fd5b611a4e84848484612f84565b50505050565b611a5c612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190614c03565b60405180910390fd5b611ad48282612fe0565b611adc612c51565b5050565b60108054611aed9061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b199061463d565b8015611b665780601f10611b3b57610100808354040283529160200191611b66565b820191906000526020600020905b815481529060010190602001808311611b4957829003601f168201915b505050505081565b6060611b7982612bc1565b611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf906150de565b60405180910390fd5b6000611bc2613255565b905080611bce846132e7565b604051602001611bdf92919061513a565b604051602081830303815290604052915050919050565b611bfe612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6390614c03565b60405180910390fd5b611d126000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611ccc9190613d31565b602060405180830381865afa158015611ce9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0d9190614c38565b612fe0565b611d1a612c51565b565b600f8054611d299061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d559061463d565b8015611da25780601f10611d7757610100808354040283529160200191611da2565b820191906000526020600020905b815481529060010190602001808311611d8557829003601f168201915b505050505081565b600e8054611db79061463d565b80601f0160208091040260200160405190810160405280929190818152602001828054611de39061463d565b8015611e305780601f10611e0557610100808354040283529160200191611e30565b820191906000526020600020905b815481529060010190602001808311611e1357829003601f168201915b505050505081565b611e406127a7565b80600e9081611e4f919061493e565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eef6127a7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f55906151d0565b60405180910390fd5b611f6781612d3b565b50565b6000611f7683836119b0565b15611fce57600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611fc791906151f0565b9050611fd3565b600090505b92915050565b611fe1612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690614c03565b60405180910390fd5b600a60009054906101000a900460ff1661209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590615270565b60405180910390fd5b6120a833826119b0565b6120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de906152dc565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600161213391906151f0565b821115612175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216c9061536e565b60405180910390fd5b610100823073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121e89190614c38565b6121f29190614a3f565b1115612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a90614f61565b60405180910390fd5b34826009546122429190614f81565b1115612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a9061500f565b60405180910390fd5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d29190614a3f565b9250508190555060005b8281101561237f5760003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123559190614c38565b90506123613382612c5b565b61236b6013612ce8565b50808061237790614cd1565b9150506122dc565b50612388612c51565b5050565b612394612c02565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614c03565b60405180910390fd5b600a60029054906101000a900460ff16612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890615400565b60405180910390fd5b60008282905011612497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248e9061546c565b60405180910390fd5b60005b82829050811015612624573373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858581811061250d5761250c61548c565b5b905060200201356040518263ffffffff1660e01b81526004016125309190613f45565b602060405180830381865afa15801561254d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061257191906154d0565b73ffffffffffffffffffffffffffffffffffffffff16146125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be90615549565b60405180910390fd5b6125e98383838181106125dd576125dc61548c565b5b90506020020135612bc1565b61261157612610338484848181106126045761260361548c565b5b90506020020135612c5b565b5b808061261c90614cd1565b91505061249a565b5061262d612c51565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126a481612bc1565b6126e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126da90614d65565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661276183611356565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6127af6126e6565b73ffffffffffffffffffffffffffffffffffffffff166127cd6115fa565b73ffffffffffffffffffffffffffffffffffffffff1614612823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281a906155b5565b60405180910390fd5b565b600081600001549050919050565b60008061283f83611356565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061288157506128808185611e53565b5b806128bf57508373ffffffffffffffffffffffffffffffffffffffff166128a784610d48565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128e882611356565b73ffffffffffffffffffffffffffffffffffffffff161461293e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293590615647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a4906156d9565b60405180910390fd5b6129ba83838360016133b5565b8273ffffffffffffffffffffffffffffffffffffffff166129da82611356565b73ffffffffffffffffffffffffffffffffffffffff1614612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790615647565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bbc83838360016134db565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff16612be383612cfe565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600260005403612c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3e90615745565b60405180910390fd5b6002600081905550565b6001600081905550565b6000816010600e3343600143612c7191906151f0565b40604051602001612c879695949392919061582a565b604051602081830303815290604052805190602001209050600d6000838152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055612ce383836134e1565b505050565b6001816000016000828254019250508190555050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e66906158de565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f609190613bc0565b60405180910390a3505050565b600082612f7a85846134ff565b1490509392505050565b612f8f8484846128c8565b612f9b84848484613555565b612fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd190615970565b60405180910390fd5b50505050565b600a60029054906101000a900460ff1661302f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302690615400565b60405180910390fd5b60008111613072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130699061546c565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016130cf9190613d31565b602060405180830381865afa1580156130ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131109190614c38565b9050818361311e9190614a3f565b811015613160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613157906159dc565b60405180910390fd5b60005b818110801561317157508281105b1561324f576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c593387856131c39190614a3f565b6040518363ffffffff1660e01b81526004016131e09291906159fc565b602060405180830381865afa1580156131fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132219190614c38565b905061322c81612bc1565b61323b5761323a3382612c5b565b5b50808061324790614cd1565b915050613163565b50505050565b6060601280546132649061463d565b80601f01602080910402602001604051908101604052809291908181526020018280546132909061463d565b80156132dd5780601f106132b2576101008083540402835291602001916132dd565b820191906000526020600020905b8154815290600101906020018083116132c057829003601f168201915b5050505050905090565b6060600060016132f6846136dc565b01905060008167ffffffffffffffff81111561331557613314613dc2565b5b6040519080825280601f01601f1916602001820160405280156133475781602001600182028036833780820191505090505b509050600082602001820190505b6001156133aa578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161339e5761339d615a25565b5b04945060008503613355575b819350505050919050565b60018111156134d557600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146134495780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461344191906151f0565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134d45780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134cc9190614a3f565b925050819055505b5b50505050565b50505050565b6134fb82826040518060200160405280600081525061382f565b5050565b60008082905060005b845181101561354a57613535828683815181106135285761352761548c565b5b602002602001015161388a565b9150808061354290614cd1565b915050613508565b508091505092915050565b60006135768473ffffffffffffffffffffffffffffffffffffffff166138b5565b156136cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261359f6126e6565b8786866040518563ffffffff1660e01b81526004016135c19493929190615aa9565b6020604051808303816000875af19250505080156135fd57506040513d601f19601f820116820180604052508101906135fa9190615b0a565b60015b61367f573d806000811461362d576040519150601f19603f3d011682016040523d82523d6000602084013e613632565b606091505b506000815103613677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366e90615970565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136d4565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061373a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816137305761372f615a25565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613777576d04ee2d6d415b85acef8100000000838161376d5761376c615a25565b5b0492506020810190505b662386f26fc1000083106137a657662386f26fc10000838161379c5761379b615a25565b5b0492506010810190505b6305f5e10083106137cf576305f5e10083816137c5576137c4615a25565b5b0492506008810190505b61271083106137f45761271083816137ea576137e9615a25565b5b0492506004810190505b60648310613817576064838161380d5761380c615a25565b5b0492506002810190505b600a8310613826576001810190505b80915050919050565b61383983836138d8565b6138466000848484613555565b613885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387c90615970565b60405180910390fd5b505050565b60008183106138a25761389d8284613af5565b6138ad565b6138ac8383613af5565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393e90615b83565b60405180910390fd5b61395081612bc1565b15613990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398790615bef565b60405180910390fd5b61399e6000838360016133b5565b6139a781612bc1565b156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de90615bef565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613af16000838360016134db565b5050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b5581613b20565b8114613b6057600080fd5b50565b600081359050613b7281613b4c565b92915050565b600060208284031215613b8e57613b8d613b16565b5b6000613b9c84828501613b63565b91505092915050565b60008115159050919050565b613bba81613ba5565b82525050565b6000602082019050613bd56000830184613bb1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c15578082015181840152602081019050613bfa565b60008484015250505050565b6000601f19601f8301169050919050565b6000613c3d82613bdb565b613c478185613be6565b9350613c57818560208601613bf7565b613c6081613c21565b840191505092915050565b60006020820190508181036000830152613c858184613c32565b905092915050565b6000819050919050565b613ca081613c8d565b8114613cab57600080fd5b50565b600081359050613cbd81613c97565b92915050565b600060208284031215613cd957613cd8613b16565b5b6000613ce784828501613cae565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d1b82613cf0565b9050919050565b613d2b81613d10565b82525050565b6000602082019050613d466000830184613d22565b92915050565b613d5581613d10565b8114613d6057600080fd5b50565b600081359050613d7281613d4c565b92915050565b60008060408385031215613d8f57613d8e613b16565b5b6000613d9d85828601613d63565b9250506020613dae85828601613cae565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613dfa82613c21565b810181811067ffffffffffffffff82111715613e1957613e18613dc2565b5b80604052505050565b6000613e2c613b0c565b9050613e388282613df1565b919050565b600067ffffffffffffffff821115613e5857613e57613dc2565b5b613e6182613c21565b9050602081019050919050565b82818337600083830152505050565b6000613e90613e8b84613e3d565b613e22565b905082815260208101848484011115613eac57613eab613dbd565b5b613eb7848285613e6e565b509392505050565b600082601f830112613ed457613ed3613db8565b5b8135613ee4848260208601613e7d565b91505092915050565b600060208284031215613f0357613f02613b16565b5b600082013567ffffffffffffffff811115613f2157613f20613b1b565b5b613f2d84828501613ebf565b91505092915050565b613f3f81613c8d565b82525050565b6000602082019050613f5a6000830184613f36565b92915050565b600080600060608486031215613f7957613f78613b16565b5b6000613f8786828701613d63565b9350506020613f9886828701613d63565b9250506040613fa986828701613cae565b9150509250925092565b6000819050919050565b613fc681613fb3565b82525050565b6000602082019050613fe16000830184613fbd565b92915050565b613ff081613ba5565b8114613ffb57600080fd5b50565b60008135905061400d81613fe7565b92915050565b60006020828403121561402957614028613b16565b5b600061403784828501613ffe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61407581613fb3565b82525050565b6000614087838361406c565b60208301905092915050565b6000602082019050919050565b60006140ab82614040565b6140b5818561404b565b93506140c08361405c565b8060005b838110156140f15781516140d8888261407b565b97506140e383614093565b9250506001810190506140c4565b5085935050505092915050565b6000602082019050818103600083015261411881846140a0565b905092915050565b60006020828403121561413657614135613b16565b5b600061414484828501613d63565b91505092915050565b6000806040838503121561416457614163613b16565b5b600061417285828601613cae565b925050602083013567ffffffffffffffff81111561419357614192613b1b565b5b61419f85828601613ebf565b9150509250929050565b6141b281613fb3565b81146141bd57600080fd5b50565b6000813590506141cf816141a9565b92915050565b6000602082840312156141eb576141ea613b16565b5b60006141f9848285016141c0565b91505092915050565b6000806040838503121561421957614218613b16565b5b600061422785828601613d63565b925050602061423885828601613ffe565b9150509250929050565b600067ffffffffffffffff82111561425d5761425c613dc2565b5b602082029050602081019050919050565b600080fd5b600061428661428184614242565b613e22565b905080838252602082019050602084028301858111156142a9576142a861426e565b5b835b818110156142d257806142be88826141c0565b8452602084019350506020810190506142ab565b5050509392505050565b600082601f8301126142f1576142f0613db8565b5b8135614301848260208601614273565b91505092915050565b6000806040838503121561432157614320613b16565b5b600061432f85828601613d63565b925050602083013567ffffffffffffffff8111156143505761434f613b1b565b5b61435c858286016142dc565b9150509250929050565b600067ffffffffffffffff82111561438157614380613dc2565b5b61438a82613c21565b9050602081019050919050565b60006143aa6143a584614366565b613e22565b9050828152602081018484840111156143c6576143c5613dbd565b5b6143d1848285613e6e565b509392505050565b600082601f8301126143ee576143ed613db8565b5b81356143fe848260208601614397565b91505092915050565b6000806000806080858703121561442157614420613b16565b5b600061442f87828801613d63565b945050602061444087828801613d63565b935050604061445187828801613cae565b925050606085013567ffffffffffffffff81111561447257614471613b1b565b5b61447e878288016143d9565b91505092959194509250565b600080604083850312156144a1576144a0613b16565b5b60006144af85828601613cae565b92505060206144c085828601613cae565b9150509250929050565b600080604083850312156144e1576144e0613b16565b5b60006144ef85828601613d63565b925050602061450085828601613d63565b9150509250929050565b6000806040838503121561452157614520613b16565b5b600061452f85828601613cae565b925050602083013567ffffffffffffffff8111156145505761454f613b1b565b5b61455c858286016142dc565b9150509250929050565b600080fd5b60008083601f84011261458157614580613db8565b5b8235905067ffffffffffffffff81111561459e5761459d614566565b5b6020830191508360208202830111156145ba576145b961426e565b5b9250929050565b600080602083850312156145d8576145d7613b16565b5b600083013567ffffffffffffffff8111156145f6576145f5613b1b565b5b6146028582860161456b565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061465557607f821691505b6020821081036146685761466761460e565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ca602183613be6565b91506146d58261466e565b604082019050919050565b600060208201905081810360008301526146f9816146bd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061475c603d83613be6565b915061476782614700565b604082019050919050565b6000602082019050818103600083015261478b8161474f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826147b7565b6147fe86836147b7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061483b61483661483184613c8d565b614816565b613c8d565b9050919050565b6000819050919050565b61485583614820565b61486961486182614842565b8484546147c4565b825550505050565b600090565b61487e614871565b61488981848461484c565b505050565b5b818110156148ad576148a2600082614876565b60018101905061488f565b5050565b601f8211156148f2576148c381614792565b6148cc846147a7565b810160208510156148db578190505b6148ef6148e7856147a7565b83018261488e565b50505b505050565b600082821c905092915050565b6000614915600019846008026148f7565b1980831691505092915050565b600061492e8383614904565b9150826002028217905092915050565b61494782613bdb565b67ffffffffffffffff8111156149605761495f613dc2565b5b61496a825461463d565b6149758282856148b1565b600060209050601f8311600181146149a85760008415614996578287015190505b6149a08582614922565b865550614a08565b601f1984166149b686614792565b60005b828110156149de578489015182556001820191506020850194506020810190506149b9565b868310156149fb57848901516149f7601f891682614904565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4a82613c8d565b9150614a5583613c8d565b9250828201905080821115614a6d57614a6c614a10565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614acf602d83613be6565b9150614ada82614a73565b604082019050919050565b60006020820190508181036000830152614afe81614ac2565b9050919050565b600081905092915050565b50565b6000614b20600083614b05565b9150614b2b82614b10565b600082019050919050565b6000614b4182614b13565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614b81601083613be6565b9150614b8c82614b4b565b602082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614bed601e83613be6565b9150614bf882614bb7565b602082019050919050565b60006020820190508181036000830152614c1c81614be0565b9050919050565b600081519050614c3281613c97565b92915050565b600060208284031215614c4e57614c4d613b16565b5b6000614c5c84828501614c23565b91505092915050565b7f446576206d696e7420776f756c6420657863656564206d617820746f6b656e73600082015250565b6000614c9b602083613be6565b9150614ca682614c65565b602082019050919050565b60006020820190508181036000830152614cca81614c8e565b9050919050565b6000614cdc82613c8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d0e57614d0d614a10565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614d4f601883613be6565b9150614d5a82614d19565b602082019050919050565b60006020820190508181036000830152614d7e81614d42565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614de1602983613be6565b9150614dec82614d85565b604082019050919050565b60006020820190508181036000830152614e1081614dd4565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e73602283613be6565b9150614e7e82614e17565b604082019050919050565b60006020820190508181036000830152614ea281614e66565b9050919050565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b6000614edf601b83613be6565b9150614eea82614ea9565b602082019050919050565b60006020820190508181036000830152614f0e81614ed2565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b6000614f4b602083613be6565b9150614f5682614f15565b602082019050919050565b60006020820190508181036000830152614f7a81614f3e565b9050919050565b6000614f8c82613c8d565b9150614f9783613c8d565b9250828202614fa581613c8d565b91508282048414831517614fbc57614fbb614a10565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614ff9601f83613be6565b915061500482614fc3565b602082019050919050565b6000602082019050818103600083015261502881614fec565b9050919050565b60008160601b9050919050565b60006150478261502f565b9050919050565b60006150598261503c565b9050919050565b61507161506c82613d10565b61504e565b82525050565b60006150838284615060565b60148201915081905092915050565b7f546f6b656e20494420646f6573206e6f74206578697374000000000000000000600082015250565b60006150c8601783613be6565b91506150d382615092565b602082019050919050565b600060208201905081810360008301526150f7816150bb565b9050919050565b600081905092915050565b600061511482613bdb565b61511e81856150fe565b935061512e818560208601613bf7565b80840191505092915050565b60006151468285615109565b91506151528284615109565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151ba602683613be6565b91506151c58261515e565b604082019050919050565b600060208201905081810360008301526151e9816151ad565b9050919050565b60006151fb82613c8d565b915061520683613c8d565b925082820390508181111561521e5761521d614a10565b5b92915050565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b600061525a601883613be6565b915061526582615224565b602082019050919050565b600060208201905081810360008301526152898161524d565b9050919050565b7f4e6f74206f6e20616c6c6f77206c697374000000000000000000000000000000600082015250565b60006152c6601183613be6565b91506152d182615290565b602082019050919050565b600060208201905081810360008301526152f5816152b9565b9050919050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615358602283613be6565b9150615363826152fc565b604082019050919050565b600060208201905081810360008301526153878161534b565b9050919050565b7f436c61696d206d7573742062652061637469766520746f206d696e7420746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b60006153ea602383613be6565b91506153f58261538e565b604082019050919050565b60006020820190508181036000830152615419816153dd565b9050919050565b7f4d75737420636c61696d206174206c65617374206f6e6520746f6b656e2e0000600082015250565b6000615456601e83613be6565b915061546182615420565b602082019050919050565b6000602082019050818103600083015261548581615449565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506154ca81613d4c565b92915050565b6000602082840312156154e6576154e5613b16565b5b60006154f4848285016154bb565b91505092915050565b7f4d757374206f776e20616c6c20706172656e7420746f6b656e732e0000000000600082015250565b6000615533601b83613be6565b915061553e826154fd565b602082019050919050565b6000602082019050818103600083015261556281615526565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061559f602083613be6565b91506155aa82615569565b602082019050919050565b600060208201905081810360008301526155ce81615592565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615631602583613be6565b915061563c826155d5565b604082019050919050565b6000602082019050818103600083015261566081615624565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156c3602483613be6565b91506156ce82615667565b604082019050919050565b600060208201905081810360008301526156f2816156b6565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061572f601f83613be6565b915061573a826156f9565b602082019050919050565b6000602082019050818103600083015261575e81615722565b9050919050565b6000819050919050565b61578061577b82613c8d565b615765565b82525050565b600081546157938161463d565b61579d81866150fe565b945060018216600081146157b857600181146157cd57615800565b60ff1983168652811515820286019350615800565b6157d685614792565b60005b838110156157f8578154818901526001820191506020810190506157d9565b838801955050505b50505092915050565b6000819050919050565b61582461581f82613fb3565b615809565b82525050565b6000615836828961576f565b6020820191506158468288615786565b91506158528287615786565b915061585e8286615060565b60148201915061586e828561576f565b60208201915061587e8284615813565b602082019150819050979650505050505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006158c8601983613be6565b91506158d382615892565b602082019050919050565b600060208201905081810360008301526158f7816158bb565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061595a603283613be6565b9150615965826158fe565b604082019050919050565b600060208201905081810360008301526159898161594d565b9050919050565b7f496e73756666696369656e7420706172656e7420746f6b656e732e0000000000600082015250565b60006159c6601b83613be6565b91506159d182615990565b602082019050919050565b600060208201905081810360008301526159f5816159b9565b9050919050565b6000604082019050615a116000830185613d22565b615a1e6020830184613f36565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000615a7b82615a54565b615a858185615a5f565b9350615a95818560208601613bf7565b615a9e81613c21565b840191505092915050565b6000608082019050615abe6000830187613d22565b615acb6020830186613d22565b615ad86040830185613f36565b8181036060830152615aea8184615a70565b905095945050505050565b600081519050615b0481613b4c565b92915050565b600060208284031215615b2057615b1f613b16565b5b6000615b2e84828501615af5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615b6d602083613be6565b9150615b7882615b37565b602082019050919050565b60006020820190508181036000830152615b9c81615b60565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615bd9601c83613be6565b9150615be482615ba3565b602082019050919050565b60006020820190508181036000830152615c0881615bcc565b905091905056fea26469706673582212204e858ee43ee0c0062e5fdaaa130c600c85ef2baa72bed353e7ccc7fed359bf5864736f6c63430008120033

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.