ETH Price: $3,494.50 (+2.21%)
Gas: 15 Gwei

Token

NFTinit Lifetime (INITLT)
 

Overview

Max Total Supply

1,120 INITLT

Holders

881

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INITLT
0x77e2e00aef1699dfd9fde2b8f6d60fd7f009de09
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

NFTinit is all-in-one software to search and snipe glorious NFT world opportunities with a committed community.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NftinitLifetime

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : NftinitLifetime.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

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

contract NftinitLifetime is ERC721, Ownable {
    using Counters for Counters.Counter;

    uint256 public constant MAX_SUPPLY = 1120;

    uint256 public constant WL_PRICE = 0.3 ether;
    uint256 public constant WL_PRICE_DISCOUNTED_2X = 0.5 ether;
    uint256 public constant SALE_PRICE = 0.4 ether;

    uint256 public constant MAX_PER_WL = 2;
    uint256 public constant MAX_PER_TX = 2;

    //  0: INACTIVE, 1: PRE_SALE, 2: PUBLIC_SALE
    uint256 public SALE_STATE = 0;

    bytes32 private merkleRoot;

    mapping(address => uint256) whitelistMints;

    Counters.Counter private idTracker;

    string public baseURI;

    constructor() ERC721("NFTinit Lifetime", "INITLT") {
        idTracker.increment();
    }

    function mintInternal(address _to) internal {
        _mint(_to, idTracker.current());
        idTracker.increment();
    }

    function ownerMint(address account, uint256 amount) external onlyOwner {
        require(
            idTracker.current() + amount - 1 <= MAX_SUPPLY,
            "INIT: Purchasable NFTs are all minted."
        );

        for (uint256 i = 0; i < amount; i++) {
            mintInternal(account);
        }
    }

    function mintPreSale(uint256 amount, bytes32[] calldata merkleProof)
        external
        payable
    {
        require(SALE_STATE == 1, "INIT: Pre-sale has not started yet.");
        require(
            idTracker.current() + amount - 1 <= MAX_SUPPLY,
            "INIT: Purchasable NFTs are all minted."
        );
        require(
            msg.value >= (amount == 2 ? WL_PRICE_DISCOUNTED_2X : WL_PRICE),
            "INIT: Insufficient funds."
        );
        require(
            whitelistMints[msg.sender] + amount <= MAX_PER_WL,
            "INIT: Address has reached the wallet cap in pre-sale."
        );

        require(
            MerkleProof.verify(
                merkleProof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "INIT: Merkle verification has failed, address is not in the pre-sale whitelist."
        );

        for (uint256 i = 0; i < amount; i++) {
            mintInternal(msg.sender);
        }
        whitelistMints[msg.sender] += amount;
    }

    function mintPublicSale(uint256 amount) external payable {
        require(SALE_STATE == 2, "INIT: Public sale has not started yet.");
        require(
            idTracker.current() + amount - 1 <= MAX_SUPPLY,
            "INIT: Purchasable NFTs are all minted."
        );
        require(msg.value >= amount * SALE_PRICE, "INIT: Insufficient funds.");
        require(
            amount <= MAX_PER_TX,
            "INIT: Amount exceeds transaction mint cap."
        );

        for (uint256 i = 0; i < amount; i++) {
            mintInternal(msg.sender);
        }
    }

    // DON'T CALL FROM CONTRACTS - RPC CALLS ONLY
    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 balance = balanceOf(_owner);
        if (balance == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](balance);
            uint256 index = 0;

            uint256 totalSupply_ = totalSupply();
            for (uint256 tokenId = 1; tokenId <= totalSupply_; tokenId++) {
                if (index == balance) break;

                if (ownerOf(tokenId) == _owner) {
                    result[index] = tokenId;
                    index++;
                }
            }
            return result;
        }
    }

    function _baseURI() internal view override(ERC721) returns (string memory) {
        return baseURI;
    }

    function totalSupply() public view returns (uint256) {
        return idTracker.current() - 1;
    }

    function setSaleState(uint256 _saleState) external onlyOwner {
        require(
            _saleState >= 0 && _saleState < 3,
            "INIT: Invalid new sale state."
        );
        SALE_STATE = _saleState;
    }

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

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "INIT: No balance to withdraw.");

        _withdraw(owner(), address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) internal {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "INIT: Transfer failed.");
    }
}

File 2 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

File 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 12 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

File 13 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE_DISCOUNTED_2X","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"setSaleState","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006007553480156200001657600080fd5b506040518060400160405280601081526020017f4e4654696e6974204c69666574696d65000000000000000000000000000000008152506040518060400160405280600681526020017f494e49544c54000000000000000000000000000000000000000000000000000081525081600090805190602001906200009b929190620001d8565b508060019080519060200190620000b4929190620001d8565b505050620000d7620000cb620000f460201b60201c565b620000fc60201b60201c565b620000ee600a620001c260201b62001af21760201c565b620002ed565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b828054620001e690620002b7565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b50905062000265919062000269565b5090565b5b80821115620002845760008160009055506001016200026a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d057607f821691505b60208210811415620002e757620002e662000288565b5b50919050565b61457b80620002fd6000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106a9578063e985e9c5146106e6578063ef23880214610723578063f2fde38b1461074e578063f43a22dc14610777576101ee565b8063a22cb46514610601578063b3957bc91461062a578063b88d4fde14610655578063c39996ae1461067e576101ee565b8063853828b6116100dc578063853828b6146105785780638da5cb5b1461058f57806395d89b41146105ba5780639e6b2c5b146105e5576101ee565b8063715018a6146104d05780637cb64759146104e75780637f205a74146105105780638462151c1461053b576101ee565b806332cb6b0c116101855780635a5e5d58116101545780635a5e5d581461040f5780636352211e1461042b5780636c0360eb1461046857806370a0823114610493576101ee565b806332cb6b0c1461036957806342842e0e14610394578063484b973c146103bd57806355f804b3146103e6576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd1461031557806331c3c7a01461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063084c408814610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612a81565b6107a2565b6040516102279190612ac9565b60405180910390f35b34801561023c57600080fd5b50610245610884565b6040516102529190612b7d565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612bd5565b610916565b60405161028f9190612c43565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612bd5565b61099b565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190612c8a565b610a71565b005b3480156102f657600080fd5b506102ff610b89565b60405161030c9190612cd9565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612cf4565b610ba6565b005b34801561034a57600080fd5b50610353610c06565b6040516103609190612cd9565b60405180910390f35b34801561037557600080fd5b5061037e610c12565b60405161038b9190612cd9565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190612cf4565b610c18565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612c8a565b610c38565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612e7c565b610d45565b005b61042960048036038101906104249190612bd5565b610ddb565b005b34801561043757600080fd5b50610452600480360381019061044d9190612bd5565b610f4a565b60405161045f9190612c43565b60405180910390f35b34801561047457600080fd5b5061047d610ffc565b60405161048a9190612b7d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612ec5565b61108a565b6040516104c79190612cd9565b60405180910390f35b3480156104dc57600080fd5b506104e5611142565b005b3480156104f357600080fd5b5061050e60048036038101906105099190612f28565b6111ca565b005b34801561051c57600080fd5b50610525611250565b6040516105329190612cd9565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190612ec5565b61125c565b60405161056f9190613013565b60405180910390f35b34801561058457600080fd5b5061058d6113c7565b005b34801561059b57600080fd5b506105a461149f565b6040516105b19190612c43565b60405180910390f35b3480156105c657600080fd5b506105cf6114c9565b6040516105dc9190612b7d565b60405180910390f35b6105ff60048036038101906105fa9190613095565b61155b565b005b34801561060d57600080fd5b5061062860048036038101906106239190613121565b61182b565b005b34801561063657600080fd5b5061063f611841565b60405161064c9190612cd9565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613202565b611846565b005b34801561068a57600080fd5b506106936118a8565b6040516106a09190612cd9565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190612bd5565b6118b4565b6040516106dd9190612b7d565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190613285565b61195b565b60405161071a9190612ac9565b60405180910390f35b34801561072f57600080fd5b506107386119ef565b6040516107459190612cd9565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190612ec5565b6119f5565b005b34801561078357600080fd5b5061078c611aed565b6040516107999190612cd9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087d575061087c82611b08565b5b9050919050565b606060008054610893906132f4565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906132f4565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b600061092182611b72565b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613398565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6109a3611bde565b73ffffffffffffffffffffffffffffffffffffffff166109c161149f565b73ffffffffffffffffffffffffffffffffffffffff1614610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90613404565b60405180910390fd5b60008110158015610a285750600381105b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90613470565b60405180910390fd5b8060078190555050565b6000610a7c82610f4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490613502565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0c611bde565b73ffffffffffffffffffffffffffffffffffffffff161480610b3b5750610b3a81610b35611bde565b61195b565b5b610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613594565b60405180910390fd5b610b848383611be6565b505050565b60006001610b97600a611c9f565b610ba191906135e3565b905090565b610bb7610bb1611bde565b82611cad565b610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613689565b60405180910390fd5b610c01838383611d8b565b505050565b670429d069189e000081565b61046081565b610c3383838360405180602001604052806000815250611846565b505050565b610c40611bde565b73ffffffffffffffffffffffffffffffffffffffff16610c5e61149f565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90613404565b60405180910390fd5b610460600182610cc4600a611c9f565b610cce91906136a9565b610cd891906135e3565b1115610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090613771565b60405180910390fd5b60005b81811015610d4057610d2d83611fe7565b8080610d3890613791565b915050610d1c565b505050565b610d4d611bde565b73ffffffffffffffffffffffffffffffffffffffff16610d6b61149f565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890613404565b60405180910390fd5b80600b9080519060200190610dd7929190612972565b5050565b600260075414610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e179061384c565b60405180910390fd5b610460600182610e30600a611c9f565b610e3a91906136a9565b610e4491906135e3565b1115610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613771565b60405180910390fd5b67058d15e17628000081610e99919061386c565b341015610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613912565b60405180910390fd5b6002811115610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906139a4565b60405180910390fd5b60005b81811015610f4657610f3333611fe7565b8080610f3e90613791565b915050610f22565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90613a36565b60405180910390fd5b80915050919050565b600b8054611009906132f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611035906132f4565b80156110825780601f1061105757610100808354040283529160200191611082565b820191906000526020600020905b81548152906001019060200180831161106557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290613ac8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61114a611bde565b73ffffffffffffffffffffffffffffffffffffffff1661116861149f565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590613404565b60405180910390fd5b6111c86000612007565b565b6111d2611bde565b73ffffffffffffffffffffffffffffffffffffffff166111f061149f565b73ffffffffffffffffffffffffffffffffffffffff1614611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90613404565b60405180910390fd5b8060088190555050565b67058d15e17628000081565b606060006112698361108a565b905060008114156112c657600067ffffffffffffffff81111561128f5761128e612d51565b5b6040519080825280602002602001820160405280156112bd5781602001602082028036833780820191505090505b509150506113c2565b60008167ffffffffffffffff8111156112e2576112e1612d51565b5b6040519080825280602002602001820160405280156113105781602001602082028036833780820191505090505b50905060008061131e610b89565b90506000600190505b8181116113b9578483141561133b576113b9565b8673ffffffffffffffffffffffffffffffffffffffff1661135b82610f4a565b73ffffffffffffffffffffffffffffffffffffffff1614156113a6578084848151811061138b5761138a613ae8565b5b60200260200101818152505082806113a290613791565b9350505b80806113b190613791565b915050611327565b50829450505050505b919050565b6113cf611bde565b73ffffffffffffffffffffffffffffffffffffffff166113ed61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613404565b60405180910390fd5b60004790506000811161148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613b63565b60405180910390fd5b61149c61149661149f565b476120cd565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114d8906132f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611504906132f4565b80156115515780601f1061152657610100808354040283529160200191611551565b820191906000526020600020905b81548152906001019060200180831161153457829003601f168201915b5050505050905090565b6001600754146115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790613bf5565b60405180910390fd5b6104606001846115b0600a611c9f565b6115ba91906136a9565b6115c491906135e3565b1115611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613771565b60405180910390fd5b6002831461161b57670429d069189e0000611625565b6706f05b59d3b200005b341015611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613912565b60405180910390fd5b600283600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b491906136a9565b11156116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec90613c87565b60405180910390fd5b611769828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506008543360405160200161174e9190613cef565b6040516020818303038152906040528051906020012061217e565b6117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613da2565b60405180910390fd5b60005b838110156117cf576117bc33611fe7565b80806117c790613791565b9150506117ab565b5082600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181f91906136a9565b92505081905550505050565b61183d611836611bde565b8383612195565b5050565b600281565b611857611851611bde565b83611cad565b611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613689565b60405180910390fd5b6118a284848484612302565b50505050565b6706f05b59d3b2000081565b60606118bf82611b72565b6118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613e34565b60405180910390fd5b600061190861235e565b905060008151116119285760405180602001604052806000815250611953565b80611932846123f0565b604051602001611943929190613e90565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b6119fd611bde565b73ffffffffffffffffffffffffffffffffffffffff16611a1b61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6890613404565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613f26565b60405180910390fd5b611aea81612007565b50565b600281565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c5983610f4a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611cb882611b72565b611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613fb8565b60405180910390fd5b6000611d0283610f4a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7157508373ffffffffffffffffffffffffffffffffffffffff16611d5984610916565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d825750611d81818561195b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dab82610f4a565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df89061404a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e68906140dc565b60405180910390fd5b611e7c838383612551565b611e87600082611be6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed791906135e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2e91906136a9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611ffa81611ff5600a611c9f565b612556565b612004600a611af2565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120f39061412d565b60006040518083038185875af1925050503d8060008114612130576040519150601f19603f3d011682016040523d82523d6000602084013e612135565b606091505b5050905080612179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121709061418e565b60405180910390fd5b505050565b60008261218b8584612724565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb906141fa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122f59190612ac9565b60405180910390a3505050565b61230d848484611d8b565b612319848484846127d7565b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f9061428c565b60405180910390fd5b50505050565b6060600b805461236d906132f4565b80601f0160208091040260200160405190810160405280929190818152602001828054612399906132f4565b80156123e65780601f106123bb576101008083540402835291602001916123e6565b820191906000526020600020905b8154815290600101906020018083116123c957829003601f168201915b5050505050905090565b60606000821415612438576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061254c565b600082905060005b6000821461246a57808061245390613791565b915050600a8261246391906142db565b9150612440565b60008167ffffffffffffffff81111561248657612485612d51565b5b6040519080825280601f01601f1916602001820160405280156124b85781602001600182028036833780820191505090505b5090505b60008514612545576001826124d191906135e3565b9150600a856124e0919061430c565b60306124ec91906136a9565b60f81b81838151811061250257612501613ae8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561253e91906142db565b94506124bc565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614389565b60405180910390fd5b6125cf81611b72565b1561260f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612606906143f5565b60405180910390fd5b61261b60008383612551565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266b91906136a9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082905060005b84518110156127cc57600085828151811061274b5761274a613ae8565b5b6020026020010151905080831161278c57828160405160200161276f929190614436565b6040516020818303038152906040528051906020012092506127b8565b808360405160200161279f929190614436565b6040516020818303038152906040528051906020012092505b5080806127c490613791565b91505061272d565b508091505092915050565b60006127f88473ffffffffffffffffffffffffffffffffffffffff1661295f565b15612952578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612821611bde565b8786866040518563ffffffff1660e01b815260040161284394939291906144b7565b6020604051808303816000875af192505050801561287f57506040513d601f19601f8201168201806040525081019061287c9190614518565b60015b612902573d80600081146128af576040519150601f19603f3d011682016040523d82523d6000602084013e6128b4565b606091505b506000815114156128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f19061428c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612957565b600190505b949350505050565b600080823b905060008111915050919050565b82805461297e906132f4565b90600052602060002090601f0160209004810192826129a057600085556129e7565b82601f106129b957805160ff19168380011785556129e7565b828001600101855582156129e7579182015b828111156129e65782518255916020019190600101906129cb565b5b5090506129f491906129f8565b5090565b5b80821115612a115760008160009055506001016129f9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a5e81612a29565b8114612a6957600080fd5b50565b600081359050612a7b81612a55565b92915050565b600060208284031215612a9757612a96612a1f565b5b6000612aa584828501612a6c565b91505092915050565b60008115159050919050565b612ac381612aae565b82525050565b6000602082019050612ade6000830184612aba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b1e578082015181840152602081019050612b03565b83811115612b2d576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b4f82612ae4565b612b598185612aef565b9350612b69818560208601612b00565b612b7281612b33565b840191505092915050565b60006020820190508181036000830152612b978184612b44565b905092915050565b6000819050919050565b612bb281612b9f565b8114612bbd57600080fd5b50565b600081359050612bcf81612ba9565b92915050565b600060208284031215612beb57612bea612a1f565b5b6000612bf984828501612bc0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c2d82612c02565b9050919050565b612c3d81612c22565b82525050565b6000602082019050612c586000830184612c34565b92915050565b612c6781612c22565b8114612c7257600080fd5b50565b600081359050612c8481612c5e565b92915050565b60008060408385031215612ca157612ca0612a1f565b5b6000612caf85828601612c75565b9250506020612cc085828601612bc0565b9150509250929050565b612cd381612b9f565b82525050565b6000602082019050612cee6000830184612cca565b92915050565b600080600060608486031215612d0d57612d0c612a1f565b5b6000612d1b86828701612c75565b9350506020612d2c86828701612c75565b9250506040612d3d86828701612bc0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d8982612b33565b810181811067ffffffffffffffff82111715612da857612da7612d51565b5b80604052505050565b6000612dbb612a15565b9050612dc78282612d80565b919050565b600067ffffffffffffffff821115612de757612de6612d51565b5b612df082612b33565b9050602081019050919050565b82818337600083830152505050565b6000612e1f612e1a84612dcc565b612db1565b905082815260208101848484011115612e3b57612e3a612d4c565b5b612e46848285612dfd565b509392505050565b600082601f830112612e6357612e62612d47565b5b8135612e73848260208601612e0c565b91505092915050565b600060208284031215612e9257612e91612a1f565b5b600082013567ffffffffffffffff811115612eb057612eaf612a24565b5b612ebc84828501612e4e565b91505092915050565b600060208284031215612edb57612eda612a1f565b5b6000612ee984828501612c75565b91505092915050565b6000819050919050565b612f0581612ef2565b8114612f1057600080fd5b50565b600081359050612f2281612efc565b92915050565b600060208284031215612f3e57612f3d612a1f565b5b6000612f4c84828501612f13565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f8a81612b9f565b82525050565b6000612f9c8383612f81565b60208301905092915050565b6000602082019050919050565b6000612fc082612f55565b612fca8185612f60565b9350612fd583612f71565b8060005b83811015613006578151612fed8882612f90565b9750612ff883612fa8565b925050600181019050612fd9565b5085935050505092915050565b6000602082019050818103600083015261302d8184612fb5565b905092915050565b600080fd5b600080fd5b60008083601f84011261305557613054612d47565b5b8235905067ffffffffffffffff81111561307257613071613035565b5b60208301915083602082028301111561308e5761308d61303a565b5b9250929050565b6000806000604084860312156130ae576130ad612a1f565b5b60006130bc86828701612bc0565b935050602084013567ffffffffffffffff8111156130dd576130dc612a24565b5b6130e98682870161303f565b92509250509250925092565b6130fe81612aae565b811461310957600080fd5b50565b60008135905061311b816130f5565b92915050565b6000806040838503121561313857613137612a1f565b5b600061314685828601612c75565b92505060206131578582860161310c565b9150509250929050565b600067ffffffffffffffff82111561317c5761317b612d51565b5b61318582612b33565b9050602081019050919050565b60006131a56131a084613161565b612db1565b9050828152602081018484840111156131c1576131c0612d4c565b5b6131cc848285612dfd565b509392505050565b600082601f8301126131e9576131e8612d47565b5b81356131f9848260208601613192565b91505092915050565b6000806000806080858703121561321c5761321b612a1f565b5b600061322a87828801612c75565b945050602061323b87828801612c75565b935050604061324c87828801612bc0565b925050606085013567ffffffffffffffff81111561326d5761326c612a24565b5b613279878288016131d4565b91505092959194509250565b6000806040838503121561329c5761329b612a1f565b5b60006132aa85828601612c75565b92505060206132bb85828601612c75565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330c57607f821691505b602082108114156133205761331f6132c5565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613382602c83612aef565b915061338d82613326565b604082019050919050565b600060208201905081810360008301526133b181613375565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133ee602083612aef565b91506133f9826133b8565b602082019050919050565b6000602082019050818103600083015261341d816133e1565b9050919050565b7f494e49543a20496e76616c6964206e65772073616c652073746174652e000000600082015250565b600061345a601d83612aef565b915061346582613424565b602082019050919050565b600060208201905081810360008301526134898161344d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006134ec602183612aef565b91506134f782613490565b604082019050919050565b6000602082019050818103600083015261351b816134df565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061357e603883612aef565b915061358982613522565b604082019050919050565b600060208201905081810360008301526135ad81613571565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135ee82612b9f565b91506135f983612b9f565b92508282101561360c5761360b6135b4565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613673603183612aef565b915061367e82613617565b604082019050919050565b600060208201905081810360008301526136a281613666565b9050919050565b60006136b482612b9f565b91506136bf83612b9f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f4576136f36135b4565b5b828201905092915050565b7f494e49543a205075726368617361626c65204e4654732061726520616c6c206d60008201527f696e7465642e0000000000000000000000000000000000000000000000000000602082015250565b600061375b602683612aef565b9150613766826136ff565b604082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b600061379c82612b9f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137cf576137ce6135b4565b5b600182019050919050565b7f494e49543a205075626c69632073616c6520686173206e6f742073746172746560008201527f64207965742e0000000000000000000000000000000000000000000000000000602082015250565b6000613836602683612aef565b9150613841826137da565b604082019050919050565b6000602082019050818103600083015261386581613829565b9050919050565b600061387782612b9f565b915061388283612b9f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138bb576138ba6135b4565b5b828202905092915050565b7f494e49543a20496e73756666696369656e742066756e64732e00000000000000600082015250565b60006138fc601983612aef565b9150613907826138c6565b602082019050919050565b6000602082019050818103600083015261392b816138ef565b9050919050565b7f494e49543a20416d6f756e742065786365656473207472616e73616374696f6e60008201527f206d696e74206361702e00000000000000000000000000000000000000000000602082015250565b600061398e602a83612aef565b915061399982613932565b604082019050919050565b600060208201905081810360008301526139bd81613981565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a20602983612aef565b9150613a2b826139c4565b604082019050919050565b60006020820190508181036000830152613a4f81613a13565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613ab2602a83612aef565b9150613abd82613a56565b604082019050919050565b60006020820190508181036000830152613ae181613aa5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f494e49543a204e6f2062616c616e636520746f2077697468647261772e000000600082015250565b6000613b4d601d83612aef565b9150613b5882613b17565b602082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b7f494e49543a205072652d73616c6520686173206e6f742073746172746564207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b6000613bdf602383612aef565b9150613bea82613b83565b604082019050919050565b60006020820190508181036000830152613c0e81613bd2565b9050919050565b7f494e49543a20416464726573732068617320726561636865642074686520776160008201527f6c6c65742063617020696e207072652d73616c652e0000000000000000000000602082015250565b6000613c71603583612aef565b9150613c7c82613c15565b604082019050919050565b60006020820190508181036000830152613ca081613c64565b9050919050565b60008160601b9050919050565b6000613cbf82613ca7565b9050919050565b6000613cd182613cb4565b9050919050565b613ce9613ce482612c22565b613cc6565b82525050565b6000613cfb8284613cd8565b60148201915081905092915050565b7f494e49543a204d65726b6c6520766572696669636174696f6e2068617320666160008201527f696c65642c2061646472657373206973206e6f7420696e20746865207072652d60208201527f73616c652077686974656c6973742e0000000000000000000000000000000000604082015250565b6000613d8c604f83612aef565b9150613d9782613d0a565b606082019050919050565b60006020820190508181036000830152613dbb81613d7f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e1e602f83612aef565b9150613e2982613dc2565b604082019050919050565b60006020820190508181036000830152613e4d81613e11565b9050919050565b600081905092915050565b6000613e6a82612ae4565b613e748185613e54565b9350613e84818560208601612b00565b80840191505092915050565b6000613e9c8285613e5f565b9150613ea88284613e5f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f10602683612aef565b9150613f1b82613eb4565b604082019050919050565b60006020820190508181036000830152613f3f81613f03565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613fa2602c83612aef565b9150613fad82613f46565b604082019050919050565b60006020820190508181036000830152613fd181613f95565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614034602983612aef565b915061403f82613fd8565b604082019050919050565b6000602082019050818103600083015261406381614027565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140c6602483612aef565b91506140d18261406a565b604082019050919050565b600060208201905081810360008301526140f5816140b9565b9050919050565b600081905092915050565b50565b60006141176000836140fc565b915061412282614107565b600082019050919050565b60006141388261410a565b9150819050919050565b7f494e49543a205472616e73666572206661696c65642e00000000000000000000600082015250565b6000614178601683612aef565b915061418382614142565b602082019050919050565b600060208201905081810360008301526141a78161416b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006141e4601983612aef565b91506141ef826141ae565b602082019050919050565b60006020820190508181036000830152614213816141d7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614276603283612aef565b91506142818261421a565b604082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142e682612b9f565b91506142f183612b9f565b925082614301576143006142ac565b5b828204905092915050565b600061431782612b9f565b915061432283612b9f565b925082614332576143316142ac565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614373602083612aef565b915061437e8261433d565b602082019050919050565b600060208201905081810360008301526143a281614366565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143df601c83612aef565b91506143ea826143a9565b602082019050919050565b6000602082019050818103600083015261440e816143d2565b9050919050565b6000819050919050565b61443061442b82612ef2565b614415565b82525050565b6000614442828561441f565b602082019150614452828461441f565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061448982614462565b614493818561446d565b93506144a3818560208601612b00565b6144ac81612b33565b840191505092915050565b60006080820190506144cc6000830187612c34565b6144d96020830186612c34565b6144e66040830185612cca565b81810360608301526144f8818461447e565b905095945050505050565b60008151905061451281612a55565b92915050565b60006020828403121561452e5761452d612a1f565b5b600061453c84828501614503565b9150509291505056fea2646970667358221220b04428da5b805c5ede9a2ab29572b077d54c8ff3c286a81bbc7da904b44640d864736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106a9578063e985e9c5146106e6578063ef23880214610723578063f2fde38b1461074e578063f43a22dc14610777576101ee565b8063a22cb46514610601578063b3957bc91461062a578063b88d4fde14610655578063c39996ae1461067e576101ee565b8063853828b6116100dc578063853828b6146105785780638da5cb5b1461058f57806395d89b41146105ba5780639e6b2c5b146105e5576101ee565b8063715018a6146104d05780637cb64759146104e75780637f205a74146105105780638462151c1461053b576101ee565b806332cb6b0c116101855780635a5e5d58116101545780635a5e5d581461040f5780636352211e1461042b5780636c0360eb1461046857806370a0823114610493576101ee565b806332cb6b0c1461036957806342842e0e14610394578063484b973c146103bd57806355f804b3146103e6576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd1461031557806331c3c7a01461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063084c408814610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612a81565b6107a2565b6040516102279190612ac9565b60405180910390f35b34801561023c57600080fd5b50610245610884565b6040516102529190612b7d565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612bd5565b610916565b60405161028f9190612c43565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612bd5565b61099b565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190612c8a565b610a71565b005b3480156102f657600080fd5b506102ff610b89565b60405161030c9190612cd9565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612cf4565b610ba6565b005b34801561034a57600080fd5b50610353610c06565b6040516103609190612cd9565b60405180910390f35b34801561037557600080fd5b5061037e610c12565b60405161038b9190612cd9565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190612cf4565b610c18565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612c8a565b610c38565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612e7c565b610d45565b005b61042960048036038101906104249190612bd5565b610ddb565b005b34801561043757600080fd5b50610452600480360381019061044d9190612bd5565b610f4a565b60405161045f9190612c43565b60405180910390f35b34801561047457600080fd5b5061047d610ffc565b60405161048a9190612b7d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612ec5565b61108a565b6040516104c79190612cd9565b60405180910390f35b3480156104dc57600080fd5b506104e5611142565b005b3480156104f357600080fd5b5061050e60048036038101906105099190612f28565b6111ca565b005b34801561051c57600080fd5b50610525611250565b6040516105329190612cd9565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190612ec5565b61125c565b60405161056f9190613013565b60405180910390f35b34801561058457600080fd5b5061058d6113c7565b005b34801561059b57600080fd5b506105a461149f565b6040516105b19190612c43565b60405180910390f35b3480156105c657600080fd5b506105cf6114c9565b6040516105dc9190612b7d565b60405180910390f35b6105ff60048036038101906105fa9190613095565b61155b565b005b34801561060d57600080fd5b5061062860048036038101906106239190613121565b61182b565b005b34801561063657600080fd5b5061063f611841565b60405161064c9190612cd9565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613202565b611846565b005b34801561068a57600080fd5b506106936118a8565b6040516106a09190612cd9565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190612bd5565b6118b4565b6040516106dd9190612b7d565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190613285565b61195b565b60405161071a9190612ac9565b60405180910390f35b34801561072f57600080fd5b506107386119ef565b6040516107459190612cd9565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190612ec5565b6119f5565b005b34801561078357600080fd5b5061078c611aed565b6040516107999190612cd9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087d575061087c82611b08565b5b9050919050565b606060008054610893906132f4565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906132f4565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b600061092182611b72565b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613398565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6109a3611bde565b73ffffffffffffffffffffffffffffffffffffffff166109c161149f565b73ffffffffffffffffffffffffffffffffffffffff1614610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90613404565b60405180910390fd5b60008110158015610a285750600381105b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90613470565b60405180910390fd5b8060078190555050565b6000610a7c82610f4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490613502565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0c611bde565b73ffffffffffffffffffffffffffffffffffffffff161480610b3b5750610b3a81610b35611bde565b61195b565b5b610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613594565b60405180910390fd5b610b848383611be6565b505050565b60006001610b97600a611c9f565b610ba191906135e3565b905090565b610bb7610bb1611bde565b82611cad565b610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613689565b60405180910390fd5b610c01838383611d8b565b505050565b670429d069189e000081565b61046081565b610c3383838360405180602001604052806000815250611846565b505050565b610c40611bde565b73ffffffffffffffffffffffffffffffffffffffff16610c5e61149f565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90613404565b60405180910390fd5b610460600182610cc4600a611c9f565b610cce91906136a9565b610cd891906135e3565b1115610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090613771565b60405180910390fd5b60005b81811015610d4057610d2d83611fe7565b8080610d3890613791565b915050610d1c565b505050565b610d4d611bde565b73ffffffffffffffffffffffffffffffffffffffff16610d6b61149f565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890613404565b60405180910390fd5b80600b9080519060200190610dd7929190612972565b5050565b600260075414610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e179061384c565b60405180910390fd5b610460600182610e30600a611c9f565b610e3a91906136a9565b610e4491906135e3565b1115610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613771565b60405180910390fd5b67058d15e17628000081610e99919061386c565b341015610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613912565b60405180910390fd5b6002811115610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906139a4565b60405180910390fd5b60005b81811015610f4657610f3333611fe7565b8080610f3e90613791565b915050610f22565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90613a36565b60405180910390fd5b80915050919050565b600b8054611009906132f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611035906132f4565b80156110825780601f1061105757610100808354040283529160200191611082565b820191906000526020600020905b81548152906001019060200180831161106557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290613ac8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61114a611bde565b73ffffffffffffffffffffffffffffffffffffffff1661116861149f565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590613404565b60405180910390fd5b6111c86000612007565b565b6111d2611bde565b73ffffffffffffffffffffffffffffffffffffffff166111f061149f565b73ffffffffffffffffffffffffffffffffffffffff1614611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90613404565b60405180910390fd5b8060088190555050565b67058d15e17628000081565b606060006112698361108a565b905060008114156112c657600067ffffffffffffffff81111561128f5761128e612d51565b5b6040519080825280602002602001820160405280156112bd5781602001602082028036833780820191505090505b509150506113c2565b60008167ffffffffffffffff8111156112e2576112e1612d51565b5b6040519080825280602002602001820160405280156113105781602001602082028036833780820191505090505b50905060008061131e610b89565b90506000600190505b8181116113b9578483141561133b576113b9565b8673ffffffffffffffffffffffffffffffffffffffff1661135b82610f4a565b73ffffffffffffffffffffffffffffffffffffffff1614156113a6578084848151811061138b5761138a613ae8565b5b60200260200101818152505082806113a290613791565b9350505b80806113b190613791565b915050611327565b50829450505050505b919050565b6113cf611bde565b73ffffffffffffffffffffffffffffffffffffffff166113ed61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613404565b60405180910390fd5b60004790506000811161148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613b63565b60405180910390fd5b61149c61149661149f565b476120cd565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114d8906132f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611504906132f4565b80156115515780601f1061152657610100808354040283529160200191611551565b820191906000526020600020905b81548152906001019060200180831161153457829003601f168201915b5050505050905090565b6001600754146115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790613bf5565b60405180910390fd5b6104606001846115b0600a611c9f565b6115ba91906136a9565b6115c491906135e3565b1115611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613771565b60405180910390fd5b6002831461161b57670429d069189e0000611625565b6706f05b59d3b200005b341015611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613912565b60405180910390fd5b600283600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b491906136a9565b11156116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec90613c87565b60405180910390fd5b611769828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506008543360405160200161174e9190613cef565b6040516020818303038152906040528051906020012061217e565b6117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613da2565b60405180910390fd5b60005b838110156117cf576117bc33611fe7565b80806117c790613791565b9150506117ab565b5082600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181f91906136a9565b92505081905550505050565b61183d611836611bde565b8383612195565b5050565b600281565b611857611851611bde565b83611cad565b611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613689565b60405180910390fd5b6118a284848484612302565b50505050565b6706f05b59d3b2000081565b60606118bf82611b72565b6118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613e34565b60405180910390fd5b600061190861235e565b905060008151116119285760405180602001604052806000815250611953565b80611932846123f0565b604051602001611943929190613e90565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b6119fd611bde565b73ffffffffffffffffffffffffffffffffffffffff16611a1b61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6890613404565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613f26565b60405180910390fd5b611aea81612007565b50565b600281565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c5983610f4a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611cb882611b72565b611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613fb8565b60405180910390fd5b6000611d0283610f4a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7157508373ffffffffffffffffffffffffffffffffffffffff16611d5984610916565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d825750611d81818561195b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dab82610f4a565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df89061404a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e68906140dc565b60405180910390fd5b611e7c838383612551565b611e87600082611be6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed791906135e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2e91906136a9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611ffa81611ff5600a611c9f565b612556565b612004600a611af2565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120f39061412d565b60006040518083038185875af1925050503d8060008114612130576040519150601f19603f3d011682016040523d82523d6000602084013e612135565b606091505b5050905080612179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121709061418e565b60405180910390fd5b505050565b60008261218b8584612724565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb906141fa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122f59190612ac9565b60405180910390a3505050565b61230d848484611d8b565b612319848484846127d7565b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f9061428c565b60405180910390fd5b50505050565b6060600b805461236d906132f4565b80601f0160208091040260200160405190810160405280929190818152602001828054612399906132f4565b80156123e65780601f106123bb576101008083540402835291602001916123e6565b820191906000526020600020905b8154815290600101906020018083116123c957829003601f168201915b5050505050905090565b60606000821415612438576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061254c565b600082905060005b6000821461246a57808061245390613791565b915050600a8261246391906142db565b9150612440565b60008167ffffffffffffffff81111561248657612485612d51565b5b6040519080825280601f01601f1916602001820160405280156124b85781602001600182028036833780820191505090505b5090505b60008514612545576001826124d191906135e3565b9150600a856124e0919061430c565b60306124ec91906136a9565b60f81b81838151811061250257612501613ae8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561253e91906142db565b94506124bc565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614389565b60405180910390fd5b6125cf81611b72565b1561260f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612606906143f5565b60405180910390fd5b61261b60008383612551565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266b91906136a9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082905060005b84518110156127cc57600085828151811061274b5761274a613ae8565b5b6020026020010151905080831161278c57828160405160200161276f929190614436565b6040516020818303038152906040528051906020012092506127b8565b808360405160200161279f929190614436565b6040516020818303038152906040528051906020012092505b5080806127c490613791565b91505061272d565b508091505092915050565b60006127f88473ffffffffffffffffffffffffffffffffffffffff1661295f565b15612952578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612821611bde565b8786866040518563ffffffff1660e01b815260040161284394939291906144b7565b6020604051808303816000875af192505050801561287f57506040513d601f19601f8201168201806040525081019061287c9190614518565b60015b612902573d80600081146128af576040519150601f19603f3d011682016040523d82523d6000602084013e6128b4565b606091505b506000815114156128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f19061428c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612957565b600190505b949350505050565b600080823b905060008111915050919050565b82805461297e906132f4565b90600052602060002090601f0160209004810192826129a057600085556129e7565b82601f106129b957805160ff19168380011785556129e7565b828001600101855582156129e7579182015b828111156129e65782518255916020019190600101906129cb565b5b5090506129f491906129f8565b5090565b5b80821115612a115760008160009055506001016129f9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a5e81612a29565b8114612a6957600080fd5b50565b600081359050612a7b81612a55565b92915050565b600060208284031215612a9757612a96612a1f565b5b6000612aa584828501612a6c565b91505092915050565b60008115159050919050565b612ac381612aae565b82525050565b6000602082019050612ade6000830184612aba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b1e578082015181840152602081019050612b03565b83811115612b2d576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b4f82612ae4565b612b598185612aef565b9350612b69818560208601612b00565b612b7281612b33565b840191505092915050565b60006020820190508181036000830152612b978184612b44565b905092915050565b6000819050919050565b612bb281612b9f565b8114612bbd57600080fd5b50565b600081359050612bcf81612ba9565b92915050565b600060208284031215612beb57612bea612a1f565b5b6000612bf984828501612bc0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c2d82612c02565b9050919050565b612c3d81612c22565b82525050565b6000602082019050612c586000830184612c34565b92915050565b612c6781612c22565b8114612c7257600080fd5b50565b600081359050612c8481612c5e565b92915050565b60008060408385031215612ca157612ca0612a1f565b5b6000612caf85828601612c75565b9250506020612cc085828601612bc0565b9150509250929050565b612cd381612b9f565b82525050565b6000602082019050612cee6000830184612cca565b92915050565b600080600060608486031215612d0d57612d0c612a1f565b5b6000612d1b86828701612c75565b9350506020612d2c86828701612c75565b9250506040612d3d86828701612bc0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d8982612b33565b810181811067ffffffffffffffff82111715612da857612da7612d51565b5b80604052505050565b6000612dbb612a15565b9050612dc78282612d80565b919050565b600067ffffffffffffffff821115612de757612de6612d51565b5b612df082612b33565b9050602081019050919050565b82818337600083830152505050565b6000612e1f612e1a84612dcc565b612db1565b905082815260208101848484011115612e3b57612e3a612d4c565b5b612e46848285612dfd565b509392505050565b600082601f830112612e6357612e62612d47565b5b8135612e73848260208601612e0c565b91505092915050565b600060208284031215612e9257612e91612a1f565b5b600082013567ffffffffffffffff811115612eb057612eaf612a24565b5b612ebc84828501612e4e565b91505092915050565b600060208284031215612edb57612eda612a1f565b5b6000612ee984828501612c75565b91505092915050565b6000819050919050565b612f0581612ef2565b8114612f1057600080fd5b50565b600081359050612f2281612efc565b92915050565b600060208284031215612f3e57612f3d612a1f565b5b6000612f4c84828501612f13565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f8a81612b9f565b82525050565b6000612f9c8383612f81565b60208301905092915050565b6000602082019050919050565b6000612fc082612f55565b612fca8185612f60565b9350612fd583612f71565b8060005b83811015613006578151612fed8882612f90565b9750612ff883612fa8565b925050600181019050612fd9565b5085935050505092915050565b6000602082019050818103600083015261302d8184612fb5565b905092915050565b600080fd5b600080fd5b60008083601f84011261305557613054612d47565b5b8235905067ffffffffffffffff81111561307257613071613035565b5b60208301915083602082028301111561308e5761308d61303a565b5b9250929050565b6000806000604084860312156130ae576130ad612a1f565b5b60006130bc86828701612bc0565b935050602084013567ffffffffffffffff8111156130dd576130dc612a24565b5b6130e98682870161303f565b92509250509250925092565b6130fe81612aae565b811461310957600080fd5b50565b60008135905061311b816130f5565b92915050565b6000806040838503121561313857613137612a1f565b5b600061314685828601612c75565b92505060206131578582860161310c565b9150509250929050565b600067ffffffffffffffff82111561317c5761317b612d51565b5b61318582612b33565b9050602081019050919050565b60006131a56131a084613161565b612db1565b9050828152602081018484840111156131c1576131c0612d4c565b5b6131cc848285612dfd565b509392505050565b600082601f8301126131e9576131e8612d47565b5b81356131f9848260208601613192565b91505092915050565b6000806000806080858703121561321c5761321b612a1f565b5b600061322a87828801612c75565b945050602061323b87828801612c75565b935050604061324c87828801612bc0565b925050606085013567ffffffffffffffff81111561326d5761326c612a24565b5b613279878288016131d4565b91505092959194509250565b6000806040838503121561329c5761329b612a1f565b5b60006132aa85828601612c75565b92505060206132bb85828601612c75565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330c57607f821691505b602082108114156133205761331f6132c5565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613382602c83612aef565b915061338d82613326565b604082019050919050565b600060208201905081810360008301526133b181613375565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133ee602083612aef565b91506133f9826133b8565b602082019050919050565b6000602082019050818103600083015261341d816133e1565b9050919050565b7f494e49543a20496e76616c6964206e65772073616c652073746174652e000000600082015250565b600061345a601d83612aef565b915061346582613424565b602082019050919050565b600060208201905081810360008301526134898161344d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006134ec602183612aef565b91506134f782613490565b604082019050919050565b6000602082019050818103600083015261351b816134df565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061357e603883612aef565b915061358982613522565b604082019050919050565b600060208201905081810360008301526135ad81613571565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135ee82612b9f565b91506135f983612b9f565b92508282101561360c5761360b6135b4565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613673603183612aef565b915061367e82613617565b604082019050919050565b600060208201905081810360008301526136a281613666565b9050919050565b60006136b482612b9f565b91506136bf83612b9f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f4576136f36135b4565b5b828201905092915050565b7f494e49543a205075726368617361626c65204e4654732061726520616c6c206d60008201527f696e7465642e0000000000000000000000000000000000000000000000000000602082015250565b600061375b602683612aef565b9150613766826136ff565b604082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b600061379c82612b9f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137cf576137ce6135b4565b5b600182019050919050565b7f494e49543a205075626c69632073616c6520686173206e6f742073746172746560008201527f64207965742e0000000000000000000000000000000000000000000000000000602082015250565b6000613836602683612aef565b9150613841826137da565b604082019050919050565b6000602082019050818103600083015261386581613829565b9050919050565b600061387782612b9f565b915061388283612b9f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138bb576138ba6135b4565b5b828202905092915050565b7f494e49543a20496e73756666696369656e742066756e64732e00000000000000600082015250565b60006138fc601983612aef565b9150613907826138c6565b602082019050919050565b6000602082019050818103600083015261392b816138ef565b9050919050565b7f494e49543a20416d6f756e742065786365656473207472616e73616374696f6e60008201527f206d696e74206361702e00000000000000000000000000000000000000000000602082015250565b600061398e602a83612aef565b915061399982613932565b604082019050919050565b600060208201905081810360008301526139bd81613981565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a20602983612aef565b9150613a2b826139c4565b604082019050919050565b60006020820190508181036000830152613a4f81613a13565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613ab2602a83612aef565b9150613abd82613a56565b604082019050919050565b60006020820190508181036000830152613ae181613aa5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f494e49543a204e6f2062616c616e636520746f2077697468647261772e000000600082015250565b6000613b4d601d83612aef565b9150613b5882613b17565b602082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b7f494e49543a205072652d73616c6520686173206e6f742073746172746564207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b6000613bdf602383612aef565b9150613bea82613b83565b604082019050919050565b60006020820190508181036000830152613c0e81613bd2565b9050919050565b7f494e49543a20416464726573732068617320726561636865642074686520776160008201527f6c6c65742063617020696e207072652d73616c652e0000000000000000000000602082015250565b6000613c71603583612aef565b9150613c7c82613c15565b604082019050919050565b60006020820190508181036000830152613ca081613c64565b9050919050565b60008160601b9050919050565b6000613cbf82613ca7565b9050919050565b6000613cd182613cb4565b9050919050565b613ce9613ce482612c22565b613cc6565b82525050565b6000613cfb8284613cd8565b60148201915081905092915050565b7f494e49543a204d65726b6c6520766572696669636174696f6e2068617320666160008201527f696c65642c2061646472657373206973206e6f7420696e20746865207072652d60208201527f73616c652077686974656c6973742e0000000000000000000000000000000000604082015250565b6000613d8c604f83612aef565b9150613d9782613d0a565b606082019050919050565b60006020820190508181036000830152613dbb81613d7f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e1e602f83612aef565b9150613e2982613dc2565b604082019050919050565b60006020820190508181036000830152613e4d81613e11565b9050919050565b600081905092915050565b6000613e6a82612ae4565b613e748185613e54565b9350613e84818560208601612b00565b80840191505092915050565b6000613e9c8285613e5f565b9150613ea88284613e5f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f10602683612aef565b9150613f1b82613eb4565b604082019050919050565b60006020820190508181036000830152613f3f81613f03565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613fa2602c83612aef565b9150613fad82613f46565b604082019050919050565b60006020820190508181036000830152613fd181613f95565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614034602983612aef565b915061403f82613fd8565b604082019050919050565b6000602082019050818103600083015261406381614027565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140c6602483612aef565b91506140d18261406a565b604082019050919050565b600060208201905081810360008301526140f5816140b9565b9050919050565b600081905092915050565b50565b60006141176000836140fc565b915061412282614107565b600082019050919050565b60006141388261410a565b9150819050919050565b7f494e49543a205472616e73666572206661696c65642e00000000000000000000600082015250565b6000614178601683612aef565b915061418382614142565b602082019050919050565b600060208201905081810360008301526141a78161416b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006141e4601983612aef565b91506141ef826141ae565b602082019050919050565b60006020820190508181036000830152614213816141d7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614276603283612aef565b91506142818261421a565b604082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142e682612b9f565b91506142f183612b9f565b925082614301576143006142ac565b5b828204905092915050565b600061431782612b9f565b915061432283612b9f565b925082614332576143316142ac565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614373602083612aef565b915061437e8261433d565b602082019050919050565b600060208201905081810360008301526143a281614366565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143df601c83612aef565b91506143ea826143a9565b602082019050919050565b6000602082019050818103600083015261440e816143d2565b9050919050565b6000819050919050565b61443061442b82612ef2565b614415565b82525050565b6000614442828561441f565b602082019150614452828461441f565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061448982614462565b614493818561446d565b93506144a3818560208601612b00565b6144ac81612b33565b840191505092915050565b60006080820190506144cc6000830187612c34565b6144d96020830186612c34565b6144e66040830185612cca565b81810360608301526144f8818461447e565b905095945050505050565b60008151905061451281612a55565b92915050565b60006020828403121561452e5761452d612a1f565b5b600061453c84828501614503565b9150509291505056fea2646970667358221220b04428da5b805c5ede9a2ab29572b077d54c8ff3c286a81bbc7da904b44640d864736f6c634300080b0033

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.