ETH Price: $3,259.45 (-0.74%)
Gas: 2 Gwei

Token

EurekaRabbit (Rabbit)
 

Overview

Max Total Supply

1,135 Rabbit

Holders

480

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Rabbit
0xaf4dc81887d903ceeabdab606877430383762a08
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:
EurekaRabbit

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1 runs

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

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

/**
    code    |	 meaning
    400	    |    Invalid params
    404	    |    TokenId nonexistent
    101	    |    Contract has been locked and URI can't be changed
    102	    |    Not authorized
    103	    |    Already generate done
    104	    |    Time is illegal
 */

contract EurekaRabbit is ERC721, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    // tokenId counter
    using Counters for Counters.Counter;
    Counters.Counter    private _tokenIds;
    uint    public  totalSupply;

    uint constant private totalCount = 3261;
    uint private alreadyPopCount;
    bool public contractLocked = false;
    address mintvialAddress; // Approved mintvial contract
    address gotoMoonAddress; // Approved go moon contract
    string public baseUri;
    uint private lastSalt;
    uint private oddSalt;
    uint private evenSalt;

    uint[totalCount] public pool;

    mapping (uint256 => uint256) public realIdMap;
    mapping (uint256 => uint) public luckyCardStatus;
    mapping (uint256 => uint) public holdTime;
    mapping (address => bool) public minter;
    address private LCSigner;

    constructor(string memory _baseUri) ERC721("EurekaRabbit", "Rabbit") {
        baseUri = _baseUri; // Initial base URI
        lastSalt = uint256(keccak256(abi.encodePacked(msg.sender, lastSalt, block.coinbase)));
    }
    // Change the mintvial address contract
    function setMintvialAddress(address newAddress) external onlyOwner {
        require(newAddress != address(0), "400");
        mintvialAddress = newAddress;
    }
    function setGoMoonAddress(address newAddress) external onlyOwner {
        require(newAddress != address(0), "400");
        gotoMoonAddress = newAddress;
    }
    function setLCSignerAddress(address newAddress) external onlyOwner {
        require(newAddress != address(0), "400");
        LCSigner = newAddress;
    }
    function setBaseUri(string memory newUri) external onlyOwner {
        require(!contractLocked, "101");
        baseUri = newUri;
    }
    function setMinter(address _minter, bool yea) external onlyOwner {
        minter[_minter] = yea;
    }
    function lockContract() external onlyOwner {
        contractLocked = true;
    }

    // Only ERC-1155 can do this
    function mintTransfer(address to) external returns(uint256) {
        require(msg.sender == mintvialAddress, "102");
        _tokenIds.increment();
        uint256 tokenId = _tokenIds.current();
        uint realId = generateRandomId(to);
        realIdMap[tokenId] = realId;
        // The top 78 open lucky card first
        if (realId >= 3184) luckyCardStatus[tokenId] = getDaysFrom1970();
        totalSupply++;
        _safeMint(to, tokenId);
        return tokenId;
    }

    // Only the future contract can do this
    // If executed, the NFT is upgraded to a higher level
    function goMoon(uint tokenId) external {
        require(msg.sender == gotoMoonAddress, "102");
        totalSupply--;
        _burn(tokenId);
    }

    /** OVERRIDES */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "404");
        uint realId = realIdMap[tokenId];
        realId += (luckyCardValue(tokenId) * totalCount);
        return string(abi.encodePacked(baseUri, realId.toString()));
    }

    event UnLock(uint indexed tokenId, uint theDay);
    // It can be triggered by community activities, completing tasks or other activities etc
    function unlock(uint tokenId) external {
        require(minter[msg.sender], "102");
        uint theDay = getDaysFrom1970();
        luckyCardStatus[tokenId] = theDay;
        emit UnLock(tokenId, theDay);
    }

    // You can also choose to unlock yourself if certain missions are completed
    function unlockBySelf(uint tokenId, string calldata salt, bytes memory token, uint validDay) external {
        require(_recover(_hash(salt, msg.sender, tokenId, validDay), token) == LCSigner, "400");
        uint theDay = getDaysFrom1970();
        require(theDay == validDay, "104");
        luckyCardStatus[tokenId] = theDay;
        emit UnLock(tokenId, theDay);
    }

    /*******************************************************the random*********************************************************/
    function generateRandomId(address source) private returns(uint randomId) {
        require(alreadyPopCount < totalCount, "103");
        uint rand = uint256(
            keccak256(abi.encodePacked(source, TimeUtil.currentTime(), block.difficulty, block.number, lastSalt, alreadyPopCount)));
        randomId = getIndex(rand) + 1;
    }

    // Get the index from the pool
    function getIndex(uint rand) private returns (uint) {
        uint lastCount = totalCount - alreadyPopCount;
        uint index = rand % lastCount;
        uint target = pool[index];
        uint pointIndex = target > 0 ? target : index;
        target = pool[--lastCount];
        pool[index] = target > 0 ? target : lastCount;
        alreadyPopCount++;
        return pointIndex;
    }

    /******************************************************* Tarot *********************************************************/
    event ActiveluckyCard(address sender, address from, address to, uint indexed tokenId);
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        uint tempLastSalt = lastSalt;
        if (address(0) != from && address(0) != to) {
            if (luckyCardStatus[tokenId] == 0) {
                uint rand = uint256(keccak256(abi.encodePacked(TimeUtil.currentTime(), block.difficulty, block.number, tempLastSalt)));
                if (rand % 100 >= 90) {
                    // Congratulations! You will soon open luckyCard if the amount is reasonable
                    emit ActiveluckyCard(msg.sender, from, to, tokenId);
                }
            }
            // We will use the last owner to add salt
            tempLastSalt = lastSalt = uint256(keccak256(abi.encodePacked(from, to, tempLastSalt, block.coinbase, block.difficulty, block.number)));
        }

        if (getDaysFrom1970() % 2 == 0) {
            oddSalt = uint256(keccak256(abi.encodePacked(tokenId, oddSalt, tempLastSalt)));
        } else {
            evenSalt = uint256(keccak256(abi.encodePacked(tokenId, evenSalt, tempLastSalt)));
        }
        holdTime[tokenId] = TimeUtil.currentTime();
    }

    // Query if the address has a winning tokens
    function getWinnerIdWithLuckyNum(address addr, uint luckyNum) external view returns (uint[] memory tokenIds, uint winnerCount) {
        if (balanceOf(addr) == 0) return (tokenIds, 0);
        uint[] memory luckyIds = getWinnerTokenIds(luckyNum);
        if (luckyIds.length == 0) return (tokenIds, 0);
        winnerCount = luckyIds.length;
        tokenIds = new uint[](winnerCount);
        uint count = 0;
        for (uint i = 0; i < luckyIds.length; i++) {
            if (ownerOf(luckyIds[i]) == addr) tokenIds[count++] = luckyIds[i];
        }
        if (count == luckyIds.length) return (tokenIds, winnerCount);
        uint[] memory realTokenIds = new uint[](count);
        for (uint j = 0; j < count; j++) {
            realTokenIds[j] = tokenIds[j];
        }
        return (realTokenIds, winnerCount);
    }

    // Query the list of today's winners
    function getWinnerTokenIds(uint luckyNum) public view returns (uint[] memory tokenIds) {
        uint count = 0;
        tokenIds = new uint[](alreadyPopCount);
        for (uint i = 1; i <= alreadyPopCount; i++) {
            if (luckyCardValue(i) == luckyNum) tokenIds[count++] = i;
        }
        if (count == alreadyPopCount) return tokenIds;
        uint[] memory realTokenIds = new uint[](count);
        for (uint j = 0; j < count; j++) {
            realTokenIds[j] = tokenIds[j];
        }
        return realTokenIds;
    }

    // Get lucky value
    // 0:not open      1:totay     >=2:the value
    function luckyCardValue(uint tokenId) public view returns (uint) {
        if (luckyCardStatus[tokenId] == 0) return 0;
        uint theDay = getDaysFrom1970();
        if (theDay == luckyCardStatus[tokenId]) return 1;
        if (theDay % 2 == 0) {
            return uint256(keccak256(abi.encodePacked(theDay, evenSalt, tokenId))) % 78 + 2;
        } else {
            return uint256(keccak256(abi.encodePacked(theDay, oddSalt, tokenId))) % 78 + 2;
        }
    }

    // The days
    function getDaysFrom1970() private view returns (uint _days) {
        _days = TimeUtil.currentTime() / 86400;
    }

    // tools
    function _hash(string calldata salt, address _address, uint tokenId, uint validDay) private view returns (bytes32) {
        return keccak256(abi.encode(salt, address(this), _address, tokenId, validDay));
    }
    function _recover(bytes32 hash, bytes memory token) private pure returns (address) {
        return hash.toEthSignedMessageHash().recover(token);
    }
}

File 2 of 14 : TimeUtil.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library TimeUtil {
    function currentTime() internal view returns (uint) {
        unchecked {
            return block.timestamp;
        }
    }
}

File 3 of 14 : 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 4 of 14 : 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 5 of 14 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

    /**
     * @dev Returns an Ethereum Signed 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 6 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 14 : 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 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : 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 11 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ActiveluckyCard","type":"event"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"theDay","type":"uint256"}],"name":"UnLock","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractLocked","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":"addr","type":"address"},{"internalType":"uint256","name":"luckyNum","type":"uint256"}],"name":"getWinnerIdWithLuckyNum","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"winnerCount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"luckyNum","type":"uint256"}],"name":"getWinnerTokenIds","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"goMoon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"holdTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"lockContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"luckyCardStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"luckyCardValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"realIdMap","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":"newUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setGoMoonAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setLCSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"bool","name":"yea","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setMintvialAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"token","type":"bytes"},{"internalType":"uint256","name":"validDay","type":"uint256"}],"name":"unlockBySelf","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff191690553480156200001b57600080fd5b5060405162003004380380620030048339810160408190526200003e9162000240565b604080518082018252600c81526b115d5c995ad8549858989a5d60a21b602080830191825283518085019094526006845265149858989a5d60d21b908401528151919291620000909160009162000184565b508051620000a690600190602084019062000184565b505050620000c3620000bd6200012e60201b60201c565b62000132565b8051620000d890600c90602084019062000184565b50600d546040516001600160601b031933606090811b8216602084015260348301939093524190921b909116605482015260680160408051601f198184030181529190528051602090910120600d555062000359565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000192906200031c565b90600052602060002090601f016020900481019282620001b6576000855562000201565b82601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b506200020f92915062000213565b5090565b5b808211156200020f576000815560010162000214565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200025457600080fd5b82516001600160401b03808211156200026c57600080fd5b818501915085601f8301126200028157600080fd5b8151818111156200029657620002966200022a565b604051601f8201601f19908116603f01168101908382118183101715620002c157620002c16200022a565b816040528281528886848701011115620002da57600080fd5b600093505b82841015620002fe5784840186015181850187015292850192620002df565b82841115620003105760008684830101525b98975050505050505050565b600181811c908216806200033157607f821691505b602082108114156200035357634e487b7160e01b600052602260045260246000fd5b50919050565b612c9b80620003696000396000f3fe608060405234801561001057600080fd5b50600436106101b75760003560e01c806301ffc9a7146101bc57806305dd55ee146101e457806306fdde03146101f9578063081812fc1461020e578063095ea7b31461023957806318160ddd1461024c57806323b872dd146102635780632fa7fb6014610276578063324cb3cb1461029757806333162484146102a45780633dd08c38146102b757806342842e0e146102db5780636198e339146102ee57806363500ffb146103015780636352211e1461031457806370a0823114610327578063715018a61461033a578063753868e31461034257806386f579501461034a5780638da5cb5b1461036b5780638f367cf014610373578063937f26081461038657806395d89b41146103995780639abc8320146103a1578063a0bcfc7f146103a9578063a22cb465146103bc578063ad6c9962146103cf578063b88d4fde146103e2578063c87b56dd146103f5578063cd02eb7c14610408578063cf2a866414610429578063cf456ae71461044a578063da4922451461045d578063e58e1f9814610470578063e985e9c514610490578063f2fde38b146104a3578063fe313112146104b6575b600080fd5b6101cf6101ca366004612438565b6104c9565b60405190151581526020015b60405180910390f35b6101f76101f2366004612500565b61051b565b005b6102016105f2565b6040516101db9190612600565b61022161021c366004612613565b610684565b6040516001600160a01b0390911681526020016101db565b6101f7610247366004612648565b61070c565b61025560085481565b6040519081526020016101db565b6101f7610271366004612672565b61081d565b610255610284366004612613565b610ccf6020526000908152604090205481565b600a546101cf9060ff1681565b6101f76102b23660046126ae565b61084e565b6101cf6102c53660046126ae565b610cd06020526000908152604090205460ff1681565b6101f76102e9366004612672565b6108c5565b6101f76102fc366004612613565b6108e0565b61025561030f366004612613565b61095d565b610221610322366004612613565b610a22565b6102556103353660046126ae565b610a99565b6101f7610b20565b6101f7610b5b565b61035d610358366004612648565b610b99565b6040516101db929190612704565b610221610d72565b6101f7610381366004612613565b610d81565b6102556103943660046126ae565b610dcc565b610201610e80565b610201610e8f565b6101f76103b7366004612726565b610f1d565b6101f76103ca36600461276e565b610f9c565b6101f76103dd3660046126ae565b610fa7565b6101f76103f03660046127aa565b611024565b610201610403366004612613565b61105c565b610255610416366004612613565b610cce6020526000908152604090205481565b610255610437366004612613565b610ccd6020526000908152604090205481565b6101f761045836600461276e565b6110fe565b6101f761046b3660046126ae565b611159565b61048361047e366004612613565b6111d1565b6040516101db9190612811565b6101cf61049e366004612824565b611327565b6101f76104b13660046126ae565b611355565b6102556104c4366004612613565b6113f2565b60006001600160e01b031982166380ac58cd60e01b14806104fa57506001600160e01b03198216635b5e139f60e01b145b8061051557506301ffc9a760e01b6001600160e01b03198316145b92915050565b610cd1546001600160a01b031661053e6105388686338a8761140a565b84611448565b6001600160a01b03161461056d5760405162461bcd60e51b815260040161056490612857565b60405180910390fd5b60006105776114aa565b90508181146105ae5760405162461bcd60e51b81526020600482015260036024820152620c4c0d60ea1b6044820152606401610564565b6000868152610cce602052604090819020829055518690600080516020612c46833981519152906105e29084815260200190565b60405180910390a2505050505050565b60606000805461060190612874565b80601f016020809104026020016040519081016040528092919081815260200182805461062d90612874565b801561067a5780601f1061064f5761010080835404028352916020019161067a565b820191906000526020600020905b81548152906001019060200180831161065d57829003601f168201915b5050505050905090565b600061068f826114be565b6106f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610564565b506000908152600460205260409020546001600160a01b031690565b600061071782610a22565b9050806001600160a01b0316836001600160a01b031614156107855760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610564565b336001600160a01b03821614806107a157506107a18133611327565b61080e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610564565b61081883836114db565b505050565b6108273382611549565b6108435760405162461bcd60e51b8152600401610564906128a9565b610818838383611613565b33610857610d72565b6001600160a01b03161461087d5760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b0381166108a35760405162461bcd60e51b815260040161056490612857565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b61081883838360405180602001604052806000815250611024565b336000908152610cd0602052604090205460ff166109105760405162461bcd60e51b81526004016105649061292f565b600061091a6114aa565b6000838152610cce602052604090819020829055519091508290600080516020612c46833981519152906109519084815260200190565b60405180910390a25050565b6000818152610cce602052604081205461097957506000919050565b60006109836114aa565b6000848152610cce60205260409020549091508114156109a65750600192915050565b6109b1600282612962565b610a0357604e81600f54856040516020016109ce93929190612976565b6040516020818303038152906040528051906020012060001c6109f19190612962565b6109fc9060026129a2565b9392505050565b604e81600e54856040516020016109ce93929190612976565b50919050565b6000818152600260205260408120546001600160a01b0316806105155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610564565b60006001600160a01b038216610b045760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610564565b506001600160a01b031660009081526003602052604090205490565b33610b29610d72565b6001600160a01b031614610b4f5760405162461bcd60e51b8152600401610564906128fa565b610b5960006117ac565b565b33610b64610d72565b6001600160a01b031614610b8a5760405162461bcd60e51b8152600401610564906128fa565b600a805460ff19166001179055565b60606000610ba684610a99565b610bb257506000610d6b565b6000610bbd846111d1565b9050805160001415610bd3575060009050610d6b565b80519150816001600160401b03811115610bef57610bef612455565b604051908082528060200260200182016040528015610c18578160200160208202803683370190505b5092506000805b8251811015610cba57866001600160a01b0316610c54848381518110610c4757610c476129ba565b6020026020010151610a22565b6001600160a01b03161415610ca857828181518110610c7557610c756129ba565b6020026020010151858380610c89906129d0565b945081518110610c9b57610c9b6129ba565b6020026020010181815250505b80610cb2816129d0565b915050610c1f565b508151811415610ccb575050610d6b565b6000816001600160401b03811115610ce557610ce5612455565b604051908082528060200260200182016040528015610d0e578160200160208202803683370190505b50905060005b82811015610d6557858181518110610d2e57610d2e6129ba565b6020026020010151828281518110610d4857610d486129ba565b602090810291909101015280610d5d816129d0565b915050610d14565b50935050505b9250929050565b6006546001600160a01b031690565b600b546001600160a01b03163314610dab5760405162461bcd60e51b81526004016105649061292f565b60088054906000610dbb836129eb565b9190505550610dc9816117fe565b50565b600a5460009061010090046001600160a01b03163314610dfe5760405162461bcd60e51b81526004016105649061292f565b610e0c600780546001019055565b6000610e1760075490565b90506000610e2484611893565b6000838152610ccd602052604090208190559050610c708110610e5a57610e496114aa565b6000838152610cce60205260409020555b60088054906000610e6a836129d0565b9190505550610e798483611940565b5092915050565b60606001805461060190612874565b600c8054610e9c90612874565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec890612874565b8015610f155780601f10610eea57610100808354040283529160200191610f15565b820191906000526020600020905b815481529060010190602001808311610ef857829003601f168201915b505050505081565b33610f26610d72565b6001600160a01b031614610f4c5760405162461bcd60e51b8152600401610564906128fa565b600a5460ff1615610f855760405162461bcd60e51b815260206004820152600360248201526231303160e81b6044820152606401610564565b8051610f9890600c906020840190612389565b5050565b610f9833838361195a565b33610fb0610d72565b6001600160a01b031614610fd65760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b038116610ffc5760405162461bcd60e51b815260040161056490612857565b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61102e3383611549565b61104a5760405162461bcd60e51b8152600401610564906128a9565b61105684848484611a25565b50505050565b6060611067826114be565b6110995760405162461bcd60e51b81526020600482015260036024820152620d0c0d60ea1b6044820152606401610564565b6000828152610ccd6020526040902054610cbd6110b58461095d565b6110bf9190612a02565b6110c990826129a2565b9050600c6110d682611a58565b6040516020016110e7929190612a3d565b604051602081830303815290604052915050919050565b33611107610d72565b6001600160a01b03161461112d5760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b03919091166000908152610cd060205260409020805460ff1916911515919091179055565b33611162610d72565b6001600160a01b0316146111885760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b0381166111ae5760405162461bcd60e51b815260040161056490612857565b610cd180546001600160a01b0319166001600160a01b0392909216919091179055565b606060006009546001600160401b038111156111ef576111ef612455565b604051908082528060200260200182016040528015611218578160200160208202803683370190505b50915060015b600954811161127457836112318261095d565b141561126257808383611243816129d0565b945081518110611255576112556129ba565b6020026020010181815250505b8061126c816129d0565b91505061121e565b506009548114156112855750919050565b6000816001600160401b0381111561129f5761129f612455565b6040519080825280602002602001820160405280156112c8578160200160208202803683370190505b50905060005b8281101561131f578381815181106112e8576112e86129ba565b6020026020010151828281518110611302576113026129ba565b602090810291909101015280611317816129d0565b9150506112ce565b509392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3361135e610d72565b6001600160a01b0316146113845760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b0381166113e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610564565b610dc9816117ac565b601081610cbd811061140357600080fd5b0154905081565b600085853086868660405160200161142796959493929190612ae4565b60405160208183030381529060405280519060200120905095945050505050565b60006109fc826114a4856040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611b55565b60006114b96201518042612b38565b905090565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151082610a22565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611554826114be565b6115b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610564565b60006115c083610a22565b9050806001600160a01b0316846001600160a01b031614806115fb5750836001600160a01b03166115f084610684565b6001600160a01b0316145b8061160b575061160b8185611327565b949350505050565b826001600160a01b031661162682610a22565b6001600160a01b03161461168e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610564565b6001600160a01b0382166116f05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610564565b6116fb838383611b71565b6117066000826114db565b6001600160a01b038316600090815260036020526040812080546001929061172f908490612b4c565b90915550506001600160a01b038216600090815260036020526040812080546001929061175d9084906129a2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612c2683398151915291a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061180982610a22565b905061181781600084611b71565b6118226000836114db565b6001600160a01b038116600090815260036020526040812080546001929061184b908490612b4c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020612c26833981519152908390a45050565b6000610cbd600954106118ce5760405162461bcd60e51b815260206004820152600360248201526231303360e81b6044820152606401610564565b60008242600d5460095460405160609490941b6001600160601b03191660208501526034840192909252446054840152436074840152609483015260b482015260d4016040516020818303038152906040528051906020012060001c905061193581611d3f565b6109fc9060016129a2565b610f98828260405180602001604052806000815250611df7565b816001600160a01b0316836001600160a01b031614156119b85760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610564565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a30848484611613565b611a3c84848484611e2a565b6110565760405162461bcd60e51b815260040161056490612b63565b606081611a7c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aa65780611a90816129d0565b9150611a9f9050600a83612b38565b9150611a80565b6000816001600160401b03811115611ac057611ac0612455565b6040519080825280601f01601f191660200182016040528015611aea576020820181803683370190505b5090505b841561160b57611aff600183612b4c565b9150611b0c600a86612962565b611b179060306129a2565b60f81b818381518110611b2c57611b2c6129ba565b60200101906001600160f81b031916908160001a905350611b4e600a86612b38565b9450611aee565b6000806000611b648585611f28565b9150915061131f81611f95565b600d546001600160a01b03841615801590611b9457506001600160a01b03831615155b15611ca8576000828152610cce6020526040902054611c46576040805142602080830191909152448284015243606083015260808083018590528351808403909101815260a09092019092528051910120605a611bf2606483612962565b10611c4457604080513381526001600160a01b038781166020830152861681830152905184917f8c99de6e0b7a9a7096491c0b5fe0090ed6d3fd6a664da627980e094d7af5a874919081900360600190a25b505b6040516001600160601b0319606086811b8216602084015285811b821660348401526048830184905241901b16606882015244607c82015243609c82015260bc016040516020818303038152906040528051906020012060001c600d81905590505b6002611cb26114aa565b611cbc9190612962565b611cf657600e54604051611cd69184918490602001612976565b60408051601f198184030181529190528051602090910120600e55611d28565b600f54604051611d0c9184918490602001612976565b60408051601f198184030181529190528051602090910120600f555b506000908152610ccf602052604090204290555050565b600080600954610cbd611d529190612b4c565b90506000611d608285612962565b90506000601082610cbd8110611d7857611d786129ba565b015490506000808211611d8b5782611d8d565b815b90506010611d9a856129eb565b945084610cbd8110611dae57611dae6129ba565b0154915060008211611dc05783611dc2565b815b601084610cbd8110611dd657611dd66129ba565b015560098054906000611de8836129d0565b90915550909695505050505050565b611e01838361214b565b611e0e6000848484611e2a565b6108185760405162461bcd60e51b815260040161056490612b63565b60006001600160a01b0384163b15611f1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e6e903390899088908890600401612bb5565b6020604051808303816000875af1925050508015611ea9575060408051601f3d908101601f19168201909252611ea691810190612bf2565b60015b611f03573d808015611ed7576040519150601f19603f3d011682016040523d82523d6000602084013e611edc565b606091505b508051611efb5760405162461bcd60e51b815260040161056490612b63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061160b565b506001949350505050565b600080825160411415611f5f5760208301516040840151606085015160001a611f5387828585612277565b94509450505050610d6b565b825160401415611f895760208301516040840151611f7e86838361235a565b935093505050610d6b565b50600090506002610d6b565b6000816004811115611fa957611fa9612c0f565b1415611fb25750565b6001816004811115611fc657611fc6612c0f565b141561200f5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610564565b600281600481111561202357612023612c0f565b14156120715760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610564565b600381600481111561208557612085612c0f565b14156120de5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610564565b60048160048111156120f2576120f2612c0f565b1415610dc95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610564565b6001600160a01b0382166121a15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610564565b6121aa816114be565b156121f65760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610564565b61220260008383611b71565b6001600160a01b038216600090815260036020526040812080546001929061222b9084906129a2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612c26833981519152908290a45050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156122a45750600090506003612351565b8460ff16601b141580156122bc57508460ff16601c14155b156122cd5750600090506004612351565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612321573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661234a57600060019250925050612351565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161237b87828885612277565b935093505050935093915050565b82805461239590612874565b90600052602060002090601f0160209004810192826123b757600085556123fd565b82601f106123d057805160ff19168380011785556123fd565b828001600101855582156123fd579182015b828111156123fd5782518255916020019190600101906123e2565b5061240992915061240d565b5090565b5b80821115612409576000815560010161240e565b6001600160e01b031981168114610dc957600080fd5b60006020828403121561244a57600080fd5b81356109fc81612422565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561248557612485612455565b604051601f8501601f19908116603f011681019082821181831017156124ad576124ad612455565b816040528093508581528686860111156124c657600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126124f157600080fd5b6109fc8383356020850161246b565b60008060008060006080868803121561251857600080fd5b8535945060208601356001600160401b038082111561253657600080fd5b818801915088601f83011261254a57600080fd5b81358181111561255957600080fd5b89602082850101111561256b57600080fd5b60208301965080955050604088013591508082111561258957600080fd5b50612596888289016124e0565b95989497509295606001359392505050565b60005b838110156125c35781810151838201526020016125ab565b838111156110565750506000910152565b600081518084526125ec8160208601602086016125a8565b601f01601f19169290920160200192915050565b6020815260006109fc60208301846125d4565b60006020828403121561262557600080fd5b5035919050565b80356001600160a01b038116811461264357600080fd5b919050565b6000806040838503121561265b57600080fd5b6126648361262c565b946020939093013593505050565b60008060006060848603121561268757600080fd5b6126908461262c565b925061269e6020850161262c565b9150604084013590509250925092565b6000602082840312156126c057600080fd5b6109fc8261262c565b600081518084526020808501945080840160005b838110156126f9578151875295820195908201906001016126dd565b509495945050505050565b60408152600061271760408301856126c9565b90508260208301529392505050565b60006020828403121561273857600080fd5b81356001600160401b0381111561274e57600080fd5b8201601f8101841361275f57600080fd5b61160b8482356020840161246b565b6000806040838503121561278157600080fd5b61278a8361262c565b91506020830135801515811461279f57600080fd5b809150509250929050565b600080600080608085870312156127c057600080fd5b6127c98561262c565b93506127d76020860161262c565b92506040850135915060608501356001600160401b038111156127f957600080fd5b612805878288016124e0565b91505092959194509250565b6020815260006109fc60208301846126c9565b6000806040838503121561283757600080fd5b6128408361262c565b915061284e6020840161262c565b90509250929050565b60208082526003908201526203430360ec1b604082015260600190565b600181811c9082168061288857607f821691505b60208210811415610a1c57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526003908201526218981960e91b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b6000826129715761297161294c565b500690565b9283526020830191909152604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156129b5576129b561298c565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156129e4576129e461298c565b5060010190565b6000816129fa576129fa61298c565b506000190190565b6000816000190483118215151615612a1c57612a1c61298c565b500290565b60008151612a338185602086016125a8565b9290920192915050565b600080845481600182811c915080831680612a5957607f831692505b6020808410821415612a7957634e487b7160e01b86526022600452602486fd5b818015612a8d5760018114612a9e57612acb565b60ff19861689528489019650612acb565b60008b81526020902060005b86811015612ac35781548b820152908501908301612aaa565b505084890196505b505050505050612adb8185612a21565b95945050505050565b60a081528560a0820152858760c0830137600060c08783018101919091526001600160a01b03958616602083015293909416604085015260608401919091526080830152601f909201601f19160101919050565b600082612b4757612b4761294c565b500490565b600082821015612b5e57612b5e61298c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612be8908301846125d4565b9695505050505050565b600060208284031215612c0457600080fd5b81516109fc81612422565b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef13b231f6d01067dad5c52c4f1f50dd44a59ae8f669f6c96437f3e4c3751c8681a2646970667358221220db8538968fad829e3affa534937b284283ab3b01ff7b5fe462f74c8cbaabf3fc64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101b75760003560e01c806301ffc9a7146101bc57806305dd55ee146101e457806306fdde03146101f9578063081812fc1461020e578063095ea7b31461023957806318160ddd1461024c57806323b872dd146102635780632fa7fb6014610276578063324cb3cb1461029757806333162484146102a45780633dd08c38146102b757806342842e0e146102db5780636198e339146102ee57806363500ffb146103015780636352211e1461031457806370a0823114610327578063715018a61461033a578063753868e31461034257806386f579501461034a5780638da5cb5b1461036b5780638f367cf014610373578063937f26081461038657806395d89b41146103995780639abc8320146103a1578063a0bcfc7f146103a9578063a22cb465146103bc578063ad6c9962146103cf578063b88d4fde146103e2578063c87b56dd146103f5578063cd02eb7c14610408578063cf2a866414610429578063cf456ae71461044a578063da4922451461045d578063e58e1f9814610470578063e985e9c514610490578063f2fde38b146104a3578063fe313112146104b6575b600080fd5b6101cf6101ca366004612438565b6104c9565b60405190151581526020015b60405180910390f35b6101f76101f2366004612500565b61051b565b005b6102016105f2565b6040516101db9190612600565b61022161021c366004612613565b610684565b6040516001600160a01b0390911681526020016101db565b6101f7610247366004612648565b61070c565b61025560085481565b6040519081526020016101db565b6101f7610271366004612672565b61081d565b610255610284366004612613565b610ccf6020526000908152604090205481565b600a546101cf9060ff1681565b6101f76102b23660046126ae565b61084e565b6101cf6102c53660046126ae565b610cd06020526000908152604090205460ff1681565b6101f76102e9366004612672565b6108c5565b6101f76102fc366004612613565b6108e0565b61025561030f366004612613565b61095d565b610221610322366004612613565b610a22565b6102556103353660046126ae565b610a99565b6101f7610b20565b6101f7610b5b565b61035d610358366004612648565b610b99565b6040516101db929190612704565b610221610d72565b6101f7610381366004612613565b610d81565b6102556103943660046126ae565b610dcc565b610201610e80565b610201610e8f565b6101f76103b7366004612726565b610f1d565b6101f76103ca36600461276e565b610f9c565b6101f76103dd3660046126ae565b610fa7565b6101f76103f03660046127aa565b611024565b610201610403366004612613565b61105c565b610255610416366004612613565b610cce6020526000908152604090205481565b610255610437366004612613565b610ccd6020526000908152604090205481565b6101f761045836600461276e565b6110fe565b6101f761046b3660046126ae565b611159565b61048361047e366004612613565b6111d1565b6040516101db9190612811565b6101cf61049e366004612824565b611327565b6101f76104b13660046126ae565b611355565b6102556104c4366004612613565b6113f2565b60006001600160e01b031982166380ac58cd60e01b14806104fa57506001600160e01b03198216635b5e139f60e01b145b8061051557506301ffc9a760e01b6001600160e01b03198316145b92915050565b610cd1546001600160a01b031661053e6105388686338a8761140a565b84611448565b6001600160a01b03161461056d5760405162461bcd60e51b815260040161056490612857565b60405180910390fd5b60006105776114aa565b90508181146105ae5760405162461bcd60e51b81526020600482015260036024820152620c4c0d60ea1b6044820152606401610564565b6000868152610cce602052604090819020829055518690600080516020612c46833981519152906105e29084815260200190565b60405180910390a2505050505050565b60606000805461060190612874565b80601f016020809104026020016040519081016040528092919081815260200182805461062d90612874565b801561067a5780601f1061064f5761010080835404028352916020019161067a565b820191906000526020600020905b81548152906001019060200180831161065d57829003601f168201915b5050505050905090565b600061068f826114be565b6106f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610564565b506000908152600460205260409020546001600160a01b031690565b600061071782610a22565b9050806001600160a01b0316836001600160a01b031614156107855760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610564565b336001600160a01b03821614806107a157506107a18133611327565b61080e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610564565b61081883836114db565b505050565b6108273382611549565b6108435760405162461bcd60e51b8152600401610564906128a9565b610818838383611613565b33610857610d72565b6001600160a01b03161461087d5760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b0381166108a35760405162461bcd60e51b815260040161056490612857565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b61081883838360405180602001604052806000815250611024565b336000908152610cd0602052604090205460ff166109105760405162461bcd60e51b81526004016105649061292f565b600061091a6114aa565b6000838152610cce602052604090819020829055519091508290600080516020612c46833981519152906109519084815260200190565b60405180910390a25050565b6000818152610cce602052604081205461097957506000919050565b60006109836114aa565b6000848152610cce60205260409020549091508114156109a65750600192915050565b6109b1600282612962565b610a0357604e81600f54856040516020016109ce93929190612976565b6040516020818303038152906040528051906020012060001c6109f19190612962565b6109fc9060026129a2565b9392505050565b604e81600e54856040516020016109ce93929190612976565b50919050565b6000818152600260205260408120546001600160a01b0316806105155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610564565b60006001600160a01b038216610b045760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610564565b506001600160a01b031660009081526003602052604090205490565b33610b29610d72565b6001600160a01b031614610b4f5760405162461bcd60e51b8152600401610564906128fa565b610b5960006117ac565b565b33610b64610d72565b6001600160a01b031614610b8a5760405162461bcd60e51b8152600401610564906128fa565b600a805460ff19166001179055565b60606000610ba684610a99565b610bb257506000610d6b565b6000610bbd846111d1565b9050805160001415610bd3575060009050610d6b565b80519150816001600160401b03811115610bef57610bef612455565b604051908082528060200260200182016040528015610c18578160200160208202803683370190505b5092506000805b8251811015610cba57866001600160a01b0316610c54848381518110610c4757610c476129ba565b6020026020010151610a22565b6001600160a01b03161415610ca857828181518110610c7557610c756129ba565b6020026020010151858380610c89906129d0565b945081518110610c9b57610c9b6129ba565b6020026020010181815250505b80610cb2816129d0565b915050610c1f565b508151811415610ccb575050610d6b565b6000816001600160401b03811115610ce557610ce5612455565b604051908082528060200260200182016040528015610d0e578160200160208202803683370190505b50905060005b82811015610d6557858181518110610d2e57610d2e6129ba565b6020026020010151828281518110610d4857610d486129ba565b602090810291909101015280610d5d816129d0565b915050610d14565b50935050505b9250929050565b6006546001600160a01b031690565b600b546001600160a01b03163314610dab5760405162461bcd60e51b81526004016105649061292f565b60088054906000610dbb836129eb565b9190505550610dc9816117fe565b50565b600a5460009061010090046001600160a01b03163314610dfe5760405162461bcd60e51b81526004016105649061292f565b610e0c600780546001019055565b6000610e1760075490565b90506000610e2484611893565b6000838152610ccd602052604090208190559050610c708110610e5a57610e496114aa565b6000838152610cce60205260409020555b60088054906000610e6a836129d0565b9190505550610e798483611940565b5092915050565b60606001805461060190612874565b600c8054610e9c90612874565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec890612874565b8015610f155780601f10610eea57610100808354040283529160200191610f15565b820191906000526020600020905b815481529060010190602001808311610ef857829003601f168201915b505050505081565b33610f26610d72565b6001600160a01b031614610f4c5760405162461bcd60e51b8152600401610564906128fa565b600a5460ff1615610f855760405162461bcd60e51b815260206004820152600360248201526231303160e81b6044820152606401610564565b8051610f9890600c906020840190612389565b5050565b610f9833838361195a565b33610fb0610d72565b6001600160a01b031614610fd65760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b038116610ffc5760405162461bcd60e51b815260040161056490612857565b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61102e3383611549565b61104a5760405162461bcd60e51b8152600401610564906128a9565b61105684848484611a25565b50505050565b6060611067826114be565b6110995760405162461bcd60e51b81526020600482015260036024820152620d0c0d60ea1b6044820152606401610564565b6000828152610ccd6020526040902054610cbd6110b58461095d565b6110bf9190612a02565b6110c990826129a2565b9050600c6110d682611a58565b6040516020016110e7929190612a3d565b604051602081830303815290604052915050919050565b33611107610d72565b6001600160a01b03161461112d5760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b03919091166000908152610cd060205260409020805460ff1916911515919091179055565b33611162610d72565b6001600160a01b0316146111885760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b0381166111ae5760405162461bcd60e51b815260040161056490612857565b610cd180546001600160a01b0319166001600160a01b0392909216919091179055565b606060006009546001600160401b038111156111ef576111ef612455565b604051908082528060200260200182016040528015611218578160200160208202803683370190505b50915060015b600954811161127457836112318261095d565b141561126257808383611243816129d0565b945081518110611255576112556129ba565b6020026020010181815250505b8061126c816129d0565b91505061121e565b506009548114156112855750919050565b6000816001600160401b0381111561129f5761129f612455565b6040519080825280602002602001820160405280156112c8578160200160208202803683370190505b50905060005b8281101561131f578381815181106112e8576112e86129ba565b6020026020010151828281518110611302576113026129ba565b602090810291909101015280611317816129d0565b9150506112ce565b509392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3361135e610d72565b6001600160a01b0316146113845760405162461bcd60e51b8152600401610564906128fa565b6001600160a01b0381166113e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610564565b610dc9816117ac565b601081610cbd811061140357600080fd5b0154905081565b600085853086868660405160200161142796959493929190612ae4565b60405160208183030381529060405280519060200120905095945050505050565b60006109fc826114a4856040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611b55565b60006114b96201518042612b38565b905090565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151082610a22565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611554826114be565b6115b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610564565b60006115c083610a22565b9050806001600160a01b0316846001600160a01b031614806115fb5750836001600160a01b03166115f084610684565b6001600160a01b0316145b8061160b575061160b8185611327565b949350505050565b826001600160a01b031661162682610a22565b6001600160a01b03161461168e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610564565b6001600160a01b0382166116f05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610564565b6116fb838383611b71565b6117066000826114db565b6001600160a01b038316600090815260036020526040812080546001929061172f908490612b4c565b90915550506001600160a01b038216600090815260036020526040812080546001929061175d9084906129a2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612c2683398151915291a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061180982610a22565b905061181781600084611b71565b6118226000836114db565b6001600160a01b038116600090815260036020526040812080546001929061184b908490612b4c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020612c26833981519152908390a45050565b6000610cbd600954106118ce5760405162461bcd60e51b815260206004820152600360248201526231303360e81b6044820152606401610564565b60008242600d5460095460405160609490941b6001600160601b03191660208501526034840192909252446054840152436074840152609483015260b482015260d4016040516020818303038152906040528051906020012060001c905061193581611d3f565b6109fc9060016129a2565b610f98828260405180602001604052806000815250611df7565b816001600160a01b0316836001600160a01b031614156119b85760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610564565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a30848484611613565b611a3c84848484611e2a565b6110565760405162461bcd60e51b815260040161056490612b63565b606081611a7c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aa65780611a90816129d0565b9150611a9f9050600a83612b38565b9150611a80565b6000816001600160401b03811115611ac057611ac0612455565b6040519080825280601f01601f191660200182016040528015611aea576020820181803683370190505b5090505b841561160b57611aff600183612b4c565b9150611b0c600a86612962565b611b179060306129a2565b60f81b818381518110611b2c57611b2c6129ba565b60200101906001600160f81b031916908160001a905350611b4e600a86612b38565b9450611aee565b6000806000611b648585611f28565b9150915061131f81611f95565b600d546001600160a01b03841615801590611b9457506001600160a01b03831615155b15611ca8576000828152610cce6020526040902054611c46576040805142602080830191909152448284015243606083015260808083018590528351808403909101815260a09092019092528051910120605a611bf2606483612962565b10611c4457604080513381526001600160a01b038781166020830152861681830152905184917f8c99de6e0b7a9a7096491c0b5fe0090ed6d3fd6a664da627980e094d7af5a874919081900360600190a25b505b6040516001600160601b0319606086811b8216602084015285811b821660348401526048830184905241901b16606882015244607c82015243609c82015260bc016040516020818303038152906040528051906020012060001c600d81905590505b6002611cb26114aa565b611cbc9190612962565b611cf657600e54604051611cd69184918490602001612976565b60408051601f198184030181529190528051602090910120600e55611d28565b600f54604051611d0c9184918490602001612976565b60408051601f198184030181529190528051602090910120600f555b506000908152610ccf602052604090204290555050565b600080600954610cbd611d529190612b4c565b90506000611d608285612962565b90506000601082610cbd8110611d7857611d786129ba565b015490506000808211611d8b5782611d8d565b815b90506010611d9a856129eb565b945084610cbd8110611dae57611dae6129ba565b0154915060008211611dc05783611dc2565b815b601084610cbd8110611dd657611dd66129ba565b015560098054906000611de8836129d0565b90915550909695505050505050565b611e01838361214b565b611e0e6000848484611e2a565b6108185760405162461bcd60e51b815260040161056490612b63565b60006001600160a01b0384163b15611f1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e6e903390899088908890600401612bb5565b6020604051808303816000875af1925050508015611ea9575060408051601f3d908101601f19168201909252611ea691810190612bf2565b60015b611f03573d808015611ed7576040519150601f19603f3d011682016040523d82523d6000602084013e611edc565b606091505b508051611efb5760405162461bcd60e51b815260040161056490612b63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061160b565b506001949350505050565b600080825160411415611f5f5760208301516040840151606085015160001a611f5387828585612277565b94509450505050610d6b565b825160401415611f895760208301516040840151611f7e86838361235a565b935093505050610d6b565b50600090506002610d6b565b6000816004811115611fa957611fa9612c0f565b1415611fb25750565b6001816004811115611fc657611fc6612c0f565b141561200f5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610564565b600281600481111561202357612023612c0f565b14156120715760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610564565b600381600481111561208557612085612c0f565b14156120de5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610564565b60048160048111156120f2576120f2612c0f565b1415610dc95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610564565b6001600160a01b0382166121a15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610564565b6121aa816114be565b156121f65760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610564565b61220260008383611b71565b6001600160a01b038216600090815260036020526040812080546001929061222b9084906129a2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612c26833981519152908290a45050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156122a45750600090506003612351565b8460ff16601b141580156122bc57508460ff16601c14155b156122cd5750600090506004612351565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612321573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661234a57600060019250925050612351565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161237b87828885612277565b935093505050935093915050565b82805461239590612874565b90600052602060002090601f0160209004810192826123b757600085556123fd565b82601f106123d057805160ff19168380011785556123fd565b828001600101855582156123fd579182015b828111156123fd5782518255916020019190600101906123e2565b5061240992915061240d565b5090565b5b80821115612409576000815560010161240e565b6001600160e01b031981168114610dc957600080fd5b60006020828403121561244a57600080fd5b81356109fc81612422565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561248557612485612455565b604051601f8501601f19908116603f011681019082821181831017156124ad576124ad612455565b816040528093508581528686860111156124c657600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126124f157600080fd5b6109fc8383356020850161246b565b60008060008060006080868803121561251857600080fd5b8535945060208601356001600160401b038082111561253657600080fd5b818801915088601f83011261254a57600080fd5b81358181111561255957600080fd5b89602082850101111561256b57600080fd5b60208301965080955050604088013591508082111561258957600080fd5b50612596888289016124e0565b95989497509295606001359392505050565b60005b838110156125c35781810151838201526020016125ab565b838111156110565750506000910152565b600081518084526125ec8160208601602086016125a8565b601f01601f19169290920160200192915050565b6020815260006109fc60208301846125d4565b60006020828403121561262557600080fd5b5035919050565b80356001600160a01b038116811461264357600080fd5b919050565b6000806040838503121561265b57600080fd5b6126648361262c565b946020939093013593505050565b60008060006060848603121561268757600080fd5b6126908461262c565b925061269e6020850161262c565b9150604084013590509250925092565b6000602082840312156126c057600080fd5b6109fc8261262c565b600081518084526020808501945080840160005b838110156126f9578151875295820195908201906001016126dd565b509495945050505050565b60408152600061271760408301856126c9565b90508260208301529392505050565b60006020828403121561273857600080fd5b81356001600160401b0381111561274e57600080fd5b8201601f8101841361275f57600080fd5b61160b8482356020840161246b565b6000806040838503121561278157600080fd5b61278a8361262c565b91506020830135801515811461279f57600080fd5b809150509250929050565b600080600080608085870312156127c057600080fd5b6127c98561262c565b93506127d76020860161262c565b92506040850135915060608501356001600160401b038111156127f957600080fd5b612805878288016124e0565b91505092959194509250565b6020815260006109fc60208301846126c9565b6000806040838503121561283757600080fd5b6128408361262c565b915061284e6020840161262c565b90509250929050565b60208082526003908201526203430360ec1b604082015260600190565b600181811c9082168061288857607f821691505b60208210811415610a1c57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526003908201526218981960e91b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b6000826129715761297161294c565b500690565b9283526020830191909152604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156129b5576129b561298c565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156129e4576129e461298c565b5060010190565b6000816129fa576129fa61298c565b506000190190565b6000816000190483118215151615612a1c57612a1c61298c565b500290565b60008151612a338185602086016125a8565b9290920192915050565b600080845481600182811c915080831680612a5957607f831692505b6020808410821415612a7957634e487b7160e01b86526022600452602486fd5b818015612a8d5760018114612a9e57612acb565b60ff19861689528489019650612acb565b60008b81526020902060005b86811015612ac35781548b820152908501908301612aaa565b505084890196505b505050505050612adb8185612a21565b95945050505050565b60a081528560a0820152858760c0830137600060c08783018101919091526001600160a01b03958616602083015293909416604085015260608401919091526080830152601f909201601f19160101919050565b600082612b4757612b4761294c565b500490565b600082821015612b5e57612b5e61298c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612be8908301846125d4565b9695505050505050565b600060208284031215612c0457600080fd5b81516109fc81612422565b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef13b231f6d01067dad5c52c4f1f50dd44a59ae8f669f6c96437f3e4c3751c8681a2646970667358221220db8538968fad829e3affa534937b284283ab3b01ff7b5fe462f74c8cbaabf3fc64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


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.