ETH Price: $3,387.70 (-1.57%)
Gas: 2 Gwei

Token

Party Bears (PartyBears)
 

Overview

Max Total Supply

9,669 PartyBears

Holders

2,990

Market

Volume (24H)

0.3228 ETH

Min Price (24H)

$136.19 @ 0.040200 ETH

Max Price (24H)

$247.21 @ 0.072973 ETH
Balance
1 PartyBears
0x869b0b8514eca4c561c64092225e6ad4183dd109
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Party Bears are a digital collection of 9,669 randomly generated bears ready to party in the metaverse. The Bears are stored as ERC721 tokens on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PartyBears

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 20 runs

Other Settings:
default evmVersion
File 1 of 17 : Partybears.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";

contract PartyBears is
    ERC721Enumerable,
    ERC721URIStorage,
    ReentrancyGuard,
    Ownable
{
    using ECDSA for bytes32;
    using Address for address;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    enum State {
        Setup,
        PreParty,
        PartyBear, 
        Finished
    }
    
    State private _state;
    address private _signer;
    string private _tokenUriBase;
    uint256 public constant MAX_BEARS = 9669;
    uint256 public constant MAX_MINT = 5;
    uint256 private BEAR_PRICE = 9E16; // 0.09 ETH
    mapping(bytes => bool) public usedToken;
    mapping(address => bool) public presaleMinted;
    event Minted(address minter, uint256 amount);
    event StateChanged(State _state);
    event SignerChanged(address signer);
    event BalanceWithdrawed(address recipient, uint256 value);

    constructor(address signer) ERC721("Party Bears", "PartyBears") {
        _signer = signer;
        _state = State.Setup;
    }

    function updateMintPrice(uint256 __price) public onlyOwner {
        BEAR_PRICE = __price;
    }

    function updateSigner(address __signer) public onlyOwner {
        _signer = __signer;
    }

    function _hash(string calldata salt, address _address)
        public
        view
        returns (bytes32)
    {
        return keccak256(abi.encode(salt, address(this), _address));
    }

    function _verify(bytes32 hash, bytes memory token)
        public
        view
        returns (bool)
    {
        return (_recover(hash, token) == _signer);
    }

    function _recover(bytes32 hash, bytes memory token)
        public
        pure
        returns (address)
    {
        return hash.toEthSignedMessageHash().recover(token);
    }

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

    function baseTokenURI() public view virtual returns (string memory) {
        return _tokenUriBase;
    }

    function setTokenURI(string memory tokenUriBase_) public onlyOwner {
        _tokenUriBase = tokenUriBase_;
    }

    function setStateToSetup() public onlyOwner {
        _state = State.Setup;
    }
    
    function startPreParty() public onlyOwner {
        _state = State.PreParty;
    }

    function setStateToParty() public onlyOwner {
        _state = State.PartyBear;
    }
    
    function setStateToFinished() public onlyOwner {
        _state = State.Finished;
    }

    function presaleMint(string calldata salt, bytes calldata token)
        external
        payable
        nonReentrant
    {
        require(_state == State.PreParty, "Presale is not active.");
        require(
            !Address.isContract(msg.sender),
            "Contracts are not allowed to party with bears."
        );
        require(
            !presaleMinted[msg.sender],
            "The wallet address has already minted in presale."
        );
        require(
            _tokenIds.current() + 1 <= MAX_BEARS,
            "Max supply of tokens exceeded."
        );
        require(msg.value >= BEAR_PRICE, "Ether value sent is incorrect.");
        require(_verify(_hash(salt, msg.sender), token), "Invalid token.");
        uint256 newItemId = _tokenIds.current();
        _safeMint(msg.sender, newItemId);
        _tokenIds.increment();
        presaleMinted[msg.sender] = true;
        emit Minted(msg.sender, 1);
    }

    function mint(
        string calldata salt,
        bytes calldata token,
        uint256 amount
    ) external payable nonReentrant {
        require(_state == State.PartyBear, "Sale is not active.");
        require(
            !Address.isContract(msg.sender),
            "Contracts are not allowed to party with bears."
        );
        require(
            amount <= MAX_MINT,
            "You can only bring 5 Party Bears to dance per transaction."
        );
        require(
            _tokenIds.current() + amount <= MAX_BEARS,
            "Amount should not exceed max supply of Party Bears."
        );
        require(
            msg.value >= BEAR_PRICE * amount,
            "Ether value sent is incorrect."
        );
        require(!usedToken[token], "The token has been used.");
        require(_verify(_hash(salt, msg.sender), token), "Invalid token.");
        for (uint256 i = 0; i < amount; i++) {
            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
            _tokenIds.increment();
        }
        usedToken[token] = true;
        emit Minted(msg.sender, amount);
    }

    function withdrawAll(address recipient) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(recipient).transfer(balance);
        emit BalanceWithdrawed(recipient, balance);
    }

    function withdrawAllViaCall(address payable _to) public onlyOwner {
        uint256 balance = address(this).balance;
        (bool sent, bytes memory data) = _to.call{value: balance}("");
        require(sent, "Failed to send Ether");
    }

    function _burn(uint256 tokenId)
        internal
        override(ERC721, ERC721URIStorage)
    {
        super._burn(tokenId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 3 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 17 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 5 of 17 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 17 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 17 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 8 of 17 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 17 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 12 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 13 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 14 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT

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 15 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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 16 of 17 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 17 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"BalanceWithdrawed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"SignerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum PartyBears.State","name":"_state","type":"uint8"}],"name":"StateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BEARS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"salt","type":"string"},{"internalType":"address","name":"_address","type":"address"}],"name":"_hash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"token","type":"bytes"}],"name":"_recover","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"token","type":"bytes"}],"name":"_verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"token","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"token","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"setStateToFinished","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStateToParty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStateToSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenUriBase_","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPreParty","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"updateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"__signer","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"usedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawAllViaCall","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267013fbe85edc900006010553480156200001d57600080fd5b5060405162003138380380620031388339810160408190526200004091620001e7565b604080518082018252600b81526a506172747920426561727360a81b60208083019182528351808501909452600a8452695061727479426561727360b01b908401528151919291620000959160009162000141565b508051620000ab90600190602084019062000141565b50506001600b5550620000be33620000ef565b600e80546001600160a81b0319166101006001600160a01b03939093169290920260ff191691909117905562000254565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014f9062000217565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600060208284031215620001f9578081fd5b81516001600160a01b038116811462000210578182fd5b9392505050565b600181811c908216806200022c57607f821691505b602082108114156200024e57634e487b7160e01b600052602260045260246000fd5b50919050565b612ed480620002646000396000f3fe6080604052600436106101c45760003560e01c80639f96cd25116100f35780639f96cd2514610415578063a22cb4651461042a578063a2f4dc151461044a578063a7ecd37e1461045d578063a905821a1461047d578063b0384ea11461049d578063b88d4fde146104b2578063bc660cac146104d2578063c87b56dd14610502578063cd9f9b9214610522578063cfa8ba4f1461055d578063d547cfb71461057d578063da649ed714610592578063e0df5b6f146105a8578063e985e9c5146105c8578063ec8ba2d9146105e8578063f0292a0314610608578063f2fde38b1461061d578063fa09e6301461063d57600080fd5b8062728e46146101c957806301ffc9a7146101eb57806306fdde0314610220578063081812fc14610242578063095ea7b31461027a578063157c42291461029a57806318160ddd146102af57806323af8827146102ce57806323b872dd146102e3578063265d3e97146103035780632f745c591461032357806342842e0e146103435780634a2728ab146103635780634f6ccce7146103765780636352211e1461039657806370a08231146103b6578063715018a6146103d65780638da5cb5b146103eb57806395d89b4114610400575b600080fd5b3480156101d557600080fd5b506101e96101e4366004612a4a565b61065d565b005b3480156101f757600080fd5b5061020b61020636600461286f565b61069a565b60405190151581526020015b60405180910390f35b34801561022c57600080fd5b506102356106ab565b6040516102179190612b6a565b34801561024e57600080fd5b5061026261025d366004612a4a565b61073d565b6040516001600160a01b039091168152602001610217565b34801561028657600080fd5b506101e9610295366004612800565b6107c5565b3480156102a657600080fd5b506101e96108d6565b3480156102bb57600080fd5b506008545b604051908152602001610217565b3480156102da57600080fd5b506101e961091b565b3480156102ef57600080fd5b506101e96102fe366004612726565b61095e565b34801561030f57600080fd5b5061026261031e36600461282b565b61098f565b34801561032f57600080fd5b506102c061033e366004612800565b6109f8565b34801561034f57600080fd5b506101e961035e366004612726565b610a8e565b6101e9610371366004612995565b610aa9565b34801561038257600080fd5b506102c0610391366004612a4a565b610e0b565b3480156103a257600080fd5b506102626103b1366004612a4a565b610eac565b3480156103c257600080fd5b506102c06103d13660046126d2565b610f23565b3480156103e257600080fd5b506101e9610faa565b3480156103f757600080fd5b50610262610fe5565b34801561040c57600080fd5b50610235610ff4565b34801561042157600080fd5b506101e9611003565b34801561043657600080fd5b506101e96104453660046127cf565b611046565b6101e961045836600461292d565b611107565b34801561046957600080fd5b506101e96104783660046126d2565b611395565b34801561048957600080fd5b506101e96104983660046126d2565b6113ec565b3480156104a957600080fd5b506101e96114be565b3480156104be57600080fd5b506101e96104cd366004612766565b611501565b3480156104de57600080fd5b5061020b6104ed3660046126d2565b60126020526000908152604090205460ff1681565b34801561050e57600080fd5b5061023561051d366004612a4a565b611533565b34801561052e57600080fd5b5061020b61053d3660046128a7565b805160208183018101805160118252928201919093012091525460ff1681565b34801561056957600080fd5b5061020b61057836600461282b565b61156d565b34801561058957600080fd5b5061023561159c565b34801561059e57600080fd5b506102c06125c581565b3480156105b457600080fd5b506101e96105c3366004612a05565b6115ab565b3480156105d457600080fd5b5061020b6105e33660046126ee565b6115f1565b3480156105f457600080fd5b506102c06106033660046128d9565b61161f565b34801561061457600080fd5b506102c0600581565b34801561062957600080fd5b506101e96106383660046126d2565b611657565b34801561064957600080fd5b506101e96106583660046126d2565b6116f7565b33610666610fe5565b6001600160a01b0316146106955760405162461bcd60e51b815260040161068c90612bf7565b60405180910390fd5b601055565b60006106a58261179c565b92915050565b6060600080546106ba90612dc7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690612dc7565b80156107335780601f1061070857610100808354040283529160200191610733565b820191906000526020600020905b81548152906001019060200180831161071657829003601f168201915b5050505050905090565b6000610748826117c1565b6107a95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068c565b506000908152600460205260409020546001600160a01b031690565b60006107d082610eac565b9050806001600160a01b0316836001600160a01b0316141561083e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068c565b336001600160a01b038216148061085a575061085a81336115f1565b6108c75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606482015260840161068c565b6108d183836117de565b505050565b336108df610fe5565b6001600160a01b0316146109055760405162461bcd60e51b815260040161068c90612bf7565b600e80546001919060ff191682805b0217905550565b33610924610fe5565b6001600160a01b03161461094a5760405162461bcd60e51b815260040161068c90612bf7565b600e80546000919060ff1916600183610914565b610968338261184c565b6109845760405162461bcd60e51b815260040161068c90612c63565b6108d1838383611916565b60006109f1826109eb856040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611ac1565b9392505050565b6000610a0383610f23565b8210610a655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161068c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108d183838360405180602001604052806000815250611501565b6002600b541415610acc5760405162461bcd60e51b815260040161068c90612d02565b6002600b819055600e5460ff166003811115610af857634e487b7160e01b600052602160045260246000fd5b14610b3b5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b604482015260640161068c565b333b15610b5a5760405162461bcd60e51b815260040161068c90612cb4565b6005811115610bce5760405162461bcd60e51b815260206004820152603a60248201527f596f752063616e206f6e6c79206272696e672035205061727479204265617273604482015279103a37903230b731b2903832b9103a3930b739b0b1ba34b7b71760311b606482015260840161068c565b6125c581610bdb600d5490565b610be59190612d39565b1115610c4f5760405162461bcd60e51b815260206004820152603360248201527f416d6f756e742073686f756c64206e6f7420657863656564206d61782073757060448201527238363c9037b3102830b93a3c902132b0b9399760691b606482015260840161068c565b80601054610c5d9190612d65565b341015610c7c5760405162461bcd60e51b815260040161068c90612c2c565b60118383604051610c8e929190612a8e565b9081526040519081900360200190205460ff1615610ce95760405162461bcd60e51b81526020600482015260186024820152772a3432903a37b5b2b7103430b9903132b2b7103ab9b2b21760411b604482015260640161068c565b610d33610cf786863361161f565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061156d92505050565b610d4f5760405162461bcd60e51b815260040161068c90612bcf565b60005b81811015610d92576000610d65600d5490565b9050610d713382611ae5565b610d7f600d80546001019055565b5080610d8a81612e02565b915050610d52565b50600160118484604051610da7929190612a8e565b908152604051908190036020018120805492151560ff19909316929092179091557f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe90610df79033908490612b0a565b60405180910390a150506001600b55505050565b6000610e1660085490565b8210610e795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161068c565b60088281548110610e9a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068c565b60006001600160a01b038216610f8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068c565b506001600160a01b031660009081526003602052604090205490565b33610fb3610fe5565b6001600160a01b031614610fd95760405162461bcd60e51b815260040161068c90612bf7565b610fe36000611aff565b565b600c546001600160a01b031690565b6060600180546106ba90612dc7565b3361100c610fe5565b6001600160a01b0316146110325760405162461bcd60e51b815260040161068c90612bf7565b600e80546002919060ff1916600183610914565b6001600160a01b03821633141561109b5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015260640161068c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600b54141561112a5760405162461bcd60e51b815260040161068c90612d02565b6002600b556001600e5460ff16600381111561115657634e487b7160e01b600052602160045260246000fd5b1461119c5760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b6329034b9903737ba1030b1ba34bb329760511b604482015260640161068c565b333b156111bb5760405162461bcd60e51b815260040161068c90612cb4565b3360009081526012602052604090205460ff16156112355760405162461bcd60e51b815260206004820152603160248201527f5468652077616c6c657420616464726573732068617320616c7265616479206d60448201527034b73a32b21034b710383932b9b0b6329760791b606482015260840161068c565b6125c5611241600d5490565b61124c906001612d39565b111561129a5760405162461bcd60e51b815260206004820152601e60248201527f4d617820737570706c79206f6620746f6b656e732065786365656465642e0000604482015260640161068c565b6010543410156112bc5760405162461bcd60e51b815260040161068c90612c2c565b6113066112ca85853361161f565b83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061156d92505050565b6113225760405162461bcd60e51b815260040161068c90612bcf565b600061132d600d5490565b90506113393382611ae5565b611347600d80546001019055565b3360008181526012602052604090819020805460ff1916600190811790915590517f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe92610df7929091612b0a565b3361139e610fe5565b6001600160a01b0316146113c45760405162461bcd60e51b815260040161068c90612bf7565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b336113f5610fe5565b6001600160a01b03161461141b5760405162461bcd60e51b815260040161068c90612bf7565b604051479060009081906001600160a01b0385169084908381818185875af1925050503d806000811461146a576040519150601f19603f3d011682016040523d82523d6000602084013e61146f565b606091505b5091509150816114b85760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b604482015260640161068c565b50505050565b336114c7610fe5565b6001600160a01b0316146114ed5760405162461bcd60e51b815260040161068c90612bf7565b600e80546003919060ff1916600183610914565b61150b338361184c565b6115275760405162461bcd60e51b815260040161068c90612c63565b6114b884848484611b51565b606061153d61159c565b61154683611b84565b604051602001611557929190612a9e565b6040516020818303038152906040529050919050565b600e5460009061010090046001600160a01b031661158b848461098f565b6001600160a01b0316149392505050565b6060600f80546106ba90612dc7565b336115b4610fe5565b6001600160a01b0316146115da5760405162461bcd60e51b815260040161068c90612bf7565b80516115ed90600f906020840190612566565b5050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000838330846040516020016116389493929190612b23565b6040516020818303038152906040528051906020012090509392505050565b33611660610fe5565b6001600160a01b0316146116865760405162461bcd60e51b815260040161068c90612bf7565b6001600160a01b0381166116eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068c565b6116f481611aff565b50565b33611700610fe5565b6001600160a01b0316146117265760405162461bcd60e51b815260040161068c90612bf7565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561175e573d6000803e3d6000fd5b507fdd14374458d4625d231f09a9f173ecc29d3953e238011f5ff6d06e94ac6b2bcd8282604051611790929190612b0a565b60405180910390a15050565b60006001600160e01b0319821663780e9d6360e01b14806106a557506106a582611c9d565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181382610eac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611857826117c1565b6118b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068c565b60006118c383610eac565b9050806001600160a01b0316846001600160a01b031614806118fe5750836001600160a01b03166118f38461073d565b6001600160a01b0316145b8061190e575061190e81856115f1565b949350505050565b826001600160a01b031661192982610eac565b6001600160a01b0316146119915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068c565b6001600160a01b0382166119f35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068c565b6119fe838383611ced565b611a096000826117de565b6001600160a01b0383166000908152600360205260408120805460019290611a32908490612d84565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a60908490612d39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806000611ad08585611cf8565b91509150611add81611d68565b509392505050565b6115ed828260405180602001604052806000815250611f64565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b5c848484611916565b611b6884848484611f97565b6114b85760405162461bcd60e51b815260040161068c90612b7d565b606081611ba85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bd25780611bbc81612e02565b9150611bcb9050600a83612d51565b9150611bac565b6000816001600160401b03811115611bfa57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c24576020820181803683370190505b5090505b841561190e57611c39600183612d84565b9150611c46600a86612e1d565b611c51906030612d39565b60f81b818381518110611c7457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c96600a86612d51565b9450611c28565b60006001600160e01b031982166380ac58cd60e01b1480611cce57506001600160e01b03198216635b5e139f60e01b145b806106a557506301ffc9a760e01b6001600160e01b03198316146106a5565b6108d18383836120a4565b600080825160411415611d2f5760208301516040840151606085015160001a611d238782858561215c565b94509450505050611d61565b825160401415611d595760208301516040840151611d4e86838361223f565b935093505050611d61565b506000905060025b9250929050565b6000816004811115611d8a57634e487b7160e01b600052602160045260246000fd5b1415611d935750565b6001816004811115611db557634e487b7160e01b600052602160045260246000fd5b1415611dfe5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b604482015260640161068c565b6002816004811115611e2057634e487b7160e01b600052602160045260246000fd5b1415611e6e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161068c565b6003816004811115611e9057634e487b7160e01b600052602160045260246000fd5b1415611ee95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161068c565b6004816004811115611f0b57634e487b7160e01b600052602160045260246000fd5b14156116f45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161068c565b611f6e838361226e565b611f7b6000848484611f97565b6108d15760405162461bcd60e51b815260040161068c90612b7d565b60006001600160a01b0384163b1561209957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fdb903390899088908890600401612acd565b602060405180830381600087803b158015611ff557600080fd5b505af1925050508015612025575060408051601f3d908101601f191682019092526120229181019061288b565b60015b61207f573d808015612053576040519150601f19603f3d011682016040523d82523d6000602084013e612058565b606091505b5080516120775760405162461bcd60e51b815260040161068c90612b7d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061190e565b506001949350505050565b6001600160a01b0383166120ff576120fa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612122565b816001600160a01b0316836001600160a01b0316146121225761212283826123ac565b6001600160a01b038216612139576108d181612449565b826001600160a01b0316826001600160a01b0316146108d1576108d18282612522565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156121895750600090506003612236565b8460ff16601b141580156121a157508460ff16601c14155b156121b25750600090506004612236565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612206573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661222f57600060019250925050612236565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016122608782888561215c565b935093505050935093915050565b6001600160a01b0382166122c45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068c565b6122cd816117c1565b156123195760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604482015260640161068c565b61232560008383611ced565b6001600160a01b038216600090815260036020526040812080546001929061234e908490612d39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123b984610f23565b6123c39190612d84565b600083815260076020526040902054909150808214612416576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061245b90600190612d84565b6000838152600960205260408120546008805493945090928490811061249157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106124c057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061250657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061252d83610f23565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461257290612dc7565b90600052602060002090601f01602090048101928261259457600085556125da565b82601f106125ad57805160ff19168380011785556125da565b828001600101855582156125da579182015b828111156125da5782518255916020019190600101906125bf565b506125e69291506125ea565b5090565b5b808211156125e657600081556001016125eb565b60006001600160401b038084111561261957612619612e5d565b604051601f8501601f19908116603f0116810190828211818310171561264157612641612e5d565b8160405280935085815286868601111561265a57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112612685578182fd5b5081356001600160401b0381111561269b578182fd5b602083019150836020828501011115611d6157600080fd5b600082601f8301126126c3578081fd5b6109f1838335602085016125ff565b6000602082840312156126e3578081fd5b81356109f181612e73565b60008060408385031215612700578081fd5b823561270b81612e73565b9150602083013561271b81612e73565b809150509250929050565b60008060006060848603121561273a578081fd5b833561274581612e73565b9250602084013561275581612e73565b929592945050506040919091013590565b6000806000806080858703121561277b578081fd5b843561278681612e73565b9350602085013561279681612e73565b92506040850135915060608501356001600160401b038111156127b7578182fd5b6127c3878288016126b3565b91505092959194509250565b600080604083850312156127e1578182fd5b82356127ec81612e73565b91506020830135801515811461271b578182fd5b60008060408385031215612812578182fd5b823561281d81612e73565b946020939093013593505050565b6000806040838503121561283d578182fd5b8235915060208301356001600160401b03811115612859578182fd5b612865858286016126b3565b9150509250929050565b600060208284031215612880578081fd5b81356109f181612e88565b60006020828403121561289c578081fd5b81516109f181612e88565b6000602082840312156128b8578081fd5b81356001600160401b038111156128cd578182fd5b61190e848285016126b3565b6000806000604084860312156128ed578081fd5b83356001600160401b03811115612902578182fd5b61290e86828701612674565b909450925050602084013561292281612e73565b809150509250925092565b60008060008060408587031215612942578182fd5b84356001600160401b0380821115612958578384fd5b61296488838901612674565b9096509450602087013591508082111561297c578384fd5b5061298987828801612674565b95989497509550505050565b6000806000806000606086880312156129ac578283fd5b85356001600160401b03808211156129c2578485fd5b6129ce89838a01612674565b909750955060208801359150808211156129e6578485fd5b506129f388828901612674565b96999598509660400135949350505050565b600060208284031215612a16578081fd5b81356001600160401b03811115612a2b578182fd5b8201601f81018413612a3b578182fd5b61190e848235602084016125ff565b600060208284031215612a5b578081fd5b5035919050565b60008151808452612a7a816020860160208601612d9b565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b60008351612ab0818460208801612d9b565b835190830190612ac4818360208801612d9b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0090830184612a62565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6060815283606082015283856080830137600060808583018101919091526001600160a01b039384166020830152919092166040830152601f909201601f19160101919050565b6020815260006109f16020830184612a62565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600e908201526d24b73b30b634b2103a37b5b2b71760911b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f45746865722076616c75652073656e7420697320696e636f72726563742e0000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602e908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f2070617260408201526d3a3c903bb4ba34103132b0b9399760911b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115612d4c57612d4c612e31565b500190565b600082612d6057612d60612e47565b500490565b6000816000190483118215151615612d7f57612d7f612e31565b500290565b600082821015612d9657612d96612e31565b500390565b60005b83811015612db6578181015183820152602001612d9e565b838111156114b85750506000910152565b600181811c90821680612ddb57607f821691505b60208210811415612dfc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1657612e16612e31565b5060010190565b600082612e2c57612e2c612e47565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146116f457600080fd5b6001600160e01b0319811681146116f457600080fdfea26469706673582212200da9118db037acc3df4078a7fd53cb9cee229b2cae7d106df1082c70a3caa98a64736f6c63430008040033000000000000000000000000fc8e216a7de2286972325e876c50117fe5076e85

Deployed Bytecode

0x6080604052600436106101c45760003560e01c80639f96cd25116100f35780639f96cd2514610415578063a22cb4651461042a578063a2f4dc151461044a578063a7ecd37e1461045d578063a905821a1461047d578063b0384ea11461049d578063b88d4fde146104b2578063bc660cac146104d2578063c87b56dd14610502578063cd9f9b9214610522578063cfa8ba4f1461055d578063d547cfb71461057d578063da649ed714610592578063e0df5b6f146105a8578063e985e9c5146105c8578063ec8ba2d9146105e8578063f0292a0314610608578063f2fde38b1461061d578063fa09e6301461063d57600080fd5b8062728e46146101c957806301ffc9a7146101eb57806306fdde0314610220578063081812fc14610242578063095ea7b31461027a578063157c42291461029a57806318160ddd146102af57806323af8827146102ce57806323b872dd146102e3578063265d3e97146103035780632f745c591461032357806342842e0e146103435780634a2728ab146103635780634f6ccce7146103765780636352211e1461039657806370a08231146103b6578063715018a6146103d65780638da5cb5b146103eb57806395d89b4114610400575b600080fd5b3480156101d557600080fd5b506101e96101e4366004612a4a565b61065d565b005b3480156101f757600080fd5b5061020b61020636600461286f565b61069a565b60405190151581526020015b60405180910390f35b34801561022c57600080fd5b506102356106ab565b6040516102179190612b6a565b34801561024e57600080fd5b5061026261025d366004612a4a565b61073d565b6040516001600160a01b039091168152602001610217565b34801561028657600080fd5b506101e9610295366004612800565b6107c5565b3480156102a657600080fd5b506101e96108d6565b3480156102bb57600080fd5b506008545b604051908152602001610217565b3480156102da57600080fd5b506101e961091b565b3480156102ef57600080fd5b506101e96102fe366004612726565b61095e565b34801561030f57600080fd5b5061026261031e36600461282b565b61098f565b34801561032f57600080fd5b506102c061033e366004612800565b6109f8565b34801561034f57600080fd5b506101e961035e366004612726565b610a8e565b6101e9610371366004612995565b610aa9565b34801561038257600080fd5b506102c0610391366004612a4a565b610e0b565b3480156103a257600080fd5b506102626103b1366004612a4a565b610eac565b3480156103c257600080fd5b506102c06103d13660046126d2565b610f23565b3480156103e257600080fd5b506101e9610faa565b3480156103f757600080fd5b50610262610fe5565b34801561040c57600080fd5b50610235610ff4565b34801561042157600080fd5b506101e9611003565b34801561043657600080fd5b506101e96104453660046127cf565b611046565b6101e961045836600461292d565b611107565b34801561046957600080fd5b506101e96104783660046126d2565b611395565b34801561048957600080fd5b506101e96104983660046126d2565b6113ec565b3480156104a957600080fd5b506101e96114be565b3480156104be57600080fd5b506101e96104cd366004612766565b611501565b3480156104de57600080fd5b5061020b6104ed3660046126d2565b60126020526000908152604090205460ff1681565b34801561050e57600080fd5b5061023561051d366004612a4a565b611533565b34801561052e57600080fd5b5061020b61053d3660046128a7565b805160208183018101805160118252928201919093012091525460ff1681565b34801561056957600080fd5b5061020b61057836600461282b565b61156d565b34801561058957600080fd5b5061023561159c565b34801561059e57600080fd5b506102c06125c581565b3480156105b457600080fd5b506101e96105c3366004612a05565b6115ab565b3480156105d457600080fd5b5061020b6105e33660046126ee565b6115f1565b3480156105f457600080fd5b506102c06106033660046128d9565b61161f565b34801561061457600080fd5b506102c0600581565b34801561062957600080fd5b506101e96106383660046126d2565b611657565b34801561064957600080fd5b506101e96106583660046126d2565b6116f7565b33610666610fe5565b6001600160a01b0316146106955760405162461bcd60e51b815260040161068c90612bf7565b60405180910390fd5b601055565b60006106a58261179c565b92915050565b6060600080546106ba90612dc7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690612dc7565b80156107335780601f1061070857610100808354040283529160200191610733565b820191906000526020600020905b81548152906001019060200180831161071657829003601f168201915b5050505050905090565b6000610748826117c1565b6107a95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068c565b506000908152600460205260409020546001600160a01b031690565b60006107d082610eac565b9050806001600160a01b0316836001600160a01b0316141561083e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068c565b336001600160a01b038216148061085a575061085a81336115f1565b6108c75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606482015260840161068c565b6108d183836117de565b505050565b336108df610fe5565b6001600160a01b0316146109055760405162461bcd60e51b815260040161068c90612bf7565b600e80546001919060ff191682805b0217905550565b33610924610fe5565b6001600160a01b03161461094a5760405162461bcd60e51b815260040161068c90612bf7565b600e80546000919060ff1916600183610914565b610968338261184c565b6109845760405162461bcd60e51b815260040161068c90612c63565b6108d1838383611916565b60006109f1826109eb856040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611ac1565b9392505050565b6000610a0383610f23565b8210610a655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161068c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108d183838360405180602001604052806000815250611501565b6002600b541415610acc5760405162461bcd60e51b815260040161068c90612d02565b6002600b819055600e5460ff166003811115610af857634e487b7160e01b600052602160045260246000fd5b14610b3b5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b604482015260640161068c565b333b15610b5a5760405162461bcd60e51b815260040161068c90612cb4565b6005811115610bce5760405162461bcd60e51b815260206004820152603a60248201527f596f752063616e206f6e6c79206272696e672035205061727479204265617273604482015279103a37903230b731b2903832b9103a3930b739b0b1ba34b7b71760311b606482015260840161068c565b6125c581610bdb600d5490565b610be59190612d39565b1115610c4f5760405162461bcd60e51b815260206004820152603360248201527f416d6f756e742073686f756c64206e6f7420657863656564206d61782073757060448201527238363c9037b3102830b93a3c902132b0b9399760691b606482015260840161068c565b80601054610c5d9190612d65565b341015610c7c5760405162461bcd60e51b815260040161068c90612c2c565b60118383604051610c8e929190612a8e565b9081526040519081900360200190205460ff1615610ce95760405162461bcd60e51b81526020600482015260186024820152772a3432903a37b5b2b7103430b9903132b2b7103ab9b2b21760411b604482015260640161068c565b610d33610cf786863361161f565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061156d92505050565b610d4f5760405162461bcd60e51b815260040161068c90612bcf565b60005b81811015610d92576000610d65600d5490565b9050610d713382611ae5565b610d7f600d80546001019055565b5080610d8a81612e02565b915050610d52565b50600160118484604051610da7929190612a8e565b908152604051908190036020018120805492151560ff19909316929092179091557f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe90610df79033908490612b0a565b60405180910390a150506001600b55505050565b6000610e1660085490565b8210610e795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161068c565b60088281548110610e9a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068c565b60006001600160a01b038216610f8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068c565b506001600160a01b031660009081526003602052604090205490565b33610fb3610fe5565b6001600160a01b031614610fd95760405162461bcd60e51b815260040161068c90612bf7565b610fe36000611aff565b565b600c546001600160a01b031690565b6060600180546106ba90612dc7565b3361100c610fe5565b6001600160a01b0316146110325760405162461bcd60e51b815260040161068c90612bf7565b600e80546002919060ff1916600183610914565b6001600160a01b03821633141561109b5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015260640161068c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600b54141561112a5760405162461bcd60e51b815260040161068c90612d02565b6002600b556001600e5460ff16600381111561115657634e487b7160e01b600052602160045260246000fd5b1461119c5760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b6329034b9903737ba1030b1ba34bb329760511b604482015260640161068c565b333b156111bb5760405162461bcd60e51b815260040161068c90612cb4565b3360009081526012602052604090205460ff16156112355760405162461bcd60e51b815260206004820152603160248201527f5468652077616c6c657420616464726573732068617320616c7265616479206d60448201527034b73a32b21034b710383932b9b0b6329760791b606482015260840161068c565b6125c5611241600d5490565b61124c906001612d39565b111561129a5760405162461bcd60e51b815260206004820152601e60248201527f4d617820737570706c79206f6620746f6b656e732065786365656465642e0000604482015260640161068c565b6010543410156112bc5760405162461bcd60e51b815260040161068c90612c2c565b6113066112ca85853361161f565b83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061156d92505050565b6113225760405162461bcd60e51b815260040161068c90612bcf565b600061132d600d5490565b90506113393382611ae5565b611347600d80546001019055565b3360008181526012602052604090819020805460ff1916600190811790915590517f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe92610df7929091612b0a565b3361139e610fe5565b6001600160a01b0316146113c45760405162461bcd60e51b815260040161068c90612bf7565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b336113f5610fe5565b6001600160a01b03161461141b5760405162461bcd60e51b815260040161068c90612bf7565b604051479060009081906001600160a01b0385169084908381818185875af1925050503d806000811461146a576040519150601f19603f3d011682016040523d82523d6000602084013e61146f565b606091505b5091509150816114b85760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b604482015260640161068c565b50505050565b336114c7610fe5565b6001600160a01b0316146114ed5760405162461bcd60e51b815260040161068c90612bf7565b600e80546003919060ff1916600183610914565b61150b338361184c565b6115275760405162461bcd60e51b815260040161068c90612c63565b6114b884848484611b51565b606061153d61159c565b61154683611b84565b604051602001611557929190612a9e565b6040516020818303038152906040529050919050565b600e5460009061010090046001600160a01b031661158b848461098f565b6001600160a01b0316149392505050565b6060600f80546106ba90612dc7565b336115b4610fe5565b6001600160a01b0316146115da5760405162461bcd60e51b815260040161068c90612bf7565b80516115ed90600f906020840190612566565b5050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000838330846040516020016116389493929190612b23565b6040516020818303038152906040528051906020012090509392505050565b33611660610fe5565b6001600160a01b0316146116865760405162461bcd60e51b815260040161068c90612bf7565b6001600160a01b0381166116eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068c565b6116f481611aff565b50565b33611700610fe5565b6001600160a01b0316146117265760405162461bcd60e51b815260040161068c90612bf7565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561175e573d6000803e3d6000fd5b507fdd14374458d4625d231f09a9f173ecc29d3953e238011f5ff6d06e94ac6b2bcd8282604051611790929190612b0a565b60405180910390a15050565b60006001600160e01b0319821663780e9d6360e01b14806106a557506106a582611c9d565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181382610eac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611857826117c1565b6118b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068c565b60006118c383610eac565b9050806001600160a01b0316846001600160a01b031614806118fe5750836001600160a01b03166118f38461073d565b6001600160a01b0316145b8061190e575061190e81856115f1565b949350505050565b826001600160a01b031661192982610eac565b6001600160a01b0316146119915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068c565b6001600160a01b0382166119f35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068c565b6119fe838383611ced565b611a096000826117de565b6001600160a01b0383166000908152600360205260408120805460019290611a32908490612d84565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a60908490612d39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806000611ad08585611cf8565b91509150611add81611d68565b509392505050565b6115ed828260405180602001604052806000815250611f64565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b5c848484611916565b611b6884848484611f97565b6114b85760405162461bcd60e51b815260040161068c90612b7d565b606081611ba85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bd25780611bbc81612e02565b9150611bcb9050600a83612d51565b9150611bac565b6000816001600160401b03811115611bfa57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c24576020820181803683370190505b5090505b841561190e57611c39600183612d84565b9150611c46600a86612e1d565b611c51906030612d39565b60f81b818381518110611c7457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c96600a86612d51565b9450611c28565b60006001600160e01b031982166380ac58cd60e01b1480611cce57506001600160e01b03198216635b5e139f60e01b145b806106a557506301ffc9a760e01b6001600160e01b03198316146106a5565b6108d18383836120a4565b600080825160411415611d2f5760208301516040840151606085015160001a611d238782858561215c565b94509450505050611d61565b825160401415611d595760208301516040840151611d4e86838361223f565b935093505050611d61565b506000905060025b9250929050565b6000816004811115611d8a57634e487b7160e01b600052602160045260246000fd5b1415611d935750565b6001816004811115611db557634e487b7160e01b600052602160045260246000fd5b1415611dfe5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b604482015260640161068c565b6002816004811115611e2057634e487b7160e01b600052602160045260246000fd5b1415611e6e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161068c565b6003816004811115611e9057634e487b7160e01b600052602160045260246000fd5b1415611ee95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161068c565b6004816004811115611f0b57634e487b7160e01b600052602160045260246000fd5b14156116f45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161068c565b611f6e838361226e565b611f7b6000848484611f97565b6108d15760405162461bcd60e51b815260040161068c90612b7d565b60006001600160a01b0384163b1561209957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fdb903390899088908890600401612acd565b602060405180830381600087803b158015611ff557600080fd5b505af1925050508015612025575060408051601f3d908101601f191682019092526120229181019061288b565b60015b61207f573d808015612053576040519150601f19603f3d011682016040523d82523d6000602084013e612058565b606091505b5080516120775760405162461bcd60e51b815260040161068c90612b7d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061190e565b506001949350505050565b6001600160a01b0383166120ff576120fa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612122565b816001600160a01b0316836001600160a01b0316146121225761212283826123ac565b6001600160a01b038216612139576108d181612449565b826001600160a01b0316826001600160a01b0316146108d1576108d18282612522565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156121895750600090506003612236565b8460ff16601b141580156121a157508460ff16601c14155b156121b25750600090506004612236565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612206573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661222f57600060019250925050612236565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016122608782888561215c565b935093505050935093915050565b6001600160a01b0382166122c45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068c565b6122cd816117c1565b156123195760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604482015260640161068c565b61232560008383611ced565b6001600160a01b038216600090815260036020526040812080546001929061234e908490612d39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123b984610f23565b6123c39190612d84565b600083815260076020526040902054909150808214612416576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061245b90600190612d84565b6000838152600960205260408120546008805493945090928490811061249157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106124c057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061250657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061252d83610f23565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461257290612dc7565b90600052602060002090601f01602090048101928261259457600085556125da565b82601f106125ad57805160ff19168380011785556125da565b828001600101855582156125da579182015b828111156125da5782518255916020019190600101906125bf565b506125e69291506125ea565b5090565b5b808211156125e657600081556001016125eb565b60006001600160401b038084111561261957612619612e5d565b604051601f8501601f19908116603f0116810190828211818310171561264157612641612e5d565b8160405280935085815286868601111561265a57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112612685578182fd5b5081356001600160401b0381111561269b578182fd5b602083019150836020828501011115611d6157600080fd5b600082601f8301126126c3578081fd5b6109f1838335602085016125ff565b6000602082840312156126e3578081fd5b81356109f181612e73565b60008060408385031215612700578081fd5b823561270b81612e73565b9150602083013561271b81612e73565b809150509250929050565b60008060006060848603121561273a578081fd5b833561274581612e73565b9250602084013561275581612e73565b929592945050506040919091013590565b6000806000806080858703121561277b578081fd5b843561278681612e73565b9350602085013561279681612e73565b92506040850135915060608501356001600160401b038111156127b7578182fd5b6127c3878288016126b3565b91505092959194509250565b600080604083850312156127e1578182fd5b82356127ec81612e73565b91506020830135801515811461271b578182fd5b60008060408385031215612812578182fd5b823561281d81612e73565b946020939093013593505050565b6000806040838503121561283d578182fd5b8235915060208301356001600160401b03811115612859578182fd5b612865858286016126b3565b9150509250929050565b600060208284031215612880578081fd5b81356109f181612e88565b60006020828403121561289c578081fd5b81516109f181612e88565b6000602082840312156128b8578081fd5b81356001600160401b038111156128cd578182fd5b61190e848285016126b3565b6000806000604084860312156128ed578081fd5b83356001600160401b03811115612902578182fd5b61290e86828701612674565b909450925050602084013561292281612e73565b809150509250925092565b60008060008060408587031215612942578182fd5b84356001600160401b0380821115612958578384fd5b61296488838901612674565b9096509450602087013591508082111561297c578384fd5b5061298987828801612674565b95989497509550505050565b6000806000806000606086880312156129ac578283fd5b85356001600160401b03808211156129c2578485fd5b6129ce89838a01612674565b909750955060208801359150808211156129e6578485fd5b506129f388828901612674565b96999598509660400135949350505050565b600060208284031215612a16578081fd5b81356001600160401b03811115612a2b578182fd5b8201601f81018413612a3b578182fd5b61190e848235602084016125ff565b600060208284031215612a5b578081fd5b5035919050565b60008151808452612a7a816020860160208601612d9b565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b60008351612ab0818460208801612d9b565b835190830190612ac4818360208801612d9b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0090830184612a62565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6060815283606082015283856080830137600060808583018101919091526001600160a01b039384166020830152919092166040830152601f909201601f19160101919050565b6020815260006109f16020830184612a62565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600e908201526d24b73b30b634b2103a37b5b2b71760911b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f45746865722076616c75652073656e7420697320696e636f72726563742e0000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602e908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f2070617260408201526d3a3c903bb4ba34103132b0b9399760911b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115612d4c57612d4c612e31565b500190565b600082612d6057612d60612e47565b500490565b6000816000190483118215151615612d7f57612d7f612e31565b500290565b600082821015612d9657612d96612e31565b500390565b60005b83811015612db6578181015183820152602001612d9e565b838111156114b85750506000910152565b600181811c90821680612ddb57607f821691505b60208210811415612dfc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1657612e16612e31565b5060010190565b600082612e2c57612e2c612e47565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146116f457600080fd5b6001600160e01b0319811681146116f457600080fdfea26469706673582212200da9118db037acc3df4078a7fd53cb9cee229b2cae7d106df1082c70a3caa98a64736f6c63430008040033

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

000000000000000000000000fc8e216a7de2286972325e876c50117fe5076e85

-----Decoded View---------------
Arg [0] : signer (address): 0xFc8E216A7dE2286972325e876c50117Fe5076E85

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


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.