ETH Price: $3,239.94 (-0.58%)
Gas: 2 Gwei

Token

Kenomi (Kenomi)
 

Overview

Max Total Supply

176 Kenomi

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
6 Kenomi
0x4300333a99d3419b1e9cfca9191a8a837fac2bd8
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:
KenomiNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Demo.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;

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

contract KenomiNFT is Ownable, ERC721 {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    uint256 public immutable maxSupply = 2222;
    uint256 public immutable airDropSupply = 40;

    bool public publicSaleIsActive = false;
    bool public mintFreeze = false;

    string private baseUri;

    constructor() ERC721("Kenomi", "Kenomi") {}

    //   <-   ONLY OWNER   ->   //

    function withDraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function setPublicSale(bool _publicSaleIsActive) external onlyOwner {
        publicSaleIsActive = _publicSaleIsActive;
    }

    function setMintFreezeStatus(bool status) external onlyOwner {
        mintFreeze = status;
    }

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

    //   <-   MODIFIER   ->   //

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

    modifier activeWhiteListSale() {
        require(!mintFreeze, "Mint Freezed");
        require(!publicSaleIsActive, "WhiteList Sale Ended");
        _;
    }

    // <-  AirDrop Function  ->  //
    function airDrop(address[] memory _addresses) external onlyOwner {
        require(_addresses.length <= airDropSupply, "AirDrop Supply Limit Reached");
        require(_tokenId.current() + _addresses.length <= maxSupply, "Reached Max Supply");
        for(uint256 i=0; i<_addresses.length; i++) {
            _tokenId.increment();
            _safeMint(_addresses[i], _tokenId.current());
        }
    }

    //   <-   MINT Functions   ->   //

    function mintMany(uint256 quantity) internal {
        for(uint256 i=0; i<quantity; i++) {
            _tokenId.increment();
            _safeMint(_msgSender(), _tokenId.current());
        }
    }

    function validMint(uint256 quantity, uint256 maxMintQuantity, uint256 price, uint256 value) internal view returns(bool) {
        uint256 tokenId = _tokenId.current();
        require(quantity <= maxMintQuantity, "Mint Quantity exceeds Max Limit");
        require(value == quantity * price, "Not enough Value");
        require(tokenId + quantity <= maxSupply - airDropSupply, "Reached Max Supply");
        return true;
    }

    //   <-   WHITELIST MINT => PRICE = 0.008, MAX MINT = 2   ->   //

    uint256 public whiteListPrice = 0.008 ether;
    uint256 public maxWhiteListMint = 2;

    bytes32 private merkleRoot = "";
    mapping(address => uint256) public whiteListMinted;

    function setWhiteListPrice(uint256 _whiteListPrice) external onlyOwner {
        whiteListPrice = _whiteListPrice;
    }

    function setMaxWhiteListMintAmount(uint256 amount) external onlyOwner {
        maxWhiteListMint = amount;
    }

    function whiteListMint(uint256 quantity, bytes32[] calldata merkleProof) external payable callerIsUser activeWhiteListSale {
        require(whiteListMinted[_msgSender()] < maxWhiteListMint, "Already Minted Max Limit");
        require(whiteListMinted[_msgSender()] + quantity <= maxWhiteListMint, "Can't Mint More than Max Limit");
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(merkleProof, merkleRoot, leaf), "Not Eligible For WhiteList Mint");
        require(validMint(quantity, maxWhiteListMint, whiteListPrice, msg.value), "Not Valid Mint");
        whiteListMinted[_msgSender()] += quantity;
        mintMany(quantity);
    }

    //   <-   PUBLIC MINT => PRICE = 0.008, MAX MINT = 1   ->   //

    uint256 public publicPrice = 0.008 ether;
    uint256 public maxPublicMint = 1;

    mapping(address => uint256) public publicMinted;

    function setPublicPrice(uint256 _publicPrice) external onlyOwner {
        publicPrice = _publicPrice;
    }

    function setMaxPublicMint(uint256 amount) external onlyOwner {
        maxPublicMint = amount;
    }

    modifier activePublicSale() {
        require(!mintFreeze, "Mint Freezed");
        require(publicSaleIsActive, "Public Sale Not Active");
        _;
    }

    function publicMint(uint256 quantity) external payable callerIsUser activePublicSale {
        require(publicMinted[_msgSender()] < maxPublicMint, "Already Minted Max Limit");
        require(publicMinted[_msgSender()] + quantity <= maxPublicMint, "Can't Mint More than Max Limit");
        require(validMint(quantity, maxPublicMint, publicPrice, msg.value), "Not valid Mint");
        publicMinted[_msgSender()] += quantity;
        mintMany(quantity);
    }

    //   <-   View Functions   ->   //
    function _baseURI() internal view virtual override returns (string memory) {
        return baseUri;
    }

    function baseURI() external view returns (string memory) {
        return baseUri;
    }

    function totalSupply() external view returns (uint256) {
        return _tokenId.current();
    }
}

File 2 of 14 : 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 3 of 14 : 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 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (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 6 of 14 : 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 7 of 14 : 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);
        }
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

File 10 of 14 : 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 11 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airDropSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhiteListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFreeze","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWhiteListMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setMintFreezeStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSaleIsActive","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whiteListPrice","type":"uint256"}],"name":"setWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withDraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526108ae608090815250602860a0908152506000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff021916908315150217905550661c6bf526340000600a556002600b556000600c55661c6bf526340000600e556001600f553480156200007d57600080fd5b506040518060400160405280600681526020017f4b656e6f6d6900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4b656e6f6d6900000000000000000000000000000000000000000000000000008152506200010a620000fe6200013660201b60201c565b6200013e60201b60201c565b81600190816200011b91906200047c565b5080600290816200012d91906200047c565b50505062000563565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200028457607f821691505b6020821081036200029a57620002996200023c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002c5565b620003108683620002c5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200035d62000357620003518462000328565b62000332565b62000328565b9050919050565b6000819050919050565b62000379836200033c565b62000391620003888262000364565b848454620002d2565b825550505050565b600090565b620003a862000399565b620003b58184846200036e565b505050565b5b81811015620003dd57620003d16000826200039e565b600181019050620003bb565b5050565b601f8211156200042c57620003f681620002a0565b6200040184620002b5565b8101602085101562000411578190505b620004296200042085620002b5565b830182620003ba565b50505b505050565b600082821c905092915050565b6000620004516000198460080262000431565b1980831691505092915050565b60006200046c83836200043e565b9150826002028217905092915050565b620004878262000202565b67ffffffffffffffff811115620004a357620004a26200020d565b5b620004af82546200026b565b620004bc828285620003e1565b600060209050601f831160018114620004f45760008415620004df578287015190505b620004eb85826200045e565b8655506200055b565b601f1984166200050486620002a0565b60005b828110156200052e5784890151825560018201915060208501945060208101905062000507565b868310156200054e57848901516200054a601f8916826200043e565b8355505b6001600288020188555050505b505050505050565b60805160a05161491c620005a56000396000818161092d015281816115050152611da0015260008181610991015281816119790152611dc1015261491c6000f3fe60806040526004361061023a5760003560e01c8063607cc99a1161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461082a578063cabadaa014610867578063d5abeb0114610892578063e985e9c5146108bd578063f2fde38b146108fa5761023a565b8063a22cb4651461075b578063a945bf8014610784578063b88d4fde146107af578063beafc89b146107d8578063c6275255146108015761023a565b8063715018a6116100f2578063715018a61461069c5780637cb64759146106b35780638da5cb5b146106dc57806395d89b4114610707578063a0bcfc7f146107325761023a565b8063607cc99a146105a35780636352211e146105cc57806368575685146106095780636c0360eb1461063457806370a082311461065f5761023a565b806318160ddd116101bc578063334cafb011610180578063334cafb0146104be5780633a16b347146104e95780633ed50bb31461051457806342842e0e146105515780635aca1bb61461057a5761023a565b806318160ddd146103fa57806323b872dd14610425578063270ab52c1461044e5780632db11544146104775780632f32b3af146104935761023a565b80630fcf2e75116102035780630fcf2e75146103365780630fdb1c10146103615780631015805b1461037857806311876875146103b557806313358e71146103d15761023a565b8062b6849f1461023f57806301ffc9a71461026857806306fdde03146102a5578063081812fc146102d0578063095ea7b31461030d575b600080fd5b34801561024b57600080fd5b5061026660048036038101906102619190612f86565b610923565b005b34801561027457600080fd5b5061028f600480360381019061028a9190613027565b610a61565b60405161029c919061306f565b60405180910390f35b3480156102b157600080fd5b506102ba610b43565b6040516102c79190613109565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190613161565b610bd5565b604051610304919061319d565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906131b8565b610c1b565b005b34801561034257600080fd5b5061034b610d32565b604051610358919061306f565b60405180910390f35b34801561036d57600080fd5b50610376610d45565b005b34801561038457600080fd5b5061039f600480360381019061039a91906131f8565b610d9d565b6040516103ac9190613234565b60405180910390f35b6103cf60048036038101906103ca91906132aa565b610db5565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613336565b61115d565b005b34801561040657600080fd5b5061040f611182565b60405161041c9190613234565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613363565b611193565b005b34801561045a57600080fd5b5061047560048036038101906104709190613161565b6111f3565b005b610491600480360381019061048c9190613161565b611205565b005b34801561049f57600080fd5b506104a86114ea565b6040516104b5919061306f565b60405180910390f35b3480156104ca57600080fd5b506104d36114fd565b6040516104e09190613234565b60405180910390f35b3480156104f557600080fd5b506104fe611503565b60405161050b9190613234565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906131f8565b611527565b6040516105489190613234565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613363565b61153f565b005b34801561058657600080fd5b506105a1600480360381019061059c9190613336565b61155f565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190613161565b611584565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190613161565b611596565b604051610600919061319d565b60405180910390f35b34801561061557600080fd5b5061061e61161c565b60405161062b9190613234565b60405180910390f35b34801561064057600080fd5b50610649611622565b6040516106569190613109565b60405180910390f35b34801561066b57600080fd5b50610686600480360381019061068191906131f8565b6116b4565b6040516106939190613234565b60405180910390f35b3480156106a857600080fd5b506106b161176b565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906133ec565b61177f565b005b3480156106e857600080fd5b506106f1611791565b6040516106fe919061319d565b60405180910390f35b34801561071357600080fd5b5061071c6117ba565b6040516107299190613109565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906134ce565b61184c565b005b34801561076757600080fd5b50610782600480360381019061077d9190613517565b611867565b005b34801561079057600080fd5b5061079961187d565b6040516107a69190613234565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906135f8565b611883565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190613161565b6118e5565b005b34801561080d57600080fd5b5061082860048036038101906108239190613161565b6118f7565b005b34801561083657600080fd5b50610851600480360381019061084c9190613161565b611909565b60405161085e9190613109565b60405180910390f35b34801561087357600080fd5b5061087c611971565b6040516108899190613234565b60405180910390f35b34801561089e57600080fd5b506108a7611977565b6040516108b49190613234565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df919061367b565b61199b565b6040516108f1919061306f565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c91906131f8565b611a2f565b005b61092b611ab2565b7f00000000000000000000000000000000000000000000000000000000000000008151111561098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613707565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081516109bc6007611b30565b6109c69190613756565b1115610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe906137d6565b60405180910390fd5b60005b8151811015610a5d57610a1d6007611b3e565b610a4a828281518110610a3357610a326137f6565b5b6020026020010151610a456007611b30565b611b54565b8080610a5590613825565b915050610a0a565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3c5750610b3b82611b72565b5b9050919050565b606060018054610b529061389c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e9061389c565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b6000610be082611bdc565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2682611596565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061393f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb5611c27565b73ffffffffffffffffffffffffffffffffffffffff161480610ce45750610ce381610cde611c27565b61199b565b5b610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a906139d1565b60405180910390fd5b610d2d8383611c2f565b505050565b600860009054906101000a900460ff1681565b610d4d611ab2565b610d55611791565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d9a573d6000803e3d6000fd5b50565b60106020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613a3d565b60405180910390fd5b600860019054906101000a900460ff1615610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90613aa9565b60405180910390fd5b600860009054906101000a900460ff1615610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90613b15565b60405180910390fd5b600b54600d6000610ed2611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613b81565b60405180910390fd5b600b5483600d6000610f5d611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fa29190613756565b1115610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613bed565b60405180910390fd5b6000610fed611c27565b604051602001610ffd9190613c55565b604051602081830303815290604052805190602001209050611063838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483611ce8565b6110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990613cbc565b60405180910390fd5b6110b284600b54600a5434611cff565b6110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890613d28565b60405180910390fd5b83600d60006110fe611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111479190613756565b9250508190555061115784611e44565b50505050565b611165611ab2565b80600860016101000a81548160ff02191690831515021790555050565b600061118e6007611b30565b905090565b6111a461119e611c27565b82611e8a565b6111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90613dba565b60405180910390fd5b6111ee838383611f1f565b505050565b6111fb611ab2565b80600f8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90613a3d565b60405180910390fd5b600860019054906101000a900460ff16156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90613aa9565b60405180910390fd5b600860009054906101000a900460ff16611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613e26565b60405180910390fd5b600f5460106000611321611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613b81565b60405180910390fd5b600f5481601060006113ac611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f19190613756565b1115611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613bed565b60405180910390fd5b61144281600f54600e5434611cff565b611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613e92565b60405180910390fd5b806010600061148e611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d79190613756565b925050819055506114e781611e44565b50565b600860019054906101000a900460ff1681565b600b5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d6020528060005260406000206000915090505481565b61155a83838360405180602001604052806000815250611883565b505050565b611567611ab2565b80600860006101000a81548160ff02191690831515021790555050565b61158c611ab2565b80600b8190555050565b6000806115a283612218565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90613efe565b60405180910390fd5b80915050919050565b600a5481565b6060600980546116319061389c565b80601f016020809104026020016040519081016040528092919081815260200182805461165d9061389c565b80156116aa5780601f1061167f576101008083540402835291602001916116aa565b820191906000526020600020905b81548152906001019060200180831161168d57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90613f90565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611773611ab2565b61177d6000612255565b565b611787611ab2565b80600c8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117c99061389c565b80601f01602080910402602001604051908101604052809291908181526020018280546117f59061389c565b80156118425780601f1061181757610100808354040283529160200191611842565b820191906000526020600020905b81548152906001019060200180831161182557829003601f168201915b5050505050905090565b611854611ab2565b8060099081611863919061415c565b5050565b611879611872611c27565b8383612319565b5050565b600e5481565b61189461188e611c27565b83611e8a565b6118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90613dba565b60405180910390fd5b6118df84848484612485565b50505050565b6118ed611ab2565b80600a8190555050565b6118ff611ab2565b80600e8190555050565b606061191482611bdc565b600061191e6124e1565b9050600081511161193e5760405180602001604052806000815250611969565b8061194884612573565b60405160200161195992919061426a565b6040516020818303038152906040525b915050919050565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a37611ab2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614300565b60405180910390fd5b611aaf81612255565b50565b611aba611c27565b73ffffffffffffffffffffffffffffffffffffffff16611ad8611791565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b259061436c565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b611b6e828260405180602001604052806000815250612641565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611be58161269c565b611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90613efe565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ca283611596565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611cf585846126dd565b1490509392505050565b600080611d0c6007611b30565b905084861115611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d48906143d8565b60405180910390fd5b8386611d5d91906143f8565b8314611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9590614486565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611dea91906144a6565b8682611df69190613756565b1115611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e906137d6565b60405180910390fd5b6001915050949350505050565b60005b81811015611e8657611e596007611b3e565b611e73611e64611c27565b611e6e6007611b30565b611b54565b8080611e7e90613825565b915050611e47565b5050565b600080611e9683611596565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ed85750611ed7818561199b565b5b80611f1657508373ffffffffffffffffffffffffffffffffffffffff16611efe84610bd5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f3f82611596565b73ffffffffffffffffffffffffffffffffffffffff1614611f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8c9061454c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb906145de565b60405180910390fd5b6120118383836001612733565b8273ffffffffffffffffffffffffffffffffffffffff1661203182611596565b73ffffffffffffffffffffffffffffffffffffffff1614612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e9061454c565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122138383836001612859565b505050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e9061464a565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612478919061306f565b60405180910390a3505050565b612490848484611f1f565b61249c8484848461285f565b6124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d2906146dc565b60405180910390fd5b50505050565b6060600980546124f09061389c565b80601f016020809104026020016040519081016040528092919081815260200182805461251c9061389c565b80156125695780601f1061253e57610100808354040283529160200191612569565b820191906000526020600020905b81548152906001019060200180831161254c57829003601f168201915b5050505050905090565b606060006001612582846129e6565b01905060008167ffffffffffffffff8111156125a1576125a0612de5565b5b6040519080825280601f01601f1916602001820160405280156125d35781602001600182028036833780820191505090505b509050600082602001820190505b600115612636578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161262a576126296146fc565b5b049450600085036125e1575b819350505050919050565b61264b8383612b39565b612658600084848461285f565b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e906146dc565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166126be83612218565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008082905060005b84518110156127285761271382868381518110612706576127056137f6565b5b6020026020010151612d56565b9150808061272090613825565b9150506126e6565b508091505092915050565b600181111561285357600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146127c75780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127bf91906144a6565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128525780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284a9190613756565b925050819055505b5b50505050565b50505050565b60006128808473ffffffffffffffffffffffffffffffffffffffff16612d81565b156129d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a9611c27565b8786866040518563ffffffff1660e01b81526004016128cb9493929190614780565b6020604051808303816000875af192505050801561290757506040513d601f19601f8201168201806040525081019061290491906147e1565b60015b612989573d8060008114612937576040519150601f19603f3d011682016040523d82523d6000602084013e61293c565b606091505b506000815103612981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612978906146dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129de565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a44577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a3a57612a396146fc565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a81576d04ee2d6d415b85acef81000000008381612a7757612a766146fc565b5b0492506020810190505b662386f26fc100008310612ab057662386f26fc100008381612aa657612aa56146fc565b5b0492506010810190505b6305f5e1008310612ad9576305f5e1008381612acf57612ace6146fc565b5b0492506008810190505b6127108310612afe576127108381612af457612af36146fc565b5b0492506004810190505b60648310612b215760648381612b1757612b166146fc565b5b0492506002810190505b600a8310612b30576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9f9061485a565b60405180910390fd5b612bb18161269c565b15612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be8906148c6565b60405180910390fd5b612bff600083836001612733565b612c088161269c565b15612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f906148c6565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d52600083836001612859565b5050565b6000818310612d6e57612d698284612da4565b612d79565b612d788383612da4565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e1d82612dd4565b810181811067ffffffffffffffff82111715612e3c57612e3b612de5565b5b80604052505050565b6000612e4f612dbb565b9050612e5b8282612e14565b919050565b600067ffffffffffffffff821115612e7b57612e7a612de5565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ebc82612e91565b9050919050565b612ecc81612eb1565b8114612ed757600080fd5b50565b600081359050612ee981612ec3565b92915050565b6000612f02612efd84612e60565b612e45565b90508083825260208201905060208402830185811115612f2557612f24612e8c565b5b835b81811015612f4e5780612f3a8882612eda565b845260208401935050602081019050612f27565b5050509392505050565b600082601f830112612f6d57612f6c612dcf565b5b8135612f7d848260208601612eef565b91505092915050565b600060208284031215612f9c57612f9b612dc5565b5b600082013567ffffffffffffffff811115612fba57612fb9612dca565b5b612fc684828501612f58565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61300481612fcf565b811461300f57600080fd5b50565b60008135905061302181612ffb565b92915050565b60006020828403121561303d5761303c612dc5565b5b600061304b84828501613012565b91505092915050565b60008115159050919050565b61306981613054565b82525050565b60006020820190506130846000830184613060565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130c45780820151818401526020810190506130a9565b60008484015250505050565b60006130db8261308a565b6130e58185613095565b93506130f58185602086016130a6565b6130fe81612dd4565b840191505092915050565b6000602082019050818103600083015261312381846130d0565b905092915050565b6000819050919050565b61313e8161312b565b811461314957600080fd5b50565b60008135905061315b81613135565b92915050565b60006020828403121561317757613176612dc5565b5b60006131858482850161314c565b91505092915050565b61319781612eb1565b82525050565b60006020820190506131b2600083018461318e565b92915050565b600080604083850312156131cf576131ce612dc5565b5b60006131dd85828601612eda565b92505060206131ee8582860161314c565b9150509250929050565b60006020828403121561320e5761320d612dc5565b5b600061321c84828501612eda565b91505092915050565b61322e8161312b565b82525050565b60006020820190506132496000830184613225565b92915050565b600080fd5b60008083601f84011261326a57613269612dcf565b5b8235905067ffffffffffffffff8111156132875761328661324f565b5b6020830191508360208202830111156132a3576132a2612e8c565b5b9250929050565b6000806000604084860312156132c3576132c2612dc5565b5b60006132d18682870161314c565b935050602084013567ffffffffffffffff8111156132f2576132f1612dca565b5b6132fe86828701613254565b92509250509250925092565b61331381613054565b811461331e57600080fd5b50565b6000813590506133308161330a565b92915050565b60006020828403121561334c5761334b612dc5565b5b600061335a84828501613321565b91505092915050565b60008060006060848603121561337c5761337b612dc5565b5b600061338a86828701612eda565b935050602061339b86828701612eda565b92505060406133ac8682870161314c565b9150509250925092565b6000819050919050565b6133c9816133b6565b81146133d457600080fd5b50565b6000813590506133e6816133c0565b92915050565b60006020828403121561340257613401612dc5565b5b6000613410848285016133d7565b91505092915050565b600080fd5b600067ffffffffffffffff82111561343957613438612de5565b5b61344282612dd4565b9050602081019050919050565b82818337600083830152505050565b600061347161346c8461341e565b612e45565b90508281526020810184848401111561348d5761348c613419565b5b61349884828561344f565b509392505050565b600082601f8301126134b5576134b4612dcf565b5b81356134c584826020860161345e565b91505092915050565b6000602082840312156134e4576134e3612dc5565b5b600082013567ffffffffffffffff81111561350257613501612dca565b5b61350e848285016134a0565b91505092915050565b6000806040838503121561352e5761352d612dc5565b5b600061353c85828601612eda565b925050602061354d85828601613321565b9150509250929050565b600067ffffffffffffffff82111561357257613571612de5565b5b61357b82612dd4565b9050602081019050919050565b600061359b61359684613557565b612e45565b9050828152602081018484840111156135b7576135b6613419565b5b6135c284828561344f565b509392505050565b600082601f8301126135df576135de612dcf565b5b81356135ef848260208601613588565b91505092915050565b6000806000806080858703121561361257613611612dc5565b5b600061362087828801612eda565b945050602061363187828801612eda565b93505060406136428782880161314c565b925050606085013567ffffffffffffffff81111561366357613662612dca565b5b61366f878288016135ca565b91505092959194509250565b6000806040838503121561369257613691612dc5565b5b60006136a085828601612eda565b92505060206136b185828601612eda565b9150509250929050565b7f41697244726f7020537570706c79204c696d6974205265616368656400000000600082015250565b60006136f1601c83613095565b91506136fc826136bb565b602082019050919050565b60006020820190508181036000830152613720816136e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137618261312b565b915061376c8361312b565b925082820190508082111561378457613783613727565b5b92915050565b7f52656163686564204d617820537570706c790000000000000000000000000000600082015250565b60006137c0601283613095565b91506137cb8261378a565b602082019050919050565b600060208201905081810360008301526137ef816137b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138308261312b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361386257613861613727565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138b457607f821691505b6020821081036138c7576138c661386d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613929602183613095565b9150613934826138cd565b604082019050919050565b600060208201905081810360008301526139588161391c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006139bb603d83613095565b91506139c68261395f565b604082019050919050565b600060208201905081810360008301526139ea816139ae565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613a27601e83613095565b9150613a32826139f1565b602082019050919050565b60006020820190508181036000830152613a5681613a1a565b9050919050565b7f4d696e7420467265657a65640000000000000000000000000000000000000000600082015250565b6000613a93600c83613095565b9150613a9e82613a5d565b602082019050919050565b60006020820190508181036000830152613ac281613a86565b9050919050565b7f57686974654c6973742053616c6520456e646564000000000000000000000000600082015250565b6000613aff601483613095565b9150613b0a82613ac9565b602082019050919050565b60006020820190508181036000830152613b2e81613af2565b9050919050565b7f416c7265616479204d696e746564204d6178204c696d69740000000000000000600082015250565b6000613b6b601883613095565b9150613b7682613b35565b602082019050919050565b60006020820190508181036000830152613b9a81613b5e565b9050919050565b7f43616e2774204d696e74204d6f7265207468616e204d6178204c696d69740000600082015250565b6000613bd7601e83613095565b9150613be282613ba1565b602082019050919050565b60006020820190508181036000830152613c0681613bca565b9050919050565b60008160601b9050919050565b6000613c2582613c0d565b9050919050565b6000613c3782613c1a565b9050919050565b613c4f613c4a82612eb1565b613c2c565b82525050565b6000613c618284613c3e565b60148201915081905092915050565b7f4e6f7420456c696769626c6520466f722057686974654c697374204d696e7400600082015250565b6000613ca6601f83613095565b9150613cb182613c70565b602082019050919050565b60006020820190508181036000830152613cd581613c99565b9050919050565b7f4e6f742056616c6964204d696e74000000000000000000000000000000000000600082015250565b6000613d12600e83613095565b9150613d1d82613cdc565b602082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613da4602d83613095565b9150613daf82613d48565b604082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f5075626c69632053616c65204e6f742041637469766500000000000000000000600082015250565b6000613e10601683613095565b9150613e1b82613dda565b602082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b7f4e6f742076616c6964204d696e74000000000000000000000000000000000000600082015250565b6000613e7c600e83613095565b9150613e8782613e46565b602082019050919050565b60006020820190508181036000830152613eab81613e6f565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613ee8601883613095565b9150613ef382613eb2565b602082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613f7a602983613095565b9150613f8582613f1e565b604082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fd5565b61401c8683613fd5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061405961405461404f8461312b565b614034565b61312b565b9050919050565b6000819050919050565b6140738361403e565b61408761407f82614060565b848454613fe2565b825550505050565b600090565b61409c61408f565b6140a781848461406a565b505050565b5b818110156140cb576140c0600082614094565b6001810190506140ad565b5050565b601f821115614110576140e181613fb0565b6140ea84613fc5565b810160208510156140f9578190505b61410d61410585613fc5565b8301826140ac565b50505b505050565b600082821c905092915050565b600061413360001984600802614115565b1980831691505092915050565b600061414c8383614122565b9150826002028217905092915050565b6141658261308a565b67ffffffffffffffff81111561417e5761417d612de5565b5b614188825461389c565b6141938282856140cf565b600060209050601f8311600181146141c657600084156141b4578287015190505b6141be8582614140565b865550614226565b601f1984166141d486613fb0565b60005b828110156141fc578489015182556001820191506020850194506020810190506141d7565b868310156142195784890151614215601f891682614122565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006142448261308a565b61424e818561422e565b935061425e8185602086016130a6565b80840191505092915050565b60006142768285614239565b91506142828284614239565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142ea602683613095565b91506142f58261428e565b604082019050919050565b60006020820190508181036000830152614319816142dd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614356602083613095565b915061436182614320565b602082019050919050565b6000602082019050818103600083015261438581614349565b9050919050565b7f4d696e74205175616e746974792065786365656473204d6178204c696d697400600082015250565b60006143c2601f83613095565b91506143cd8261438c565b602082019050919050565b600060208201905081810360008301526143f1816143b5565b9050919050565b60006144038261312b565b915061440e8361312b565b925082820261441c8161312b565b9150828204841483151761443357614432613727565b5b5092915050565b7f4e6f7420656e6f7567682056616c756500000000000000000000000000000000600082015250565b6000614470601083613095565b915061447b8261443a565b602082019050919050565b6000602082019050818103600083015261449f81614463565b9050919050565b60006144b18261312b565b91506144bc8361312b565b92508282039050818111156144d4576144d3613727565b5b92915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614536602583613095565b9150614541826144da565b604082019050919050565b6000602082019050818103600083015261456581614529565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006145c8602483613095565b91506145d38261456c565b604082019050919050565b600060208201905081810360008301526145f7816145bb565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614634601983613095565b915061463f826145fe565b602082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006146c6603283613095565b91506146d18261466a565b604082019050919050565b600060208201905081810360008301526146f5816146b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006147528261472b565b61475c8185614736565b935061476c8185602086016130a6565b61477581612dd4565b840191505092915050565b6000608082019050614795600083018761318e565b6147a2602083018661318e565b6147af6040830185613225565b81810360608301526147c18184614747565b905095945050505050565b6000815190506147db81612ffb565b92915050565b6000602082840312156147f7576147f6612dc5565b5b6000614805848285016147cc565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614844602083613095565b915061484f8261480e565b602082019050919050565b6000602082019050818103600083015261487381614837565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006148b0601c83613095565b91506148bb8261487a565b602082019050919050565b600060208201905081810360008301526148df816148a3565b905091905056fea264697066735822122028ba717c6f68ae056ff0e0056c2aac0f574c27357310bd136a1f1eacb86430f064736f6c63430008110033

Deployed Bytecode

0x60806040526004361061023a5760003560e01c8063607cc99a1161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461082a578063cabadaa014610867578063d5abeb0114610892578063e985e9c5146108bd578063f2fde38b146108fa5761023a565b8063a22cb4651461075b578063a945bf8014610784578063b88d4fde146107af578063beafc89b146107d8578063c6275255146108015761023a565b8063715018a6116100f2578063715018a61461069c5780637cb64759146106b35780638da5cb5b146106dc57806395d89b4114610707578063a0bcfc7f146107325761023a565b8063607cc99a146105a35780636352211e146105cc57806368575685146106095780636c0360eb1461063457806370a082311461065f5761023a565b806318160ddd116101bc578063334cafb011610180578063334cafb0146104be5780633a16b347146104e95780633ed50bb31461051457806342842e0e146105515780635aca1bb61461057a5761023a565b806318160ddd146103fa57806323b872dd14610425578063270ab52c1461044e5780632db11544146104775780632f32b3af146104935761023a565b80630fcf2e75116102035780630fcf2e75146103365780630fdb1c10146103615780631015805b1461037857806311876875146103b557806313358e71146103d15761023a565b8062b6849f1461023f57806301ffc9a71461026857806306fdde03146102a5578063081812fc146102d0578063095ea7b31461030d575b600080fd5b34801561024b57600080fd5b5061026660048036038101906102619190612f86565b610923565b005b34801561027457600080fd5b5061028f600480360381019061028a9190613027565b610a61565b60405161029c919061306f565b60405180910390f35b3480156102b157600080fd5b506102ba610b43565b6040516102c79190613109565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190613161565b610bd5565b604051610304919061319d565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906131b8565b610c1b565b005b34801561034257600080fd5b5061034b610d32565b604051610358919061306f565b60405180910390f35b34801561036d57600080fd5b50610376610d45565b005b34801561038457600080fd5b5061039f600480360381019061039a91906131f8565b610d9d565b6040516103ac9190613234565b60405180910390f35b6103cf60048036038101906103ca91906132aa565b610db5565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613336565b61115d565b005b34801561040657600080fd5b5061040f611182565b60405161041c9190613234565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613363565b611193565b005b34801561045a57600080fd5b5061047560048036038101906104709190613161565b6111f3565b005b610491600480360381019061048c9190613161565b611205565b005b34801561049f57600080fd5b506104a86114ea565b6040516104b5919061306f565b60405180910390f35b3480156104ca57600080fd5b506104d36114fd565b6040516104e09190613234565b60405180910390f35b3480156104f557600080fd5b506104fe611503565b60405161050b9190613234565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906131f8565b611527565b6040516105489190613234565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613363565b61153f565b005b34801561058657600080fd5b506105a1600480360381019061059c9190613336565b61155f565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190613161565b611584565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190613161565b611596565b604051610600919061319d565b60405180910390f35b34801561061557600080fd5b5061061e61161c565b60405161062b9190613234565b60405180910390f35b34801561064057600080fd5b50610649611622565b6040516106569190613109565b60405180910390f35b34801561066b57600080fd5b50610686600480360381019061068191906131f8565b6116b4565b6040516106939190613234565b60405180910390f35b3480156106a857600080fd5b506106b161176b565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906133ec565b61177f565b005b3480156106e857600080fd5b506106f1611791565b6040516106fe919061319d565b60405180910390f35b34801561071357600080fd5b5061071c6117ba565b6040516107299190613109565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906134ce565b61184c565b005b34801561076757600080fd5b50610782600480360381019061077d9190613517565b611867565b005b34801561079057600080fd5b5061079961187d565b6040516107a69190613234565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906135f8565b611883565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190613161565b6118e5565b005b34801561080d57600080fd5b5061082860048036038101906108239190613161565b6118f7565b005b34801561083657600080fd5b50610851600480360381019061084c9190613161565b611909565b60405161085e9190613109565b60405180910390f35b34801561087357600080fd5b5061087c611971565b6040516108899190613234565b60405180910390f35b34801561089e57600080fd5b506108a7611977565b6040516108b49190613234565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df919061367b565b61199b565b6040516108f1919061306f565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c91906131f8565b611a2f565b005b61092b611ab2565b7f00000000000000000000000000000000000000000000000000000000000000288151111561098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613707565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000008ae81516109bc6007611b30565b6109c69190613756565b1115610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe906137d6565b60405180910390fd5b60005b8151811015610a5d57610a1d6007611b3e565b610a4a828281518110610a3357610a326137f6565b5b6020026020010151610a456007611b30565b611b54565b8080610a5590613825565b915050610a0a565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3c5750610b3b82611b72565b5b9050919050565b606060018054610b529061389c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e9061389c565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b6000610be082611bdc565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2682611596565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061393f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb5611c27565b73ffffffffffffffffffffffffffffffffffffffff161480610ce45750610ce381610cde611c27565b61199b565b5b610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a906139d1565b60405180910390fd5b610d2d8383611c2f565b505050565b600860009054906101000a900460ff1681565b610d4d611ab2565b610d55611791565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d9a573d6000803e3d6000fd5b50565b60106020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613a3d565b60405180910390fd5b600860019054906101000a900460ff1615610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90613aa9565b60405180910390fd5b600860009054906101000a900460ff1615610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90613b15565b60405180910390fd5b600b54600d6000610ed2611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613b81565b60405180910390fd5b600b5483600d6000610f5d611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fa29190613756565b1115610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613bed565b60405180910390fd5b6000610fed611c27565b604051602001610ffd9190613c55565b604051602081830303815290604052805190602001209050611063838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483611ce8565b6110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990613cbc565b60405180910390fd5b6110b284600b54600a5434611cff565b6110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890613d28565b60405180910390fd5b83600d60006110fe611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111479190613756565b9250508190555061115784611e44565b50505050565b611165611ab2565b80600860016101000a81548160ff02191690831515021790555050565b600061118e6007611b30565b905090565b6111a461119e611c27565b82611e8a565b6111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90613dba565b60405180910390fd5b6111ee838383611f1f565b505050565b6111fb611ab2565b80600f8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90613a3d565b60405180910390fd5b600860019054906101000a900460ff16156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90613aa9565b60405180910390fd5b600860009054906101000a900460ff16611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613e26565b60405180910390fd5b600f5460106000611321611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613b81565b60405180910390fd5b600f5481601060006113ac611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f19190613756565b1115611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613bed565b60405180910390fd5b61144281600f54600e5434611cff565b611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613e92565b60405180910390fd5b806010600061148e611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d79190613756565b925050819055506114e781611e44565b50565b600860019054906101000a900460ff1681565b600b5481565b7f000000000000000000000000000000000000000000000000000000000000002881565b600d6020528060005260406000206000915090505481565b61155a83838360405180602001604052806000815250611883565b505050565b611567611ab2565b80600860006101000a81548160ff02191690831515021790555050565b61158c611ab2565b80600b8190555050565b6000806115a283612218565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90613efe565b60405180910390fd5b80915050919050565b600a5481565b6060600980546116319061389c565b80601f016020809104026020016040519081016040528092919081815260200182805461165d9061389c565b80156116aa5780601f1061167f576101008083540402835291602001916116aa565b820191906000526020600020905b81548152906001019060200180831161168d57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90613f90565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611773611ab2565b61177d6000612255565b565b611787611ab2565b80600c8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117c99061389c565b80601f01602080910402602001604051908101604052809291908181526020018280546117f59061389c565b80156118425780601f1061181757610100808354040283529160200191611842565b820191906000526020600020905b81548152906001019060200180831161182557829003601f168201915b5050505050905090565b611854611ab2565b8060099081611863919061415c565b5050565b611879611872611c27565b8383612319565b5050565b600e5481565b61189461188e611c27565b83611e8a565b6118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90613dba565b60405180910390fd5b6118df84848484612485565b50505050565b6118ed611ab2565b80600a8190555050565b6118ff611ab2565b80600e8190555050565b606061191482611bdc565b600061191e6124e1565b9050600081511161193e5760405180602001604052806000815250611969565b8061194884612573565b60405160200161195992919061426a565b6040516020818303038152906040525b915050919050565b600f5481565b7f00000000000000000000000000000000000000000000000000000000000008ae81565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a37611ab2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614300565b60405180910390fd5b611aaf81612255565b50565b611aba611c27565b73ffffffffffffffffffffffffffffffffffffffff16611ad8611791565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b259061436c565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b611b6e828260405180602001604052806000815250612641565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611be58161269c565b611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90613efe565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ca283611596565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611cf585846126dd565b1490509392505050565b600080611d0c6007611b30565b905084861115611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d48906143d8565b60405180910390fd5b8386611d5d91906143f8565b8314611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9590614486565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000287f00000000000000000000000000000000000000000000000000000000000008ae611dea91906144a6565b8682611df69190613756565b1115611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e906137d6565b60405180910390fd5b6001915050949350505050565b60005b81811015611e8657611e596007611b3e565b611e73611e64611c27565b611e6e6007611b30565b611b54565b8080611e7e90613825565b915050611e47565b5050565b600080611e9683611596565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ed85750611ed7818561199b565b5b80611f1657508373ffffffffffffffffffffffffffffffffffffffff16611efe84610bd5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f3f82611596565b73ffffffffffffffffffffffffffffffffffffffff1614611f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8c9061454c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb906145de565b60405180910390fd5b6120118383836001612733565b8273ffffffffffffffffffffffffffffffffffffffff1661203182611596565b73ffffffffffffffffffffffffffffffffffffffff1614612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e9061454c565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122138383836001612859565b505050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e9061464a565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612478919061306f565b60405180910390a3505050565b612490848484611f1f565b61249c8484848461285f565b6124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d2906146dc565b60405180910390fd5b50505050565b6060600980546124f09061389c565b80601f016020809104026020016040519081016040528092919081815260200182805461251c9061389c565b80156125695780601f1061253e57610100808354040283529160200191612569565b820191906000526020600020905b81548152906001019060200180831161254c57829003601f168201915b5050505050905090565b606060006001612582846129e6565b01905060008167ffffffffffffffff8111156125a1576125a0612de5565b5b6040519080825280601f01601f1916602001820160405280156125d35781602001600182028036833780820191505090505b509050600082602001820190505b600115612636578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161262a576126296146fc565b5b049450600085036125e1575b819350505050919050565b61264b8383612b39565b612658600084848461285f565b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e906146dc565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166126be83612218565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008082905060005b84518110156127285761271382868381518110612706576127056137f6565b5b6020026020010151612d56565b9150808061272090613825565b9150506126e6565b508091505092915050565b600181111561285357600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146127c75780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127bf91906144a6565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128525780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284a9190613756565b925050819055505b5b50505050565b50505050565b60006128808473ffffffffffffffffffffffffffffffffffffffff16612d81565b156129d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a9611c27565b8786866040518563ffffffff1660e01b81526004016128cb9493929190614780565b6020604051808303816000875af192505050801561290757506040513d601f19601f8201168201806040525081019061290491906147e1565b60015b612989573d8060008114612937576040519150601f19603f3d011682016040523d82523d6000602084013e61293c565b606091505b506000815103612981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612978906146dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129de565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a44577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a3a57612a396146fc565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a81576d04ee2d6d415b85acef81000000008381612a7757612a766146fc565b5b0492506020810190505b662386f26fc100008310612ab057662386f26fc100008381612aa657612aa56146fc565b5b0492506010810190505b6305f5e1008310612ad9576305f5e1008381612acf57612ace6146fc565b5b0492506008810190505b6127108310612afe576127108381612af457612af36146fc565b5b0492506004810190505b60648310612b215760648381612b1757612b166146fc565b5b0492506002810190505b600a8310612b30576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9f9061485a565b60405180910390fd5b612bb18161269c565b15612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be8906148c6565b60405180910390fd5b612bff600083836001612733565b612c088161269c565b15612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f906148c6565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d52600083836001612859565b5050565b6000818310612d6e57612d698284612da4565b612d79565b612d788383612da4565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e1d82612dd4565b810181811067ffffffffffffffff82111715612e3c57612e3b612de5565b5b80604052505050565b6000612e4f612dbb565b9050612e5b8282612e14565b919050565b600067ffffffffffffffff821115612e7b57612e7a612de5565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ebc82612e91565b9050919050565b612ecc81612eb1565b8114612ed757600080fd5b50565b600081359050612ee981612ec3565b92915050565b6000612f02612efd84612e60565b612e45565b90508083825260208201905060208402830185811115612f2557612f24612e8c565b5b835b81811015612f4e5780612f3a8882612eda565b845260208401935050602081019050612f27565b5050509392505050565b600082601f830112612f6d57612f6c612dcf565b5b8135612f7d848260208601612eef565b91505092915050565b600060208284031215612f9c57612f9b612dc5565b5b600082013567ffffffffffffffff811115612fba57612fb9612dca565b5b612fc684828501612f58565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61300481612fcf565b811461300f57600080fd5b50565b60008135905061302181612ffb565b92915050565b60006020828403121561303d5761303c612dc5565b5b600061304b84828501613012565b91505092915050565b60008115159050919050565b61306981613054565b82525050565b60006020820190506130846000830184613060565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130c45780820151818401526020810190506130a9565b60008484015250505050565b60006130db8261308a565b6130e58185613095565b93506130f58185602086016130a6565b6130fe81612dd4565b840191505092915050565b6000602082019050818103600083015261312381846130d0565b905092915050565b6000819050919050565b61313e8161312b565b811461314957600080fd5b50565b60008135905061315b81613135565b92915050565b60006020828403121561317757613176612dc5565b5b60006131858482850161314c565b91505092915050565b61319781612eb1565b82525050565b60006020820190506131b2600083018461318e565b92915050565b600080604083850312156131cf576131ce612dc5565b5b60006131dd85828601612eda565b92505060206131ee8582860161314c565b9150509250929050565b60006020828403121561320e5761320d612dc5565b5b600061321c84828501612eda565b91505092915050565b61322e8161312b565b82525050565b60006020820190506132496000830184613225565b92915050565b600080fd5b60008083601f84011261326a57613269612dcf565b5b8235905067ffffffffffffffff8111156132875761328661324f565b5b6020830191508360208202830111156132a3576132a2612e8c565b5b9250929050565b6000806000604084860312156132c3576132c2612dc5565b5b60006132d18682870161314c565b935050602084013567ffffffffffffffff8111156132f2576132f1612dca565b5b6132fe86828701613254565b92509250509250925092565b61331381613054565b811461331e57600080fd5b50565b6000813590506133308161330a565b92915050565b60006020828403121561334c5761334b612dc5565b5b600061335a84828501613321565b91505092915050565b60008060006060848603121561337c5761337b612dc5565b5b600061338a86828701612eda565b935050602061339b86828701612eda565b92505060406133ac8682870161314c565b9150509250925092565b6000819050919050565b6133c9816133b6565b81146133d457600080fd5b50565b6000813590506133e6816133c0565b92915050565b60006020828403121561340257613401612dc5565b5b6000613410848285016133d7565b91505092915050565b600080fd5b600067ffffffffffffffff82111561343957613438612de5565b5b61344282612dd4565b9050602081019050919050565b82818337600083830152505050565b600061347161346c8461341e565b612e45565b90508281526020810184848401111561348d5761348c613419565b5b61349884828561344f565b509392505050565b600082601f8301126134b5576134b4612dcf565b5b81356134c584826020860161345e565b91505092915050565b6000602082840312156134e4576134e3612dc5565b5b600082013567ffffffffffffffff81111561350257613501612dca565b5b61350e848285016134a0565b91505092915050565b6000806040838503121561352e5761352d612dc5565b5b600061353c85828601612eda565b925050602061354d85828601613321565b9150509250929050565b600067ffffffffffffffff82111561357257613571612de5565b5b61357b82612dd4565b9050602081019050919050565b600061359b61359684613557565b612e45565b9050828152602081018484840111156135b7576135b6613419565b5b6135c284828561344f565b509392505050565b600082601f8301126135df576135de612dcf565b5b81356135ef848260208601613588565b91505092915050565b6000806000806080858703121561361257613611612dc5565b5b600061362087828801612eda565b945050602061363187828801612eda565b93505060406136428782880161314c565b925050606085013567ffffffffffffffff81111561366357613662612dca565b5b61366f878288016135ca565b91505092959194509250565b6000806040838503121561369257613691612dc5565b5b60006136a085828601612eda565b92505060206136b185828601612eda565b9150509250929050565b7f41697244726f7020537570706c79204c696d6974205265616368656400000000600082015250565b60006136f1601c83613095565b91506136fc826136bb565b602082019050919050565b60006020820190508181036000830152613720816136e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137618261312b565b915061376c8361312b565b925082820190508082111561378457613783613727565b5b92915050565b7f52656163686564204d617820537570706c790000000000000000000000000000600082015250565b60006137c0601283613095565b91506137cb8261378a565b602082019050919050565b600060208201905081810360008301526137ef816137b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138308261312b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361386257613861613727565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138b457607f821691505b6020821081036138c7576138c661386d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613929602183613095565b9150613934826138cd565b604082019050919050565b600060208201905081810360008301526139588161391c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006139bb603d83613095565b91506139c68261395f565b604082019050919050565b600060208201905081810360008301526139ea816139ae565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613a27601e83613095565b9150613a32826139f1565b602082019050919050565b60006020820190508181036000830152613a5681613a1a565b9050919050565b7f4d696e7420467265657a65640000000000000000000000000000000000000000600082015250565b6000613a93600c83613095565b9150613a9e82613a5d565b602082019050919050565b60006020820190508181036000830152613ac281613a86565b9050919050565b7f57686974654c6973742053616c6520456e646564000000000000000000000000600082015250565b6000613aff601483613095565b9150613b0a82613ac9565b602082019050919050565b60006020820190508181036000830152613b2e81613af2565b9050919050565b7f416c7265616479204d696e746564204d6178204c696d69740000000000000000600082015250565b6000613b6b601883613095565b9150613b7682613b35565b602082019050919050565b60006020820190508181036000830152613b9a81613b5e565b9050919050565b7f43616e2774204d696e74204d6f7265207468616e204d6178204c696d69740000600082015250565b6000613bd7601e83613095565b9150613be282613ba1565b602082019050919050565b60006020820190508181036000830152613c0681613bca565b9050919050565b60008160601b9050919050565b6000613c2582613c0d565b9050919050565b6000613c3782613c1a565b9050919050565b613c4f613c4a82612eb1565b613c2c565b82525050565b6000613c618284613c3e565b60148201915081905092915050565b7f4e6f7420456c696769626c6520466f722057686974654c697374204d696e7400600082015250565b6000613ca6601f83613095565b9150613cb182613c70565b602082019050919050565b60006020820190508181036000830152613cd581613c99565b9050919050565b7f4e6f742056616c6964204d696e74000000000000000000000000000000000000600082015250565b6000613d12600e83613095565b9150613d1d82613cdc565b602082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613da4602d83613095565b9150613daf82613d48565b604082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f5075626c69632053616c65204e6f742041637469766500000000000000000000600082015250565b6000613e10601683613095565b9150613e1b82613dda565b602082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b7f4e6f742076616c6964204d696e74000000000000000000000000000000000000600082015250565b6000613e7c600e83613095565b9150613e8782613e46565b602082019050919050565b60006020820190508181036000830152613eab81613e6f565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613ee8601883613095565b9150613ef382613eb2565b602082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613f7a602983613095565b9150613f8582613f1e565b604082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fd5565b61401c8683613fd5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061405961405461404f8461312b565b614034565b61312b565b9050919050565b6000819050919050565b6140738361403e565b61408761407f82614060565b848454613fe2565b825550505050565b600090565b61409c61408f565b6140a781848461406a565b505050565b5b818110156140cb576140c0600082614094565b6001810190506140ad565b5050565b601f821115614110576140e181613fb0565b6140ea84613fc5565b810160208510156140f9578190505b61410d61410585613fc5565b8301826140ac565b50505b505050565b600082821c905092915050565b600061413360001984600802614115565b1980831691505092915050565b600061414c8383614122565b9150826002028217905092915050565b6141658261308a565b67ffffffffffffffff81111561417e5761417d612de5565b5b614188825461389c565b6141938282856140cf565b600060209050601f8311600181146141c657600084156141b4578287015190505b6141be8582614140565b865550614226565b601f1984166141d486613fb0565b60005b828110156141fc578489015182556001820191506020850194506020810190506141d7565b868310156142195784890151614215601f891682614122565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006142448261308a565b61424e818561422e565b935061425e8185602086016130a6565b80840191505092915050565b60006142768285614239565b91506142828284614239565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142ea602683613095565b91506142f58261428e565b604082019050919050565b60006020820190508181036000830152614319816142dd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614356602083613095565b915061436182614320565b602082019050919050565b6000602082019050818103600083015261438581614349565b9050919050565b7f4d696e74205175616e746974792065786365656473204d6178204c696d697400600082015250565b60006143c2601f83613095565b91506143cd8261438c565b602082019050919050565b600060208201905081810360008301526143f1816143b5565b9050919050565b60006144038261312b565b915061440e8361312b565b925082820261441c8161312b565b9150828204841483151761443357614432613727565b5b5092915050565b7f4e6f7420656e6f7567682056616c756500000000000000000000000000000000600082015250565b6000614470601083613095565b915061447b8261443a565b602082019050919050565b6000602082019050818103600083015261449f81614463565b9050919050565b60006144b18261312b565b91506144bc8361312b565b92508282039050818111156144d4576144d3613727565b5b92915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614536602583613095565b9150614541826144da565b604082019050919050565b6000602082019050818103600083015261456581614529565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006145c8602483613095565b91506145d38261456c565b604082019050919050565b600060208201905081810360008301526145f7816145bb565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614634601983613095565b915061463f826145fe565b602082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006146c6603283613095565b91506146d18261466a565b604082019050919050565b600060208201905081810360008301526146f5816146b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006147528261472b565b61475c8185614736565b935061476c8185602086016130a6565b61477581612dd4565b840191505092915050565b6000608082019050614795600083018761318e565b6147a2602083018661318e565b6147af6040830185613225565b81810360608301526147c18184614747565b905095945050505050565b6000815190506147db81612ffb565b92915050565b6000602082840312156147f7576147f6612dc5565b5b6000614805848285016147cc565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614844602083613095565b915061484f8261480e565b602082019050919050565b6000602082019050818103600083015261487381614837565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006148b0601c83613095565b91506148bb8261487a565b602082019050919050565b600060208201905081810360008301526148df816148a3565b905091905056fea264697066735822122028ba717c6f68ae056ff0e0056c2aac0f574c27357310bd136a1f1eacb86430f064736f6c63430008110033

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.