ETH Price: $3,169.84 (-8.67%)
Gas: 4 Gwei

Token

DigitalDistortion (DIGITALDISTORTION)
 

Overview

Max Total Supply

106 DIGITALDISTORTION

Holders

90

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
anftw.eth
Balance
1 DIGITALDISTORTION
0xd5163727Eae6868ABc9F079609AE27d6c4CCE30b
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:
DigitalDistortion

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : DigitalDistortion.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract DigitalDistortion is ERC721, Ownable {
    event NewTokenHash(uint256 indexed tokenId, bytes32 indexed tokenHash);

    using ECDSA for bytes32;
    using Strings for uint256;

    bool public earlyMintIsActive = false;
    bool public mintIsActive = false;

    uint256 constant public MAX_SUPPLY = 156;
    uint256 constant public DIGITAL_DISTORTION_PRICE = 0.07 ether;

    uint256 private _totalSupply = 0;
    string private _tokenBaseURI;
    address private _signatureVerifier = 0x805c057A31B31c84F7759698298aD4dC6F8fA622;
    address private _naufalsAddress = 0x037D807f600bb57E7a17506D9419783Be61c365D;
    
    constructor() ERC721("DigitalDistortion", "DIGITALDISTORTION") {
        // for Naufals team
        for (uint256 i = 0; i < 4; i++) {
            _totalSupply += 1;
            _safeMint(_naufalsAddress, _totalSupply);
        }
    }

    // onlyOwner functions

    function flipEarlyMintState() public onlyOwner {
        earlyMintIsActive = !earlyMintIsActive;
    }

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

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _tokenBaseURI = baseURI_;
    }

    // public functions

    function earlyMint(bytes memory signature) public payable {
        uint256 walletBalance = ERC721.balanceOf(msg.sender);
        require(earlyMintIsActive, "Early minting not active");
        require(_totalSupply + 1 <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(walletBalance + 1 <= 1, "Mint would exceed max mint");
        require(DIGITAL_DISTORTION_PRICE == msg.value, "Sent ether value is incorrect");
        require(keccak256(abi.encodePacked(msg.sender)).toEthSignedMessageHash().recover(signature) == _signatureVerifier, "Unrecognizable Hash");

        _totalSupply += 1;
        _safeMint(msg.sender, _totalSupply);
    }

    function mint() public payable {
        uint256 walletBalance = ERC721.balanceOf(msg.sender);
        require(mintIsActive, "Minting is not active");
        require(_totalSupply + 1 <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(walletBalance + 1 <= 5, "Mint would exceed max mint");
        require(DIGITAL_DISTORTION_PRICE == msg.value, "Sent ether value is incorrect");
        
        _totalSupply += 1;
        _safeMint(msg.sender, _totalSupply);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory base = _baseURI();
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    function totalSupply() external view returns (uint256) {
        return _totalSupply;
    }

    // internal functions

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

File 2 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 3 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

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 4 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 9 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

    /**
     * @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;
}

File 11 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @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 of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 12 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"tokenHash","type":"bytes32"}],"name":"NewTokenHash","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DIGITAL_DISTORTION_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"earlyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"earlyMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipEarlyMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","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":[],"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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff021916908315150217905550600060075573805c057a31b31c84f7759698298ad4dc6f8fa622600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073037d807f600bb57e7a17506d9419783be61c365d600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f657600080fd5b506040518060400160405280601181526020017f4469676974616c446973746f7274696f6e0000000000000000000000000000008152506040518060400160405280601181526020017f4449474954414c444953544f5254494f4e00000000000000000000000000000081525081600090805190602001906200017b929190620007b9565b50806001908051906020019062000194929190620007b9565b505050620001b7620001ab6200023360201b60201c565b6200023b60201b60201c565b60005b60048110156200022c57600160076000828254620001d99190620008a2565b9250508190555062000216600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007546200030160201b60201c565b80806200022390620008ff565b915050620001ba565b5062000d21565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003238282604051806020016040528060008152506200032760201b60201c565b5050565b6200033983836200039560201b60201c565b6200034e60008484846200057b60201b60201c565b62000390576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038790620009d4565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000408576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ff9062000a46565b60405180910390fd5b62000419816200073560201b60201c565b156200045c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004539062000ab8565b60405180910390fd5b6200047060008383620007a160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004c29190620008a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005a98473ffffffffffffffffffffffffffffffffffffffff16620007a660201b620016df1760201c565b1562000728578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005db6200023360201b60201c565b8786866040518563ffffffff1660e01b8152600401620005ff949392919062000bd4565b602060405180830381600087803b1580156200061a57600080fd5b505af19250505080156200064e57506040513d601f19601f820116820180604052508101906200064b919062000c8a565b60015b620006d7573d806000811462000681576040519150601f19603f3d011682016040523d82523d6000602084013e62000686565b606091505b50600081511415620006cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c690620009d4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200072d565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620007c79062000ceb565b90600052602060002090601f016020900481019282620007eb576000855562000837565b82601f106200080657805160ff191683800117855562000837565b8280016001018555821562000837579182015b828111156200083657825182559160200191906001019062000819565b5b5090506200084691906200084a565b5090565b5b80821115620008655760008160009055506001016200084b565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008af8262000869565b9150620008bc8362000869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008f457620008f362000873565b5b828201905092915050565b60006200090c8262000869565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000942576200094162000873565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000620009bc6032836200094d565b9150620009c9826200095e565b604082019050919050565b60006020820190508181036000830152620009ef81620009ad565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000a2e6020836200094d565b915062000a3b82620009f6565b602082019050919050565b6000602082019050818103600083015262000a618162000a1f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000aa0601c836200094d565b915062000aad8262000a68565b602082019050919050565b6000602082019050818103600083015262000ad38162000a91565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b078262000ada565b9050919050565b62000b198162000afa565b82525050565b62000b2a8162000869565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000b6c57808201518184015260208101905062000b4f565b8381111562000b7c576000848401525b50505050565b6000601f19601f8301169050919050565b600062000ba08262000b30565b62000bac818562000b3b565b935062000bbe81856020860162000b4c565b62000bc98162000b82565b840191505092915050565b600060808201905062000beb600083018762000b0e565b62000bfa602083018662000b0e565b62000c09604083018562000b1f565b818103606083015262000c1d818462000b93565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000c648162000c2d565b811462000c7057600080fd5b50565b60008151905062000c848162000c59565b92915050565b60006020828403121562000ca35762000ca262000c28565b5b600062000cb38482850162000c73565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d0457607f821691505b6020821081141562000d1b5762000d1a62000cbc565b5b50919050565b6140a58062000d316000396000f3fe60806040526004361061019c5760003560e01c806359c74f29116100ec5780639e7591481161008a578063c87b56dd11610064578063c87b56dd1461053a578063d9dd9eb114610577578063e985e9c5146105a2578063f2fde38b146105df5761019c565b80639e759148146104d1578063a22cb465146104e8578063b88d4fde146105115761019c565b8063715018a6116100c6578063715018a614610448578063797301211461045f5780638da5cb5b1461047b57806395d89b41146104a65761019c565b806359c74f29146103b75780636352211e146103ce57806370a082311461040b5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461030f578063471a4294146103385780634e981c0c1461036357806355f804b31461038e5761019c565b806323b872dd146102a457806332cb6b0c146102cd5780633ccfd60b146102f85761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026f57806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906127d4565b610608565b6040516101d5919061281c565b60405180910390f35b3480156101ea57600080fd5b506101f36106ea565b60405161020091906128d0565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612928565b61077c565b60405161023d9190612996565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906129dd565b610801565b005b610277610919565b005b34801561028557600080fd5b5061028e610a89565b60405161029b9190612a2c565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c69190612a47565b610a93565b005b3480156102d957600080fd5b506102e2610af3565b6040516102ef9190612a2c565b60405180910390f35b34801561030457600080fd5b5061030d610af8565b005b34801561031b57600080fd5b5061033660048036038101906103319190612a47565b610bc3565b005b34801561034457600080fd5b5061034d610be3565b60405161035a919061281c565b60405180910390f35b34801561036f57600080fd5b50610378610bf6565b604051610385919061281c565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190612bcf565b610c09565b005b3480156103c357600080fd5b506103cc610c9f565b005b3480156103da57600080fd5b506103f560048036038101906103f09190612928565b610d47565b6040516104029190612996565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190612c18565b610df9565b60405161043f9190612a2c565b60405180910390f35b34801561045457600080fd5b5061045d610eb1565b005b61047960048036038101906104749190612ce6565b610f39565b005b34801561048757600080fd5b50610490611179565b60405161049d9190612996565b60405180910390f35b3480156104b257600080fd5b506104bb6111a3565b6040516104c891906128d0565b60405180910390f35b3480156104dd57600080fd5b506104e6611235565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612d5b565b6112dd565b005b34801561051d57600080fd5b5061053860048036038101906105339190612d9b565b61145e565b005b34801561054657600080fd5b50610561600480360381019061055c9190612928565b6114c0565b60405161056e91906128d0565b60405180910390f35b34801561058357600080fd5b5061058c611548565b6040516105999190612a2c565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612e1e565b611553565b6040516105d6919061281c565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190612c18565b6115e7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e357506106e2826116f2565b5b9050919050565b6060600080546106f990612e8d565b80601f016020809104026020016040519081016040528092919081815260200182805461072590612e8d565b80156107725780601f1061074757610100808354040283529160200191610772565b820191906000526020600020905b81548152906001019060200180831161075557829003601f168201915b5050505050905090565b60006107878261175c565b6107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90612f31565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080c82610d47565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490612fc3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089c6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614806108cb57506108ca816108c56117c8565b611553565b5b61090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190613055565b60405180910390fd5b61091483836117d0565b505050565b600061092433610df9565b9050600660159054906101000a900460ff16610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c906130c1565b60405180910390fd5b609c60016007546109869190613110565b11156109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be906131b2565b60405180910390fd5b60056001826109d69190613110565b1115610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e9061321e565b60405180910390fd5b3466f8b0a10e47000014610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579061328a565b60405180910390fd5b600160076000828254610a739190613110565b92505081905550610a8633600754611889565b50565b6000600754905090565b610aa4610a9e6117c8565b826118a7565b610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada9061331c565b60405180910390fd5b610aee838383611985565b505050565b609c81565b610b006117c8565b73ffffffffffffffffffffffffffffffffffffffff16610b1e611179565b73ffffffffffffffffffffffffffffffffffffffff1614610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90613388565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bbf573d6000803e3d6000fd5b5050565b610bde8383836040518060200160405280600081525061145e565b505050565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff1681565b610c116117c8565b73ffffffffffffffffffffffffffffffffffffffff16610c2f611179565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613388565b60405180910390fd5b8060089080519060200190610c9b9291906126c5565b5050565b610ca76117c8565b73ffffffffffffffffffffffffffffffffffffffff16610cc5611179565b73ffffffffffffffffffffffffffffffffffffffff1614610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290613388565b60405180910390fd5b600660159054906101000a900460ff1615600660156101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de79061341a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e61906134ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eb96117c8565b73ffffffffffffffffffffffffffffffffffffffff16610ed7611179565b73ffffffffffffffffffffffffffffffffffffffff1614610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613388565b60405180910390fd5b610f376000611be1565b565b6000610f4433610df9565b9050600660149054906101000a900460ff16610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613518565b60405180910390fd5b609c6001600754610fa69190613110565b1115610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde906131b2565b60405180910390fd5b60018082610ff59190613110565b1115611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d9061321e565b60405180910390fd5b3466f8b0a10e4700001461107f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110769061328a565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110f9836110eb336040516020016110d09190613580565b60405160208183030381529060405280519060200120611ca7565b611cd790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff161461114f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611146906135e7565b60405180910390fd5b6001600760008282546111629190613110565b9250508190555061117533600754611889565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111b290612e8d565b80601f01602080910402602001604051908101604052809291908181526020018280546111de90612e8d565b801561122b5780601f106112005761010080835404028352916020019161122b565b820191906000526020600020905b81548152906001019060200180831161120e57829003601f168201915b5050505050905090565b61123d6117c8565b73ffffffffffffffffffffffffffffffffffffffff1661125b611179565b73ffffffffffffffffffffffffffffffffffffffff16146112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613388565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6112e56117c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613653565b60405180910390fd5b80600560006113606117c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140d6117c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611452919061281c565b60405180910390a35050565b61146f6114696117c8565b836118a7565b6114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a59061331c565b60405180910390fd5b6114ba84848484611cfe565b50505050565b60606114cb8261175c565b61150a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611501906136e5565b60405180910390fd5b6000611514611d5a565b90508061152084611dec565b604051602001611531929190613741565b604051602081830303815290604052915050919050565b66f8b0a10e47000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115ef6117c8565b73ffffffffffffffffffffffffffffffffffffffff1661160d611179565b73ffffffffffffffffffffffffffffffffffffffff1614611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613388565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca906137d7565b60405180910390fd5b6116dc81611be1565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184383610d47565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118a3828260405180602001604052806000815250611f4d565b5050565b60006118b28261175c565b6118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613869565b60405180910390fd5b60006118fc83610d47565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061196b57508373ffffffffffffffffffffffffffffffffffffffff166119538461077c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061197c575061197b8185611553565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119a582610d47565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f2906138fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a629061398d565b60405180910390fd5b611a76838383611fa8565b611a816000826117d0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad191906139ad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b289190613110565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081604051602001611cba9190613a58565b604051602081830303815290604052805190602001209050919050565b6000806000611ce68585611fad565b91509150611cf381612030565b819250505092915050565b611d09848484611985565b611d1584848484612205565b611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613af0565b60405180910390fd5b50505050565b606060088054611d6990612e8d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9590612e8d565b8015611de25780601f10611db757610100808354040283529160200191611de2565b820191906000526020600020905b815481529060010190602001808311611dc557829003601f168201915b5050505050905090565b60606000821415611e34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f48565b600082905060005b60008214611e66578080611e4f90613b10565b915050600a82611e5f9190613b88565b9150611e3c565b60008167ffffffffffffffff811115611e8257611e81612aa4565b5b6040519080825280601f01601f191660200182016040528015611eb45781602001600182028036833780820191505090505b5090505b60008514611f4157600182611ecd91906139ad565b9150600a85611edc9190613bb9565b6030611ee89190613110565b60f81b818381518110611efe57611efd613bea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3a9190613b88565b9450611eb8565b8093505050505b919050565b611f57838361239c565b611f646000848484612205565b611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613af0565b60405180910390fd5b505050565b505050565b600080604183511415611fef5760008060006020860151925060408601519150606086015160001a9050611fe38782858561256a565b94509450505050612029565b604083511415612020576000806020850151915060408501519050612015868383612677565b935093505050612029565b60006002915091505b9250929050565b6000600481111561204457612043613c19565b5b81600481111561205757612056613c19565b5b141561206257612202565b6001600481111561207657612075613c19565b5b81600481111561208957612088613c19565b5b14156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190613c94565b60405180910390fd5b600260048111156120de576120dd613c19565b5b8160048111156120f1576120f0613c19565b5b1415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990613d00565b60405180910390fd5b6003600481111561214657612145613c19565b5b81600481111561215957612158613c19565b5b141561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190613d92565b60405180910390fd5b6004808111156121ad576121ac613c19565b5b8160048111156121c0576121bf613c19565b5b1415612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890613e24565b60405180910390fd5b5b50565b60006122268473ffffffffffffffffffffffffffffffffffffffff166116df565b1561238f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261224f6117c8565b8786866040518563ffffffff1660e01b81526004016122719493929190613e99565b602060405180830381600087803b15801561228b57600080fd5b505af19250505080156122bc57506040513d601f19601f820116820180604052508101906122b99190613efa565b60015b61233f573d80600081146122ec576040519150601f19603f3d011682016040523d82523d6000602084013e6122f1565b606091505b50600081511415612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90613af0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612394565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390613f73565b60405180910390fd5b6124158161175c565b15612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90613fdf565b60405180910390fd5b61246160008383611fa8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b19190613110565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156125a557600060039150915061266e565b601b8560ff16141580156125bd5750601c8560ff1614155b156125cf57600060049150915061266e565b6000600187878787604051600081526020016040526040516125f4949392919061402a565b6020604051602081039080840390855afa158015612616573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126655760006001925092505061266e565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506126b78782888561256a565b935093505050935093915050565b8280546126d190612e8d565b90600052602060002090601f0160209004810192826126f3576000855561273a565b82601f1061270c57805160ff191683800117855561273a565b8280016001018555821561273a579182015b8281111561273957825182559160200191906001019061271e565b5b509050612747919061274b565b5090565b5b8082111561276457600081600090555060010161274c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127b18161277c565b81146127bc57600080fd5b50565b6000813590506127ce816127a8565b92915050565b6000602082840312156127ea576127e9612772565b5b60006127f8848285016127bf565b91505092915050565b60008115159050919050565b61281681612801565b82525050565b6000602082019050612831600083018461280d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612871578082015181840152602081019050612856565b83811115612880576000848401525b50505050565b6000601f19601f8301169050919050565b60006128a282612837565b6128ac8185612842565b93506128bc818560208601612853565b6128c581612886565b840191505092915050565b600060208201905081810360008301526128ea8184612897565b905092915050565b6000819050919050565b612905816128f2565b811461291057600080fd5b50565b600081359050612922816128fc565b92915050565b60006020828403121561293e5761293d612772565b5b600061294c84828501612913565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061298082612955565b9050919050565b61299081612975565b82525050565b60006020820190506129ab6000830184612987565b92915050565b6129ba81612975565b81146129c557600080fd5b50565b6000813590506129d7816129b1565b92915050565b600080604083850312156129f4576129f3612772565b5b6000612a02858286016129c8565b9250506020612a1385828601612913565b9150509250929050565b612a26816128f2565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b600080600060608486031215612a6057612a5f612772565b5b6000612a6e868287016129c8565b9350506020612a7f868287016129c8565b9250506040612a9086828701612913565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612adc82612886565b810181811067ffffffffffffffff82111715612afb57612afa612aa4565b5b80604052505050565b6000612b0e612768565b9050612b1a8282612ad3565b919050565b600067ffffffffffffffff821115612b3a57612b39612aa4565b5b612b4382612886565b9050602081019050919050565b82818337600083830152505050565b6000612b72612b6d84612b1f565b612b04565b905082815260208101848484011115612b8e57612b8d612a9f565b5b612b99848285612b50565b509392505050565b600082601f830112612bb657612bb5612a9a565b5b8135612bc6848260208601612b5f565b91505092915050565b600060208284031215612be557612be4612772565b5b600082013567ffffffffffffffff811115612c0357612c02612777565b5b612c0f84828501612ba1565b91505092915050565b600060208284031215612c2e57612c2d612772565b5b6000612c3c848285016129c8565b91505092915050565b600067ffffffffffffffff821115612c6057612c5f612aa4565b5b612c6982612886565b9050602081019050919050565b6000612c89612c8484612c45565b612b04565b905082815260208101848484011115612ca557612ca4612a9f565b5b612cb0848285612b50565b509392505050565b600082601f830112612ccd57612ccc612a9a565b5b8135612cdd848260208601612c76565b91505092915050565b600060208284031215612cfc57612cfb612772565b5b600082013567ffffffffffffffff811115612d1a57612d19612777565b5b612d2684828501612cb8565b91505092915050565b612d3881612801565b8114612d4357600080fd5b50565b600081359050612d5581612d2f565b92915050565b60008060408385031215612d7257612d71612772565b5b6000612d80858286016129c8565b9250506020612d9185828601612d46565b9150509250929050565b60008060008060808587031215612db557612db4612772565b5b6000612dc3878288016129c8565b9450506020612dd4878288016129c8565b9350506040612de587828801612913565b925050606085013567ffffffffffffffff811115612e0657612e05612777565b5b612e1287828801612cb8565b91505092959194509250565b60008060408385031215612e3557612e34612772565b5b6000612e43858286016129c8565b9250506020612e54858286016129c8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ea557607f821691505b60208210811415612eb957612eb8612e5e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f1b602c83612842565b9150612f2682612ebf565b604082019050919050565b60006020820190508181036000830152612f4a81612f0e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fad602183612842565b9150612fb882612f51565b604082019050919050565b60006020820190508181036000830152612fdc81612fa0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061303f603883612842565b915061304a82612fe3565b604082019050919050565b6000602082019050818103600083015261306e81613032565b9050919050565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b60006130ab601583612842565b91506130b682613075565b602082019050919050565b600060208201905081810360008301526130da8161309e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061311b826128f2565b9150613126836128f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561315b5761315a6130e1565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b600061319c602083612842565b91506131a782613166565b602082019050919050565b600060208201905081810360008301526131cb8161318f565b9050919050565b7f4d696e7420776f756c6420657863656564206d6178206d696e74000000000000600082015250565b6000613208601a83612842565b9150613213826131d2565b602082019050919050565b60006020820190508181036000830152613237816131fb565b9050919050565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b6000613274601d83612842565b915061327f8261323e565b602082019050919050565b600060208201905081810360008301526132a381613267565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613306603183612842565b9150613311826132aa565b604082019050919050565b60006020820190508181036000830152613335816132f9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613372602083612842565b915061337d8261333c565b602082019050919050565b600060208201905081810360008301526133a181613365565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613404602983612842565b915061340f826133a8565b604082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613496602a83612842565b91506134a18261343a565b604082019050919050565b600060208201905081810360008301526134c581613489565b9050919050565b7f4561726c79206d696e74696e67206e6f74206163746976650000000000000000600082015250565b6000613502601883612842565b915061350d826134cc565b602082019050919050565b60006020820190508181036000830152613531816134f5565b9050919050565b60008160601b9050919050565b600061355082613538565b9050919050565b600061356282613545565b9050919050565b61357a61357582612975565b613557565b82525050565b600061358c8284613569565b60148201915081905092915050565b7f556e7265636f676e697a61626c65204861736800000000000000000000000000600082015250565b60006135d1601383612842565b91506135dc8261359b565b602082019050919050565b60006020820190508181036000830152613600816135c4565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061363d601983612842565b915061364882613607565b602082019050919050565b6000602082019050818103600083015261366c81613630565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136cf602f83612842565b91506136da82613673565b604082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b600081905092915050565b600061371b82612837565b6137258185613705565b9350613735818560208601612853565b80840191505092915050565b600061374d8285613710565b91506137598284613710565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137c1602683612842565b91506137cc82613765565b604082019050919050565b600060208201905081810360008301526137f0816137b4565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613853602c83612842565b915061385e826137f7565b604082019050919050565b6000602082019050818103600083015261388281613846565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006138e5602983612842565b91506138f082613889565b604082019050919050565b60006020820190508181036000830152613914816138d8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613977602483612842565b91506139828261391b565b604082019050919050565b600060208201905081810360008301526139a68161396a565b9050919050565b60006139b8826128f2565b91506139c3836128f2565b9250828210156139d6576139d56130e1565b5b828203905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613a17601c83613705565b9150613a22826139e1565b601c82019050919050565b6000819050919050565b6000819050919050565b613a52613a4d82613a2d565b613a37565b82525050565b6000613a6382613a0a565b9150613a6f8284613a41565b60208201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613ada603283612842565b9150613ae582613a7e565b604082019050919050565b60006020820190508181036000830152613b0981613acd565b9050919050565b6000613b1b826128f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4e57613b4d6130e1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b93826128f2565b9150613b9e836128f2565b925082613bae57613bad613b59565b5b828204905092915050565b6000613bc4826128f2565b9150613bcf836128f2565b925082613bdf57613bde613b59565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613c7e601883612842565b9150613c8982613c48565b602082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613cea601f83612842565b9150613cf582613cb4565b602082019050919050565b60006020820190508181036000830152613d1981613cdd565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d7c602283612842565b9150613d8782613d20565b604082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e0e602283612842565b9150613e1982613db2565b604082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e6b82613e44565b613e758185613e4f565b9350613e85818560208601612853565b613e8e81612886565b840191505092915050565b6000608082019050613eae6000830187612987565b613ebb6020830186612987565b613ec86040830185612a1d565b8181036060830152613eda8184613e60565b905095945050505050565b600081519050613ef4816127a8565b92915050565b600060208284031215613f1057613f0f612772565b5b6000613f1e84828501613ee5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f5d602083612842565b9150613f6882613f27565b602082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613fc9601c83612842565b9150613fd482613f93565b602082019050919050565b60006020820190508181036000830152613ff881613fbc565b9050919050565b61400881613a2d565b82525050565b600060ff82169050919050565b6140248161400e565b82525050565b600060808201905061403f6000830187613fff565b61404c602083018661401b565b6140596040830185613fff565b6140666060830184613fff565b9594505050505056fea2646970667358221220007a727e92f36b4df9a2da85d14a0748374c684529216843754a884246fbbc0764736f6c63430008090033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806359c74f29116100ec5780639e7591481161008a578063c87b56dd11610064578063c87b56dd1461053a578063d9dd9eb114610577578063e985e9c5146105a2578063f2fde38b146105df5761019c565b80639e759148146104d1578063a22cb465146104e8578063b88d4fde146105115761019c565b8063715018a6116100c6578063715018a614610448578063797301211461045f5780638da5cb5b1461047b57806395d89b41146104a65761019c565b806359c74f29146103b75780636352211e146103ce57806370a082311461040b5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461030f578063471a4294146103385780634e981c0c1461036357806355f804b31461038e5761019c565b806323b872dd146102a457806332cb6b0c146102cd5780633ccfd60b146102f85761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026f57806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906127d4565b610608565b6040516101d5919061281c565b60405180910390f35b3480156101ea57600080fd5b506101f36106ea565b60405161020091906128d0565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612928565b61077c565b60405161023d9190612996565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906129dd565b610801565b005b610277610919565b005b34801561028557600080fd5b5061028e610a89565b60405161029b9190612a2c565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c69190612a47565b610a93565b005b3480156102d957600080fd5b506102e2610af3565b6040516102ef9190612a2c565b60405180910390f35b34801561030457600080fd5b5061030d610af8565b005b34801561031b57600080fd5b5061033660048036038101906103319190612a47565b610bc3565b005b34801561034457600080fd5b5061034d610be3565b60405161035a919061281c565b60405180910390f35b34801561036f57600080fd5b50610378610bf6565b604051610385919061281c565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190612bcf565b610c09565b005b3480156103c357600080fd5b506103cc610c9f565b005b3480156103da57600080fd5b506103f560048036038101906103f09190612928565b610d47565b6040516104029190612996565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190612c18565b610df9565b60405161043f9190612a2c565b60405180910390f35b34801561045457600080fd5b5061045d610eb1565b005b61047960048036038101906104749190612ce6565b610f39565b005b34801561048757600080fd5b50610490611179565b60405161049d9190612996565b60405180910390f35b3480156104b257600080fd5b506104bb6111a3565b6040516104c891906128d0565b60405180910390f35b3480156104dd57600080fd5b506104e6611235565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612d5b565b6112dd565b005b34801561051d57600080fd5b5061053860048036038101906105339190612d9b565b61145e565b005b34801561054657600080fd5b50610561600480360381019061055c9190612928565b6114c0565b60405161056e91906128d0565b60405180910390f35b34801561058357600080fd5b5061058c611548565b6040516105999190612a2c565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612e1e565b611553565b6040516105d6919061281c565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190612c18565b6115e7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e357506106e2826116f2565b5b9050919050565b6060600080546106f990612e8d565b80601f016020809104026020016040519081016040528092919081815260200182805461072590612e8d565b80156107725780601f1061074757610100808354040283529160200191610772565b820191906000526020600020905b81548152906001019060200180831161075557829003601f168201915b5050505050905090565b60006107878261175c565b6107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90612f31565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080c82610d47565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490612fc3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089c6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614806108cb57506108ca816108c56117c8565b611553565b5b61090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190613055565b60405180910390fd5b61091483836117d0565b505050565b600061092433610df9565b9050600660159054906101000a900460ff16610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c906130c1565b60405180910390fd5b609c60016007546109869190613110565b11156109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be906131b2565b60405180910390fd5b60056001826109d69190613110565b1115610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e9061321e565b60405180910390fd5b3466f8b0a10e47000014610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579061328a565b60405180910390fd5b600160076000828254610a739190613110565b92505081905550610a8633600754611889565b50565b6000600754905090565b610aa4610a9e6117c8565b826118a7565b610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada9061331c565b60405180910390fd5b610aee838383611985565b505050565b609c81565b610b006117c8565b73ffffffffffffffffffffffffffffffffffffffff16610b1e611179565b73ffffffffffffffffffffffffffffffffffffffff1614610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90613388565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bbf573d6000803e3d6000fd5b5050565b610bde8383836040518060200160405280600081525061145e565b505050565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff1681565b610c116117c8565b73ffffffffffffffffffffffffffffffffffffffff16610c2f611179565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613388565b60405180910390fd5b8060089080519060200190610c9b9291906126c5565b5050565b610ca76117c8565b73ffffffffffffffffffffffffffffffffffffffff16610cc5611179565b73ffffffffffffffffffffffffffffffffffffffff1614610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290613388565b60405180910390fd5b600660159054906101000a900460ff1615600660156101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de79061341a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e61906134ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eb96117c8565b73ffffffffffffffffffffffffffffffffffffffff16610ed7611179565b73ffffffffffffffffffffffffffffffffffffffff1614610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613388565b60405180910390fd5b610f376000611be1565b565b6000610f4433610df9565b9050600660149054906101000a900460ff16610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613518565b60405180910390fd5b609c6001600754610fa69190613110565b1115610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde906131b2565b60405180910390fd5b60018082610ff59190613110565b1115611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d9061321e565b60405180910390fd5b3466f8b0a10e4700001461107f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110769061328a565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110f9836110eb336040516020016110d09190613580565b60405160208183030381529060405280519060200120611ca7565b611cd790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff161461114f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611146906135e7565b60405180910390fd5b6001600760008282546111629190613110565b9250508190555061117533600754611889565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111b290612e8d565b80601f01602080910402602001604051908101604052809291908181526020018280546111de90612e8d565b801561122b5780601f106112005761010080835404028352916020019161122b565b820191906000526020600020905b81548152906001019060200180831161120e57829003601f168201915b5050505050905090565b61123d6117c8565b73ffffffffffffffffffffffffffffffffffffffff1661125b611179565b73ffffffffffffffffffffffffffffffffffffffff16146112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613388565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6112e56117c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613653565b60405180910390fd5b80600560006113606117c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140d6117c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611452919061281c565b60405180910390a35050565b61146f6114696117c8565b836118a7565b6114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a59061331c565b60405180910390fd5b6114ba84848484611cfe565b50505050565b60606114cb8261175c565b61150a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611501906136e5565b60405180910390fd5b6000611514611d5a565b90508061152084611dec565b604051602001611531929190613741565b604051602081830303815290604052915050919050565b66f8b0a10e47000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115ef6117c8565b73ffffffffffffffffffffffffffffffffffffffff1661160d611179565b73ffffffffffffffffffffffffffffffffffffffff1614611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613388565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca906137d7565b60405180910390fd5b6116dc81611be1565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184383610d47565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118a3828260405180602001604052806000815250611f4d565b5050565b60006118b28261175c565b6118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613869565b60405180910390fd5b60006118fc83610d47565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061196b57508373ffffffffffffffffffffffffffffffffffffffff166119538461077c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061197c575061197b8185611553565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119a582610d47565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f2906138fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a629061398d565b60405180910390fd5b611a76838383611fa8565b611a816000826117d0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad191906139ad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b289190613110565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081604051602001611cba9190613a58565b604051602081830303815290604052805190602001209050919050565b6000806000611ce68585611fad565b91509150611cf381612030565b819250505092915050565b611d09848484611985565b611d1584848484612205565b611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613af0565b60405180910390fd5b50505050565b606060088054611d6990612e8d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9590612e8d565b8015611de25780601f10611db757610100808354040283529160200191611de2565b820191906000526020600020905b815481529060010190602001808311611dc557829003601f168201915b5050505050905090565b60606000821415611e34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f48565b600082905060005b60008214611e66578080611e4f90613b10565b915050600a82611e5f9190613b88565b9150611e3c565b60008167ffffffffffffffff811115611e8257611e81612aa4565b5b6040519080825280601f01601f191660200182016040528015611eb45781602001600182028036833780820191505090505b5090505b60008514611f4157600182611ecd91906139ad565b9150600a85611edc9190613bb9565b6030611ee89190613110565b60f81b818381518110611efe57611efd613bea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3a9190613b88565b9450611eb8565b8093505050505b919050565b611f57838361239c565b611f646000848484612205565b611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613af0565b60405180910390fd5b505050565b505050565b600080604183511415611fef5760008060006020860151925060408601519150606086015160001a9050611fe38782858561256a565b94509450505050612029565b604083511415612020576000806020850151915060408501519050612015868383612677565b935093505050612029565b60006002915091505b9250929050565b6000600481111561204457612043613c19565b5b81600481111561205757612056613c19565b5b141561206257612202565b6001600481111561207657612075613c19565b5b81600481111561208957612088613c19565b5b14156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190613c94565b60405180910390fd5b600260048111156120de576120dd613c19565b5b8160048111156120f1576120f0613c19565b5b1415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990613d00565b60405180910390fd5b6003600481111561214657612145613c19565b5b81600481111561215957612158613c19565b5b141561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190613d92565b60405180910390fd5b6004808111156121ad576121ac613c19565b5b8160048111156121c0576121bf613c19565b5b1415612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890613e24565b60405180910390fd5b5b50565b60006122268473ffffffffffffffffffffffffffffffffffffffff166116df565b1561238f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261224f6117c8565b8786866040518563ffffffff1660e01b81526004016122719493929190613e99565b602060405180830381600087803b15801561228b57600080fd5b505af19250505080156122bc57506040513d601f19601f820116820180604052508101906122b99190613efa565b60015b61233f573d80600081146122ec576040519150601f19603f3d011682016040523d82523d6000602084013e6122f1565b606091505b50600081511415612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90613af0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612394565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390613f73565b60405180910390fd5b6124158161175c565b15612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90613fdf565b60405180910390fd5b61246160008383611fa8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b19190613110565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156125a557600060039150915061266e565b601b8560ff16141580156125bd5750601c8560ff1614155b156125cf57600060049150915061266e565b6000600187878787604051600081526020016040526040516125f4949392919061402a565b6020604051602081039080840390855afa158015612616573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126655760006001925092505061266e565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506126b78782888561256a565b935093505050935093915050565b8280546126d190612e8d565b90600052602060002090601f0160209004810192826126f3576000855561273a565b82601f1061270c57805160ff191683800117855561273a565b8280016001018555821561273a579182015b8281111561273957825182559160200191906001019061271e565b5b509050612747919061274b565b5090565b5b8082111561276457600081600090555060010161274c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127b18161277c565b81146127bc57600080fd5b50565b6000813590506127ce816127a8565b92915050565b6000602082840312156127ea576127e9612772565b5b60006127f8848285016127bf565b91505092915050565b60008115159050919050565b61281681612801565b82525050565b6000602082019050612831600083018461280d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612871578082015181840152602081019050612856565b83811115612880576000848401525b50505050565b6000601f19601f8301169050919050565b60006128a282612837565b6128ac8185612842565b93506128bc818560208601612853565b6128c581612886565b840191505092915050565b600060208201905081810360008301526128ea8184612897565b905092915050565b6000819050919050565b612905816128f2565b811461291057600080fd5b50565b600081359050612922816128fc565b92915050565b60006020828403121561293e5761293d612772565b5b600061294c84828501612913565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061298082612955565b9050919050565b61299081612975565b82525050565b60006020820190506129ab6000830184612987565b92915050565b6129ba81612975565b81146129c557600080fd5b50565b6000813590506129d7816129b1565b92915050565b600080604083850312156129f4576129f3612772565b5b6000612a02858286016129c8565b9250506020612a1385828601612913565b9150509250929050565b612a26816128f2565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b600080600060608486031215612a6057612a5f612772565b5b6000612a6e868287016129c8565b9350506020612a7f868287016129c8565b9250506040612a9086828701612913565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612adc82612886565b810181811067ffffffffffffffff82111715612afb57612afa612aa4565b5b80604052505050565b6000612b0e612768565b9050612b1a8282612ad3565b919050565b600067ffffffffffffffff821115612b3a57612b39612aa4565b5b612b4382612886565b9050602081019050919050565b82818337600083830152505050565b6000612b72612b6d84612b1f565b612b04565b905082815260208101848484011115612b8e57612b8d612a9f565b5b612b99848285612b50565b509392505050565b600082601f830112612bb657612bb5612a9a565b5b8135612bc6848260208601612b5f565b91505092915050565b600060208284031215612be557612be4612772565b5b600082013567ffffffffffffffff811115612c0357612c02612777565b5b612c0f84828501612ba1565b91505092915050565b600060208284031215612c2e57612c2d612772565b5b6000612c3c848285016129c8565b91505092915050565b600067ffffffffffffffff821115612c6057612c5f612aa4565b5b612c6982612886565b9050602081019050919050565b6000612c89612c8484612c45565b612b04565b905082815260208101848484011115612ca557612ca4612a9f565b5b612cb0848285612b50565b509392505050565b600082601f830112612ccd57612ccc612a9a565b5b8135612cdd848260208601612c76565b91505092915050565b600060208284031215612cfc57612cfb612772565b5b600082013567ffffffffffffffff811115612d1a57612d19612777565b5b612d2684828501612cb8565b91505092915050565b612d3881612801565b8114612d4357600080fd5b50565b600081359050612d5581612d2f565b92915050565b60008060408385031215612d7257612d71612772565b5b6000612d80858286016129c8565b9250506020612d9185828601612d46565b9150509250929050565b60008060008060808587031215612db557612db4612772565b5b6000612dc3878288016129c8565b9450506020612dd4878288016129c8565b9350506040612de587828801612913565b925050606085013567ffffffffffffffff811115612e0657612e05612777565b5b612e1287828801612cb8565b91505092959194509250565b60008060408385031215612e3557612e34612772565b5b6000612e43858286016129c8565b9250506020612e54858286016129c8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ea557607f821691505b60208210811415612eb957612eb8612e5e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f1b602c83612842565b9150612f2682612ebf565b604082019050919050565b60006020820190508181036000830152612f4a81612f0e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fad602183612842565b9150612fb882612f51565b604082019050919050565b60006020820190508181036000830152612fdc81612fa0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061303f603883612842565b915061304a82612fe3565b604082019050919050565b6000602082019050818103600083015261306e81613032565b9050919050565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b60006130ab601583612842565b91506130b682613075565b602082019050919050565b600060208201905081810360008301526130da8161309e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061311b826128f2565b9150613126836128f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561315b5761315a6130e1565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b600061319c602083612842565b91506131a782613166565b602082019050919050565b600060208201905081810360008301526131cb8161318f565b9050919050565b7f4d696e7420776f756c6420657863656564206d6178206d696e74000000000000600082015250565b6000613208601a83612842565b9150613213826131d2565b602082019050919050565b60006020820190508181036000830152613237816131fb565b9050919050565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b6000613274601d83612842565b915061327f8261323e565b602082019050919050565b600060208201905081810360008301526132a381613267565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613306603183612842565b9150613311826132aa565b604082019050919050565b60006020820190508181036000830152613335816132f9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613372602083612842565b915061337d8261333c565b602082019050919050565b600060208201905081810360008301526133a181613365565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613404602983612842565b915061340f826133a8565b604082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613496602a83612842565b91506134a18261343a565b604082019050919050565b600060208201905081810360008301526134c581613489565b9050919050565b7f4561726c79206d696e74696e67206e6f74206163746976650000000000000000600082015250565b6000613502601883612842565b915061350d826134cc565b602082019050919050565b60006020820190508181036000830152613531816134f5565b9050919050565b60008160601b9050919050565b600061355082613538565b9050919050565b600061356282613545565b9050919050565b61357a61357582612975565b613557565b82525050565b600061358c8284613569565b60148201915081905092915050565b7f556e7265636f676e697a61626c65204861736800000000000000000000000000600082015250565b60006135d1601383612842565b91506135dc8261359b565b602082019050919050565b60006020820190508181036000830152613600816135c4565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061363d601983612842565b915061364882613607565b602082019050919050565b6000602082019050818103600083015261366c81613630565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136cf602f83612842565b91506136da82613673565b604082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b600081905092915050565b600061371b82612837565b6137258185613705565b9350613735818560208601612853565b80840191505092915050565b600061374d8285613710565b91506137598284613710565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137c1602683612842565b91506137cc82613765565b604082019050919050565b600060208201905081810360008301526137f0816137b4565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613853602c83612842565b915061385e826137f7565b604082019050919050565b6000602082019050818103600083015261388281613846565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006138e5602983612842565b91506138f082613889565b604082019050919050565b60006020820190508181036000830152613914816138d8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613977602483612842565b91506139828261391b565b604082019050919050565b600060208201905081810360008301526139a68161396a565b9050919050565b60006139b8826128f2565b91506139c3836128f2565b9250828210156139d6576139d56130e1565b5b828203905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613a17601c83613705565b9150613a22826139e1565b601c82019050919050565b6000819050919050565b6000819050919050565b613a52613a4d82613a2d565b613a37565b82525050565b6000613a6382613a0a565b9150613a6f8284613a41565b60208201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613ada603283612842565b9150613ae582613a7e565b604082019050919050565b60006020820190508181036000830152613b0981613acd565b9050919050565b6000613b1b826128f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4e57613b4d6130e1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b93826128f2565b9150613b9e836128f2565b925082613bae57613bad613b59565b5b828204905092915050565b6000613bc4826128f2565b9150613bcf836128f2565b925082613bdf57613bde613b59565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613c7e601883612842565b9150613c8982613c48565b602082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613cea601f83612842565b9150613cf582613cb4565b602082019050919050565b60006020820190508181036000830152613d1981613cdd565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d7c602283612842565b9150613d8782613d20565b604082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e0e602283612842565b9150613e1982613db2565b604082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e6b82613e44565b613e758185613e4f565b9350613e85818560208601612853565b613e8e81612886565b840191505092915050565b6000608082019050613eae6000830187612987565b613ebb6020830186612987565b613ec86040830185612a1d565b8181036060830152613eda8184613e60565b905095945050505050565b600081519050613ef4816127a8565b92915050565b600060208284031215613f1057613f0f612772565b5b6000613f1e84828501613ee5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f5d602083612842565b9150613f6882613f27565b602082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613fc9601c83612842565b9150613fd482613f93565b602082019050919050565b60006020820190508181036000830152613ff881613fbc565b9050919050565b61400881613a2d565b82525050565b600060ff82169050919050565b6140248161400e565b82525050565b600060808201905061403f6000830187613fff565b61404c602083018661401b565b6140596040830185613fff565b6140666060830184613fff565b9594505050505056fea2646970667358221220007a727e92f36b4df9a2da85d14a0748374c684529216843754a884246fbbc0764736f6c63430008090033

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.