ETH Price: $3,373.45 (+3.12%)
Gas: 2 Gwei

Token

World of LGBT (WLGBT)
 

Overview

Max Total Supply

10,000 WLGBT

Holders

1,570

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fk404.eth
Balance
2 WLGBT
0xf942ce6643bc80d0bcc1bea4fd4657e600a1de88
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WLGBT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

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

    uint256 public immutable TOTAL_TOKENS;
    uint256 public immutable FREE_MINT_TOKENS;
    uint256 public immutable RESERVED_TOKENS;
    uint256 public PAID_MINT_TOKENS;
    uint256 public PUBLICT_MINT_TOKENS;
    uint256 public LAUNCH_DATE;

    // mint related
    uint256 public MINT_PRICE = 0.039 ether;
    uint256 public FREE_MINT_MAX_PER_ADDR = 5;
    uint256 public TOTAL_MINT_MAX_PER_ADDR = 20;

    uint256 public public_minted = 0;
    uint256 public reserved_minted = 0;

    // private
    string private _baseTokenURI;
    Counters.Counter private _tokenIds;

    constructor(
        uint256 total_tokens,
        uint256 free_mint_tokens,
        uint256 reserved_tokens,
        string memory base_uri,
        uint256 launch_date
    ) ERC721("World of LGBT", "WLGBT") {
        TOTAL_TOKENS = total_tokens;
        FREE_MINT_TOKENS = free_mint_tokens;
        RESERVED_TOKENS = reserved_tokens;
        PAID_MINT_TOKENS = total_tokens - reserved_tokens - free_mint_tokens;
        PUBLICT_MINT_TOKENS = total_tokens - reserved_tokens;
        _baseTokenURI = base_uri;
        LAUNCH_DATE = launch_date;
        _pause();
    }

    modifier notLocked() {
        require(LAUNCH_DATE <= block.timestamp, "Mint is locked");
        _;
   }

    function totalSupply() public view returns (uint256) {
        return public_minted + reserved_minted;
    }

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

    function publicMint(uint256 number) external payable whenNotPaused notLocked{
        require(number >= 1, "Number is 0");
        if (public_minted < FREE_MINT_TOKENS) {
            require(balanceOf(msg.sender) + number <= FREE_MINT_MAX_PER_ADDR, "Beyond max number of free tokens");
            require(public_minted + number <= FREE_MINT_TOKENS, "Not enought free tokens");
        }else{
            require(balanceOf(msg.sender) + number <= TOTAL_MINT_MAX_PER_ADDR, "Beyond max number of tokens");
            require(public_minted + number <= PUBLICT_MINT_TOKENS, "Sold out");
            require(MINT_PRICE * number <= msg.value, "Invalid payment amount");
        }

        for (uint256 i = 0; i < number; i++) {
            uint256 currentTokenId = _tokenIds.current();
            _tokenIds.increment();
            public_minted++;
            _safeMint(msg.sender, currentTokenId);
        }
    }

    function reservedMint(address[] calldata receivers) external onlyOwner {
        require(reserved_minted + receivers.length <= RESERVED_TOKENS, "Reserved sold out");
        for (uint256 i = 0; i < receivers.length; i++) {
            uint256 currentTokenId = _tokenIds.current();
            _tokenIds.increment();
            reserved_minted++;
            _safeMint(receivers[i], currentTokenId);
        }
    }


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

    function setPaused(bool paused) external onlyOwner {
        if (paused) _pause();
        else _unpause();
    }

    function setMintPrice(uint256 price) external onlyOwner {
        MINT_PRICE = price;
    }

    function setBaseURI(string memory base_uri) external onlyOwner{
        _baseTokenURI = base_uri;
    }

    function setFreeMintMaxPerAddr(uint256 number) external onlyOwner {
        FREE_MINT_MAX_PER_ADDR = number;
    }

    function setTotalMintMaxPerAddr(uint256 number) external onlyOwner {
        TOTAL_MINT_MAX_PER_ADDR = number;
    }

    function setLaunchDate(uint256 timestamp) external onlyOwner {
        LAUNCH_DATE = timestamp;
    }
}

File 2 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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.0 (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 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 5 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 6 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 7 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 9 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 12 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"total_tokens","type":"uint256"},{"internalType":"uint256","name":"free_mint_tokens","type":"uint256"},{"internalType":"uint256","name":"reserved_tokens","type":"uint256"},{"internalType":"string","name":"base_uri","type":"string"},{"internalType":"uint256","name":"launch_date","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"FREE_MINT_MAX_PER_ADDR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAUNCH_DATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_MINT_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLICT_MINT_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MINT_MAX_PER_ADDR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"public_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved_minted","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":"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":"base_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setFreeMintMaxPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setLaunchDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setTotalMintMaxPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052668a8e4b1a3d8000600a556005600b556014600c556000600d556000600e553480156200003057600080fd5b506040516200490c3803806200490c83398181016040528101906200005691906200048f565b6040518060400160405280600d81526020017f576f726c64206f66204c474254000000000000000000000000000000000000008152506040518060400160405280600581526020017f574c4742540000000000000000000000000000000000000000000000000000008152508160009080519060200190620000da92919062000356565b508060019080519060200190620000f392919062000356565b505050620001166200010a620001b960201b60201c565b620001c160201b60201c565b6000600660146101000a81548160ff02191690831515021790555084608081815250508360a081815250508260c0818152505083838662000158919062000634565b62000164919062000634565b600781905550828562000178919062000634565b60088190555081600f90805190602001906200019692919062000356565b5080600981905550620001ae6200028760201b60201c565b5050505050620007c0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002976200033f60201b60201c565b15620002da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d1906200059a565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000326620001b960201b60201c565b6040516200033591906200057d565b60405180910390a1565b6000600660149054906101000a900460ff16905090565b8280546200036490620006e3565b90600052602060002090601f016020900481019282620003885760008555620003d4565b82601f10620003a357805160ff1916838001178555620003d4565b82800160010185558215620003d4579182015b82811115620003d3578251825591602001919060010190620003b6565b5b509050620003e39190620003e7565b5090565b5b8082111562000402576000816000905550600101620003e8565b5090565b60006200041d6200041784620005f0565b620005bc565b9050828152602081018484840111156200043657600080fd5b62000443848285620006ad565b509392505050565b600082601f8301126200045d57600080fd5b81516200046f84826020860162000406565b91505092915050565b6000815190506200048981620007a6565b92915050565b600080600080600060a08688031215620004a857600080fd5b6000620004b88882890162000478565b9550506020620004cb8882890162000478565b9450506040620004de8882890162000478565b935050606086015167ffffffffffffffff811115620004fc57600080fd5b6200050a888289016200044b565b92505060806200051d8882890162000478565b9150509295509295909350565b62000535816200066f565b82525050565b60006200054a60108362000623565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006020820190506200059460008301846200052a565b92915050565b60006020820190508181036000830152620005b5816200053b565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620005e657620005e562000777565b5b8060405250919050565b600067ffffffffffffffff8211156200060e576200060d62000777565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200064182620006a3565b91506200064e83620006a3565b92508282101562000664576200066362000719565b5b828203905092915050565b60006200067c8262000683565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006cd578082015181840152602081019050620006b0565b83811115620006dd576000848401525b50505050565b60006002820490506001821680620006fc57607f821691505b6020821081141562000713576200071262000748565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007b181620006a3565b8114620007bd57600080fd5b50565b60805160a05160c051614107620008056000396000818161126101526114f7015260008181610dc701528181610e49015261198d01526000610bc001526141076000f3fe6080604052600436106102255760003560e01c80638b55bde711610123578063bd93f493116100ab578063d3e756d31161006f578063d3e756d3146107c4578063e985e9c5146107ed578063f106be4a1461082a578063f2fde38b14610855578063f4a0a5281461087e57610225565b8063bd93f493146106db578063c002d23d14610706578063c152870614610731578063c87b56dd1461075c578063cce2f8d61461079957610225565b806395fd0d9a116100f257806395fd0d9a1461060a578063a22cb46514610635578063a9e58d221461065e578063b574413414610689578063b88d4fde146106b257610225565b80638b55bde7146105605780638da5cb5b1461058b57806394690f6e146105b657806395d89b41146105df57610225565b80632db11544116101b15780636352211e116101755780636352211e1461047b57806368fc68c7146104b857806370a08231146104e3578063715018a6146105205780637e610c051461053757610225565b80632db11544146103cb5780633ccfd60b146103e757806342842e0e146103fe57806355f804b3146104275780635c975abb1461045057610225565b80630ac95ca5116101f85780630ac95ca5146102f85780630b7abf771461032357806316c38b3c1461034e57806318160ddd1461037757806323b872dd146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612e66565b6108a7565b60405161025e91906138c5565b60405180910390f35b34801561027357600080fd5b5061027c610989565b60405161028991906138e0565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ef9565b610a1b565b6040516102c6919061385e565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612dbc565b610aa0565b005b34801561030457600080fd5b5061030d610bb8565b60405161031a9190613c42565b60405180910390f35b34801561032f57600080fd5b50610338610bbe565b6040516103459190613c42565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612e3d565b610be2565b005b34801561038357600080fd5b5061038c610c7d565b6040516103999190613c42565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190612cb6565b610c94565b005b6103e560048036038101906103e09190612ef9565b610cf4565b005b3480156103f357600080fd5b506103fc611014565b005b34801561040a57600080fd5b5061042560048036038101906104209190612cb6565b6110e0565b005b34801561043357600080fd5b5061044e60048036038101906104499190612eb8565b611100565b005b34801561045c57600080fd5b50610465611196565b60405161047291906138c5565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190612ef9565b6111ad565b6040516104af919061385e565b60405180910390f35b3480156104c457600080fd5b506104cd61125f565b6040516104da9190613c42565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190612c51565b611283565b6040516105179190613c42565b60405180910390f35b34801561052c57600080fd5b5061053561133b565b005b34801561054357600080fd5b5061055e60048036038101906105599190612ef9565b6113c3565b005b34801561056c57600080fd5b50610575611449565b6040516105829190613c42565b60405180910390f35b34801561059757600080fd5b506105a061144f565b6040516105ad919061385e565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190612df8565b611479565b005b3480156105eb57600080fd5b506105f4611616565b60405161060191906138e0565b60405180910390f35b34801561061657600080fd5b5061061f6116a8565b60405161062c9190613c42565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612d80565b6116ae565b005b34801561066a57600080fd5b506106736116c4565b6040516106809190613c42565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612ef9565b6116ca565b005b3480156106be57600080fd5b506106d960048036038101906106d49190612d05565b611750565b005b3480156106e757600080fd5b506106f06117b2565b6040516106fd9190613c42565b60405180910390f35b34801561071257600080fd5b5061071b6117b8565b6040516107289190613c42565b60405180910390f35b34801561073d57600080fd5b506107466117be565b6040516107539190613c42565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190612ef9565b6117c4565b60405161079091906138e0565b60405180910390f35b3480156107a557600080fd5b506107ae61186b565b6040516107bb9190613c42565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190612ef9565b611871565b005b3480156107f957600080fd5b50610814600480360381019061080f9190612c7a565b6118f7565b60405161082191906138c5565b60405180910390f35b34801561083657600080fd5b5061083f61198b565b60405161084c9190613c42565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190612c51565b6119af565b005b34801561088a57600080fd5b506108a560048036038101906108a09190612ef9565b611aa7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610982575061098182611b2d565b5b9050919050565b60606000805461099890613efc565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613efc565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b6000610a2682611b97565b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90613b22565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aab826111ad565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390613ba2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3b611c03565b73ffffffffffffffffffffffffffffffffffffffff161480610b6a5750610b6981610b64611c03565b6118f7565b5b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613a62565b60405180910390fd5b610bb38383611c0b565b505050565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b610bea611c03565b73ffffffffffffffffffffffffffffffffffffffff16610c0861144f565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613b42565b60405180910390fd5b8015610c7157610c6c611cc4565b610c7a565b610c79611d67565b5b50565b6000600e54600d54610c8f9190613d31565b905090565b610ca5610c9f611c03565b82611e09565b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90613be2565b60405180910390fd5b610cef838383611ee7565b505050565b610cfc611196565b15610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613a42565b60405180910390fd5b426009541115610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613aa2565b60405180910390fd5b6001811015610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90613a02565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600d541015610ebc57600b5481610dfc33611283565b610e069190613d31565b1115610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90613bc2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081600d54610e769190613d31565b1115610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613a82565b60405180910390fd5b610fb7565b600c5481610ec933611283565b610ed39190613d31565b1115610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613922565b60405180910390fd5b60085481600d54610f259190613d31565b1115610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90613c02565b60405180910390fd5b3481600a54610f759190613db8565b1115610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad906139a2565b60405180910390fd5b5b60005b81811015611010576000610fce6010612143565b9050610fda6010612151565b600d6000815480929190610fed90613f2e565b9190505550610ffc3382612167565b50808061100890613f2e565b915050610fba565b5050565b61101c611c03565b73ffffffffffffffffffffffffffffffffffffffff1661103a61144f565b73ffffffffffffffffffffffffffffffffffffffff1614611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790613b42565b60405180910390fd5b61109861144f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110dd573d6000803e3d6000fd5b50565b6110fb83838360405180602001604052806000815250611750565b505050565b611108611c03565b73ffffffffffffffffffffffffffffffffffffffff1661112661144f565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613b42565b60405180910390fd5b80600f9080519060200190611192929190612a2b565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613ae2565b60405180910390fd5b80915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613ac2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611343611c03565b73ffffffffffffffffffffffffffffffffffffffff1661136161144f565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613b42565b60405180910390fd5b6113c16000612185565b565b6113cb611c03565b73ffffffffffffffffffffffffffffffffffffffff166113e961144f565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613b42565b60405180910390fd5b80600c8190555050565b600c5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611481611c03565b73ffffffffffffffffffffffffffffffffffffffff1661149f61144f565b73ffffffffffffffffffffffffffffffffffffffff16146114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90613b42565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082829050600e546115279190613d31565b1115611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90613c22565b60405180910390fd5b60005b828290508110156116115760006115826010612143565b905061158e6010612151565b600e60008154809291906115a190613f2e565b91905055506115fd8484848181106115e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906115f79190612c51565b82612167565b50808061160990613f2e565b91505061156b565b505050565b60606001805461162590613efc565b80601f016020809104026020016040519081016040528092919081815260200182805461165190613efc565b801561169e5780601f106116735761010080835404028352916020019161169e565b820191906000526020600020905b81548152906001019060200180831161168157829003601f168201915b5050505050905090565b600d5481565b6116c06116b9611c03565b838361224b565b5050565b600b5481565b6116d2611c03565b73ffffffffffffffffffffffffffffffffffffffff166116f061144f565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613b42565b60405180910390fd5b8060098190555050565b61176161175b611c03565b83611e09565b6117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790613be2565b60405180910390fd5b6117ac848484846123b8565b50505050565b60095481565b600a5481565b60075481565b60606117cf82611b97565b61180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180590613b82565b60405180910390fd5b6000611818612414565b905060008151116118385760405180602001604052806000815250611863565b80611842846124a6565b60405160200161185392919061383a565b6040516020818303038152906040525b915050919050565b60085481565b611879611c03565b73ffffffffffffffffffffffffffffffffffffffff1661189761144f565b73ffffffffffffffffffffffffffffffffffffffff16146118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490613b42565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6119b7611c03565b73ffffffffffffffffffffffffffffffffffffffff166119d561144f565b73ffffffffffffffffffffffffffffffffffffffff1614611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290613b42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290613962565b60405180910390fd5b611aa481612185565b50565b611aaf611c03565b73ffffffffffffffffffffffffffffffffffffffff16611acd61144f565b73ffffffffffffffffffffffffffffffffffffffff1614611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a90613b42565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c7e836111ad565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611ccc611196565b15611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613a42565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d50611c03565b604051611d5d919061385e565b60405180910390a1565b611d6f611196565b611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590613902565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611df2611c03565b604051611dff919061385e565b60405180910390a1565b6000611e1482611b97565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90613a22565b60405180910390fd5b6000611e5e836111ad565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ecd57508373ffffffffffffffffffffffffffffffffffffffff16611eb584610a1b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ede5750611edd81856118f7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f07826111ad565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490613b62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc4906139c2565b60405180910390fd5b611fd8838383612653565b611fe3600082611c0b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120339190613e12565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461208a9190613d31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612181828260405180602001604052806000815250612658565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b1906139e2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123ab91906138c5565b60405180910390a3505050565b6123c3848484611ee7565b6123cf848484846126b3565b61240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590613942565b60405180910390fd5b50505050565b6060600f805461242390613efc565b80601f016020809104026020016040519081016040528092919081815260200182805461244f90613efc565b801561249c5780601f106124715761010080835404028352916020019161249c565b820191906000526020600020905b81548152906001019060200180831161247f57829003601f168201915b5050505050905090565b606060008214156124ee576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061264e565b600082905060005b6000821461252057808061250990613f2e565b915050600a826125199190613d87565b91506124f6565b60008167ffffffffffffffff811115612562577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125945781602001600182028036833780820191505090505b5090505b60008514612647576001826125ad9190613e12565b9150600a856125bc9190613f77565b60306125c89190613d31565b60f81b818381518110612604577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126409190613d87565b9450612598565b8093505050505b919050565b505050565b612662838361284a565b61266f60008484846126b3565b6126ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a590613942565b60405180910390fd5b505050565b60006126d48473ffffffffffffffffffffffffffffffffffffffff16612a18565b1561283d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126fd611c03565b8786866040518563ffffffff1660e01b815260040161271f9493929190613879565b602060405180830381600087803b15801561273957600080fd5b505af192505050801561276a57506040513d601f19601f820116820180604052508101906127679190612e8f565b60015b6127ed573d806000811461279a576040519150601f19603f3d011682016040523d82523d6000602084013e61279f565b606091505b506000815114156127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc90613942565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612842565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190613b02565b60405180910390fd5b6128c381611b97565b15612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90613982565b60405180910390fd5b61290f60008383612653565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461295f9190613d31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a3790613efc565b90600052602060002090601f016020900481019282612a595760008555612aa0565b82601f10612a7257805160ff1916838001178555612aa0565b82800160010185558215612aa0579182015b82811115612a9f578251825591602001919060010190612a84565b5b509050612aad9190612ab1565b5090565b5b80821115612aca576000816000905550600101612ab2565b5090565b6000612ae1612adc84613c8e565b613c5d565b905082815260208101848484011115612af957600080fd5b612b04848285613eba565b509392505050565b6000612b1f612b1a84613cbe565b613c5d565b905082815260208101848484011115612b3757600080fd5b612b42848285613eba565b509392505050565b600081359050612b5981614075565b92915050565b60008083601f840112612b7157600080fd5b8235905067ffffffffffffffff811115612b8a57600080fd5b602083019150836020820283011115612ba257600080fd5b9250929050565b600081359050612bb88161408c565b92915050565b600081359050612bcd816140a3565b92915050565b600081519050612be2816140a3565b92915050565b600082601f830112612bf957600080fd5b8135612c09848260208601612ace565b91505092915050565b600082601f830112612c2357600080fd5b8135612c33848260208601612b0c565b91505092915050565b600081359050612c4b816140ba565b92915050565b600060208284031215612c6357600080fd5b6000612c7184828501612b4a565b91505092915050565b60008060408385031215612c8d57600080fd5b6000612c9b85828601612b4a565b9250506020612cac85828601612b4a565b9150509250929050565b600080600060608486031215612ccb57600080fd5b6000612cd986828701612b4a565b9350506020612cea86828701612b4a565b9250506040612cfb86828701612c3c565b9150509250925092565b60008060008060808587031215612d1b57600080fd5b6000612d2987828801612b4a565b9450506020612d3a87828801612b4a565b9350506040612d4b87828801612c3c565b925050606085013567ffffffffffffffff811115612d6857600080fd5b612d7487828801612be8565b91505092959194509250565b60008060408385031215612d9357600080fd5b6000612da185828601612b4a565b9250506020612db285828601612ba9565b9150509250929050565b60008060408385031215612dcf57600080fd5b6000612ddd85828601612b4a565b9250506020612dee85828601612c3c565b9150509250929050565b60008060208385031215612e0b57600080fd5b600083013567ffffffffffffffff811115612e2557600080fd5b612e3185828601612b5f565b92509250509250929050565b600060208284031215612e4f57600080fd5b6000612e5d84828501612ba9565b91505092915050565b600060208284031215612e7857600080fd5b6000612e8684828501612bbe565b91505092915050565b600060208284031215612ea157600080fd5b6000612eaf84828501612bd3565b91505092915050565b600060208284031215612eca57600080fd5b600082013567ffffffffffffffff811115612ee457600080fd5b612ef084828501612c12565b91505092915050565b600060208284031215612f0b57600080fd5b6000612f1984828501612c3c565b91505092915050565b612f2b81613e46565b82525050565b612f3a81613e58565b82525050565b6000612f4b82613cee565b612f558185613d04565b9350612f65818560208601613ec9565b612f6e81614064565b840191505092915050565b6000612f8482613cf9565b612f8e8185613d15565b9350612f9e818560208601613ec9565b612fa781614064565b840191505092915050565b6000612fbd82613cf9565b612fc78185613d26565b9350612fd7818560208601613ec9565b80840191505092915050565b6000612ff0601483613d15565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613030601b83613d15565b91507f4265796f6e64206d6178206e756d626572206f6620746f6b656e7300000000006000830152602082019050919050565b6000613070603283613d15565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006130d6602683613d15565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061313c601c83613d15565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061317c601683613d15565b91507f496e76616c6964207061796d656e7420616d6f756e74000000000000000000006000830152602082019050919050565b60006131bc602483613d15565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613222601983613d15565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613262600b83613d15565b91507f4e756d62657220697320300000000000000000000000000000000000000000006000830152602082019050919050565b60006132a2602c83613d15565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613308601083613d15565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000613348603883613d15565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006133ae601783613d15565b91507f4e6f7420656e6f75676874206672656520746f6b656e730000000000000000006000830152602082019050919050565b60006133ee600e83613d15565b91507f4d696e74206973206c6f636b65640000000000000000000000000000000000006000830152602082019050919050565b600061342e602a83613d15565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613494602983613d15565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134fa602083613d15565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061353a602c83613d15565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006135a0602083613d15565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135e0602983613d15565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613646602f83613d15565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006136ac602183613d15565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613712602083613d15565b91507f4265796f6e64206d6178206e756d626572206f66206672656520746f6b656e736000830152602082019050919050565b6000613752603183613d15565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006137b8600883613d15565b91507f536f6c64206f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b60006137f8601183613d15565b91507f526573657276656420736f6c64206f75740000000000000000000000000000006000830152602082019050919050565b61383481613eb0565b82525050565b60006138468285612fb2565b91506138528284612fb2565b91508190509392505050565b60006020820190506138736000830184612f22565b92915050565b600060808201905061388e6000830187612f22565b61389b6020830186612f22565b6138a8604083018561382b565b81810360608301526138ba8184612f40565b905095945050505050565b60006020820190506138da6000830184612f31565b92915050565b600060208201905081810360008301526138fa8184612f79565b905092915050565b6000602082019050818103600083015261391b81612fe3565b9050919050565b6000602082019050818103600083015261393b81613023565b9050919050565b6000602082019050818103600083015261395b81613063565b9050919050565b6000602082019050818103600083015261397b816130c9565b9050919050565b6000602082019050818103600083015261399b8161312f565b9050919050565b600060208201905081810360008301526139bb8161316f565b9050919050565b600060208201905081810360008301526139db816131af565b9050919050565b600060208201905081810360008301526139fb81613215565b9050919050565b60006020820190508181036000830152613a1b81613255565b9050919050565b60006020820190508181036000830152613a3b81613295565b9050919050565b60006020820190508181036000830152613a5b816132fb565b9050919050565b60006020820190508181036000830152613a7b8161333b565b9050919050565b60006020820190508181036000830152613a9b816133a1565b9050919050565b60006020820190508181036000830152613abb816133e1565b9050919050565b60006020820190508181036000830152613adb81613421565b9050919050565b60006020820190508181036000830152613afb81613487565b9050919050565b60006020820190508181036000830152613b1b816134ed565b9050919050565b60006020820190508181036000830152613b3b8161352d565b9050919050565b60006020820190508181036000830152613b5b81613593565b9050919050565b60006020820190508181036000830152613b7b816135d3565b9050919050565b60006020820190508181036000830152613b9b81613639565b9050919050565b60006020820190508181036000830152613bbb8161369f565b9050919050565b60006020820190508181036000830152613bdb81613705565b9050919050565b60006020820190508181036000830152613bfb81613745565b9050919050565b60006020820190508181036000830152613c1b816137ab565b9050919050565b60006020820190508181036000830152613c3b816137eb565b9050919050565b6000602082019050613c57600083018461382b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613c8457613c83614035565b5b8060405250919050565b600067ffffffffffffffff821115613ca957613ca8614035565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613cd957613cd8614035565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d3c82613eb0565b9150613d4783613eb0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d7c57613d7b613fa8565b5b828201905092915050565b6000613d9282613eb0565b9150613d9d83613eb0565b925082613dad57613dac613fd7565b5b828204905092915050565b6000613dc382613eb0565b9150613dce83613eb0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e0757613e06613fa8565b5b828202905092915050565b6000613e1d82613eb0565b9150613e2883613eb0565b925082821015613e3b57613e3a613fa8565b5b828203905092915050565b6000613e5182613e90565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ee7578082015181840152602081019050613ecc565b83811115613ef6576000848401525b50505050565b60006002820490506001821680613f1457607f821691505b60208210811415613f2857613f27614006565b5b50919050565b6000613f3982613eb0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6c57613f6b613fa8565b5b600182019050919050565b6000613f8282613eb0565b9150613f8d83613eb0565b925082613f9d57613f9c613fd7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61407e81613e46565b811461408957600080fd5b50565b61409581613e58565b81146140a057600080fd5b50565b6140ac81613e64565b81146140b757600080fd5b50565b6140c381613eb0565b81146140ce57600080fd5b5056fea26469706673582212209c50b5df16ae42e754045a79c8540f327d1a3cb1c8c4239e8a40997eb04a61a364736f6c634300080000330000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000f2a4b30000000000000000000000000000000000000000000000000000000000000000076e6f747365742f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80638b55bde711610123578063bd93f493116100ab578063d3e756d31161006f578063d3e756d3146107c4578063e985e9c5146107ed578063f106be4a1461082a578063f2fde38b14610855578063f4a0a5281461087e57610225565b8063bd93f493146106db578063c002d23d14610706578063c152870614610731578063c87b56dd1461075c578063cce2f8d61461079957610225565b806395fd0d9a116100f257806395fd0d9a1461060a578063a22cb46514610635578063a9e58d221461065e578063b574413414610689578063b88d4fde146106b257610225565b80638b55bde7146105605780638da5cb5b1461058b57806394690f6e146105b657806395d89b41146105df57610225565b80632db11544116101b15780636352211e116101755780636352211e1461047b57806368fc68c7146104b857806370a08231146104e3578063715018a6146105205780637e610c051461053757610225565b80632db11544146103cb5780633ccfd60b146103e757806342842e0e146103fe57806355f804b3146104275780635c975abb1461045057610225565b80630ac95ca5116101f85780630ac95ca5146102f85780630b7abf771461032357806316c38b3c1461034e57806318160ddd1461037757806323b872dd146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612e66565b6108a7565b60405161025e91906138c5565b60405180910390f35b34801561027357600080fd5b5061027c610989565b60405161028991906138e0565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ef9565b610a1b565b6040516102c6919061385e565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612dbc565b610aa0565b005b34801561030457600080fd5b5061030d610bb8565b60405161031a9190613c42565b60405180910390f35b34801561032f57600080fd5b50610338610bbe565b6040516103459190613c42565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612e3d565b610be2565b005b34801561038357600080fd5b5061038c610c7d565b6040516103999190613c42565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190612cb6565b610c94565b005b6103e560048036038101906103e09190612ef9565b610cf4565b005b3480156103f357600080fd5b506103fc611014565b005b34801561040a57600080fd5b5061042560048036038101906104209190612cb6565b6110e0565b005b34801561043357600080fd5b5061044e60048036038101906104499190612eb8565b611100565b005b34801561045c57600080fd5b50610465611196565b60405161047291906138c5565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190612ef9565b6111ad565b6040516104af919061385e565b60405180910390f35b3480156104c457600080fd5b506104cd61125f565b6040516104da9190613c42565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190612c51565b611283565b6040516105179190613c42565b60405180910390f35b34801561052c57600080fd5b5061053561133b565b005b34801561054357600080fd5b5061055e60048036038101906105599190612ef9565b6113c3565b005b34801561056c57600080fd5b50610575611449565b6040516105829190613c42565b60405180910390f35b34801561059757600080fd5b506105a061144f565b6040516105ad919061385e565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190612df8565b611479565b005b3480156105eb57600080fd5b506105f4611616565b60405161060191906138e0565b60405180910390f35b34801561061657600080fd5b5061061f6116a8565b60405161062c9190613c42565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612d80565b6116ae565b005b34801561066a57600080fd5b506106736116c4565b6040516106809190613c42565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612ef9565b6116ca565b005b3480156106be57600080fd5b506106d960048036038101906106d49190612d05565b611750565b005b3480156106e757600080fd5b506106f06117b2565b6040516106fd9190613c42565b60405180910390f35b34801561071257600080fd5b5061071b6117b8565b6040516107289190613c42565b60405180910390f35b34801561073d57600080fd5b506107466117be565b6040516107539190613c42565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190612ef9565b6117c4565b60405161079091906138e0565b60405180910390f35b3480156107a557600080fd5b506107ae61186b565b6040516107bb9190613c42565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190612ef9565b611871565b005b3480156107f957600080fd5b50610814600480360381019061080f9190612c7a565b6118f7565b60405161082191906138c5565b60405180910390f35b34801561083657600080fd5b5061083f61198b565b60405161084c9190613c42565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190612c51565b6119af565b005b34801561088a57600080fd5b506108a560048036038101906108a09190612ef9565b611aa7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610982575061098182611b2d565b5b9050919050565b60606000805461099890613efc565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613efc565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b6000610a2682611b97565b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90613b22565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aab826111ad565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390613ba2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3b611c03565b73ffffffffffffffffffffffffffffffffffffffff161480610b6a5750610b6981610b64611c03565b6118f7565b5b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613a62565b60405180910390fd5b610bb38383611c0b565b505050565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000271081565b610bea611c03565b73ffffffffffffffffffffffffffffffffffffffff16610c0861144f565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613b42565b60405180910390fd5b8015610c7157610c6c611cc4565b610c7a565b610c79611d67565b5b50565b6000600e54600d54610c8f9190613d31565b905090565b610ca5610c9f611c03565b82611e09565b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90613be2565b60405180910390fd5b610cef838383611ee7565b505050565b610cfc611196565b15610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613a42565b60405180910390fd5b426009541115610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613aa2565b60405180910390fd5b6001811015610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90613a02565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600d541015610ebc57600b5481610dfc33611283565b610e069190613d31565b1115610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90613bc2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081600d54610e769190613d31565b1115610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613a82565b60405180910390fd5b610fb7565b600c5481610ec933611283565b610ed39190613d31565b1115610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613922565b60405180910390fd5b60085481600d54610f259190613d31565b1115610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90613c02565b60405180910390fd5b3481600a54610f759190613db8565b1115610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad906139a2565b60405180910390fd5b5b60005b81811015611010576000610fce6010612143565b9050610fda6010612151565b600d6000815480929190610fed90613f2e565b9190505550610ffc3382612167565b50808061100890613f2e565b915050610fba565b5050565b61101c611c03565b73ffffffffffffffffffffffffffffffffffffffff1661103a61144f565b73ffffffffffffffffffffffffffffffffffffffff1614611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790613b42565b60405180910390fd5b61109861144f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110dd573d6000803e3d6000fd5b50565b6110fb83838360405180602001604052806000815250611750565b505050565b611108611c03565b73ffffffffffffffffffffffffffffffffffffffff1661112661144f565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613b42565b60405180910390fd5b80600f9080519060200190611192929190612a2b565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613ae2565b60405180910390fd5b80915050919050565b7f00000000000000000000000000000000000000000000000000000000000001f481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613ac2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611343611c03565b73ffffffffffffffffffffffffffffffffffffffff1661136161144f565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613b42565b60405180910390fd5b6113c16000612185565b565b6113cb611c03565b73ffffffffffffffffffffffffffffffffffffffff166113e961144f565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613b42565b60405180910390fd5b80600c8190555050565b600c5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611481611c03565b73ffffffffffffffffffffffffffffffffffffffff1661149f61144f565b73ffffffffffffffffffffffffffffffffffffffff16146114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90613b42565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000001f482829050600e546115279190613d31565b1115611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90613c22565b60405180910390fd5b60005b828290508110156116115760006115826010612143565b905061158e6010612151565b600e60008154809291906115a190613f2e565b91905055506115fd8484848181106115e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906115f79190612c51565b82612167565b50808061160990613f2e565b91505061156b565b505050565b60606001805461162590613efc565b80601f016020809104026020016040519081016040528092919081815260200182805461165190613efc565b801561169e5780601f106116735761010080835404028352916020019161169e565b820191906000526020600020905b81548152906001019060200180831161168157829003601f168201915b5050505050905090565b600d5481565b6116c06116b9611c03565b838361224b565b5050565b600b5481565b6116d2611c03565b73ffffffffffffffffffffffffffffffffffffffff166116f061144f565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613b42565b60405180910390fd5b8060098190555050565b61176161175b611c03565b83611e09565b6117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790613be2565b60405180910390fd5b6117ac848484846123b8565b50505050565b60095481565b600a5481565b60075481565b60606117cf82611b97565b61180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180590613b82565b60405180910390fd5b6000611818612414565b905060008151116118385760405180602001604052806000815250611863565b80611842846124a6565b60405160200161185392919061383a565b6040516020818303038152906040525b915050919050565b60085481565b611879611c03565b73ffffffffffffffffffffffffffffffffffffffff1661189761144f565b73ffffffffffffffffffffffffffffffffffffffff16146118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490613b42565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6119b7611c03565b73ffffffffffffffffffffffffffffffffffffffff166119d561144f565b73ffffffffffffffffffffffffffffffffffffffff1614611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290613b42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290613962565b60405180910390fd5b611aa481612185565b50565b611aaf611c03565b73ffffffffffffffffffffffffffffffffffffffff16611acd61144f565b73ffffffffffffffffffffffffffffffffffffffff1614611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a90613b42565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c7e836111ad565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611ccc611196565b15611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613a42565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d50611c03565b604051611d5d919061385e565b60405180910390a1565b611d6f611196565b611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590613902565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611df2611c03565b604051611dff919061385e565b60405180910390a1565b6000611e1482611b97565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90613a22565b60405180910390fd5b6000611e5e836111ad565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ecd57508373ffffffffffffffffffffffffffffffffffffffff16611eb584610a1b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ede5750611edd81856118f7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f07826111ad565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490613b62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc4906139c2565b60405180910390fd5b611fd8838383612653565b611fe3600082611c0b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120339190613e12565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461208a9190613d31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612181828260405180602001604052806000815250612658565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b1906139e2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123ab91906138c5565b60405180910390a3505050565b6123c3848484611ee7565b6123cf848484846126b3565b61240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590613942565b60405180910390fd5b50505050565b6060600f805461242390613efc565b80601f016020809104026020016040519081016040528092919081815260200182805461244f90613efc565b801561249c5780601f106124715761010080835404028352916020019161249c565b820191906000526020600020905b81548152906001019060200180831161247f57829003601f168201915b5050505050905090565b606060008214156124ee576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061264e565b600082905060005b6000821461252057808061250990613f2e565b915050600a826125199190613d87565b91506124f6565b60008167ffffffffffffffff811115612562577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125945781602001600182028036833780820191505090505b5090505b60008514612647576001826125ad9190613e12565b9150600a856125bc9190613f77565b60306125c89190613d31565b60f81b818381518110612604577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126409190613d87565b9450612598565b8093505050505b919050565b505050565b612662838361284a565b61266f60008484846126b3565b6126ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a590613942565b60405180910390fd5b505050565b60006126d48473ffffffffffffffffffffffffffffffffffffffff16612a18565b1561283d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126fd611c03565b8786866040518563ffffffff1660e01b815260040161271f9493929190613879565b602060405180830381600087803b15801561273957600080fd5b505af192505050801561276a57506040513d601f19601f820116820180604052508101906127679190612e8f565b60015b6127ed573d806000811461279a576040519150601f19603f3d011682016040523d82523d6000602084013e61279f565b606091505b506000815114156127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc90613942565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612842565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190613b02565b60405180910390fd5b6128c381611b97565b15612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90613982565b60405180910390fd5b61290f60008383612653565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461295f9190613d31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a3790613efc565b90600052602060002090601f016020900481019282612a595760008555612aa0565b82601f10612a7257805160ff1916838001178555612aa0565b82800160010185558215612aa0579182015b82811115612a9f578251825591602001919060010190612a84565b5b509050612aad9190612ab1565b5090565b5b80821115612aca576000816000905550600101612ab2565b5090565b6000612ae1612adc84613c8e565b613c5d565b905082815260208101848484011115612af957600080fd5b612b04848285613eba565b509392505050565b6000612b1f612b1a84613cbe565b613c5d565b905082815260208101848484011115612b3757600080fd5b612b42848285613eba565b509392505050565b600081359050612b5981614075565b92915050565b60008083601f840112612b7157600080fd5b8235905067ffffffffffffffff811115612b8a57600080fd5b602083019150836020820283011115612ba257600080fd5b9250929050565b600081359050612bb88161408c565b92915050565b600081359050612bcd816140a3565b92915050565b600081519050612be2816140a3565b92915050565b600082601f830112612bf957600080fd5b8135612c09848260208601612ace565b91505092915050565b600082601f830112612c2357600080fd5b8135612c33848260208601612b0c565b91505092915050565b600081359050612c4b816140ba565b92915050565b600060208284031215612c6357600080fd5b6000612c7184828501612b4a565b91505092915050565b60008060408385031215612c8d57600080fd5b6000612c9b85828601612b4a565b9250506020612cac85828601612b4a565b9150509250929050565b600080600060608486031215612ccb57600080fd5b6000612cd986828701612b4a565b9350506020612cea86828701612b4a565b9250506040612cfb86828701612c3c565b9150509250925092565b60008060008060808587031215612d1b57600080fd5b6000612d2987828801612b4a565b9450506020612d3a87828801612b4a565b9350506040612d4b87828801612c3c565b925050606085013567ffffffffffffffff811115612d6857600080fd5b612d7487828801612be8565b91505092959194509250565b60008060408385031215612d9357600080fd5b6000612da185828601612b4a565b9250506020612db285828601612ba9565b9150509250929050565b60008060408385031215612dcf57600080fd5b6000612ddd85828601612b4a565b9250506020612dee85828601612c3c565b9150509250929050565b60008060208385031215612e0b57600080fd5b600083013567ffffffffffffffff811115612e2557600080fd5b612e3185828601612b5f565b92509250509250929050565b600060208284031215612e4f57600080fd5b6000612e5d84828501612ba9565b91505092915050565b600060208284031215612e7857600080fd5b6000612e8684828501612bbe565b91505092915050565b600060208284031215612ea157600080fd5b6000612eaf84828501612bd3565b91505092915050565b600060208284031215612eca57600080fd5b600082013567ffffffffffffffff811115612ee457600080fd5b612ef084828501612c12565b91505092915050565b600060208284031215612f0b57600080fd5b6000612f1984828501612c3c565b91505092915050565b612f2b81613e46565b82525050565b612f3a81613e58565b82525050565b6000612f4b82613cee565b612f558185613d04565b9350612f65818560208601613ec9565b612f6e81614064565b840191505092915050565b6000612f8482613cf9565b612f8e8185613d15565b9350612f9e818560208601613ec9565b612fa781614064565b840191505092915050565b6000612fbd82613cf9565b612fc78185613d26565b9350612fd7818560208601613ec9565b80840191505092915050565b6000612ff0601483613d15565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613030601b83613d15565b91507f4265796f6e64206d6178206e756d626572206f6620746f6b656e7300000000006000830152602082019050919050565b6000613070603283613d15565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006130d6602683613d15565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061313c601c83613d15565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061317c601683613d15565b91507f496e76616c6964207061796d656e7420616d6f756e74000000000000000000006000830152602082019050919050565b60006131bc602483613d15565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613222601983613d15565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613262600b83613d15565b91507f4e756d62657220697320300000000000000000000000000000000000000000006000830152602082019050919050565b60006132a2602c83613d15565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613308601083613d15565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000613348603883613d15565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006133ae601783613d15565b91507f4e6f7420656e6f75676874206672656520746f6b656e730000000000000000006000830152602082019050919050565b60006133ee600e83613d15565b91507f4d696e74206973206c6f636b65640000000000000000000000000000000000006000830152602082019050919050565b600061342e602a83613d15565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613494602983613d15565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134fa602083613d15565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061353a602c83613d15565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006135a0602083613d15565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135e0602983613d15565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613646602f83613d15565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006136ac602183613d15565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613712602083613d15565b91507f4265796f6e64206d6178206e756d626572206f66206672656520746f6b656e736000830152602082019050919050565b6000613752603183613d15565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006137b8600883613d15565b91507f536f6c64206f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b60006137f8601183613d15565b91507f526573657276656420736f6c64206f75740000000000000000000000000000006000830152602082019050919050565b61383481613eb0565b82525050565b60006138468285612fb2565b91506138528284612fb2565b91508190509392505050565b60006020820190506138736000830184612f22565b92915050565b600060808201905061388e6000830187612f22565b61389b6020830186612f22565b6138a8604083018561382b565b81810360608301526138ba8184612f40565b905095945050505050565b60006020820190506138da6000830184612f31565b92915050565b600060208201905081810360008301526138fa8184612f79565b905092915050565b6000602082019050818103600083015261391b81612fe3565b9050919050565b6000602082019050818103600083015261393b81613023565b9050919050565b6000602082019050818103600083015261395b81613063565b9050919050565b6000602082019050818103600083015261397b816130c9565b9050919050565b6000602082019050818103600083015261399b8161312f565b9050919050565b600060208201905081810360008301526139bb8161316f565b9050919050565b600060208201905081810360008301526139db816131af565b9050919050565b600060208201905081810360008301526139fb81613215565b9050919050565b60006020820190508181036000830152613a1b81613255565b9050919050565b60006020820190508181036000830152613a3b81613295565b9050919050565b60006020820190508181036000830152613a5b816132fb565b9050919050565b60006020820190508181036000830152613a7b8161333b565b9050919050565b60006020820190508181036000830152613a9b816133a1565b9050919050565b60006020820190508181036000830152613abb816133e1565b9050919050565b60006020820190508181036000830152613adb81613421565b9050919050565b60006020820190508181036000830152613afb81613487565b9050919050565b60006020820190508181036000830152613b1b816134ed565b9050919050565b60006020820190508181036000830152613b3b8161352d565b9050919050565b60006020820190508181036000830152613b5b81613593565b9050919050565b60006020820190508181036000830152613b7b816135d3565b9050919050565b60006020820190508181036000830152613b9b81613639565b9050919050565b60006020820190508181036000830152613bbb8161369f565b9050919050565b60006020820190508181036000830152613bdb81613705565b9050919050565b60006020820190508181036000830152613bfb81613745565b9050919050565b60006020820190508181036000830152613c1b816137ab565b9050919050565b60006020820190508181036000830152613c3b816137eb565b9050919050565b6000602082019050613c57600083018461382b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613c8457613c83614035565b5b8060405250919050565b600067ffffffffffffffff821115613ca957613ca8614035565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613cd957613cd8614035565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d3c82613eb0565b9150613d4783613eb0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d7c57613d7b613fa8565b5b828201905092915050565b6000613d9282613eb0565b9150613d9d83613eb0565b925082613dad57613dac613fd7565b5b828204905092915050565b6000613dc382613eb0565b9150613dce83613eb0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e0757613e06613fa8565b5b828202905092915050565b6000613e1d82613eb0565b9150613e2883613eb0565b925082821015613e3b57613e3a613fa8565b5b828203905092915050565b6000613e5182613e90565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ee7578082015181840152602081019050613ecc565b83811115613ef6576000848401525b50505050565b60006002820490506001821680613f1457607f821691505b60208210811415613f2857613f27614006565b5b50919050565b6000613f3982613eb0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6c57613f6b613fa8565b5b600182019050919050565b6000613f8282613eb0565b9150613f8d83613eb0565b925082613f9d57613f9c613fd7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61407e81613e46565b811461408957600080fd5b50565b61409581613e58565b81146140a057600080fd5b50565b6140ac81613e64565b81146140b757600080fd5b50565b6140c381613eb0565b81146140ce57600080fd5b5056fea26469706673582212209c50b5df16ae42e754045a79c8540f327d1a3cb1c8c4239e8a40997eb04a61a364736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000f2a4b30000000000000000000000000000000000000000000000000000000000000000076e6f747365742f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : total_tokens (uint256): 10000
Arg [1] : free_mint_tokens (uint256): 0
Arg [2] : reserved_tokens (uint256): 500
Arg [3] : base_uri (string): notset/
Arg [4] : launch_date (uint256): 4070880000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 00000000000000000000000000000000000000000000000000000000f2a4b300
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 6e6f747365742f00000000000000000000000000000000000000000000000000


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.