ETH Price: $3,470.12 (+5.96%)
Gas: 7 Gwei

Token

Pepeliens (PEPELIENS)
 

Overview

Max Total Supply

5,401 PEPELIENS

Holders

625

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zodian.eth
Balance
1 PEPELIENS
0xfb157f7ae07ffe0e75cbdcd247590e5961a16c64
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:
Pepeliens

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 12 : Pepeliens.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


contract Pepeliens is Ownable, ERC721 {
    using ECDSA for bytes32;

    uint256 constant public PEPES_AMOUNT = 5555 + 1;
    uint256 public wlPrice = 0.004 ether;
    uint256 public publicPrice = 0.007 ether;
    uint256 public publicMintDate = 1661274000; // 2022-08-23 17:00:00
    uint256 public wlMintDate = 1661272200; // 2022-08-23 16:30:00
    uint256 public maxPerWallet = 20;
    uint256 public teamReserved = 155;
    uint256 private minted = 1;
    string public baseTokenURI = "";
    string private _contractURI = "";

    address private _wlSignerAddress;

    mapping(address => bool) public freeTaken;


    constructor(address wlSignerAddress_)
        ERC721("Pepeliens", "PEPELIENS")
    {
        _wlSignerAddress = wlSignerAddress_;
    }

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId)));
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function totalSupply() public view returns (uint256) {
        return minted - 1;
    }

    modifier enoughTokens(uint256 amount) {
        require(
            minted + amount - 1 < PEPES_AMOUNT - teamReserved,
            "no more tokens"
        );
        _;
    }
    modifier publicOnly() {
        require(block.timestamp > publicMintDate, "public mint not started");
        _;
    }

    modifier wlOnly(bytes calldata signature) {
        require(block.timestamp > wlMintDate, "whitelist mint not started");
        require(_wlSignerAddress == keccak256(
            abi.encodePacked("\x19Ethereum Signed Message:\n32",
            bytes32(uint256(uint160(msg.sender)))
        )).recover(signature), "signer address mismatch");
        _;
    }

    function publicMint(uint256 amount) external payable publicOnly enoughTokens(amount) {
        require(amount > 0, "too less");
        require(balanceOf(msg.sender) + amount < maxPerWallet, "too many");
        uint256 freeAmount = freeTaken[msg.sender] ? 0 : 1;
        require(msg.value == (amount - freeAmount) * publicPrice, "wrong price");
        _mintMany(msg.sender, amount);
        freeTaken[msg.sender] = true;
    }

    function publicFreeMint() external publicOnly enoughTokens(1) {
        uint256 _totalSupply = minted;
        require(balanceOf(msg.sender) < maxPerWallet, "too many");
        require(!freeTaken[msg.sender], "free already minted");
        _mint(msg.sender, _totalSupply);
        _totalSupply++;
        minted = _totalSupply;
        freeTaken[msg.sender] = true;
    }

    function wlMint(uint256 amount, bytes calldata signature) external payable wlOnly(signature) enoughTokens(amount) {
        require(amount > 0, "too less");
        require(balanceOf(msg.sender) + amount < maxPerWallet, "too many");
        uint256 freeAmount = freeTaken[msg.sender] ? 0 : 1;
        require(msg.value == (amount - freeAmount) * wlPrice, "wrong price");
        _mintMany(msg.sender, amount);
        freeTaken[msg.sender] = true;
    }

    function wlFreeMint(bytes calldata signature) external wlOnly(signature) enoughTokens(1) {
        uint256 _totalSupply = minted;
        require(balanceOf(msg.sender) < maxPerWallet, "too many");
        require(!freeTaken[msg.sender], "free already minted");
        _mint(msg.sender, _totalSupply);
        _totalSupply++;
        minted = _totalSupply;
        freeTaken[msg.sender] = true;
    }

    function setReserved(uint256 _teamReserved) public onlyOwner {
        teamReserved = _teamReserved;
    }

    function mintReserved(address to, uint256 amount) public onlyOwner {
        uint256 tr = teamReserved;
        require(minted + amount - 1 < PEPES_AMOUNT, "no more tokens");
        require(tr + 1 > amount, "no more reserved tokens");
        _mintMany(to, amount);
        teamReserved = tr - amount;
    }

    function setMintDate(uint256 _wlMintDate, uint256 _publicMintDate) public onlyOwner {
        wlMintDate = _wlMintDate;
        publicMintDate = _publicMintDate;
    }

    function setPrices(uint256 _wlPrice, uint256 _publicPrice) public onlyOwner {
        wlPrice = _wlPrice;
        publicPrice = _publicPrice;
    }

    function setSigner(address wlSignerAddress_) public onlyOwner {
        _wlSignerAddress = wlSignerAddress_;
    }

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setContractURI(string memory contractURI_) public onlyOwner {
        _contractURI = contractURI_;
    }

    function _mintMany(address to, uint256 amount) internal virtual {
        uint256 _totalSupply = minted;
        for (uint256 i; i < amount; i++) {
            _mint(to, _totalSupply);
            _totalSupply++;
        }
        minted = _totalSupply;
    }

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

File 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

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

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

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 12 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wlSignerAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PEPES_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeTaken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","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":"publicFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMintDate","type":"uint256"},{"internalType":"uint256","name":"_publicMintDate","type":"uint256"}],"name":"setMintDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlPrice","type":"uint256"},{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamReserved","type":"uint256"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wlSignerAddress_","type":"address"}],"name":"setSigner","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":[],"name":"teamReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"wlFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMintDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052660e35fa931a00006007556618de76816d800060085563630507906009556363050088600a556014600b55609b600c556001600d5560405180602001604052806000815250600e908162000059919062000506565b5060405180602001604052806000815250600f90816200007a919062000506565b503480156200008857600080fd5b506040516200537e3803806200537e8339818101604052810190620000ae919062000657565b6040518060400160405280600981526020017f506570656c69656e7300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f504550454c49454e5300000000000000000000000000000000000000000000008152506200014c62000137620001ba640100000000026401000000009004565b620001c2640100000000026401000000009004565b81600190816200015d919062000506565b5080600290816200016f919062000506565b50505080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000689565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030857607f821691505b6020821081036200031e576200031d620002c0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b60008160020a8302905092915050565b6000600883026200038b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000349565b62000397868362000349565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003e4620003de620003d884620003af565b620003b9565b620003af565b9050919050565b6000819050919050565b6200040083620003c3565b620004186200040f82620003eb565b84845462000359565b825550505050565b600090565b6200042f62000420565b6200043c818484620003f5565b505050565b5b8181101562000464576200045860008262000425565b60018101905062000442565b5050565b601f821115620004b3576200047d8162000324565b620004888462000339565b8101602085101562000498578190505b620004b0620004a78562000339565b83018262000441565b50505b505050565b60008160020a8304905092915050565b6000620004db60001984600802620004b8565b1980831691505092915050565b6000620004f68383620004c8565b9150826002028217905092915050565b620005118262000286565b67ffffffffffffffff8111156200052d576200052c62000291565b5b620005398254620002ef565b6200054682828562000468565b600060209050601f8311600181146200057e576000841562000569578287015190505b620005758582620004e8565b865550620005e5565b601f1984166200058e8662000324565b60005b82811015620005b85784890151825560018201915060208501945060208101905062000591565b86831015620005d85784890151620005d4601f891682620004c8565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200061f82620005f2565b9050919050565b620006318162000612565b81146200063d57600080fd5b50565b600081519050620006518162000626565b92915050565b60006020828403121562000670576200066f620005ed565b5b6000620006808482850162000640565b91505092915050565b614ce580620006996000396000f3fe608060405260043610610258576000357c0100000000000000000000000000000000000000000000000000000000900480636aec6a371161014b578063a22cb465116100c8578063d547cfb71161008c578063d547cfb714610822578063e8a3d4851461084d578063e985e9c514610878578063f2fde38b146108b5578063fd28f42d146108de57610258565b8063a22cb4651461073d578063a945bf8014610766578063b88d4fde14610791578063c7f8d01a146107ba578063c87b56dd146107e557610258565b80637de55fe11161010f5780637de55fe11461067e5780638673a24a146106a75780638da5cb5b146106be578063938e3d7b146106e957806395d89b411461071257610258565b80636aec6a37146105ad5780636c19e783146105d657806370a08231146105ff578063715018a61461063c57806375d808201461065357610258565b80632db11544116101d957806342842e0e1161019d57806342842e0e146104d7578063453c23101461050057806351cff8d91461052b5780636352211e1461055457806366f08e9b1461059157610258565b80632db115441461042557806330176e131461044157806336f5b9a31461046a57806337f4022d146104955780633ccfd60b146104c057610258565b8063095ea7b311610220578063095ea7b31461035657806318160ddd1461037f57806321dacd19146103aa57806323b872dd146103d35780632d6e71b6146103fc57610258565b806301ffc9a71461025d57806305fefda71461029a57806306fdde03146102c3578063074a130d146102ee578063081812fc14610319575b600080fd5b34801561026957600080fd5b50610284600480360381019061027f91906130d7565b61091b565b604051610291919061311f565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613170565b6109fd565b005b3480156102cf57600080fd5b506102d8610a17565b6040516102e59190613240565b60405180910390f35b3480156102fa57600080fd5b50610303610aa9565b6040516103109190613271565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b919061328c565b610aaf565b60405161034d91906132fa565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613341565b610af5565b005b34801561038b57600080fd5b50610394610c0c565b6040516103a19190613271565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc91906133e6565b610c22565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613433565b610f58565b005b34801561040857600080fd5b50610423600480360381019061041e919061328c565b610fb8565b005b61043f600480360381019061043a919061328c565b610fca565b005b34801561044d57600080fd5b50610468600480360381019061046391906135b6565b611236565b005b34801561047657600080fd5b5061047f611251565b60405161048c9190613271565b60405180910390f35b3480156104a157600080fd5b506104aa611257565b6040516104b79190613271565b60405180910390f35b3480156104cc57600080fd5b506104d561125d565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190613433565b6112cc565b005b34801561050c57600080fd5b506105156112ec565b6040516105229190613271565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906135ff565b6112f2565b005b34801561056057600080fd5b5061057b6004803603810190610576919061328c565b61135b565b60405161058891906132fa565b60405180910390f35b6105ab60048036038101906105a6919061362c565b61140c565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613170565b6117a3565b005b3480156105e257600080fd5b506105fd60048036038101906105f891906135ff565b6117bd565b005b34801561060b57600080fd5b50610626600480360381019061062191906135ff565b611809565b6040516106339190613271565b60405180910390f35b34801561064857600080fd5b506106516118c0565b005b34801561065f57600080fd5b506106686118d4565b6040516106759190613271565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613341565b6118da565b005b3480156106b357600080fd5b506106bc6119b5565b005b3480156106ca57600080fd5b506106d3611bc0565b6040516106e091906132fa565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b91906135b6565b611be9565b005b34801561071e57600080fd5b50610727611c04565b6040516107349190613240565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906136b8565b611c96565b005b34801561077257600080fd5b5061077b611cac565b6040516107889190613271565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613799565b611cb2565b005b3480156107c657600080fd5b506107cf611d14565b6040516107dc9190613271565b60405180910390f35b3480156107f157600080fd5b5061080c6004803603810190610807919061328c565b611d1a565b6040516108199190613240565b60405180910390f35b34801561082e57600080fd5b50610837611d4e565b6040516108449190613240565b60405180910390f35b34801561085957600080fd5b50610862611ddc565b60405161086f9190613240565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a919061381c565b611e6e565b6040516108ac919061311f565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d791906135ff565b611f02565b005b3480156108ea57600080fd5b50610905600480360381019061090091906135ff565b611f85565b604051610912919061311f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f657506109f582611fa5565b5b9050919050565b610a0561200f565b81600781905550806008819055505050565b606060018054610a269061388b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a529061388b565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b60095481565b6000610aba8261208d565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b008261135b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b679061392e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8f6120d8565b73ffffffffffffffffffffffffffffffffffffffff161480610bbe5750610bbd81610bb86120d8565b611e6e565b5b610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf4906139c0565b60405180910390fd5b610c0783836120e0565b505050565b60006001600d54610c1d9190613a0f565b905090565b8181600a544211610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90613a8f565b60405180910390fd5b610cfe82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050503373ffffffffffffffffffffffffffffffffffffffff16600102604051602001610cda9190613b31565b6040516020818303038152906040528051906020012061219990919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613ba3565b60405180910390fd5b6001600c546115b4610d9f9190613a0f565b600182600d54610daf9190613bc3565b610db99190613a0f565b10610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613c43565b60405180910390fd5b6000600d549050600b54610e0c33611809565b10610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390613caf565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090613d1b565b60405180910390fd5b610ee333826121c0565b8080610eee90613d3b565b91505080600d819055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b610f69610f636120d8565b82612399565b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90613df5565b60405180910390fd5b610fb383838361242e565b505050565b610fc061200f565b80600c8190555050565b600954421161100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590613e61565b60405180910390fd5b80600c546115b461101f9190613a0f565b600182600d5461102f9190613bc3565b6110399190613a0f565b10611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613c43565b60405180910390fd5b600082116110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613ecd565b60405180910390fd5b600b54826110c933611809565b6110d39190613bc3565b10611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613caf565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661116d576001611170565b60005b60ff16905060085481846111849190613a0f565b61118e9190613eed565b34146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613f93565b60405180910390fd5b6111d93384612694565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b61123e61200f565b80600e908161124d9190614165565b5050565b600c5481565b600a5481565b61126561200f565b61126d611bc0565b73ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050501580156112c9573d6000803e3d6000fd5b50565b6112e783838360405180602001604052806000815250611cb2565b505050565b600b5481565b6112fa61200f565b8073ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611357573d6000803e3d6000fd5b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614283565b60405180910390fd5b80915050919050565b8181600a544211611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613a8f565b60405180910390fd5b6114e882828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050503373ffffffffffffffffffffffffffffffffffffffff166001026040516020016114c49190613b31565b6040516020818303038152906040528051906020012061219990919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613ba3565b60405180910390fd5b84600c546115b46115889190613a0f565b600182600d546115989190613bc3565b6115a29190613a0f565b106115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613c43565b60405180910390fd5b60008611611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613ecd565b60405180910390fd5b600b548661163233611809565b61163c9190613bc3565b1061167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390613caf565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116d65760016116d9565b60005b60ff16905060075481886116ed9190613a0f565b6116f79190613eed565b3414611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90613f93565b60405180910390fd5b6117423388612694565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050505050565b6117ab61200f565b81600a81905550806009819055505050565b6117c561200f565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090614315565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c861200f565b6118d260006126de565b565b6115b481565b6118e261200f565b6000600c5490506115b4600183600d546118fc9190613bc3565b6119069190613a0f565b10611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90613c43565b60405180910390fd5b816001826119549190613bc3565b11611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614381565b60405180910390fd5b61199e8383612694565b81816119aa9190613a0f565b600c81905550505050565b60095442116119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090613e61565b60405180910390fd5b6001600c546115b4611a0b9190613a0f565b600182600d54611a1b9190613bc3565b611a259190613a0f565b10611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613c43565b60405180910390fd5b6000600d549050600b54611a7833611809565b10611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613caf565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90613d1b565b60405180910390fd5b611b4f33826121c0565b8080611b5a90613d3b565b91505080600d819055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bf161200f565b80600f9081611c009190614165565b5050565b606060028054611c139061388b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3f9061388b565b8015611c8c5780601f10611c6157610100808354040283529160200191611c8c565b820191906000526020600020905b815481529060010190602001808311611c6f57829003601f168201915b5050505050905090565b611ca8611ca16120d8565b83836127a2565b5050565b60085481565b611cc3611cbd6120d8565b83612399565b611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990613df5565b60405180910390fd5b611d0e8484848461290e565b50505050565b60075481565b6060600e611d278361296a565b604051602001611d38929190614455565b6040516020818303038152906040529050919050565b600e8054611d5b9061388b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d879061388b565b8015611dd45780601f10611da957610100808354040283529160200191611dd4565b820191906000526020600020905b815481529060010190602001808311611db757829003601f168201915b505050505081565b6060600f8054611deb9061388b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e179061388b565b8015611e645780601f10611e3957610100808354040283529160200191611e64565b820191906000526020600020905b815481529060010190602001808311611e4757829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f0a61200f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f70906144eb565b60405180910390fd5b611f82816126de565b50565b60116020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120176120d8565b73ffffffffffffffffffffffffffffffffffffffff16612035611bc0565b73ffffffffffffffffffffffffffffffffffffffff161461208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290614557565b60405180910390fd5b565b61209681612ae9565b6120d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cc90614283565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121538361135b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008060006121a88585612b55565b915091506121b581612ba6565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361222f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612226906145c3565b60405180910390fd5b61223881612ae9565b15612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f9061462f565b60405180910390fd5b61228460008383612d72565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d49190613bc3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461239560008383612d77565b5050565b6000806123a58361135b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123e757506123e68185611e6e565b5b8061242557508373ffffffffffffffffffffffffffffffffffffffff1661240d84610aaf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661244e8261135b565b73ffffffffffffffffffffffffffffffffffffffff16146124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b906146c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a90614753565b60405180910390fd5b61251e838383612d72565b6125296000826120e0565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125799190613a0f565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125d09190613bc3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461268f838383612d77565b505050565b6000600d54905060005b828110156126d1576126b084836121c0565b81806126bb90613d3b565b92505080806126c990613d3b565b91505061269e565b5080600d81905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612807906147bf565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612901919061311f565b60405180910390a3505050565b61291984848461242e565b61292584848484612d7c565b612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90614851565b60405180910390fd5b50505050565b6060600082036129b1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae4565b600082905060005b600082146129e35780806129cc90613d3b565b915050600a826129dc91906148a0565b91506129b9565b60008167ffffffffffffffff8111156129ff576129fe61348b565b5b6040519080825280601f01601f191660200182016040528015612a315781602001600182028036833780820191505090505b5090505b60008514612add57600182612a4a9190613a0f565b9150600a85612a5991906148d1565b6030612a659190613bc3565b7f010000000000000000000000000000000000000000000000000000000000000002818381518110612a9a57612a99614902565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad691906148a0565b9450612a35565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000806041835103612b965760008060006020860151925060408601519150606086015160001a9050612b8a87828585612f3b565b94509450505050612b9f565b60006002915091505b9250929050565b60006004811115612bba57612bb9614931565b5b816004811115612bcd57612bcc614931565b5b0315612d6f5760016004811115612be757612be6614931565b5b816004811115612bfa57612bf9614931565b5b03612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c31906149ac565b60405180910390fd5b60026004811115612c4e57612c4d614931565b5b816004811115612c6157612c60614931565b5b03612ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9890614a18565b60405180910390fd5b60036004811115612cb557612cb4614931565b5b816004811115612cc857612cc7614931565b5b03612d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cff90614aaa565b60405180910390fd5b600480811115612d1b57612d1a614931565b5b816004811115612d2e57612d2d614931565b5b03612d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6590614b3c565b60405180910390fd5b5b50565b505050565b505050565b6000612d9d8473ffffffffffffffffffffffffffffffffffffffff16613048565b15612f2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc66120d8565b8786866040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401612e049493929190614bb1565b6020604051808303816000875af1925050508015612e4057506040513d601f19601f82011682018060405250810190612e3d9190614c12565b60015b612ec2573d8060008114612e70576040519150601f19603f3d011682016040523d82523d6000602084013e612e75565b606091505b506000815103612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190614851565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f33565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083600190041115612f7757600060039150915061303f565b601b8560ff1614158015612f8f5750601c8560ff1614155b15612fa157600060049150915061303f565b600060018787878760405160008152602001604052604051612fc69493929190614c6a565b6020604051602081039080840390855afa158015612fe8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036130365760006001925092505061303f565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130b48161307f565b81146130bf57600080fd5b50565b6000813590506130d1816130ab565b92915050565b6000602082840312156130ed576130ec613075565b5b60006130fb848285016130c2565b91505092915050565b60008115159050919050565b61311981613104565b82525050565b60006020820190506131346000830184613110565b92915050565b6000819050919050565b61314d8161313a565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b6000806040838503121561318757613186613075565b5b60006131958582860161315b565b92505060206131a68582860161315b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131ea5780820151818401526020810190506131cf565b60008484015250505050565b6000601f19601f8301169050919050565b6000613212826131b0565b61321c81856131bb565b935061322c8185602086016131cc565b613235816131f6565b840191505092915050565b6000602082019050818103600083015261325a8184613207565b905092915050565b61326b8161313a565b82525050565b60006020820190506132866000830184613262565b92915050565b6000602082840312156132a2576132a1613075565b5b60006132b08482850161315b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132e4826132b9565b9050919050565b6132f4816132d9565b82525050565b600060208201905061330f60008301846132eb565b92915050565b61331e816132d9565b811461332957600080fd5b50565b60008135905061333b81613315565b92915050565b6000806040838503121561335857613357613075565b5b60006133668582860161332c565b92505060206133778582860161315b565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126133a6576133a5613381565b5b8235905067ffffffffffffffff8111156133c3576133c2613386565b5b6020830191508360018202830111156133df576133de61338b565b5b9250929050565b600080602083850312156133fd576133fc613075565b5b600083013567ffffffffffffffff81111561341b5761341a61307a565b5b61342785828601613390565b92509250509250929050565b60008060006060848603121561344c5761344b613075565b5b600061345a8682870161332c565b935050602061346b8682870161332c565b925050604061347c8682870161315b565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134c3826131f6565b810181811067ffffffffffffffff821117156134e2576134e161348b565b5b80604052505050565b60006134f561306b565b905061350182826134ba565b919050565b600067ffffffffffffffff8211156135215761352061348b565b5b61352a826131f6565b9050602081019050919050565b82818337600083830152505050565b600061355961355484613506565b6134eb565b90508281526020810184848401111561357557613574613486565b5b613580848285613537565b509392505050565b600082601f83011261359d5761359c613381565b5b81356135ad848260208601613546565b91505092915050565b6000602082840312156135cc576135cb613075565b5b600082013567ffffffffffffffff8111156135ea576135e961307a565b5b6135f684828501613588565b91505092915050565b60006020828403121561361557613614613075565b5b60006136238482850161332c565b91505092915050565b60008060006040848603121561364557613644613075565b5b60006136538682870161315b565b935050602084013567ffffffffffffffff8111156136745761367361307a565b5b61368086828701613390565b92509250509250925092565b61369581613104565b81146136a057600080fd5b50565b6000813590506136b28161368c565b92915050565b600080604083850312156136cf576136ce613075565b5b60006136dd8582860161332c565b92505060206136ee858286016136a3565b9150509250929050565b600067ffffffffffffffff8211156137135761371261348b565b5b61371c826131f6565b9050602081019050919050565b600061373c613737846136f8565b6134eb565b90508281526020810184848401111561375857613757613486565b5b613763848285613537565b509392505050565b600082601f8301126137805761377f613381565b5b8135613790848260208601613729565b91505092915050565b600080600080608085870312156137b3576137b2613075565b5b60006137c18782880161332c565b94505060206137d28782880161332c565b93505060406137e38782880161315b565b925050606085013567ffffffffffffffff8111156138045761380361307a565b5b6138108782880161376b565b91505092959194509250565b6000806040838503121561383357613832613075565b5b60006138418582860161332c565b92505060206138528582860161332c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138a357607f821691505b6020821081036138b6576138b561385c565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006139186021836131bb565b9150613923826138bc565b604082019050919050565b600060208201905081810360008301526139478161390b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006139aa603e836131bb565b91506139b58261394e565b604082019050919050565b600060208201905081810360008301526139d98161399d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a1a8261313a565b9150613a258361313a565b9250828203905081811115613a3d57613a3c6139e0565b5b92915050565b7f77686974656c697374206d696e74206e6f742073746172746564000000000000600082015250565b6000613a79601a836131bb565b9150613a8482613a43565b602082019050919050565b60006020820190508181036000830152613aa881613a6c565b9050919050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613af0601c83613aaf565b9150613afb82613aba565b601c82019050919050565b6000819050919050565b6000819050919050565b613b2b613b2682613b06565b613b10565b82525050565b6000613b3c82613ae3565b9150613b488284613b1a565b60208201915081905092915050565b7f7369676e65722061646472657373206d69736d61746368000000000000000000600082015250565b6000613b8d6017836131bb565b9150613b9882613b57565b602082019050919050565b60006020820190508181036000830152613bbc81613b80565b9050919050565b6000613bce8261313a565b9150613bd98361313a565b9250828201905080821115613bf157613bf06139e0565b5b92915050565b7f6e6f206d6f726520746f6b656e73000000000000000000000000000000000000600082015250565b6000613c2d600e836131bb565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b7f746f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b6000613c996008836131bb565b9150613ca482613c63565b602082019050919050565b60006020820190508181036000830152613cc881613c8c565b9050919050565b7f6672656520616c7265616479206d696e74656400000000000000000000000000600082015250565b6000613d056013836131bb565b9150613d1082613ccf565b602082019050919050565b60006020820190508181036000830152613d3481613cf8565b9050919050565b6000613d468261313a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d7857613d776139e0565b5b600182019050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613ddf602e836131bb565b9150613dea82613d83565b604082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f7075626c6963206d696e74206e6f742073746172746564000000000000000000600082015250565b6000613e4b6017836131bb565b9150613e5682613e15565b602082019050919050565b60006020820190508181036000830152613e7a81613e3e565b9050919050565b7f746f6f206c657373000000000000000000000000000000000000000000000000600082015250565b6000613eb76008836131bb565b9150613ec282613e81565b602082019050919050565b60006020820190508181036000830152613ee681613eaa565b9050919050565b6000613ef88261313a565b9150613f038361313a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f3c57613f3b6139e0565b5b828202905092915050565b7f77726f6e67207072696365000000000000000000000000000000000000000000600082015250565b6000613f7d600b836131bb565b9150613f8882613f47565b602082019050919050565b60006020820190508181036000830152613fac81613f70565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b60008160020a8302905092915050565b6000600883026140187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fd8565b6140228683613fd8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061405f61405a6140558461313a565b61403a565b61313a565b9050919050565b6000819050919050565b61407983614044565b61408d61408582614066565b848454613fe8565b825550505050565b600090565b6140a2614095565b6140ad818484614070565b505050565b5b818110156140d1576140c660008261409a565b6001810190506140b3565b5050565b601f821115614116576140e781613fb3565b6140f084613fc8565b810160208510156140ff578190505b61411361410b85613fc8565b8301826140b2565b50505b505050565b60008160020a8304905092915050565b600061413c6000198460080261411b565b1980831691505092915050565b6000614155838361412b565b9150826002028217905092915050565b61416e826131b0565b67ffffffffffffffff8111156141875761418661348b565b5b614191825461388b565b61419c8282856140d5565b600060209050601f8311600181146141cf57600084156141bd578287015190505b6141c78582614149565b86555061422f565b601f1984166141dd86613fb3565b60005b82811015614205578489015182556001820191506020850194506020810190506141e0565b86831015614222578489015161421e601f89168261412b565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061426d6018836131bb565b915061427882614237565b602082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006142ff6029836131bb565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b7f6e6f206d6f726520726573657276656420746f6b656e73000000000000000000600082015250565b600061436b6017836131bb565b915061437682614335565b602082019050919050565b6000602082019050818103600083015261439a8161435e565b9050919050565b600081546143ae8161388b565b6143b88186613aaf565b945060018216600081146143d357600181146143e85761441b565b60ff198316865281151582028601935061441b565b6143f185613fb3565b60005b83811015614413578154818901526001820191506020810190506143f4565b838801955050505b50505092915050565b600061442f826131b0565b6144398185613aaf565b93506144498185602086016131cc565b80840191505092915050565b600061446182856143a1565b915061446d8284614424565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144d56026836131bb565b91506144e082614479565b604082019050919050565b60006020820190508181036000830152614504816144c8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145416020836131bb565b915061454c8261450b565b602082019050919050565b6000602082019050818103600083015261457081614534565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006145ad6020836131bb565b91506145b882614577565b602082019050919050565b600060208201905081810360008301526145dc816145a0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614619601c836131bb565b9150614624826145e3565b602082019050919050565b600060208201905081810360008301526146488161460c565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006146ab6025836131bb565b91506146b68261464f565b604082019050919050565b600060208201905081810360008301526146da8161469e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061473d6024836131bb565b9150614748826146e1565b604082019050919050565b6000602082019050818103600083015261476c81614730565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006147a96019836131bb565b91506147b482614773565b602082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061483b6032836131bb565b9150614846826147df565b604082019050919050565b6000602082019050818103600083015261486a8161482e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148ab8261313a565b91506148b68361313a565b9250826148c6576148c5614871565b5b828204905092915050565b60006148dc8261313a565b91506148e78361313a565b9250826148f7576148f6614871565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006149966018836131bb565b91506149a182614960565b602082019050919050565b600060208201905081810360008301526149c581614989565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614a02601f836131bb565b9150614a0d826149cc565b602082019050919050565b60006020820190508181036000830152614a31816149f5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a946022836131bb565b9150614a9f82614a38565b604082019050919050565b60006020820190508181036000830152614ac381614a87565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b266022836131bb565b9150614b3182614aca565b604082019050919050565b60006020820190508181036000830152614b5581614b19565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614b8382614b5c565b614b8d8185614b67565b9350614b9d8185602086016131cc565b614ba6816131f6565b840191505092915050565b6000608082019050614bc660008301876132eb565b614bd360208301866132eb565b614be06040830185613262565b8181036060830152614bf28184614b78565b905095945050505050565b600081519050614c0c816130ab565b92915050565b600060208284031215614c2857614c27613075565b5b6000614c3684828501614bfd565b91505092915050565b614c4881613b06565b82525050565b600060ff82169050919050565b614c6481614c4e565b82525050565b6000608082019050614c7f6000830187614c3f565b614c8c6020830186614c5b565b614c996040830185614c3f565b614ca66060830184614c3f565b9594505050505056fea2646970667358221220e8367786cfa709183c8016615aece0ee7e74ce961a6eed0fcb8a5d397c910ec064736f6c63430008100033000000000000000000000000c8d3dfca8fedb4c30246e4ae7bc6962b23703a8e

Deployed Bytecode

0x608060405260043610610258576000357c0100000000000000000000000000000000000000000000000000000000900480636aec6a371161014b578063a22cb465116100c8578063d547cfb71161008c578063d547cfb714610822578063e8a3d4851461084d578063e985e9c514610878578063f2fde38b146108b5578063fd28f42d146108de57610258565b8063a22cb4651461073d578063a945bf8014610766578063b88d4fde14610791578063c7f8d01a146107ba578063c87b56dd146107e557610258565b80637de55fe11161010f5780637de55fe11461067e5780638673a24a146106a75780638da5cb5b146106be578063938e3d7b146106e957806395d89b411461071257610258565b80636aec6a37146105ad5780636c19e783146105d657806370a08231146105ff578063715018a61461063c57806375d808201461065357610258565b80632db11544116101d957806342842e0e1161019d57806342842e0e146104d7578063453c23101461050057806351cff8d91461052b5780636352211e1461055457806366f08e9b1461059157610258565b80632db115441461042557806330176e131461044157806336f5b9a31461046a57806337f4022d146104955780633ccfd60b146104c057610258565b8063095ea7b311610220578063095ea7b31461035657806318160ddd1461037f57806321dacd19146103aa57806323b872dd146103d35780632d6e71b6146103fc57610258565b806301ffc9a71461025d57806305fefda71461029a57806306fdde03146102c3578063074a130d146102ee578063081812fc14610319575b600080fd5b34801561026957600080fd5b50610284600480360381019061027f91906130d7565b61091b565b604051610291919061311f565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613170565b6109fd565b005b3480156102cf57600080fd5b506102d8610a17565b6040516102e59190613240565b60405180910390f35b3480156102fa57600080fd5b50610303610aa9565b6040516103109190613271565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b919061328c565b610aaf565b60405161034d91906132fa565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613341565b610af5565b005b34801561038b57600080fd5b50610394610c0c565b6040516103a19190613271565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc91906133e6565b610c22565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613433565b610f58565b005b34801561040857600080fd5b50610423600480360381019061041e919061328c565b610fb8565b005b61043f600480360381019061043a919061328c565b610fca565b005b34801561044d57600080fd5b50610468600480360381019061046391906135b6565b611236565b005b34801561047657600080fd5b5061047f611251565b60405161048c9190613271565b60405180910390f35b3480156104a157600080fd5b506104aa611257565b6040516104b79190613271565b60405180910390f35b3480156104cc57600080fd5b506104d561125d565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190613433565b6112cc565b005b34801561050c57600080fd5b506105156112ec565b6040516105229190613271565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906135ff565b6112f2565b005b34801561056057600080fd5b5061057b6004803603810190610576919061328c565b61135b565b60405161058891906132fa565b60405180910390f35b6105ab60048036038101906105a6919061362c565b61140c565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613170565b6117a3565b005b3480156105e257600080fd5b506105fd60048036038101906105f891906135ff565b6117bd565b005b34801561060b57600080fd5b50610626600480360381019061062191906135ff565b611809565b6040516106339190613271565b60405180910390f35b34801561064857600080fd5b506106516118c0565b005b34801561065f57600080fd5b506106686118d4565b6040516106759190613271565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613341565b6118da565b005b3480156106b357600080fd5b506106bc6119b5565b005b3480156106ca57600080fd5b506106d3611bc0565b6040516106e091906132fa565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b91906135b6565b611be9565b005b34801561071e57600080fd5b50610727611c04565b6040516107349190613240565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906136b8565b611c96565b005b34801561077257600080fd5b5061077b611cac565b6040516107889190613271565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613799565b611cb2565b005b3480156107c657600080fd5b506107cf611d14565b6040516107dc9190613271565b60405180910390f35b3480156107f157600080fd5b5061080c6004803603810190610807919061328c565b611d1a565b6040516108199190613240565b60405180910390f35b34801561082e57600080fd5b50610837611d4e565b6040516108449190613240565b60405180910390f35b34801561085957600080fd5b50610862611ddc565b60405161086f9190613240565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a919061381c565b611e6e565b6040516108ac919061311f565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d791906135ff565b611f02565b005b3480156108ea57600080fd5b50610905600480360381019061090091906135ff565b611f85565b604051610912919061311f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f657506109f582611fa5565b5b9050919050565b610a0561200f565b81600781905550806008819055505050565b606060018054610a269061388b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a529061388b565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b60095481565b6000610aba8261208d565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b008261135b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b679061392e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8f6120d8565b73ffffffffffffffffffffffffffffffffffffffff161480610bbe5750610bbd81610bb86120d8565b611e6e565b5b610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf4906139c0565b60405180910390fd5b610c0783836120e0565b505050565b60006001600d54610c1d9190613a0f565b905090565b8181600a544211610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90613a8f565b60405180910390fd5b610cfe82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050503373ffffffffffffffffffffffffffffffffffffffff16600102604051602001610cda9190613b31565b6040516020818303038152906040528051906020012061219990919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613ba3565b60405180910390fd5b6001600c546115b4610d9f9190613a0f565b600182600d54610daf9190613bc3565b610db99190613a0f565b10610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613c43565b60405180910390fd5b6000600d549050600b54610e0c33611809565b10610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390613caf565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090613d1b565b60405180910390fd5b610ee333826121c0565b8080610eee90613d3b565b91505080600d819055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b610f69610f636120d8565b82612399565b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90613df5565b60405180910390fd5b610fb383838361242e565b505050565b610fc061200f565b80600c8190555050565b600954421161100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590613e61565b60405180910390fd5b80600c546115b461101f9190613a0f565b600182600d5461102f9190613bc3565b6110399190613a0f565b10611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613c43565b60405180910390fd5b600082116110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613ecd565b60405180910390fd5b600b54826110c933611809565b6110d39190613bc3565b10611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613caf565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661116d576001611170565b60005b60ff16905060085481846111849190613a0f565b61118e9190613eed565b34146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613f93565b60405180910390fd5b6111d93384612694565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b61123e61200f565b80600e908161124d9190614165565b5050565b600c5481565b600a5481565b61126561200f565b61126d611bc0565b73ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050501580156112c9573d6000803e3d6000fd5b50565b6112e783838360405180602001604052806000815250611cb2565b505050565b600b5481565b6112fa61200f565b8073ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611357573d6000803e3d6000fd5b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614283565b60405180910390fd5b80915050919050565b8181600a544211611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613a8f565b60405180910390fd5b6114e882828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050503373ffffffffffffffffffffffffffffffffffffffff166001026040516020016114c49190613b31565b6040516020818303038152906040528051906020012061219990919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613ba3565b60405180910390fd5b84600c546115b46115889190613a0f565b600182600d546115989190613bc3565b6115a29190613a0f565b106115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613c43565b60405180910390fd5b60008611611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613ecd565b60405180910390fd5b600b548661163233611809565b61163c9190613bc3565b1061167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390613caf565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116d65760016116d9565b60005b60ff16905060075481886116ed9190613a0f565b6116f79190613eed565b3414611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90613f93565b60405180910390fd5b6117423388612694565b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050505050565b6117ab61200f565b81600a81905550806009819055505050565b6117c561200f565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090614315565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c861200f565b6118d260006126de565b565b6115b481565b6118e261200f565b6000600c5490506115b4600183600d546118fc9190613bc3565b6119069190613a0f565b10611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90613c43565b60405180910390fd5b816001826119549190613bc3565b11611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614381565b60405180910390fd5b61199e8383612694565b81816119aa9190613a0f565b600c81905550505050565b60095442116119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090613e61565b60405180910390fd5b6001600c546115b4611a0b9190613a0f565b600182600d54611a1b9190613bc3565b611a259190613a0f565b10611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613c43565b60405180910390fd5b6000600d549050600b54611a7833611809565b10611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613caf565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90613d1b565b60405180910390fd5b611b4f33826121c0565b8080611b5a90613d3b565b91505080600d819055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bf161200f565b80600f9081611c009190614165565b5050565b606060028054611c139061388b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3f9061388b565b8015611c8c5780601f10611c6157610100808354040283529160200191611c8c565b820191906000526020600020905b815481529060010190602001808311611c6f57829003601f168201915b5050505050905090565b611ca8611ca16120d8565b83836127a2565b5050565b60085481565b611cc3611cbd6120d8565b83612399565b611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990613df5565b60405180910390fd5b611d0e8484848461290e565b50505050565b60075481565b6060600e611d278361296a565b604051602001611d38929190614455565b6040516020818303038152906040529050919050565b600e8054611d5b9061388b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d879061388b565b8015611dd45780601f10611da957610100808354040283529160200191611dd4565b820191906000526020600020905b815481529060010190602001808311611db757829003601f168201915b505050505081565b6060600f8054611deb9061388b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e179061388b565b8015611e645780601f10611e3957610100808354040283529160200191611e64565b820191906000526020600020905b815481529060010190602001808311611e4757829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f0a61200f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f70906144eb565b60405180910390fd5b611f82816126de565b50565b60116020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120176120d8565b73ffffffffffffffffffffffffffffffffffffffff16612035611bc0565b73ffffffffffffffffffffffffffffffffffffffff161461208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290614557565b60405180910390fd5b565b61209681612ae9565b6120d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cc90614283565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121538361135b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008060006121a88585612b55565b915091506121b581612ba6565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361222f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612226906145c3565b60405180910390fd5b61223881612ae9565b15612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f9061462f565b60405180910390fd5b61228460008383612d72565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d49190613bc3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461239560008383612d77565b5050565b6000806123a58361135b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123e757506123e68185611e6e565b5b8061242557508373ffffffffffffffffffffffffffffffffffffffff1661240d84610aaf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661244e8261135b565b73ffffffffffffffffffffffffffffffffffffffff16146124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b906146c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a90614753565b60405180910390fd5b61251e838383612d72565b6125296000826120e0565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125799190613a0f565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125d09190613bc3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461268f838383612d77565b505050565b6000600d54905060005b828110156126d1576126b084836121c0565b81806126bb90613d3b565b92505080806126c990613d3b565b91505061269e565b5080600d81905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612807906147bf565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612901919061311f565b60405180910390a3505050565b61291984848461242e565b61292584848484612d7c565b612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90614851565b60405180910390fd5b50505050565b6060600082036129b1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae4565b600082905060005b600082146129e35780806129cc90613d3b565b915050600a826129dc91906148a0565b91506129b9565b60008167ffffffffffffffff8111156129ff576129fe61348b565b5b6040519080825280601f01601f191660200182016040528015612a315781602001600182028036833780820191505090505b5090505b60008514612add57600182612a4a9190613a0f565b9150600a85612a5991906148d1565b6030612a659190613bc3565b7f010000000000000000000000000000000000000000000000000000000000000002818381518110612a9a57612a99614902565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad691906148a0565b9450612a35565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000806041835103612b965760008060006020860151925060408601519150606086015160001a9050612b8a87828585612f3b565b94509450505050612b9f565b60006002915091505b9250929050565b60006004811115612bba57612bb9614931565b5b816004811115612bcd57612bcc614931565b5b0315612d6f5760016004811115612be757612be6614931565b5b816004811115612bfa57612bf9614931565b5b03612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c31906149ac565b60405180910390fd5b60026004811115612c4e57612c4d614931565b5b816004811115612c6157612c60614931565b5b03612ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9890614a18565b60405180910390fd5b60036004811115612cb557612cb4614931565b5b816004811115612cc857612cc7614931565b5b03612d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cff90614aaa565b60405180910390fd5b600480811115612d1b57612d1a614931565b5b816004811115612d2e57612d2d614931565b5b03612d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6590614b3c565b60405180910390fd5b5b50565b505050565b505050565b6000612d9d8473ffffffffffffffffffffffffffffffffffffffff16613048565b15612f2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc66120d8565b8786866040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401612e049493929190614bb1565b6020604051808303816000875af1925050508015612e4057506040513d601f19601f82011682018060405250810190612e3d9190614c12565b60015b612ec2573d8060008114612e70576040519150601f19603f3d011682016040523d82523d6000602084013e612e75565b606091505b506000815103612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190614851565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f33565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083600190041115612f7757600060039150915061303f565b601b8560ff1614158015612f8f5750601c8560ff1614155b15612fa157600060049150915061303f565b600060018787878760405160008152602001604052604051612fc69493929190614c6a565b6020604051602081039080840390855afa158015612fe8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036130365760006001925092505061303f565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130b48161307f565b81146130bf57600080fd5b50565b6000813590506130d1816130ab565b92915050565b6000602082840312156130ed576130ec613075565b5b60006130fb848285016130c2565b91505092915050565b60008115159050919050565b61311981613104565b82525050565b60006020820190506131346000830184613110565b92915050565b6000819050919050565b61314d8161313a565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b6000806040838503121561318757613186613075565b5b60006131958582860161315b565b92505060206131a68582860161315b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131ea5780820151818401526020810190506131cf565b60008484015250505050565b6000601f19601f8301169050919050565b6000613212826131b0565b61321c81856131bb565b935061322c8185602086016131cc565b613235816131f6565b840191505092915050565b6000602082019050818103600083015261325a8184613207565b905092915050565b61326b8161313a565b82525050565b60006020820190506132866000830184613262565b92915050565b6000602082840312156132a2576132a1613075565b5b60006132b08482850161315b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132e4826132b9565b9050919050565b6132f4816132d9565b82525050565b600060208201905061330f60008301846132eb565b92915050565b61331e816132d9565b811461332957600080fd5b50565b60008135905061333b81613315565b92915050565b6000806040838503121561335857613357613075565b5b60006133668582860161332c565b92505060206133778582860161315b565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126133a6576133a5613381565b5b8235905067ffffffffffffffff8111156133c3576133c2613386565b5b6020830191508360018202830111156133df576133de61338b565b5b9250929050565b600080602083850312156133fd576133fc613075565b5b600083013567ffffffffffffffff81111561341b5761341a61307a565b5b61342785828601613390565b92509250509250929050565b60008060006060848603121561344c5761344b613075565b5b600061345a8682870161332c565b935050602061346b8682870161332c565b925050604061347c8682870161315b565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134c3826131f6565b810181811067ffffffffffffffff821117156134e2576134e161348b565b5b80604052505050565b60006134f561306b565b905061350182826134ba565b919050565b600067ffffffffffffffff8211156135215761352061348b565b5b61352a826131f6565b9050602081019050919050565b82818337600083830152505050565b600061355961355484613506565b6134eb565b90508281526020810184848401111561357557613574613486565b5b613580848285613537565b509392505050565b600082601f83011261359d5761359c613381565b5b81356135ad848260208601613546565b91505092915050565b6000602082840312156135cc576135cb613075565b5b600082013567ffffffffffffffff8111156135ea576135e961307a565b5b6135f684828501613588565b91505092915050565b60006020828403121561361557613614613075565b5b60006136238482850161332c565b91505092915050565b60008060006040848603121561364557613644613075565b5b60006136538682870161315b565b935050602084013567ffffffffffffffff8111156136745761367361307a565b5b61368086828701613390565b92509250509250925092565b61369581613104565b81146136a057600080fd5b50565b6000813590506136b28161368c565b92915050565b600080604083850312156136cf576136ce613075565b5b60006136dd8582860161332c565b92505060206136ee858286016136a3565b9150509250929050565b600067ffffffffffffffff8211156137135761371261348b565b5b61371c826131f6565b9050602081019050919050565b600061373c613737846136f8565b6134eb565b90508281526020810184848401111561375857613757613486565b5b613763848285613537565b509392505050565b600082601f8301126137805761377f613381565b5b8135613790848260208601613729565b91505092915050565b600080600080608085870312156137b3576137b2613075565b5b60006137c18782880161332c565b94505060206137d28782880161332c565b93505060406137e38782880161315b565b925050606085013567ffffffffffffffff8111156138045761380361307a565b5b6138108782880161376b565b91505092959194509250565b6000806040838503121561383357613832613075565b5b60006138418582860161332c565b92505060206138528582860161332c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138a357607f821691505b6020821081036138b6576138b561385c565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006139186021836131bb565b9150613923826138bc565b604082019050919050565b600060208201905081810360008301526139478161390b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006139aa603e836131bb565b91506139b58261394e565b604082019050919050565b600060208201905081810360008301526139d98161399d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a1a8261313a565b9150613a258361313a565b9250828203905081811115613a3d57613a3c6139e0565b5b92915050565b7f77686974656c697374206d696e74206e6f742073746172746564000000000000600082015250565b6000613a79601a836131bb565b9150613a8482613a43565b602082019050919050565b60006020820190508181036000830152613aa881613a6c565b9050919050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613af0601c83613aaf565b9150613afb82613aba565b601c82019050919050565b6000819050919050565b6000819050919050565b613b2b613b2682613b06565b613b10565b82525050565b6000613b3c82613ae3565b9150613b488284613b1a565b60208201915081905092915050565b7f7369676e65722061646472657373206d69736d61746368000000000000000000600082015250565b6000613b8d6017836131bb565b9150613b9882613b57565b602082019050919050565b60006020820190508181036000830152613bbc81613b80565b9050919050565b6000613bce8261313a565b9150613bd98361313a565b9250828201905080821115613bf157613bf06139e0565b5b92915050565b7f6e6f206d6f726520746f6b656e73000000000000000000000000000000000000600082015250565b6000613c2d600e836131bb565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b7f746f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b6000613c996008836131bb565b9150613ca482613c63565b602082019050919050565b60006020820190508181036000830152613cc881613c8c565b9050919050565b7f6672656520616c7265616479206d696e74656400000000000000000000000000600082015250565b6000613d056013836131bb565b9150613d1082613ccf565b602082019050919050565b60006020820190508181036000830152613d3481613cf8565b9050919050565b6000613d468261313a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d7857613d776139e0565b5b600182019050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613ddf602e836131bb565b9150613dea82613d83565b604082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f7075626c6963206d696e74206e6f742073746172746564000000000000000000600082015250565b6000613e4b6017836131bb565b9150613e5682613e15565b602082019050919050565b60006020820190508181036000830152613e7a81613e3e565b9050919050565b7f746f6f206c657373000000000000000000000000000000000000000000000000600082015250565b6000613eb76008836131bb565b9150613ec282613e81565b602082019050919050565b60006020820190508181036000830152613ee681613eaa565b9050919050565b6000613ef88261313a565b9150613f038361313a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f3c57613f3b6139e0565b5b828202905092915050565b7f77726f6e67207072696365000000000000000000000000000000000000000000600082015250565b6000613f7d600b836131bb565b9150613f8882613f47565b602082019050919050565b60006020820190508181036000830152613fac81613f70565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b60008160020a8302905092915050565b6000600883026140187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fd8565b6140228683613fd8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061405f61405a6140558461313a565b61403a565b61313a565b9050919050565b6000819050919050565b61407983614044565b61408d61408582614066565b848454613fe8565b825550505050565b600090565b6140a2614095565b6140ad818484614070565b505050565b5b818110156140d1576140c660008261409a565b6001810190506140b3565b5050565b601f821115614116576140e781613fb3565b6140f084613fc8565b810160208510156140ff578190505b61411361410b85613fc8565b8301826140b2565b50505b505050565b60008160020a8304905092915050565b600061413c6000198460080261411b565b1980831691505092915050565b6000614155838361412b565b9150826002028217905092915050565b61416e826131b0565b67ffffffffffffffff8111156141875761418661348b565b5b614191825461388b565b61419c8282856140d5565b600060209050601f8311600181146141cf57600084156141bd578287015190505b6141c78582614149565b86555061422f565b601f1984166141dd86613fb3565b60005b82811015614205578489015182556001820191506020850194506020810190506141e0565b86831015614222578489015161421e601f89168261412b565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061426d6018836131bb565b915061427882614237565b602082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006142ff6029836131bb565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b7f6e6f206d6f726520726573657276656420746f6b656e73000000000000000000600082015250565b600061436b6017836131bb565b915061437682614335565b602082019050919050565b6000602082019050818103600083015261439a8161435e565b9050919050565b600081546143ae8161388b565b6143b88186613aaf565b945060018216600081146143d357600181146143e85761441b565b60ff198316865281151582028601935061441b565b6143f185613fb3565b60005b83811015614413578154818901526001820191506020810190506143f4565b838801955050505b50505092915050565b600061442f826131b0565b6144398185613aaf565b93506144498185602086016131cc565b80840191505092915050565b600061446182856143a1565b915061446d8284614424565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144d56026836131bb565b91506144e082614479565b604082019050919050565b60006020820190508181036000830152614504816144c8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145416020836131bb565b915061454c8261450b565b602082019050919050565b6000602082019050818103600083015261457081614534565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006145ad6020836131bb565b91506145b882614577565b602082019050919050565b600060208201905081810360008301526145dc816145a0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614619601c836131bb565b9150614624826145e3565b602082019050919050565b600060208201905081810360008301526146488161460c565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006146ab6025836131bb565b91506146b68261464f565b604082019050919050565b600060208201905081810360008301526146da8161469e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061473d6024836131bb565b9150614748826146e1565b604082019050919050565b6000602082019050818103600083015261476c81614730565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006147a96019836131bb565b91506147b482614773565b602082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061483b6032836131bb565b9150614846826147df565b604082019050919050565b6000602082019050818103600083015261486a8161482e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148ab8261313a565b91506148b68361313a565b9250826148c6576148c5614871565b5b828204905092915050565b60006148dc8261313a565b91506148e78361313a565b9250826148f7576148f6614871565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006149966018836131bb565b91506149a182614960565b602082019050919050565b600060208201905081810360008301526149c581614989565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614a02601f836131bb565b9150614a0d826149cc565b602082019050919050565b60006020820190508181036000830152614a31816149f5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a946022836131bb565b9150614a9f82614a38565b604082019050919050565b60006020820190508181036000830152614ac381614a87565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b266022836131bb565b9150614b3182614aca565b604082019050919050565b60006020820190508181036000830152614b5581614b19565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614b8382614b5c565b614b8d8185614b67565b9350614b9d8185602086016131cc565b614ba6816131f6565b840191505092915050565b6000608082019050614bc660008301876132eb565b614bd360208301866132eb565b614be06040830185613262565b8181036060830152614bf28184614b78565b905095945050505050565b600081519050614c0c816130ab565b92915050565b600060208284031215614c2857614c27613075565b5b6000614c3684828501614bfd565b91505092915050565b614c4881613b06565b82525050565b600060ff82169050919050565b614c6481614c4e565b82525050565b6000608082019050614c7f6000830187614c3f565b614c8c6020830186614c5b565b614c996040830185614c3f565b614ca66060830184614c3f565b9594505050505056fea2646970667358221220e8367786cfa709183c8016615aece0ee7e74ce961a6eed0fcb8a5d397c910ec064736f6c63430008100033

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

000000000000000000000000c8d3dfca8fedb4c30246e4ae7bc6962b23703a8e

-----Decoded View---------------
Arg [0] : wlSignerAddress_ (address): 0xc8D3DfcA8Fedb4C30246E4AE7Bc6962b23703a8e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c8d3dfca8fedb4c30246e4ae7bc6962b23703a8e


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.