ETH Price: $3,045.25 (+0.71%)
Gas: 3 Gwei

Token

NFTinit Founders (INIT)
 

Overview

Max Total Supply

120 INIT

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INIT
0xe33E31E143B15640e899750c45A7Ab8ec04C56e5
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:
NftinitFounders

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : NftinitFounders.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 NftinitFounders is ERC721, Ownable {
    using Counters for Counters.Counter;

    uint256 public MAX_SUPPLY = 120;

    uint256 public SALE_PRICE = 0.85 ether;

    uint256 public MAX_PER_WL = 2;
    uint256 public 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 Founders", "INIT") {
        idTracker.increment();
    }

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

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

    function ownerMint(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(msg.sender);
        }
    }

    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 * SALE_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(
            amount <= MAX_PER_TX,
            "INIT: Amount exceeds transaction mint cap."
        );
        require(msg.value >= amount * SALE_PRICE, "INIT: Insufficient funds.");

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

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

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

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

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

    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":[{"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":"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":[],"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"}]

60806040526078600755670bcbce7f1b15000060085560026009556002600a556000600b553480156200003157600080fd5b506040518060400160405280601081526020017f4e4654696e697420466f756e64657273000000000000000000000000000000008152506040518060400160405280600481526020017f494e4954000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b6929190620001f3565b508060019080519060200190620000cf929190620001f3565b505050620000f2620000e66200010f60201b60201c565b6200011760201b60201c565b62000109600e620001dd60201b620018a01760201c565b62000308565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200020190620002d2565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002eb57607f821691505b60208210811415620003025762000301620002a3565b5b50919050565b61424980620003186000396000f3fe6080604052600436106101cd5760003560e01c80637cb64759116100f7578063b3957bc911610095578063ef23880211610064578063ef23880214610646578063f19e75d414610671578063f2fde38b1461069a578063f43a22dc146106c3576101cd565b8063b3957bc914610578578063b88d4fde146105a3578063c87b56dd146105cc578063e985e9c514610609576101cd565b80638da5cb5b116100d15780638da5cb5b146104dd57806395d89b41146105085780639e6b2c5b14610533578063a22cb4651461054f576101cd565b80637cb64759146104725780637f205a741461049b578063853828b6146104c6576101cd565b806332cb6b0c1161016f5780636352211e1161013e5780636352211e146103b65780636c0360eb146103f357806370a082311461041e578063715018a61461045b576101cd565b806332cb6b0c1461031d57806342842e0e1461034857806355f804b3146103715780635a5e5d581461039a576101cd565b8063084c4088116101ab578063084c408814610277578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061282f565b6106ee565b6040516102069190612877565b60405180910390f35b34801561021b57600080fd5b506102246107d0565b604051610231919061292b565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612983565b610862565b60405161026e91906129f1565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612983565b6108e7565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612a38565b6109bd565b005b3480156102d557600080fd5b506102de610ad5565b6040516102eb9190612a87565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612aa2565b610af2565b005b34801561032957600080fd5b50610332610b52565b60405161033f9190612a87565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612aa2565b610b58565b005b34801561037d57600080fd5b5061039860048036038101906103939190612c2a565b610b78565b005b6103b460048036038101906103af9190612983565b610c0e565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612983565b610d78565b6040516103ea91906129f1565b60405180910390f35b3480156103ff57600080fd5b50610408610e2a565b604051610415919061292b565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612c73565b610eb8565b6040516104529190612a87565b60405180910390f35b34801561046757600080fd5b50610470610f70565b005b34801561047e57600080fd5b5061049960048036038101906104949190612cd6565b610ff8565b005b3480156104a757600080fd5b506104b061107e565b6040516104bd9190612a87565b60405180910390f35b3480156104d257600080fd5b506104db611084565b005b3480156104e957600080fd5b506104f261115c565b6040516104ff91906129f1565b60405180910390f35b34801561051457600080fd5b5061051d611186565b60405161052a919061292b565b60405180910390f35b61054d60048036038101906105489190612d63565b611218565b005b34801561055b57600080fd5b5061057660048036038101906105719190612def565b6114d7565b005b34801561058457600080fd5b5061058d6114ed565b60405161059a9190612a87565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190612ed0565b6114f3565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190612983565b611555565b604051610600919061292b565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190612f53565b6115fc565b60405161063d9190612877565b60405180910390f35b34801561065257600080fd5b5061065b611690565b6040516106689190612a87565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190612983565b611696565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612c73565b6117a2565b005b3480156106cf57600080fd5b506106d861189a565b6040516106e59190612a87565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c957506107c8826118b6565b5b9050919050565b6060600080546107df90612fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461080b90612fc2565b80156108585780601f1061082d57610100808354040283529160200191610858565b820191906000526020600020905b81548152906001019060200180831161083b57829003601f168201915b5050505050905090565b600061086d82611920565b6108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390613066565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108ef61198c565b73ffffffffffffffffffffffffffffffffffffffff1661090d61115c565b73ffffffffffffffffffffffffffffffffffffffff1614610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a906130d2565b60405180910390fd5b600081101580156109745750600381105b6109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa9061313e565b60405180910390fd5b80600b8190555050565b60006109c882610d78565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a30906131d0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5861198c565b73ffffffffffffffffffffffffffffffffffffffff161480610a875750610a8681610a8161198c565b6115fc565b5b610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90613262565b60405180910390fd5b610ad08383611994565b505050565b60006001610ae3600e611a4d565b610aed91906132b1565b905090565b610b03610afd61198c565b82611a5b565b610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990613357565b60405180910390fd5b610b4d838383611b39565b505050565b60075481565b610b73838383604051806020016040528060008152506114f3565b505050565b610b8061198c565b73ffffffffffffffffffffffffffffffffffffffff16610b9e61115c565b73ffffffffffffffffffffffffffffffffffffffff1614610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906130d2565b60405180910390fd5b80600f9080519060200190610c0a929190612720565b5050565b6002600b5414610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a906133e9565b60405180910390fd5b600754600182610c63600e611a4d565b610c6d9190613409565b610c7791906132b1565b1115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf906134d1565b60405180910390fd5b600a54811115610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490613563565b60405180910390fd5b60085481610d0b9190613583565b341015610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613629565b60405180910390fd5b60005b81811015610d7457610d6133611d95565b8080610d6c90613649565b915050610d50565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890613704565b60405180910390fd5b80915050919050565b600f8054610e3790612fc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6390612fc2565b8015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613796565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7861198c565b73ffffffffffffffffffffffffffffffffffffffff16610f9661115c565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe3906130d2565b60405180910390fd5b610ff66000611db5565b565b61100061198c565b73ffffffffffffffffffffffffffffffffffffffff1661101e61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b906130d2565b60405180910390fd5b80600c8190555050565b60085481565b61108c61198c565b73ffffffffffffffffffffffffffffffffffffffff166110aa61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f7906130d2565b60405180910390fd5b600047905060008111611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90613802565b60405180910390fd5b61115961115361115c565b47611e7b565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461119590612fc2565b80601f01602080910402602001604051908101604052809291908181526020018280546111c190612fc2565b801561120e5780601f106111e35761010080835404028352916020019161120e565b820191906000526020600020905b8154815290600101906020018083116111f157829003601f168201915b5050505050905090565b6001600b541461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613894565b60405180910390fd5b60075460018461126d600e611a4d565b6112779190613409565b61128191906132b1565b11156112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b9906134d1565b60405180910390fd5b600854836112d09190613583565b341015611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613629565b60405180910390fd5b60095483600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113609190613409565b11156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890613926565b60405180910390fd5b611415828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54336040516020016113fa919061398e565b60405160208183030381529060405280519060200120611f2c565b611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90613a41565b60405180910390fd5b60005b8381101561147b5761146833611d95565b808061147390613649565b915050611457565b5082600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114cb9190613409565b92505081905550505050565b6114e96114e261198c565b8383611f43565b5050565b60095481565b6115046114fe61198c565b83611a5b565b611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90613357565b60405180910390fd5b61154f848484846120b0565b50505050565b606061156082611920565b61159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690613ad3565b60405180910390fd5b60006115a961210c565b905060008151116115c957604051806020016040528060008152506115f4565b806115d38461219e565b6040516020016115e4929190613b2f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b61169e61198c565b73ffffffffffffffffffffffffffffffffffffffff166116bc61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611709906130d2565b60405180910390fd5b600754600182611722600e611a4d565b61172c9190613409565b61173691906132b1565b1115611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e906134d1565b60405180910390fd5b60005b8181101561179e5761178b33611d95565b808061179690613649565b91505061177a565b5050565b6117aa61198c565b73ffffffffffffffffffffffffffffffffffffffff166117c861115c565b73ffffffffffffffffffffffffffffffffffffffff161461181e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611815906130d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613bc5565b60405180910390fd5b61189781611db5565b50565b600a5481565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0783610d78565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a6682611920565b611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613c57565b60405180910390fd5b6000611ab083610d78565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b1f57508373ffffffffffffffffffffffffffffffffffffffff16611b0784610862565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b305750611b2f81856115fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5982610d78565b73ffffffffffffffffffffffffffffffffffffffff1614611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613ce9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613d7b565b60405180910390fd5b611c2a8383836122ff565b611c35600082611994565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8591906132b1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cdc9190613409565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611da881611da3600e611a4d565b612304565b611db2600e6118a0565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ea190613dcc565b60006040518083038185875af1925050503d8060008114611ede576040519150601f19603f3d011682016040523d82523d6000602084013e611ee3565b606091505b5050905080611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613e2d565b60405180910390fd5b505050565b600082611f3985846124d2565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa990613e99565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a39190612877565b60405180910390a3505050565b6120bb848484611b39565b6120c784848484612585565b612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90613f2b565b60405180910390fd5b50505050565b6060600f805461211b90612fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461214790612fc2565b80156121945780601f1061216957610100808354040283529160200191612194565b820191906000526020600020905b81548152906001019060200180831161217757829003601f168201915b5050505050905090565b606060008214156121e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122fa565b600082905060005b6000821461221857808061220190613649565b915050600a826122119190613f7a565b91506121ee565b60008167ffffffffffffffff81111561223457612233612aff565b5b6040519080825280601f01601f1916602001820160405280156122665781602001600182028036833780820191505090505b5090505b600085146122f35760018261227f91906132b1565b9150600a8561228e9190613fab565b603061229a9190613409565b60f81b8183815181106122b0576122af613fdc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ec9190613f7a565b945061226a565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b90614057565b60405180910390fd5b61237d81611920565b156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b4906140c3565b60405180910390fd5b6123c9600083836122ff565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124199190613409565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082905060005b845181101561257a5760008582815181106124f9576124f8613fdc565b5b6020026020010151905080831161253a57828160405160200161251d929190614104565b604051602081830303815290604052805190602001209250612566565b808360405160200161254d929190614104565b6040516020818303038152906040528051906020012092505b50808061257290613649565b9150506124db565b508091505092915050565b60006125a68473ffffffffffffffffffffffffffffffffffffffff1661270d565b15612700578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125cf61198c565b8786866040518563ffffffff1660e01b81526004016125f19493929190614185565b6020604051808303816000875af192505050801561262d57506040513d601f19601f8201168201806040525081019061262a91906141e6565b60015b6126b0573d806000811461265d576040519150601f19603f3d011682016040523d82523d6000602084013e612662565b606091505b506000815114156126a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269f90613f2b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612705565b600190505b949350505050565b600080823b905060008111915050919050565b82805461272c90612fc2565b90600052602060002090601f01602090048101928261274e5760008555612795565b82601f1061276757805160ff1916838001178555612795565b82800160010185558215612795579182015b82811115612794578251825591602001919060010190612779565b5b5090506127a291906127a6565b5090565b5b808211156127bf5760008160009055506001016127a7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61280c816127d7565b811461281757600080fd5b50565b60008135905061282981612803565b92915050565b600060208284031215612845576128446127cd565b5b60006128538482850161281a565b91505092915050565b60008115159050919050565b6128718161285c565b82525050565b600060208201905061288c6000830184612868565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128cc5780820151818401526020810190506128b1565b838111156128db576000848401525b50505050565b6000601f19601f8301169050919050565b60006128fd82612892565b612907818561289d565b93506129178185602086016128ae565b612920816128e1565b840191505092915050565b6000602082019050818103600083015261294581846128f2565b905092915050565b6000819050919050565b6129608161294d565b811461296b57600080fd5b50565b60008135905061297d81612957565b92915050565b600060208284031215612999576129986127cd565b5b60006129a78482850161296e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129db826129b0565b9050919050565b6129eb816129d0565b82525050565b6000602082019050612a0660008301846129e2565b92915050565b612a15816129d0565b8114612a2057600080fd5b50565b600081359050612a3281612a0c565b92915050565b60008060408385031215612a4f57612a4e6127cd565b5b6000612a5d85828601612a23565b9250506020612a6e8582860161296e565b9150509250929050565b612a818161294d565b82525050565b6000602082019050612a9c6000830184612a78565b92915050565b600080600060608486031215612abb57612aba6127cd565b5b6000612ac986828701612a23565b9350506020612ada86828701612a23565b9250506040612aeb8682870161296e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b37826128e1565b810181811067ffffffffffffffff82111715612b5657612b55612aff565b5b80604052505050565b6000612b696127c3565b9050612b758282612b2e565b919050565b600067ffffffffffffffff821115612b9557612b94612aff565b5b612b9e826128e1565b9050602081019050919050565b82818337600083830152505050565b6000612bcd612bc884612b7a565b612b5f565b905082815260208101848484011115612be957612be8612afa565b5b612bf4848285612bab565b509392505050565b600082601f830112612c1157612c10612af5565b5b8135612c21848260208601612bba565b91505092915050565b600060208284031215612c4057612c3f6127cd565b5b600082013567ffffffffffffffff811115612c5e57612c5d6127d2565b5b612c6a84828501612bfc565b91505092915050565b600060208284031215612c8957612c886127cd565b5b6000612c9784828501612a23565b91505092915050565b6000819050919050565b612cb381612ca0565b8114612cbe57600080fd5b50565b600081359050612cd081612caa565b92915050565b600060208284031215612cec57612ceb6127cd565b5b6000612cfa84828501612cc1565b91505092915050565b600080fd5b600080fd5b60008083601f840112612d2357612d22612af5565b5b8235905067ffffffffffffffff811115612d4057612d3f612d03565b5b602083019150836020820283011115612d5c57612d5b612d08565b5b9250929050565b600080600060408486031215612d7c57612d7b6127cd565b5b6000612d8a8682870161296e565b935050602084013567ffffffffffffffff811115612dab57612daa6127d2565b5b612db786828701612d0d565b92509250509250925092565b612dcc8161285c565b8114612dd757600080fd5b50565b600081359050612de981612dc3565b92915050565b60008060408385031215612e0657612e056127cd565b5b6000612e1485828601612a23565b9250506020612e2585828601612dda565b9150509250929050565b600067ffffffffffffffff821115612e4a57612e49612aff565b5b612e53826128e1565b9050602081019050919050565b6000612e73612e6e84612e2f565b612b5f565b905082815260208101848484011115612e8f57612e8e612afa565b5b612e9a848285612bab565b509392505050565b600082601f830112612eb757612eb6612af5565b5b8135612ec7848260208601612e60565b91505092915050565b60008060008060808587031215612eea57612ee96127cd565b5b6000612ef887828801612a23565b9450506020612f0987828801612a23565b9350506040612f1a8782880161296e565b925050606085013567ffffffffffffffff811115612f3b57612f3a6127d2565b5b612f4787828801612ea2565b91505092959194509250565b60008060408385031215612f6a57612f696127cd565b5b6000612f7885828601612a23565b9250506020612f8985828601612a23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fda57607f821691505b60208210811415612fee57612fed612f93565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613050602c8361289d565b915061305b82612ff4565b604082019050919050565b6000602082019050818103600083015261307f81613043565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130bc60208361289d565b91506130c782613086565b602082019050919050565b600060208201905081810360008301526130eb816130af565b9050919050565b7f494e49543a20496e76616c6964206e65772073616c652073746174652e000000600082015250565b6000613128601d8361289d565b9150613133826130f2565b602082019050919050565b600060208201905081810360008301526131578161311b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131ba60218361289d565b91506131c58261315e565b604082019050919050565b600060208201905081810360008301526131e9816131ad565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061324c60388361289d565b9150613257826131f0565b604082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132bc8261294d565b91506132c78361294d565b9250828210156132da576132d9613282565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061334160318361289d565b915061334c826132e5565b604082019050919050565b6000602082019050818103600083015261337081613334565b9050919050565b7f494e49543a205075626c69632073616c6520686173206e6f742073746172746560008201527f64207965742e0000000000000000000000000000000000000000000000000000602082015250565b60006133d360268361289d565b91506133de82613377565b604082019050919050565b60006020820190508181036000830152613402816133c6565b9050919050565b60006134148261294d565b915061341f8361294d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561345457613453613282565b5b828201905092915050565b7f494e49543a205075726368617361626c65204e4654732061726520616c6c206d60008201527f696e7465642e0000000000000000000000000000000000000000000000000000602082015250565b60006134bb60268361289d565b91506134c68261345f565b604082019050919050565b600060208201905081810360008301526134ea816134ae565b9050919050565b7f494e49543a20416d6f756e742065786365656473207472616e73616374696f6e60008201527f206d696e74206361702e00000000000000000000000000000000000000000000602082015250565b600061354d602a8361289d565b9150613558826134f1565b604082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b600061358e8261294d565b91506135998361294d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d2576135d1613282565b5b828202905092915050565b7f494e49543a20496e73756666696369656e742066756e64732e00000000000000600082015250565b600061361360198361289d565b915061361e826135dd565b602082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b60006136548261294d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561368757613686613282565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006136ee60298361289d565b91506136f982613692565b604082019050919050565b6000602082019050818103600083015261371d816136e1565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613780602a8361289d565b915061378b82613724565b604082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f494e49543a204e6f2062616c616e636520746f2077697468647261772e000000600082015250565b60006137ec601d8361289d565b91506137f7826137b6565b602082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b7f494e49543a205072652d73616c6520686173206e6f742073746172746564207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b600061387e60238361289d565b915061388982613822565b604082019050919050565b600060208201905081810360008301526138ad81613871565b9050919050565b7f494e49543a20416464726573732068617320726561636865642074686520776160008201527f6c6c65742063617020696e207072652d73616c652e0000000000000000000000602082015250565b600061391060358361289d565b915061391b826138b4565b604082019050919050565b6000602082019050818103600083015261393f81613903565b9050919050565b60008160601b9050919050565b600061395e82613946565b9050919050565b600061397082613953565b9050919050565b613988613983826129d0565b613965565b82525050565b600061399a8284613977565b60148201915081905092915050565b7f494e49543a204d65726b6c6520766572696669636174696f6e2068617320666160008201527f696c65642c2061646472657373206973206e6f7420696e20746865207072652d60208201527f73616c652077686974656c6973742e0000000000000000000000000000000000604082015250565b6000613a2b604f8361289d565b9150613a36826139a9565b606082019050919050565b60006020820190508181036000830152613a5a81613a1e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613abd602f8361289d565b9150613ac882613a61565b604082019050919050565b60006020820190508181036000830152613aec81613ab0565b9050919050565b600081905092915050565b6000613b0982612892565b613b138185613af3565b9350613b238185602086016128ae565b80840191505092915050565b6000613b3b8285613afe565b9150613b478284613afe565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613baf60268361289d565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613c41602c8361289d565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613cd360298361289d565b9150613cde82613c77565b604082019050919050565b60006020820190508181036000830152613d0281613cc6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d6560248361289d565b9150613d7082613d09565b604082019050919050565b60006020820190508181036000830152613d9481613d58565b9050919050565b600081905092915050565b50565b6000613db6600083613d9b565b9150613dc182613da6565b600082019050919050565b6000613dd782613da9565b9150819050919050565b7f494e49543a205472616e73666572206661696c65642e00000000000000000000600082015250565b6000613e1760168361289d565b9150613e2282613de1565b602082019050919050565b60006020820190508181036000830152613e4681613e0a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e8360198361289d565b9150613e8e82613e4d565b602082019050919050565b60006020820190508181036000830152613eb281613e76565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f1560328361289d565b9150613f2082613eb9565b604082019050919050565b60006020820190508181036000830152613f4481613f08565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f858261294d565b9150613f908361294d565b925082613fa057613f9f613f4b565b5b828204905092915050565b6000613fb68261294d565b9150613fc18361294d565b925082613fd157613fd0613f4b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061404160208361289d565b915061404c8261400b565b602082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006140ad601c8361289d565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b6000819050919050565b6140fe6140f982612ca0565b6140e3565b82525050565b600061411082856140ed565b60208201915061412082846140ed565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061415782614130565b614161818561413b565b93506141718185602086016128ae565b61417a816128e1565b840191505092915050565b600060808201905061419a60008301876129e2565b6141a760208301866129e2565b6141b46040830185612a78565b81810360608301526141c6818461414c565b905095945050505050565b6000815190506141e081612803565b92915050565b6000602082840312156141fc576141fb6127cd565b5b600061420a848285016141d1565b9150509291505056fea2646970667358221220d78cefd1d719003aed471da3aed6f172ad401e527488e9d88ccbee57d888417564736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80637cb64759116100f7578063b3957bc911610095578063ef23880211610064578063ef23880214610646578063f19e75d414610671578063f2fde38b1461069a578063f43a22dc146106c3576101cd565b8063b3957bc914610578578063b88d4fde146105a3578063c87b56dd146105cc578063e985e9c514610609576101cd565b80638da5cb5b116100d15780638da5cb5b146104dd57806395d89b41146105085780639e6b2c5b14610533578063a22cb4651461054f576101cd565b80637cb64759146104725780637f205a741461049b578063853828b6146104c6576101cd565b806332cb6b0c1161016f5780636352211e1161013e5780636352211e146103b65780636c0360eb146103f357806370a082311461041e578063715018a61461045b576101cd565b806332cb6b0c1461031d57806342842e0e1461034857806355f804b3146103715780635a5e5d581461039a576101cd565b8063084c4088116101ab578063084c408814610277578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061282f565b6106ee565b6040516102069190612877565b60405180910390f35b34801561021b57600080fd5b506102246107d0565b604051610231919061292b565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612983565b610862565b60405161026e91906129f1565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612983565b6108e7565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612a38565b6109bd565b005b3480156102d557600080fd5b506102de610ad5565b6040516102eb9190612a87565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612aa2565b610af2565b005b34801561032957600080fd5b50610332610b52565b60405161033f9190612a87565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612aa2565b610b58565b005b34801561037d57600080fd5b5061039860048036038101906103939190612c2a565b610b78565b005b6103b460048036038101906103af9190612983565b610c0e565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612983565b610d78565b6040516103ea91906129f1565b60405180910390f35b3480156103ff57600080fd5b50610408610e2a565b604051610415919061292b565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612c73565b610eb8565b6040516104529190612a87565b60405180910390f35b34801561046757600080fd5b50610470610f70565b005b34801561047e57600080fd5b5061049960048036038101906104949190612cd6565b610ff8565b005b3480156104a757600080fd5b506104b061107e565b6040516104bd9190612a87565b60405180910390f35b3480156104d257600080fd5b506104db611084565b005b3480156104e957600080fd5b506104f261115c565b6040516104ff91906129f1565b60405180910390f35b34801561051457600080fd5b5061051d611186565b60405161052a919061292b565b60405180910390f35b61054d60048036038101906105489190612d63565b611218565b005b34801561055b57600080fd5b5061057660048036038101906105719190612def565b6114d7565b005b34801561058457600080fd5b5061058d6114ed565b60405161059a9190612a87565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190612ed0565b6114f3565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190612983565b611555565b604051610600919061292b565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190612f53565b6115fc565b60405161063d9190612877565b60405180910390f35b34801561065257600080fd5b5061065b611690565b6040516106689190612a87565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190612983565b611696565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612c73565b6117a2565b005b3480156106cf57600080fd5b506106d861189a565b6040516106e59190612a87565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c957506107c8826118b6565b5b9050919050565b6060600080546107df90612fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461080b90612fc2565b80156108585780601f1061082d57610100808354040283529160200191610858565b820191906000526020600020905b81548152906001019060200180831161083b57829003601f168201915b5050505050905090565b600061086d82611920565b6108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390613066565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108ef61198c565b73ffffffffffffffffffffffffffffffffffffffff1661090d61115c565b73ffffffffffffffffffffffffffffffffffffffff1614610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a906130d2565b60405180910390fd5b600081101580156109745750600381105b6109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa9061313e565b60405180910390fd5b80600b8190555050565b60006109c882610d78565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a30906131d0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5861198c565b73ffffffffffffffffffffffffffffffffffffffff161480610a875750610a8681610a8161198c565b6115fc565b5b610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90613262565b60405180910390fd5b610ad08383611994565b505050565b60006001610ae3600e611a4d565b610aed91906132b1565b905090565b610b03610afd61198c565b82611a5b565b610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990613357565b60405180910390fd5b610b4d838383611b39565b505050565b60075481565b610b73838383604051806020016040528060008152506114f3565b505050565b610b8061198c565b73ffffffffffffffffffffffffffffffffffffffff16610b9e61115c565b73ffffffffffffffffffffffffffffffffffffffff1614610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906130d2565b60405180910390fd5b80600f9080519060200190610c0a929190612720565b5050565b6002600b5414610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a906133e9565b60405180910390fd5b600754600182610c63600e611a4d565b610c6d9190613409565b610c7791906132b1565b1115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf906134d1565b60405180910390fd5b600a54811115610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490613563565b60405180910390fd5b60085481610d0b9190613583565b341015610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613629565b60405180910390fd5b60005b81811015610d7457610d6133611d95565b8080610d6c90613649565b915050610d50565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890613704565b60405180910390fd5b80915050919050565b600f8054610e3790612fc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6390612fc2565b8015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613796565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7861198c565b73ffffffffffffffffffffffffffffffffffffffff16610f9661115c565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe3906130d2565b60405180910390fd5b610ff66000611db5565b565b61100061198c565b73ffffffffffffffffffffffffffffffffffffffff1661101e61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b906130d2565b60405180910390fd5b80600c8190555050565b60085481565b61108c61198c565b73ffffffffffffffffffffffffffffffffffffffff166110aa61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f7906130d2565b60405180910390fd5b600047905060008111611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90613802565b60405180910390fd5b61115961115361115c565b47611e7b565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461119590612fc2565b80601f01602080910402602001604051908101604052809291908181526020018280546111c190612fc2565b801561120e5780601f106111e35761010080835404028352916020019161120e565b820191906000526020600020905b8154815290600101906020018083116111f157829003601f168201915b5050505050905090565b6001600b541461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613894565b60405180910390fd5b60075460018461126d600e611a4d565b6112779190613409565b61128191906132b1565b11156112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b9906134d1565b60405180910390fd5b600854836112d09190613583565b341015611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613629565b60405180910390fd5b60095483600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113609190613409565b11156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890613926565b60405180910390fd5b611415828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54336040516020016113fa919061398e565b60405160208183030381529060405280519060200120611f2c565b611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90613a41565b60405180910390fd5b60005b8381101561147b5761146833611d95565b808061147390613649565b915050611457565b5082600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114cb9190613409565b92505081905550505050565b6114e96114e261198c565b8383611f43565b5050565b60095481565b6115046114fe61198c565b83611a5b565b611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90613357565b60405180910390fd5b61154f848484846120b0565b50505050565b606061156082611920565b61159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690613ad3565b60405180910390fd5b60006115a961210c565b905060008151116115c957604051806020016040528060008152506115f4565b806115d38461219e565b6040516020016115e4929190613b2f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b61169e61198c565b73ffffffffffffffffffffffffffffffffffffffff166116bc61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611709906130d2565b60405180910390fd5b600754600182611722600e611a4d565b61172c9190613409565b61173691906132b1565b1115611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e906134d1565b60405180910390fd5b60005b8181101561179e5761178b33611d95565b808061179690613649565b91505061177a565b5050565b6117aa61198c565b73ffffffffffffffffffffffffffffffffffffffff166117c861115c565b73ffffffffffffffffffffffffffffffffffffffff161461181e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611815906130d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613bc5565b60405180910390fd5b61189781611db5565b50565b600a5481565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0783610d78565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a6682611920565b611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613c57565b60405180910390fd5b6000611ab083610d78565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b1f57508373ffffffffffffffffffffffffffffffffffffffff16611b0784610862565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b305750611b2f81856115fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5982610d78565b73ffffffffffffffffffffffffffffffffffffffff1614611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613ce9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613d7b565b60405180910390fd5b611c2a8383836122ff565b611c35600082611994565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8591906132b1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cdc9190613409565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611da881611da3600e611a4d565b612304565b611db2600e6118a0565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ea190613dcc565b60006040518083038185875af1925050503d8060008114611ede576040519150601f19603f3d011682016040523d82523d6000602084013e611ee3565b606091505b5050905080611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613e2d565b60405180910390fd5b505050565b600082611f3985846124d2565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa990613e99565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a39190612877565b60405180910390a3505050565b6120bb848484611b39565b6120c784848484612585565b612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90613f2b565b60405180910390fd5b50505050565b6060600f805461211b90612fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461214790612fc2565b80156121945780601f1061216957610100808354040283529160200191612194565b820191906000526020600020905b81548152906001019060200180831161217757829003601f168201915b5050505050905090565b606060008214156121e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122fa565b600082905060005b6000821461221857808061220190613649565b915050600a826122119190613f7a565b91506121ee565b60008167ffffffffffffffff81111561223457612233612aff565b5b6040519080825280601f01601f1916602001820160405280156122665781602001600182028036833780820191505090505b5090505b600085146122f35760018261227f91906132b1565b9150600a8561228e9190613fab565b603061229a9190613409565b60f81b8183815181106122b0576122af613fdc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ec9190613f7a565b945061226a565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b90614057565b60405180910390fd5b61237d81611920565b156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b4906140c3565b60405180910390fd5b6123c9600083836122ff565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124199190613409565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082905060005b845181101561257a5760008582815181106124f9576124f8613fdc565b5b6020026020010151905080831161253a57828160405160200161251d929190614104565b604051602081830303815290604052805190602001209250612566565b808360405160200161254d929190614104565b6040516020818303038152906040528051906020012092505b50808061257290613649565b9150506124db565b508091505092915050565b60006125a68473ffffffffffffffffffffffffffffffffffffffff1661270d565b15612700578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125cf61198c565b8786866040518563ffffffff1660e01b81526004016125f19493929190614185565b6020604051808303816000875af192505050801561262d57506040513d601f19601f8201168201806040525081019061262a91906141e6565b60015b6126b0573d806000811461265d576040519150601f19603f3d011682016040523d82523d6000602084013e612662565b606091505b506000815114156126a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269f90613f2b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612705565b600190505b949350505050565b600080823b905060008111915050919050565b82805461272c90612fc2565b90600052602060002090601f01602090048101928261274e5760008555612795565b82601f1061276757805160ff1916838001178555612795565b82800160010185558215612795579182015b82811115612794578251825591602001919060010190612779565b5b5090506127a291906127a6565b5090565b5b808211156127bf5760008160009055506001016127a7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61280c816127d7565b811461281757600080fd5b50565b60008135905061282981612803565b92915050565b600060208284031215612845576128446127cd565b5b60006128538482850161281a565b91505092915050565b60008115159050919050565b6128718161285c565b82525050565b600060208201905061288c6000830184612868565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128cc5780820151818401526020810190506128b1565b838111156128db576000848401525b50505050565b6000601f19601f8301169050919050565b60006128fd82612892565b612907818561289d565b93506129178185602086016128ae565b612920816128e1565b840191505092915050565b6000602082019050818103600083015261294581846128f2565b905092915050565b6000819050919050565b6129608161294d565b811461296b57600080fd5b50565b60008135905061297d81612957565b92915050565b600060208284031215612999576129986127cd565b5b60006129a78482850161296e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129db826129b0565b9050919050565b6129eb816129d0565b82525050565b6000602082019050612a0660008301846129e2565b92915050565b612a15816129d0565b8114612a2057600080fd5b50565b600081359050612a3281612a0c565b92915050565b60008060408385031215612a4f57612a4e6127cd565b5b6000612a5d85828601612a23565b9250506020612a6e8582860161296e565b9150509250929050565b612a818161294d565b82525050565b6000602082019050612a9c6000830184612a78565b92915050565b600080600060608486031215612abb57612aba6127cd565b5b6000612ac986828701612a23565b9350506020612ada86828701612a23565b9250506040612aeb8682870161296e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b37826128e1565b810181811067ffffffffffffffff82111715612b5657612b55612aff565b5b80604052505050565b6000612b696127c3565b9050612b758282612b2e565b919050565b600067ffffffffffffffff821115612b9557612b94612aff565b5b612b9e826128e1565b9050602081019050919050565b82818337600083830152505050565b6000612bcd612bc884612b7a565b612b5f565b905082815260208101848484011115612be957612be8612afa565b5b612bf4848285612bab565b509392505050565b600082601f830112612c1157612c10612af5565b5b8135612c21848260208601612bba565b91505092915050565b600060208284031215612c4057612c3f6127cd565b5b600082013567ffffffffffffffff811115612c5e57612c5d6127d2565b5b612c6a84828501612bfc565b91505092915050565b600060208284031215612c8957612c886127cd565b5b6000612c9784828501612a23565b91505092915050565b6000819050919050565b612cb381612ca0565b8114612cbe57600080fd5b50565b600081359050612cd081612caa565b92915050565b600060208284031215612cec57612ceb6127cd565b5b6000612cfa84828501612cc1565b91505092915050565b600080fd5b600080fd5b60008083601f840112612d2357612d22612af5565b5b8235905067ffffffffffffffff811115612d4057612d3f612d03565b5b602083019150836020820283011115612d5c57612d5b612d08565b5b9250929050565b600080600060408486031215612d7c57612d7b6127cd565b5b6000612d8a8682870161296e565b935050602084013567ffffffffffffffff811115612dab57612daa6127d2565b5b612db786828701612d0d565b92509250509250925092565b612dcc8161285c565b8114612dd757600080fd5b50565b600081359050612de981612dc3565b92915050565b60008060408385031215612e0657612e056127cd565b5b6000612e1485828601612a23565b9250506020612e2585828601612dda565b9150509250929050565b600067ffffffffffffffff821115612e4a57612e49612aff565b5b612e53826128e1565b9050602081019050919050565b6000612e73612e6e84612e2f565b612b5f565b905082815260208101848484011115612e8f57612e8e612afa565b5b612e9a848285612bab565b509392505050565b600082601f830112612eb757612eb6612af5565b5b8135612ec7848260208601612e60565b91505092915050565b60008060008060808587031215612eea57612ee96127cd565b5b6000612ef887828801612a23565b9450506020612f0987828801612a23565b9350506040612f1a8782880161296e565b925050606085013567ffffffffffffffff811115612f3b57612f3a6127d2565b5b612f4787828801612ea2565b91505092959194509250565b60008060408385031215612f6a57612f696127cd565b5b6000612f7885828601612a23565b9250506020612f8985828601612a23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fda57607f821691505b60208210811415612fee57612fed612f93565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613050602c8361289d565b915061305b82612ff4565b604082019050919050565b6000602082019050818103600083015261307f81613043565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130bc60208361289d565b91506130c782613086565b602082019050919050565b600060208201905081810360008301526130eb816130af565b9050919050565b7f494e49543a20496e76616c6964206e65772073616c652073746174652e000000600082015250565b6000613128601d8361289d565b9150613133826130f2565b602082019050919050565b600060208201905081810360008301526131578161311b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131ba60218361289d565b91506131c58261315e565b604082019050919050565b600060208201905081810360008301526131e9816131ad565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061324c60388361289d565b9150613257826131f0565b604082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132bc8261294d565b91506132c78361294d565b9250828210156132da576132d9613282565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061334160318361289d565b915061334c826132e5565b604082019050919050565b6000602082019050818103600083015261337081613334565b9050919050565b7f494e49543a205075626c69632073616c6520686173206e6f742073746172746560008201527f64207965742e0000000000000000000000000000000000000000000000000000602082015250565b60006133d360268361289d565b91506133de82613377565b604082019050919050565b60006020820190508181036000830152613402816133c6565b9050919050565b60006134148261294d565b915061341f8361294d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561345457613453613282565b5b828201905092915050565b7f494e49543a205075726368617361626c65204e4654732061726520616c6c206d60008201527f696e7465642e0000000000000000000000000000000000000000000000000000602082015250565b60006134bb60268361289d565b91506134c68261345f565b604082019050919050565b600060208201905081810360008301526134ea816134ae565b9050919050565b7f494e49543a20416d6f756e742065786365656473207472616e73616374696f6e60008201527f206d696e74206361702e00000000000000000000000000000000000000000000602082015250565b600061354d602a8361289d565b9150613558826134f1565b604082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b600061358e8261294d565b91506135998361294d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d2576135d1613282565b5b828202905092915050565b7f494e49543a20496e73756666696369656e742066756e64732e00000000000000600082015250565b600061361360198361289d565b915061361e826135dd565b602082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b60006136548261294d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561368757613686613282565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006136ee60298361289d565b91506136f982613692565b604082019050919050565b6000602082019050818103600083015261371d816136e1565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613780602a8361289d565b915061378b82613724565b604082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f494e49543a204e6f2062616c616e636520746f2077697468647261772e000000600082015250565b60006137ec601d8361289d565b91506137f7826137b6565b602082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b7f494e49543a205072652d73616c6520686173206e6f742073746172746564207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b600061387e60238361289d565b915061388982613822565b604082019050919050565b600060208201905081810360008301526138ad81613871565b9050919050565b7f494e49543a20416464726573732068617320726561636865642074686520776160008201527f6c6c65742063617020696e207072652d73616c652e0000000000000000000000602082015250565b600061391060358361289d565b915061391b826138b4565b604082019050919050565b6000602082019050818103600083015261393f81613903565b9050919050565b60008160601b9050919050565b600061395e82613946565b9050919050565b600061397082613953565b9050919050565b613988613983826129d0565b613965565b82525050565b600061399a8284613977565b60148201915081905092915050565b7f494e49543a204d65726b6c6520766572696669636174696f6e2068617320666160008201527f696c65642c2061646472657373206973206e6f7420696e20746865207072652d60208201527f73616c652077686974656c6973742e0000000000000000000000000000000000604082015250565b6000613a2b604f8361289d565b9150613a36826139a9565b606082019050919050565b60006020820190508181036000830152613a5a81613a1e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613abd602f8361289d565b9150613ac882613a61565b604082019050919050565b60006020820190508181036000830152613aec81613ab0565b9050919050565b600081905092915050565b6000613b0982612892565b613b138185613af3565b9350613b238185602086016128ae565b80840191505092915050565b6000613b3b8285613afe565b9150613b478284613afe565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613baf60268361289d565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613c41602c8361289d565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613cd360298361289d565b9150613cde82613c77565b604082019050919050565b60006020820190508181036000830152613d0281613cc6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d6560248361289d565b9150613d7082613d09565b604082019050919050565b60006020820190508181036000830152613d9481613d58565b9050919050565b600081905092915050565b50565b6000613db6600083613d9b565b9150613dc182613da6565b600082019050919050565b6000613dd782613da9565b9150819050919050565b7f494e49543a205472616e73666572206661696c65642e00000000000000000000600082015250565b6000613e1760168361289d565b9150613e2282613de1565b602082019050919050565b60006020820190508181036000830152613e4681613e0a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e8360198361289d565b9150613e8e82613e4d565b602082019050919050565b60006020820190508181036000830152613eb281613e76565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f1560328361289d565b9150613f2082613eb9565b604082019050919050565b60006020820190508181036000830152613f4481613f08565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f858261294d565b9150613f908361294d565b925082613fa057613f9f613f4b565b5b828204905092915050565b6000613fb68261294d565b9150613fc18361294d565b925082613fd157613fd0613f4b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061404160208361289d565b915061404c8261400b565b602082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006140ad601c8361289d565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b6000819050919050565b6140fe6140f982612ca0565b6140e3565b82525050565b600061411082856140ed565b60208201915061412082846140ed565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061415782614130565b614161818561413b565b93506141718185602086016128ae565b61417a816128e1565b840191505092915050565b600060808201905061419a60008301876129e2565b6141a760208301866129e2565b6141b46040830185612a78565b81810360608301526141c6818461414c565b905095945050505050565b6000815190506141e081612803565b92915050565b6000602082840312156141fc576141fb6127cd565b5b600061420a848285016141d1565b9150509291505056fea2646970667358221220d78cefd1d719003aed471da3aed6f172ad401e527488e9d88ccbee57d888417564736f6c634300080b0033

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.