ETH Price: $2,960.45 (-5.61%)
Gas: 8 Gwei

Contract

0x3b476a6016D62021656E6DeC469413c18559E27E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Set Approval For...201808762024-06-27 5:16:358 days ago1719465395IN
PLAYER ONE: 1P Token
0 ETH0.000295356.32801333
Safe Transfer Fr...201456312024-06-22 7:03:3513 days ago1719039815IN
PLAYER ONE: 1P Token
0 ETH0.000255282.3517742
Safe Transfer Fr...201218262024-06-18 23:09:3516 days ago1718752175IN
PLAYER ONE: 1P Token
0 ETH0.000391624.46984411
Set Approval For...201176062024-06-18 8:58:1117 days ago1718701091IN
PLAYER ONE: 1P Token
0 ETH0.000274135.87481643
Set Approval For...201013172024-06-16 2:18:5919 days ago1718504339IN
PLAYER ONE: 1P Token
0 ETH0.000067732.74477889
Set Approval For...200967652024-06-15 11:02:1120 days ago1718449331IN
PLAYER ONE: 1P Token
0 ETH0.000171483.67418713
Safe Transfer Fr...200313872024-06-06 7:46:4729 days ago1717660007IN
PLAYER ONE: 1P Token
0 ETH0.0012838513.33901647
Set Approval For...200113612024-06-03 12:41:2332 days ago1717418483IN
PLAYER ONE: 1P Token
0 ETH0.000457859.80972332
Safe Transfer Fr...199558452024-05-26 18:28:4739 days ago1716748127IN
PLAYER ONE: 1P Token
0 ETH0.000901758.30738884
Set Approval For...199254722024-05-22 12:38:5944 days ago1716381539IN
PLAYER ONE: 1P Token
0 ETH0.0005549711.91194997
Safe Transfer Fr...199045432024-05-19 14:21:1147 days ago1716128471IN
PLAYER ONE: 1P Token
0 ETH0.000514394.73882905
Safe Transfer Fr...199045172024-05-19 14:15:5947 days ago1716128159IN
PLAYER ONE: 1P Token
0 ETH0.000591384.96945968
Safe Transfer Fr...198937542024-05-18 2:07:3548 days ago1715998055IN
PLAYER ONE: 1P Token
0 ETH0.000375633.46054957
Safe Transfer Fr...198734582024-05-15 6:02:3551 days ago1715752955IN
PLAYER ONE: 1P Token
0 ETH0.000416953.84162566
Safe Transfer Fr...198236872024-05-08 6:54:3558 days ago1715151275IN
PLAYER ONE: 1P Token
0 ETH0.000420764.37170037
Set Approval For...198124142024-05-06 17:05:2359 days ago1715015123IN
PLAYER ONE: 1P Token
0 ETH0.000170836.91587768
Safe Transfer Fr...198102882024-05-06 9:56:3560 days ago1714989395IN
PLAYER ONE: 1P Token
0 ETH0.000830137.64846837
Safe Transfer Fr...198099292024-05-06 8:44:1160 days ago1714985051IN
PLAYER ONE: 1P Token
0 ETH0.0011479310.57656859
Safe Transfer Fr...198099202024-05-06 8:42:2360 days ago1714984943IN
PLAYER ONE: 1P Token
0 ETH0.0012465610.47613114
Set Approval For...197888232024-05-03 9:53:5963 days ago1714730039IN
PLAYER ONE: 1P Token
0 ETH0.00016176.55265658
Set Approval For...197450422024-04-27 6:59:3569 days ago1714201175IN
PLAYER ONE: 1P Token
0 ETH0.00014866.01592389
Set Approval For...197429892024-04-27 0:06:4769 days ago1714176407IN
PLAYER ONE: 1P Token
0 ETH0.000126885.14150028
Safe Transfer Fr...197227342024-04-24 4:03:2372 days ago1713931403IN
PLAYER ONE: 1P Token
0 ETH0.001085439.99961985
Set Approval For...197015932024-04-21 5:08:1175 days ago1713676091IN
PLAYER ONE: 1P Token
0 ETH0.00031466.75268724
Safe Transfer Fr...196825262024-04-18 13:05:2378 days ago1713445523IN
PLAYER ONE: 1P Token
0 ETH0.0014224713.10749576
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PlayerOne

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : PlayerOne.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract PlayerOne is ReentrancyGuard,ERC721, ERC721Enumerable, ERC721Burnable, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;
    using EnumerableSet for EnumerableSet.AddressSet;


    EnumerableSet.AddressSet private _minters;

    Counters.Counter private _tokenIdCounter;

    // claim id->claimed
    mapping(uint256 => bool) public claimed;

    string public baseURIPrefix = "ipfs://metadata json folder cid/";

    constructor() ERC721("PLAYER ONE", "1P") {
        baseURIPrefix = "ipfs://QmaNPK17hd5Hb4Sudq6MhwLeCx43SiAmv5kGUspMGzReaE/";
    }

    function isMinter(address value) public view returns (bool) {
        return _minters.contains(value);
    }

    function addMinter(address value) public onlyOwner returns (bool) {
        return _minters.add(value);
    }
    function removeMinter(address value) public onlyOwner returns (bool) {
        return _minters.remove(value);
    }

    function getMinters() public view returns (address[] memory){
        return _minters.values();
    }

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

    function _verify(bytes32 digest, bytes memory signature) internal view returns (bool) {
        address signer = ECDSA.recover(digest, signature);
        return isMinter(signer);
    }
    function mintHash(address to,uint256 claimId) public view returns (bytes32) {
        return ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(block.chainid,this,to,claimId)));
    }

    function claim(address to,uint256 claimId,bytes memory signature) external nonReentrant returns (uint256) {
        require(!claimed[claimId], "PlayerOne: claimed");

        bytes32 hashStr = mintHash(to,claimId);
        require(_verify(hashStr,signature), "PlayerOne: invalid signature");
        // claimed
        claimed[claimId] = true;
        // mint
        return _mintTo(to);
    }

    // mint
    function mint(address to) public returns (uint256){
        require(isMinter(_msgSender()) , "PlayerOne: caller is not the minter");
        return _mintTo(to);
    }

    // whith id
    function _mintTo(address to) internal returns (uint256){
        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();
        require(tokenId <= 10000, "PlayerOne: exceeds total supply");

        _safeMint(to, tokenId);
        return tokenId;
    }



    function exists(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
    internal
    override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721, ERC721Enumerable)
    returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

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

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

File 2 of 18 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 3 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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 making 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 4 of 18 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 7 of 18 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

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

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 9 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 11 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

    /**
     * @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 12 of 18 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"baseURIPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimId","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinters","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":"address","name":"value","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimId","type":"uint256"}],"name":"mintHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"removeMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60806040526040518060400160405280602081526020017f697066733a2f2f6d65746164617461206a736f6e20666f6c646572206369642f81525060109080519060200190620000519291906200022e565b503480156200005f57600080fd5b506040518060400160405280600a81526020017f504c41594552204f4e45000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f315000000000000000000000000000000000000000000000000000000000000081525060016000819055508160019080519060200190620000ec9291906200022e565b508060029080519060200190620001059291906200022e565b505050620001286200011c6200016060201b60201c565b6200016860201b60201c565b60405180606001604052806036815260200162004a396036913960109080519060200190620001599291906200022e565b5062000343565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023c90620002de565b90600052602060002090601f016020900481019282620002605760008555620002ac565b82601f106200027b57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ab5782518255916020019190600101906200028e565b5b509050620002bb9190620002bf565b5090565b5b80821115620002da576000816000905550600101620002c0565b5090565b60006002820490506001821680620002f757607f821691505b602082108114156200030e576200030d62000314565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146e680620003536000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636b32810b11610104578063a22cb465116100a2578063dbe7e3bd11610071578063dbe7e3bd146105b5578063dd3b62b8146105e5578063e985e9c514610615578063f2fde38b14610645576101da565b8063a22cb4651461051d578063aa271e1a14610539578063b88d4fde14610569578063c87b56dd14610585576101da565b80638da5cb5b116100de5780638da5cb5b146104815780638f0bc1521461049f57806395d89b41146104cf578063983b2d56146104ed576101da565b80636b32810b1461042957806370a0823114610447578063715018a614610477576101da565b80633092afd51161017c5780634f6ccce71161014b5780634f6ccce71461037b5780635e9c94c0146103ab5780636352211e146103c95780636a627842146103f9576101da565b80633092afd5146102e357806342842e0e1461031357806342966c681461032f5780634f558e791461034b576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd1461027957806323b872dd146102975780632f745c59146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190613054565b610661565b6040516102069190613764565b60405180910390f35b610217610673565b60405161022491906137df565b60405180910390f35b610247600480360381019061024291906130ae565b610705565b60405161025491906136db565b60405180910390f35b61027760048036038101906102729190612fa5565b61074b565b005b610281610863565b60405161028e9190613b01565b60405180910390f35b6102b160048036038101906102ac9190612e8f565b610870565b005b6102cd60048036038101906102c89190612fa5565b6108d0565b6040516102da9190613b01565b60405180910390f35b6102fd60048036038101906102f89190612e22565b610975565b60405161030a9190613764565b60405180910390f35b61032d60048036038101906103289190612e8f565b61099a565b005b610349600480360381019061034491906130ae565b6109ba565b005b610365600480360381019061036091906130ae565b610a16565b6040516103729190613764565b60405180910390f35b610395600480360381019061039091906130ae565b610a28565b6040516103a29190613b01565b60405180910390f35b6103b3610a99565b6040516103c091906137df565b60405180910390f35b6103e360048036038101906103de91906130ae565b610b27565b6040516103f091906136db565b60405180910390f35b610413600480360381019061040e9190612e22565b610bd9565b6040516104209190613b01565b60405180910390f35b610431610c3a565b60405161043e9190613742565b60405180910390f35b610461600480360381019061045c9190612e22565b610c4b565b60405161046e9190613b01565b60405180910390f35b61047f610d03565b005b610489610d17565b60405161049691906136db565b60405180910390f35b6104b960048036038101906104b49190612fe5565b610d41565b6040516104c69190613b01565b60405180910390f35b6104d7610e90565b6040516104e491906137df565b60405180910390f35b61050760048036038101906105029190612e22565b610f22565b6040516105149190613764565b60405180910390f35b61053760048036038101906105329190612f65565b610f47565b005b610553600480360381019061054e9190612e22565b610f5d565b6040516105609190613764565b60405180910390f35b610583600480360381019061057e9190612ee2565b610f7a565b005b61059f600480360381019061059a91906130ae565b610fdc565b6040516105ac91906137df565b60405180910390f35b6105cf60048036038101906105ca91906130ae565b611044565b6040516105dc9190613764565b60405180910390f35b6105ff60048036038101906105fa9190612fa5565b611064565b60405161060c919061377f565b60405180910390f35b61062f600480360381019061062a9190612e4f565b6110a3565b60405161063c9190613764565b60405180910390f35b61065f600480360381019061065a9190612e22565b611137565b005b600061066c826111bb565b9050919050565b60606001805461068290613dac565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae90613dac565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611235565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061075682610b27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90613a41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107e6611280565b73ffffffffffffffffffffffffffffffffffffffff16148061081557506108148161080f611280565b6110a3565b5b610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906139c1565b60405180910390fd5b61085e8383611288565b505050565b6000600980549050905090565b61088161087b611280565b82611341565b6108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b790613a81565b60405180910390fd5b6108cb8383836113d6565b505050565b60006108db83610c4b565b821061091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390613861565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600061097f61163d565b61099382600c6116bb90919063ffffffff16565b9050919050565b6109b583838360405180602001604052806000815250610f7a565b505050565b6109cb6109c5611280565b82611341565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190613a81565b60405180910390fd5b610a13816116eb565b50565b6000610a2182611808565b9050919050565b6000610a32610863565b8210610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90613a61565b60405180910390fd5b60098281548110610a8757610a86613fac565b5b90600052602060002001549050919050565b60108054610aa690613dac565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290613dac565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b505050505081565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790613a21565b60405180910390fd5b80915050919050565b6000610beb610be6611280565b610f5d565b610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613ae1565b60405180910390fd5b610c3382611874565b9050919050565b6060610c46600c6118e6565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613961565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d0b61163d565b610d156000611907565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060026000541415610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090613aa1565b60405180910390fd5b6002600081905550600f600084815260200190815260200160002060009054906101000a900460ff1615610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990613981565b60405180910390fd5b6000610dfe8585611064565b9050610e0a81846119cd565b610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090613ac1565b60405180910390fd5b6001600f600086815260200190815260200160002060006101000a81548160ff021916908315150217905550610e7e85611874565b91505060016000819055509392505050565b606060028054610e9f90613dac565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb90613dac565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b5050505050905090565b6000610f2c61163d565b610f4082600c6119ee90919063ffffffff16565b9050919050565b610f59610f52611280565b8383611a1e565b5050565b6000610f7382600c611b8b90919063ffffffff16565b9050919050565b610f8b610f85611280565b83611341565b610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190613a81565b60405180910390fd5b610fd684848484611bbb565b50505050565b6060610fe782611235565b6000610ff1611c17565b90506000815111611011576040518060200160405280600081525061103c565b8061101b84611ca9565b60405160200161102c929190613638565b6040516020818303038152906040525b915050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600061109b46308585604051602001611080949392919061368d565b60405160208183030381529060405280519060200120611e0a565b905092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61113f61163d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a6906138a1565b60405180910390fd5b6111b881611907565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061122e575061122d82611e3a565b5b9050919050565b61123e81611808565b61127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613a21565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112fb83610b27565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061134d83610b27565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061138f575061138e81856110a3565b5b806113cd57508373ffffffffffffffffffffffffffffffffffffffff166113b584610705565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113f682610b27565b73ffffffffffffffffffffffffffffffffffffffff161461144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906138c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613901565b60405180910390fd5b6114c7838383611f1c565b6114d2600082611288565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115229190613c75565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115799190613bee565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611638838383611f2c565b505050565b611645611280565b73ffffffffffffffffffffffffffffffffffffffff16611663610d17565b73ffffffffffffffffffffffffffffffffffffffff16146116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090613a01565b60405180910390fd5b565b60006116e3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611f31565b905092915050565b60006116f682610b27565b905061170481600084611f1c565b61170f600083611288565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175f9190613c75565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461180481600084611f2c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611880600e612045565b600061188c600e61205b565b90506127108111156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90613821565b60405180910390fd5b6118dd8382612069565b80915050919050565b606060006118f683600001612087565b905060608190508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806119da84846120e3565b90506119e581610f5d565b91505092915050565b6000611a16836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61210a565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490613921565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7e9190613764565b60405180910390a3505050565b6000611bb3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61217a565b905092915050565b611bc68484846113d6565b611bd28484848461219d565b611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613881565b60405180910390fd5b50505050565b606060108054611c2690613dac565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5290613dac565b8015611c9f5780601f10611c7457610100808354040283529160200191611c9f565b820191906000526020600020905b815481529060010190602001808311611c8257829003601f168201915b5050505050905090565b60606000821415611cf1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e05565b600082905060005b60008214611d23578080611d0c90613e0f565b915050600a82611d1c9190613c44565b9150611cf9565b60008167ffffffffffffffff811115611d3f57611d3e613fdb565b5b6040519080825280601f01601f191660200182016040528015611d715781602001600182028036833780820191505090505b5090505b60008514611dfe57600182611d8a9190613c75565b9150600a85611d999190613e90565b6030611da59190613bee565b60f81b818381518110611dbb57611dba613fac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611df79190613c44565b9450611d75565b8093505050505b919050565b600081604051602001611e1d9190613667565b604051602081830303815290604052805190602001209050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f0557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f155750611f1482612334565b5b9050919050565b611f2783838361239e565b505050565b505050565b60008083600101600084815260200190815260200160002054905060008114612039576000600182611f639190613c75565b9050600060018660000180549050611f7b9190613c75565b9050818114611fea576000866000018281548110611f9c57611f9b613fac565b5b9060005260206000200154905080876000018481548110611fc057611fbf613fac565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611ffe57611ffd613f7d565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061203f565b60009150505b92915050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6120838282604051806020016040528060008152506124b2565b5050565b6060816000018054806020026020016040519081016040528092919081815260200182805480156120d757602002820191906000526020600020905b8154815260200190600101908083116120c3575b50505050509050919050565b60008060006120f2858561250d565b915091506120ff8161255f565b819250505092915050565b6000612116838361217a565b61216f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612174565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b60006121be8473ffffffffffffffffffffffffffffffffffffffff16612734565b15612327578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e7611280565b8786866040518563ffffffff1660e01b815260040161220994939291906136f6565b602060405180830381600087803b15801561222357600080fd5b505af192505050801561225457506040513d601f19601f820116820180604052508101906122519190613081565b60015b6122d7573d8060008114612284576040519150601f19603f3d011682016040523d82523d6000602084013e612289565b606091505b506000815114156122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613881565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061232c565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123a9838383612757565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ec576123e78161275c565b61242b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461242a5761242983826127a5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561246e5761246981612912565b6124ad565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124ac576124ab82826129e3565b5b5b505050565b6124bc8383612a62565b6124c9600084848461219d565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90613881565b60405180910390fd5b505050565b60008060418351141561254f5760008060006020860151925060408601519150606086015160001a905061254387828585612c3c565b94509450505050612558565b60006002915091505b9250929050565b6000600481111561257357612572613f1f565b5b81600481111561258657612585613f1f565b5b141561259157612731565b600160048111156125a5576125a4613f1f565b5b8160048111156125b8576125b7613f1f565b5b14156125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f090613801565b60405180910390fd5b6002600481111561260d5761260c613f1f565b5b8160048111156126205761261f613f1f565b5b1415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890613841565b60405180910390fd5b6003600481111561267557612674613f1f565b5b81600481111561268857612687613f1f565b5b14156126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090613941565b60405180910390fd5b6004808111156126dc576126db613f1f565b5b8160048111156126ef576126ee613f1f565b5b1415612730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612727906139a1565b60405180910390fd5b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127b284610c4b565b6127bc9190613c75565b90506000600860008481526020019081526020016000205490508181146128a1576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506129269190613c75565b90506000600a600084815260200190815260200160002054905060006009838154811061295657612955613fac565b5b90600052602060002001549050806009838154811061297857612977613fac565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806129c7576129c6613f7d565b5b6001900381819060005260206000200160009055905550505050565b60006129ee83610c4b565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac9906139e1565b60405180910390fd5b612adb81611808565b15612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b12906138e1565b60405180910390fd5b612b2760008383611f1c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b779190613bee565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c3860008383611f2c565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612c77576000600391509150612d40565b601b8560ff1614158015612c8f5750601c8560ff1614155b15612ca1576000600491509150612d40565b600060018787878760405160008152602001604052604051612cc6949392919061379a565b6020604051602081039080840390855afa158015612ce8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d3757600060019250925050612d40565b80600092509250505b94509492505050565b6000612d5c612d5784613b41565b613b1c565b905082815260208101848484011115612d7857612d7761400f565b5b612d83848285613d6a565b509392505050565b600081359050612d9a81614654565b92915050565b600081359050612daf8161466b565b92915050565b600081359050612dc481614682565b92915050565b600081519050612dd981614682565b92915050565b600082601f830112612df457612df361400a565b5b8135612e04848260208601612d49565b91505092915050565b600081359050612e1c81614699565b92915050565b600060208284031215612e3857612e37614019565b5b6000612e4684828501612d8b565b91505092915050565b60008060408385031215612e6657612e65614019565b5b6000612e7485828601612d8b565b9250506020612e8585828601612d8b565b9150509250929050565b600080600060608486031215612ea857612ea7614019565b5b6000612eb686828701612d8b565b9350506020612ec786828701612d8b565b9250506040612ed886828701612e0d565b9150509250925092565b60008060008060808587031215612efc57612efb614019565b5b6000612f0a87828801612d8b565b9450506020612f1b87828801612d8b565b9350506040612f2c87828801612e0d565b925050606085013567ffffffffffffffff811115612f4d57612f4c614014565b5b612f5987828801612ddf565b91505092959194509250565b60008060408385031215612f7c57612f7b614019565b5b6000612f8a85828601612d8b565b9250506020612f9b85828601612da0565b9150509250929050565b60008060408385031215612fbc57612fbb614019565b5b6000612fca85828601612d8b565b9250506020612fdb85828601612e0d565b9150509250929050565b600080600060608486031215612ffe57612ffd614019565b5b600061300c86828701612d8b565b935050602061301d86828701612e0d565b925050604084013567ffffffffffffffff81111561303e5761303d614014565b5b61304a86828701612ddf565b9150509250925092565b60006020828403121561306a57613069614019565b5b600061307884828501612db5565b91505092915050565b60006020828403121561309757613096614019565b5b60006130a584828501612dca565b91505092915050565b6000602082840312156130c4576130c3614019565b5b60006130d284828501612e0d565b91505092915050565b60006130e783836130f3565b60208301905092915050565b6130fc81613ca9565b82525050565b61310b81613ca9565b82525050565b61312261311d82613ca9565b613e58565b82525050565b600061313382613b82565b61313d8185613bb0565b935061314883613b72565b8060005b8381101561317957815161316088826130db565b975061316b83613ba3565b92505060018101905061314c565b5085935050505092915050565b61318f81613cbb565b82525050565b61319e81613cc7565b82525050565b6131b56131b082613cc7565b613e6a565b82525050565b60006131c682613b8d565b6131d08185613bc1565b93506131e0818560208601613d79565b6131e98161401e565b840191505092915050565b61320561320082613d34565b613e58565b82525050565b600061321682613b98565b6132208185613bd2565b9350613230818560208601613d79565b6132398161401e565b840191505092915050565b600061324f82613b98565b6132598185613be3565b9350613269818560208601613d79565b80840191505092915050565b6000613282601883613bd2565b915061328d8261403c565b602082019050919050565b60006132a5601f83613bd2565b91506132b082614065565b602082019050919050565b60006132c8601f83613bd2565b91506132d38261408e565b602082019050919050565b60006132eb601c83613be3565b91506132f6826140b7565b601c82019050919050565b600061330e602b83613bd2565b9150613319826140e0565b604082019050919050565b6000613331603283613bd2565b915061333c8261412f565b604082019050919050565b6000613354602683613bd2565b915061335f8261417e565b604082019050919050565b6000613377602583613bd2565b9150613382826141cd565b604082019050919050565b600061339a601c83613bd2565b91506133a58261421c565b602082019050919050565b60006133bd602483613bd2565b91506133c882614245565b604082019050919050565b60006133e0601983613bd2565b91506133eb82614294565b602082019050919050565b6000613403602283613bd2565b915061340e826142bd565b604082019050919050565b6000613426602983613bd2565b91506134318261430c565b604082019050919050565b6000613449601283613bd2565b91506134548261435b565b602082019050919050565b600061346c602283613bd2565b915061347782614384565b604082019050919050565b600061348f603e83613bd2565b915061349a826143d3565b604082019050919050565b60006134b2602083613bd2565b91506134bd82614422565b602082019050919050565b60006134d5600583613be3565b91506134e08261444b565b600582019050919050565b60006134f8602083613bd2565b915061350382614474565b602082019050919050565b600061351b601883613bd2565b91506135268261449d565b602082019050919050565b600061353e602183613bd2565b9150613549826144c6565b604082019050919050565b6000613561602c83613bd2565b915061356c82614515565b604082019050919050565b6000613584602e83613bd2565b915061358f82614564565b604082019050919050565b60006135a7601f83613bd2565b91506135b2826145b3565b602082019050919050565b60006135ca601c83613bd2565b91506135d5826145dc565b602082019050919050565b60006135ed602383613bd2565b91506135f882614605565b604082019050919050565b61360c81613d1d565b82525050565b61362361361e82613d1d565b613e86565b82525050565b61363281613d27565b82525050565b60006136448285613244565b91506136508284613244565b915061365b826134c8565b91508190509392505050565b6000613672826132de565b915061367e82846131a4565b60208201915081905092915050565b60006136998287613612565b6020820191506136a982866131f4565b6014820191506136b98285613111565b6014820191506136c98284613612565b60208201915081905095945050505050565b60006020820190506136f06000830184613102565b92915050565b600060808201905061370b6000830187613102565b6137186020830186613102565b6137256040830185613603565b818103606083015261373781846131bb565b905095945050505050565b6000602082019050818103600083015261375c8184613128565b905092915050565b60006020820190506137796000830184613186565b92915050565b60006020820190506137946000830184613195565b92915050565b60006080820190506137af6000830187613195565b6137bc6020830186613629565b6137c96040830185613195565b6137d66060830184613195565b95945050505050565b600060208201905081810360008301526137f9818461320b565b905092915050565b6000602082019050818103600083015261381a81613275565b9050919050565b6000602082019050818103600083015261383a81613298565b9050919050565b6000602082019050818103600083015261385a816132bb565b9050919050565b6000602082019050818103600083015261387a81613301565b9050919050565b6000602082019050818103600083015261389a81613324565b9050919050565b600060208201905081810360008301526138ba81613347565b9050919050565b600060208201905081810360008301526138da8161336a565b9050919050565b600060208201905081810360008301526138fa8161338d565b9050919050565b6000602082019050818103600083015261391a816133b0565b9050919050565b6000602082019050818103600083015261393a816133d3565b9050919050565b6000602082019050818103600083015261395a816133f6565b9050919050565b6000602082019050818103600083015261397a81613419565b9050919050565b6000602082019050818103600083015261399a8161343c565b9050919050565b600060208201905081810360008301526139ba8161345f565b9050919050565b600060208201905081810360008301526139da81613482565b9050919050565b600060208201905081810360008301526139fa816134a5565b9050919050565b60006020820190508181036000830152613a1a816134eb565b9050919050565b60006020820190508181036000830152613a3a8161350e565b9050919050565b60006020820190508181036000830152613a5a81613531565b9050919050565b60006020820190508181036000830152613a7a81613554565b9050919050565b60006020820190508181036000830152613a9a81613577565b9050919050565b60006020820190508181036000830152613aba8161359a565b9050919050565b60006020820190508181036000830152613ada816135bd565b9050919050565b60006020820190508181036000830152613afa816135e0565b9050919050565b6000602082019050613b166000830184613603565b92915050565b6000613b26613b37565b9050613b328282613dde565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5c57613b5b613fdb565b5b613b658261401e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bf982613d1d565b9150613c0483613d1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3957613c38613ec1565b5b828201905092915050565b6000613c4f82613d1d565b9150613c5a83613d1d565b925082613c6a57613c69613ef0565b5b828204905092915050565b6000613c8082613d1d565b9150613c8b83613d1d565b925082821015613c9e57613c9d613ec1565b5b828203905092915050565b6000613cb482613cfd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613d3f82613d46565b9050919050565b6000613d5182613d58565b9050919050565b6000613d6382613cfd565b9050919050565b82818337600083830152505050565b60005b83811015613d97578082015181840152602081019050613d7c565b83811115613da6576000848401525b50505050565b60006002820490506001821680613dc457607f821691505b60208210811415613dd857613dd7613f4e565b5b50919050565b613de78261401e565b810181811067ffffffffffffffff82111715613e0657613e05613fdb565b5b80604052505050565b6000613e1a82613d1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e4d57613e4c613ec1565b5b600182019050919050565b6000613e6382613e74565b9050919050565b6000819050919050565b6000613e7f8261402f565b9050919050565b6000819050919050565b6000613e9b82613d1d565b9150613ea683613d1d565b925082613eb657613eb5613ef0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f506c617965724f6e653a206578636565647320746f74616c20737570706c7900600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f506c617965724f6e653a20636c61696d65640000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f506c617965724f6e653a20696e76616c6964207369676e617475726500000000600082015250565b7f506c617965724f6e653a2063616c6c6572206973206e6f7420746865206d696e60008201527f7465720000000000000000000000000000000000000000000000000000000000602082015250565b61465d81613ca9565b811461466857600080fd5b50565b61467481613cbb565b811461467f57600080fd5b50565b61468b81613cd1565b811461469657600080fd5b50565b6146a281613d1d565b81146146ad57600080fd5b5056fea264697066735822122089afb1b3df186874417598f209e88f5417a723da34a4dd76f73d8d9d06fd801864736f6c63430008070033697066733a2f2f516d614e504b313768643548623453756471364d68774c65437834335369416d76356b475573704d477a526561452f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636b32810b11610104578063a22cb465116100a2578063dbe7e3bd11610071578063dbe7e3bd146105b5578063dd3b62b8146105e5578063e985e9c514610615578063f2fde38b14610645576101da565b8063a22cb4651461051d578063aa271e1a14610539578063b88d4fde14610569578063c87b56dd14610585576101da565b80638da5cb5b116100de5780638da5cb5b146104815780638f0bc1521461049f57806395d89b41146104cf578063983b2d56146104ed576101da565b80636b32810b1461042957806370a0823114610447578063715018a614610477576101da565b80633092afd51161017c5780634f6ccce71161014b5780634f6ccce71461037b5780635e9c94c0146103ab5780636352211e146103c95780636a627842146103f9576101da565b80633092afd5146102e357806342842e0e1461031357806342966c681461032f5780634f558e791461034b576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd1461027957806323b872dd146102975780632f745c59146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190613054565b610661565b6040516102069190613764565b60405180910390f35b610217610673565b60405161022491906137df565b60405180910390f35b610247600480360381019061024291906130ae565b610705565b60405161025491906136db565b60405180910390f35b61027760048036038101906102729190612fa5565b61074b565b005b610281610863565b60405161028e9190613b01565b60405180910390f35b6102b160048036038101906102ac9190612e8f565b610870565b005b6102cd60048036038101906102c89190612fa5565b6108d0565b6040516102da9190613b01565b60405180910390f35b6102fd60048036038101906102f89190612e22565b610975565b60405161030a9190613764565b60405180910390f35b61032d60048036038101906103289190612e8f565b61099a565b005b610349600480360381019061034491906130ae565b6109ba565b005b610365600480360381019061036091906130ae565b610a16565b6040516103729190613764565b60405180910390f35b610395600480360381019061039091906130ae565b610a28565b6040516103a29190613b01565b60405180910390f35b6103b3610a99565b6040516103c091906137df565b60405180910390f35b6103e360048036038101906103de91906130ae565b610b27565b6040516103f091906136db565b60405180910390f35b610413600480360381019061040e9190612e22565b610bd9565b6040516104209190613b01565b60405180910390f35b610431610c3a565b60405161043e9190613742565b60405180910390f35b610461600480360381019061045c9190612e22565b610c4b565b60405161046e9190613b01565b60405180910390f35b61047f610d03565b005b610489610d17565b60405161049691906136db565b60405180910390f35b6104b960048036038101906104b49190612fe5565b610d41565b6040516104c69190613b01565b60405180910390f35b6104d7610e90565b6040516104e491906137df565b60405180910390f35b61050760048036038101906105029190612e22565b610f22565b6040516105149190613764565b60405180910390f35b61053760048036038101906105329190612f65565b610f47565b005b610553600480360381019061054e9190612e22565b610f5d565b6040516105609190613764565b60405180910390f35b610583600480360381019061057e9190612ee2565b610f7a565b005b61059f600480360381019061059a91906130ae565b610fdc565b6040516105ac91906137df565b60405180910390f35b6105cf60048036038101906105ca91906130ae565b611044565b6040516105dc9190613764565b60405180910390f35b6105ff60048036038101906105fa9190612fa5565b611064565b60405161060c919061377f565b60405180910390f35b61062f600480360381019061062a9190612e4f565b6110a3565b60405161063c9190613764565b60405180910390f35b61065f600480360381019061065a9190612e22565b611137565b005b600061066c826111bb565b9050919050565b60606001805461068290613dac565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae90613dac565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611235565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061075682610b27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90613a41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107e6611280565b73ffffffffffffffffffffffffffffffffffffffff16148061081557506108148161080f611280565b6110a3565b5b610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906139c1565b60405180910390fd5b61085e8383611288565b505050565b6000600980549050905090565b61088161087b611280565b82611341565b6108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b790613a81565b60405180910390fd5b6108cb8383836113d6565b505050565b60006108db83610c4b565b821061091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390613861565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600061097f61163d565b61099382600c6116bb90919063ffffffff16565b9050919050565b6109b583838360405180602001604052806000815250610f7a565b505050565b6109cb6109c5611280565b82611341565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190613a81565b60405180910390fd5b610a13816116eb565b50565b6000610a2182611808565b9050919050565b6000610a32610863565b8210610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90613a61565b60405180910390fd5b60098281548110610a8757610a86613fac565b5b90600052602060002001549050919050565b60108054610aa690613dac565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290613dac565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b505050505081565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790613a21565b60405180910390fd5b80915050919050565b6000610beb610be6611280565b610f5d565b610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613ae1565b60405180910390fd5b610c3382611874565b9050919050565b6060610c46600c6118e6565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613961565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d0b61163d565b610d156000611907565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060026000541415610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090613aa1565b60405180910390fd5b6002600081905550600f600084815260200190815260200160002060009054906101000a900460ff1615610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990613981565b60405180910390fd5b6000610dfe8585611064565b9050610e0a81846119cd565b610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090613ac1565b60405180910390fd5b6001600f600086815260200190815260200160002060006101000a81548160ff021916908315150217905550610e7e85611874565b91505060016000819055509392505050565b606060028054610e9f90613dac565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb90613dac565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b5050505050905090565b6000610f2c61163d565b610f4082600c6119ee90919063ffffffff16565b9050919050565b610f59610f52611280565b8383611a1e565b5050565b6000610f7382600c611b8b90919063ffffffff16565b9050919050565b610f8b610f85611280565b83611341565b610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190613a81565b60405180910390fd5b610fd684848484611bbb565b50505050565b6060610fe782611235565b6000610ff1611c17565b90506000815111611011576040518060200160405280600081525061103c565b8061101b84611ca9565b60405160200161102c929190613638565b6040516020818303038152906040525b915050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600061109b46308585604051602001611080949392919061368d565b60405160208183030381529060405280519060200120611e0a565b905092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61113f61163d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a6906138a1565b60405180910390fd5b6111b881611907565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061122e575061122d82611e3a565b5b9050919050565b61123e81611808565b61127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613a21565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112fb83610b27565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061134d83610b27565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061138f575061138e81856110a3565b5b806113cd57508373ffffffffffffffffffffffffffffffffffffffff166113b584610705565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113f682610b27565b73ffffffffffffffffffffffffffffffffffffffff161461144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906138c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613901565b60405180910390fd5b6114c7838383611f1c565b6114d2600082611288565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115229190613c75565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115799190613bee565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611638838383611f2c565b505050565b611645611280565b73ffffffffffffffffffffffffffffffffffffffff16611663610d17565b73ffffffffffffffffffffffffffffffffffffffff16146116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090613a01565b60405180910390fd5b565b60006116e3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611f31565b905092915050565b60006116f682610b27565b905061170481600084611f1c565b61170f600083611288565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175f9190613c75565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461180481600084611f2c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611880600e612045565b600061188c600e61205b565b90506127108111156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90613821565b60405180910390fd5b6118dd8382612069565b80915050919050565b606060006118f683600001612087565b905060608190508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806119da84846120e3565b90506119e581610f5d565b91505092915050565b6000611a16836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61210a565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490613921565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7e9190613764565b60405180910390a3505050565b6000611bb3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61217a565b905092915050565b611bc68484846113d6565b611bd28484848461219d565b611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613881565b60405180910390fd5b50505050565b606060108054611c2690613dac565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5290613dac565b8015611c9f5780601f10611c7457610100808354040283529160200191611c9f565b820191906000526020600020905b815481529060010190602001808311611c8257829003601f168201915b5050505050905090565b60606000821415611cf1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e05565b600082905060005b60008214611d23578080611d0c90613e0f565b915050600a82611d1c9190613c44565b9150611cf9565b60008167ffffffffffffffff811115611d3f57611d3e613fdb565b5b6040519080825280601f01601f191660200182016040528015611d715781602001600182028036833780820191505090505b5090505b60008514611dfe57600182611d8a9190613c75565b9150600a85611d999190613e90565b6030611da59190613bee565b60f81b818381518110611dbb57611dba613fac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611df79190613c44565b9450611d75565b8093505050505b919050565b600081604051602001611e1d9190613667565b604051602081830303815290604052805190602001209050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f0557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f155750611f1482612334565b5b9050919050565b611f2783838361239e565b505050565b505050565b60008083600101600084815260200190815260200160002054905060008114612039576000600182611f639190613c75565b9050600060018660000180549050611f7b9190613c75565b9050818114611fea576000866000018281548110611f9c57611f9b613fac565b5b9060005260206000200154905080876000018481548110611fc057611fbf613fac565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611ffe57611ffd613f7d565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061203f565b60009150505b92915050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6120838282604051806020016040528060008152506124b2565b5050565b6060816000018054806020026020016040519081016040528092919081815260200182805480156120d757602002820191906000526020600020905b8154815260200190600101908083116120c3575b50505050509050919050565b60008060006120f2858561250d565b915091506120ff8161255f565b819250505092915050565b6000612116838361217a565b61216f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612174565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b60006121be8473ffffffffffffffffffffffffffffffffffffffff16612734565b15612327578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e7611280565b8786866040518563ffffffff1660e01b815260040161220994939291906136f6565b602060405180830381600087803b15801561222357600080fd5b505af192505050801561225457506040513d601f19601f820116820180604052508101906122519190613081565b60015b6122d7573d8060008114612284576040519150601f19603f3d011682016040523d82523d6000602084013e612289565b606091505b506000815114156122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613881565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061232c565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123a9838383612757565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ec576123e78161275c565b61242b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461242a5761242983826127a5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561246e5761246981612912565b6124ad565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124ac576124ab82826129e3565b5b5b505050565b6124bc8383612a62565b6124c9600084848461219d565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90613881565b60405180910390fd5b505050565b60008060418351141561254f5760008060006020860151925060408601519150606086015160001a905061254387828585612c3c565b94509450505050612558565b60006002915091505b9250929050565b6000600481111561257357612572613f1f565b5b81600481111561258657612585613f1f565b5b141561259157612731565b600160048111156125a5576125a4613f1f565b5b8160048111156125b8576125b7613f1f565b5b14156125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f090613801565b60405180910390fd5b6002600481111561260d5761260c613f1f565b5b8160048111156126205761261f613f1f565b5b1415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890613841565b60405180910390fd5b6003600481111561267557612674613f1f565b5b81600481111561268857612687613f1f565b5b14156126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090613941565b60405180910390fd5b6004808111156126dc576126db613f1f565b5b8160048111156126ef576126ee613f1f565b5b1415612730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612727906139a1565b60405180910390fd5b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127b284610c4b565b6127bc9190613c75565b90506000600860008481526020019081526020016000205490508181146128a1576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506129269190613c75565b90506000600a600084815260200190815260200160002054905060006009838154811061295657612955613fac565b5b90600052602060002001549050806009838154811061297857612977613fac565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806129c7576129c6613f7d565b5b6001900381819060005260206000200160009055905550505050565b60006129ee83610c4b565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac9906139e1565b60405180910390fd5b612adb81611808565b15612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b12906138e1565b60405180910390fd5b612b2760008383611f1c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b779190613bee565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c3860008383611f2c565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612c77576000600391509150612d40565b601b8560ff1614158015612c8f5750601c8560ff1614155b15612ca1576000600491509150612d40565b600060018787878760405160008152602001604052604051612cc6949392919061379a565b6020604051602081039080840390855afa158015612ce8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d3757600060019250925050612d40565b80600092509250505b94509492505050565b6000612d5c612d5784613b41565b613b1c565b905082815260208101848484011115612d7857612d7761400f565b5b612d83848285613d6a565b509392505050565b600081359050612d9a81614654565b92915050565b600081359050612daf8161466b565b92915050565b600081359050612dc481614682565b92915050565b600081519050612dd981614682565b92915050565b600082601f830112612df457612df361400a565b5b8135612e04848260208601612d49565b91505092915050565b600081359050612e1c81614699565b92915050565b600060208284031215612e3857612e37614019565b5b6000612e4684828501612d8b565b91505092915050565b60008060408385031215612e6657612e65614019565b5b6000612e7485828601612d8b565b9250506020612e8585828601612d8b565b9150509250929050565b600080600060608486031215612ea857612ea7614019565b5b6000612eb686828701612d8b565b9350506020612ec786828701612d8b565b9250506040612ed886828701612e0d565b9150509250925092565b60008060008060808587031215612efc57612efb614019565b5b6000612f0a87828801612d8b565b9450506020612f1b87828801612d8b565b9350506040612f2c87828801612e0d565b925050606085013567ffffffffffffffff811115612f4d57612f4c614014565b5b612f5987828801612ddf565b91505092959194509250565b60008060408385031215612f7c57612f7b614019565b5b6000612f8a85828601612d8b565b9250506020612f9b85828601612da0565b9150509250929050565b60008060408385031215612fbc57612fbb614019565b5b6000612fca85828601612d8b565b9250506020612fdb85828601612e0d565b9150509250929050565b600080600060608486031215612ffe57612ffd614019565b5b600061300c86828701612d8b565b935050602061301d86828701612e0d565b925050604084013567ffffffffffffffff81111561303e5761303d614014565b5b61304a86828701612ddf565b9150509250925092565b60006020828403121561306a57613069614019565b5b600061307884828501612db5565b91505092915050565b60006020828403121561309757613096614019565b5b60006130a584828501612dca565b91505092915050565b6000602082840312156130c4576130c3614019565b5b60006130d284828501612e0d565b91505092915050565b60006130e783836130f3565b60208301905092915050565b6130fc81613ca9565b82525050565b61310b81613ca9565b82525050565b61312261311d82613ca9565b613e58565b82525050565b600061313382613b82565b61313d8185613bb0565b935061314883613b72565b8060005b8381101561317957815161316088826130db565b975061316b83613ba3565b92505060018101905061314c565b5085935050505092915050565b61318f81613cbb565b82525050565b61319e81613cc7565b82525050565b6131b56131b082613cc7565b613e6a565b82525050565b60006131c682613b8d565b6131d08185613bc1565b93506131e0818560208601613d79565b6131e98161401e565b840191505092915050565b61320561320082613d34565b613e58565b82525050565b600061321682613b98565b6132208185613bd2565b9350613230818560208601613d79565b6132398161401e565b840191505092915050565b600061324f82613b98565b6132598185613be3565b9350613269818560208601613d79565b80840191505092915050565b6000613282601883613bd2565b915061328d8261403c565b602082019050919050565b60006132a5601f83613bd2565b91506132b082614065565b602082019050919050565b60006132c8601f83613bd2565b91506132d38261408e565b602082019050919050565b60006132eb601c83613be3565b91506132f6826140b7565b601c82019050919050565b600061330e602b83613bd2565b9150613319826140e0565b604082019050919050565b6000613331603283613bd2565b915061333c8261412f565b604082019050919050565b6000613354602683613bd2565b915061335f8261417e565b604082019050919050565b6000613377602583613bd2565b9150613382826141cd565b604082019050919050565b600061339a601c83613bd2565b91506133a58261421c565b602082019050919050565b60006133bd602483613bd2565b91506133c882614245565b604082019050919050565b60006133e0601983613bd2565b91506133eb82614294565b602082019050919050565b6000613403602283613bd2565b915061340e826142bd565b604082019050919050565b6000613426602983613bd2565b91506134318261430c565b604082019050919050565b6000613449601283613bd2565b91506134548261435b565b602082019050919050565b600061346c602283613bd2565b915061347782614384565b604082019050919050565b600061348f603e83613bd2565b915061349a826143d3565b604082019050919050565b60006134b2602083613bd2565b91506134bd82614422565b602082019050919050565b60006134d5600583613be3565b91506134e08261444b565b600582019050919050565b60006134f8602083613bd2565b915061350382614474565b602082019050919050565b600061351b601883613bd2565b91506135268261449d565b602082019050919050565b600061353e602183613bd2565b9150613549826144c6565b604082019050919050565b6000613561602c83613bd2565b915061356c82614515565b604082019050919050565b6000613584602e83613bd2565b915061358f82614564565b604082019050919050565b60006135a7601f83613bd2565b91506135b2826145b3565b602082019050919050565b60006135ca601c83613bd2565b91506135d5826145dc565b602082019050919050565b60006135ed602383613bd2565b91506135f882614605565b604082019050919050565b61360c81613d1d565b82525050565b61362361361e82613d1d565b613e86565b82525050565b61363281613d27565b82525050565b60006136448285613244565b91506136508284613244565b915061365b826134c8565b91508190509392505050565b6000613672826132de565b915061367e82846131a4565b60208201915081905092915050565b60006136998287613612565b6020820191506136a982866131f4565b6014820191506136b98285613111565b6014820191506136c98284613612565b60208201915081905095945050505050565b60006020820190506136f06000830184613102565b92915050565b600060808201905061370b6000830187613102565b6137186020830186613102565b6137256040830185613603565b818103606083015261373781846131bb565b905095945050505050565b6000602082019050818103600083015261375c8184613128565b905092915050565b60006020820190506137796000830184613186565b92915050565b60006020820190506137946000830184613195565b92915050565b60006080820190506137af6000830187613195565b6137bc6020830186613629565b6137c96040830185613195565b6137d66060830184613195565b95945050505050565b600060208201905081810360008301526137f9818461320b565b905092915050565b6000602082019050818103600083015261381a81613275565b9050919050565b6000602082019050818103600083015261383a81613298565b9050919050565b6000602082019050818103600083015261385a816132bb565b9050919050565b6000602082019050818103600083015261387a81613301565b9050919050565b6000602082019050818103600083015261389a81613324565b9050919050565b600060208201905081810360008301526138ba81613347565b9050919050565b600060208201905081810360008301526138da8161336a565b9050919050565b600060208201905081810360008301526138fa8161338d565b9050919050565b6000602082019050818103600083015261391a816133b0565b9050919050565b6000602082019050818103600083015261393a816133d3565b9050919050565b6000602082019050818103600083015261395a816133f6565b9050919050565b6000602082019050818103600083015261397a81613419565b9050919050565b6000602082019050818103600083015261399a8161343c565b9050919050565b600060208201905081810360008301526139ba8161345f565b9050919050565b600060208201905081810360008301526139da81613482565b9050919050565b600060208201905081810360008301526139fa816134a5565b9050919050565b60006020820190508181036000830152613a1a816134eb565b9050919050565b60006020820190508181036000830152613a3a8161350e565b9050919050565b60006020820190508181036000830152613a5a81613531565b9050919050565b60006020820190508181036000830152613a7a81613554565b9050919050565b60006020820190508181036000830152613a9a81613577565b9050919050565b60006020820190508181036000830152613aba8161359a565b9050919050565b60006020820190508181036000830152613ada816135bd565b9050919050565b60006020820190508181036000830152613afa816135e0565b9050919050565b6000602082019050613b166000830184613603565b92915050565b6000613b26613b37565b9050613b328282613dde565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5c57613b5b613fdb565b5b613b658261401e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bf982613d1d565b9150613c0483613d1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3957613c38613ec1565b5b828201905092915050565b6000613c4f82613d1d565b9150613c5a83613d1d565b925082613c6a57613c69613ef0565b5b828204905092915050565b6000613c8082613d1d565b9150613c8b83613d1d565b925082821015613c9e57613c9d613ec1565b5b828203905092915050565b6000613cb482613cfd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613d3f82613d46565b9050919050565b6000613d5182613d58565b9050919050565b6000613d6382613cfd565b9050919050565b82818337600083830152505050565b60005b83811015613d97578082015181840152602081019050613d7c565b83811115613da6576000848401525b50505050565b60006002820490506001821680613dc457607f821691505b60208210811415613dd857613dd7613f4e565b5b50919050565b613de78261401e565b810181811067ffffffffffffffff82111715613e0657613e05613fdb565b5b80604052505050565b6000613e1a82613d1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e4d57613e4c613ec1565b5b600182019050919050565b6000613e6382613e74565b9050919050565b6000819050919050565b6000613e7f8261402f565b9050919050565b6000819050919050565b6000613e9b82613d1d565b9150613ea683613d1d565b925082613eb657613eb5613ef0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f506c617965724f6e653a206578636565647320746f74616c20737570706c7900600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f506c617965724f6e653a20636c61696d65640000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f506c617965724f6e653a20696e76616c6964207369676e617475726500000000600082015250565b7f506c617965724f6e653a2063616c6c6572206973206e6f7420746865206d696e60008201527f7465720000000000000000000000000000000000000000000000000000000000602082015250565b61465d81613ca9565b811461466857600080fd5b50565b61467481613cbb565b811461467f57600080fd5b50565b61468b81613cd1565b811461469657600080fd5b50565b6146a281613d1d565b81146146ad57600080fd5b5056fea264697066735822122089afb1b3df186874417598f209e88f5417a723da34a4dd76f73d8d9d06fd801864736f6c63430008070033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

The 1P NFT is a collection of 10,000 beings on Ethereum, including refundable NFTs for official sale and non-refundable NFTs for token staking awards.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.