ETH Price: $3,042.93 (+3.14%)

Token

NorthernLights (NLIGHTS)
 

Overview

Max Total Supply

0 NLIGHTS

Holders

46

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 NLIGHTS
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The NFT collection is inspired by the Northern Lights. Fully on-chain, CC0 Public Domain, Generative Art. No Roadmap, No Discord, No Utility, No Rarity

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NorthernLights

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : NorthernLights.sol
// SPDX-License-Identifier: MIT
// Northern Lights by yuk6ra

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract NorthernLights is ERC721URIStorage, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    uint256 public constant MAX_SUPPLY = 150;

    uint256 public mintPrice = 0.01 ether;
    uint256 public maxPerWallet = 2;
    bool public whitelistSale = false;
    string public description;

    mapping (address => uint256) public mintedPerWallet;
    mapping (address => bool) public whitelist;

    Counters.Counter private _tokenId;

    constructor() ERC721("NorthernLights", "NLIGHTS") {}

    function addWhitelist(address[] calldata _addresses) external onlyOwner{
        for (uint i = 0; i < _addresses.length; i++) {
            whitelist[_addresses[i]] = true;
        }
    }

    function setDescription(string memory _description) external onlyOwner {
        description = _description;
    }

    function setMintPrice(uint256 _newPrice) external onlyOwner {
        mintPrice = _newPrice;
    }

    function setMaxPerWallet(uint256 _newQuantity) external onlyOwner {
        maxPerWallet = _newQuantity;
    }

    function setWhitelistSale(bool _bool) external onlyOwner{
        whitelistSale = _bool;
    }    

    function withdraw() external onlyOwner{
        require(address(this).balance > 0, 'No balance');
        require(payable(msg.sender).send(address(this).balance));
    }

    function reservedMint(uint256 _mintAmount) external onlyOwner {
        require(_tokenId.current() + _mintAmount <= MAX_SUPPLY, "Sold out");

        for (uint256 i = 0; i < _mintAmount; i++){
            _safeMint(msg.sender, _tokenId.current());
            _tokenId.increment();
        }
    }

    function mintNFT() public payable {
        require(whitelistSale, "Mint is paused");
        require(whitelist[msg.sender], "No whitelist");
        uint256 tokenId = _tokenId.current();
        require(tokenId < MAX_SUPPLY, "Sold out");
        require(mintedPerWallet[msg.sender] < maxPerWallet, "Already minted max quantity per wallet");
        require(msg.value >= mintPrice, "Must send the mint price");

        _safeMint(msg.sender, tokenId);
        mintedPerWallet[msg.sender] += 1;
        _tokenId.increment();
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "NorthernLights: Nonexistent token");
        return dataURI(tokenId);
    }

    /**
     * @notice Generate metadata for TokenURI.
     */
    function dataURI(uint256 tokenId) public view returns(string memory){
        require(_exists(tokenId), "NorthernLights: Nonexistent token");
        string memory name = string(abi.encodePacked('Northern Lights #', tokenId.toString())); // NFT title        
        string[7] memory attr = ["The Earth", "Teegarden's Star b", "TOI-700 d", "Kepler-1649 c", "TRAPPIST-1 d", "K2-72e", "Proxima Centauri b"];
        bytes memory image;
        uint256 attrNum;
        (image, attrNum) = _generateSVG(tokenId);
        return string(
            abi.encodePacked('data:application/json;base64,',
            Base64.encode(bytes(abi.encodePacked(
                '{"name":"', name,
                '", "description": "', description,
                '", "image" : "data:image/svg+xml;base64,', Base64.encode(image),
                '", "attributes" : [{"trait_type": "Planet", "value": "', attr[attrNum],
                '"}]}'
            )))
            )
        );
    }

    /**
     * @notice Get default colors for The Earth Property.
     */
    function _getColors(uint256 seed) internal pure returns (string[8] memory, uint256) {
        string[8] memory colors;

        if (seed % 2 == 0) {
            colors = ["#ab00d1", "#9314d8", "#7a29de", "#623de5", "#4952eb", "#3166f2", "#187bf8", "#008fff"];
        } else if (seed % 2 == 1){
            colors = ["#e900bd", "#cc21ab", "#af4399", "#926487", "#758575", "#58a663", "#3bc851", "#1ee93f"];
        }

        uint256 attrNum = 0;
        return (colors, attrNum);
    }

    /**
     * @notice Generate RGB colors at random.
     */
    function _generateRGB(uint256 seed) internal pure returns (uint256[3] memory) {
        uint256[3] memory rgb;

        for (uint256 i = 0 ; i < 3; i++) {
            rgb[i] = seed % 256;
            seed /= 1000;
        }

        return rgb;
    }

    /**
     * @notice Generate a linear gradient from the first and last RGB.
     */
    function _generateColors(uint256 seed) internal pure returns (string[8] memory, uint256) {
        string[8] memory colors;
        uint256[3] memory first = _generateRGB(seed);
        uint256[3] memory last = _generateRGB(seed / 10**10);

        colors[0] = string(abi.encodePacked('rgb(',first[0].toString(), ',', first[1].toString(), ',', first[2].toString(),')'));

        for (uint256 i = 1; i < 7; i++) {
            colors[i] = string(abi.encodePacked(
                'rgb(',
                ((last[0] * i + (first[0] * (7 - i))) / 7).toString(), ',',
                ((last[1] * i + (first[1] * (7 - i))) / 7).toString(), ',',
                ((last[2] * i + (first[2] * (7 - i))) / 7).toString(),')'));
        }

        uint256 attrNum = seed % 6 + 1;

        colors[7] = string(abi.encodePacked('rgb(',last[0].toString(), ',', last[1].toString(), ',', last[2].toString(),')'));

        return (colors, attrNum);
    }
    
    /**
     * @notice Generate paths for main.
     */    
    function _generateMainPath(uint256 x, uint256 y, bytes memory path, string[8] memory colors) internal pure returns (bytes memory) {
        for (uint256 j = 0; j < 8; j++){
            path = abi.encodePacked(path,
                '<path fill="', colors[j % 8],'" d="M', x.toString(),',', (y + j).toString(),'h1v1H', x.toString(),'z"/>'
            );
        }
        return path;
    }

    /**
     * @notice Generates paths for both ends.
     */    
    function _generateEndsPath(uint256 x, uint256 y, bytes memory path, string[8] memory colors, uint256 num) internal pure returns (bytes memory) {
        bytes memory _path = path;

        if (num == 0 || num == 19) {
            for (uint256 i = 0; i < 4; i++){
                _path = abi.encodePacked(_path,
                    '<path fill="', colors[i % 8],'" d="M', x.toString(),',', (y + i).toString(),'h1v1H', x.toString(),'z"/>'
                );
            }
        } else if(num == 1 || num == 18) {
            for (uint256 j = 0; j < 6; j++){
                _path = abi.encodePacked(_path,
                    '<path fill="', colors[j % 8],'" d="M', x.toString(),',', (y + j).toString(),'h1v1H', x.toString(),'z"/>'
                );
            }
        }

        return _path;
    }

    /**
     * @notice Generate SVG that will be the metadata image.
     */
    function _generateSVG(uint256 tokenId) internal pure returns (bytes memory, uint256) {
        uint256 seedPos = _random(tokenId);
        uint256 seedCol = _random(seedPos);
        uint256 lasty = 8 + seedCol % 13; // Start y position => y = 8 ~ 20.
        uint256 attrNum;
        uint256 x;
        uint256 y;

        string[8] memory colors;
        
        if (_random(seedPos) % 10 >= 1) {
            (colors, attrNum) = _generateColors(seedCol);
        } else {
            (colors, attrNum) = _getColors(seedCol / 10);
        }
         
        bytes memory path = abi.encodePacked('<svg width="1024" height="1024" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">');
            
        for (uint256 i = 0; i < 20; i++){
            x = 6 + i; // Start x position => x = 6 ~ 25.
            y = lasty; // Last y position.

            if (1 < i && i < 18 ) {
                path = _generateMainPath(x, y, path, colors);
            } else {
                path = _generateEndsPath(x, y, path, colors, i);
            }

            if (seedPos % 2 == 0) { // if 0 => up
                y = lasty - (seedPos % 2 + 1);
                if (y < 6) { // y = 0 ~ 5 (len: 6) => top margin.
                    y = lasty + (seedPos % 2 + 1);
                }
            } else if (seedPos % 2 == 1) { // if 1 => down
                y = lasty + (seedPos % 2 + 1);
                if (18 < y) { // y = 26 ~ 31 (len: 6), + MainPath (len: 8) => bottom margin.
                    y = lasty - (seedPos % 2 + 1);
                }
            }

            lasty = y; // Update the last y position.
            seedPos /= 10; // New random seed.
       }
        path = abi.encodePacked(path, '</svg>');

        return (path, attrNum);
    }
    
    function _random(uint256 _input) internal pure returns(uint256){
        return uint256(keccak256(abi.encodePacked(_input)));
    }
}

File 2 of 14 : 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 3 of 14 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 14 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addWhitelist","outputs":[],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_description","type":"string"}],"name":"setDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newQuantity","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc1000060085560026009556000600a60006101000a81548160ff0219169083151502179055503480156200003c57600080fd5b506040518060400160405280600e81526020017f4e6f72746865726e4c69676874730000000000000000000000000000000000008152506040518060400160405280600781526020017f4e4c4947485453000000000000000000000000000000000000000000000000008152508160009080519060200190620000c1929190620001d1565b508060019080519060200190620000da929190620001d1565b505050620000fd620000f16200010360201b60201c565b6200010b60201b60201c565b620002e6565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001df90620002b0565b90600052602060002090601f0160209004810192826200020357600085556200024f565b82601f106200021e57805160ff19168380011785556200024f565b828001600101855582156200024f579182015b828111156200024e57825182559160200191906001019062000231565b5b5090506200025e919062000262565b5090565b5b808211156200027d57600081600090555060010162000263565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c957607f821691505b60208210811415620002e057620002df62000281565b5b50919050565b61512f80620002f66000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146106d1578063edac985b1461070e578063f2fde38b14610737578063f4a0a52814610760576101e3565b8063b88d4fde14610619578063c87b56dd14610642578063ca7ce3ec1461067f578063e268e4d3146106a8576101e3565b806390c3f38f116100d157806390c3f38f1461055f57806395d89b41146105885780639b19251a146105b3578063a22cb465146105f0576101e3565b8063715018a6146104c95780637284e416146104e05780638c74bf0e1461050b5780638da5cb5b14610534576101e3565b80633a602b4d1161017a5780635ac1e3bb116101495780635ac1e3bb146103e75780636352211e146104245780636817c76c1461046157806370a082311461048c576101e3565b80633a602b4d1461033f5780633ccfd60b1461037c57806342842e0e14610393578063453c2310146103bc576101e3565b806314f710fe116101b657806314f710fe146102b657806323b872dd146102c057806331ffd6f1146102e957806332cb6b0c14610314576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906133e3565b610789565b60405161021c919061342b565b60405180910390f35b34801561023157600080fd5b5061023a61086b565b60405161024791906134df565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613537565b6108fd565b60405161028491906135a5565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906135ec565b610943565b005b6102be610a5b565b005b3480156102cc57600080fd5b506102e760048036038101906102e2919061362c565b610cbd565b005b3480156102f557600080fd5b506102fe610d1d565b60405161030b919061342b565b60405180910390f35b34801561032057600080fd5b50610329610d30565b604051610336919061368e565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906136a9565b610d35565b604051610373919061368e565b60405180910390f35b34801561038857600080fd5b50610391610d4d565b005b34801561039f57600080fd5b506103ba60048036038101906103b5919061362c565b610dd8565b005b3480156103c857600080fd5b506103d1610df8565b6040516103de919061368e565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190613537565b610dfe565b60405161041b91906134df565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190613537565b6110ab565b60405161045891906135a5565b60405180910390f35b34801561046d57600080fd5b5061047661115d565b604051610483919061368e565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae91906136a9565b611163565b6040516104c0919061368e565b60405180910390f35b3480156104d557600080fd5b506104de61121b565b005b3480156104ec57600080fd5b506104f561122f565b60405161050291906134df565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613537565b6112bd565b005b34801561054057600080fd5b5061054961135c565b60405161055691906135a5565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061380b565b611386565b005b34801561059457600080fd5b5061059d6113a8565b6040516105aa91906134df565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d591906136a9565b61143a565b6040516105e7919061342b565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190613880565b61145a565b005b34801561062557600080fd5b50610640600480360381019061063b9190613961565b611470565b005b34801561064e57600080fd5b5061066960048036038101906106649190613537565b6114d2565b60405161067691906134df565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a191906139e4565b61152c565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190613537565b611551565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190613a11565b611563565b604051610705919061342b565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190613ab1565b6115f7565b005b34801561074357600080fd5b5061075e600480360381019061075991906136a9565b6116a4565b005b34801561076c57600080fd5b5061078760048036038101906107829190613537565b611728565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086457506108638261173a565b5b9050919050565b60606000805461087a90613b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690613b2d565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b6000610908826117a4565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094e826110ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690613bd1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109de6117ef565b73ffffffffffffffffffffffffffffffffffffffff161480610a0d5750610a0c81610a076117ef565b611563565b5b610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390613c63565b60405180910390fd5b610a5683836117f7565b505050565b600a60009054906101000a900460ff16610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613ccf565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613d3b565b60405180910390fd5b6000610b42600e6118b0565b905060968110610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90613da7565b60405180910390fd5b600954600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613e39565b60405180910390fd5b600854341015610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613ea5565b60405180910390fd5b610c5933826118be565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ca99190613ef4565b92505081905550610cba600e6118dc565b50565b610cce610cc86117ef565b826118f2565b610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490613fbc565b60405180910390fd5b610d18838383611987565b505050565b600a60009054906101000a900460ff1681565b609681565b600c6020528060005260406000206000915090505481565b610d55611bee565b60004711610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90614028565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610dd657600080fd5b565b610df383838360405180602001604052806000815250611470565b505050565b60095481565b6060610e0982611c6c565b610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f906140ba565b60405180910390fd5b6000610e5383611cd8565b604051602001610e639190614162565b604051602081830303815290604052905060006040518060e001604052806040518060400160405280600981526020017f546865204561727468000000000000000000000000000000000000000000000081525081526020016040518060400160405280601281526020017f54656567617264656e277320537461722062000000000000000000000000000081525081526020016040518060400160405280600981526020017f544f492d3730302064000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f4b65706c65722d3136343920630000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f54524150504953542d312064000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4b322d373265000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280601281526020017f50726f78696d612043656e74617572692062000000000000000000000000000081525081525090506060600061102b86611e39565b809250819350505061108184600b61104285612080565b86856007811061105557611054614184565b5b602002015160405160200161106d949392919061440f565b604051602081830303815290604052612080565b60405160200161109191906144d0565b604051602081830303815290604052945050505050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b9061453e565b60405180910390fd5b80915050919050565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906145d0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611223611bee565b61122d60006121e4565b565b600b805461123c90613b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461126890613b2d565b80156112b55780601f1061128a576101008083540402835291602001916112b5565b820191906000526020600020905b81548152906001019060200180831161129857829003601f168201915b505050505081565b6112c5611bee565b6096816112d2600e6118b0565b6112dc9190613ef4565b111561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613da7565b60405180910390fd5b60005b818110156113585761133b33611336600e6118b0565b6118be565b611345600e6118dc565b8080611350906145f0565b915050611320565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61138e611bee565b80600b90805190602001906113a492919061328a565b5050565b6060600180546113b790613b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546113e390613b2d565b80156114305780601f1061140557610100808354040283529160200191611430565b820191906000526020600020905b81548152906001019060200180831161141357829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b61146c6114656117ef565b83836122aa565b5050565b61148161147b6117ef565b836118f2565b6114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613fbc565b60405180910390fd5b6114cc84848484612417565b50505050565b60606114dd82611c6c565b61151c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611513906140ba565b60405180910390fd5b61152582610dfe565b9050919050565b611534611bee565b80600a60006101000a81548160ff02191690831515021790555050565b611559611bee565b8060098190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115ff611bee565b60005b8282905081101561169f576001600d600085858581811061162657611625614184565b5b905060200201602081019061163b91906136a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611697906145f0565b915050611602565b505050565b6116ac611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561171c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611713906146ab565b60405180910390fd5b611725816121e4565b50565b611730611bee565b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117ad81611c6c565b6117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e39061453e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661186a836110ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6118d8828260405180602001604052806000815250612473565b5050565b6001816000016000828254019250508190555050565b6000806118fe836110ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611940575061193f8185611563565b5b8061197e57508373ffffffffffffffffffffffffffffffffffffffff16611966846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119a7826110ab565b73ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061473d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a64906147cf565b60405180910390fd5b611a788383836124ce565b611a836000826117f7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad391906147ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2a9190613ef4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611be98383836124d3565b505050565b611bf66117ef565b73ffffffffffffffffffffffffffffffffffffffff16611c1461135c565b73ffffffffffffffffffffffffffffffffffffffff1614611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c619061486f565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611d20576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e34565b600082905060005b60008214611d52578080611d3b906145f0565b915050600a82611d4b91906148be565b9150611d28565b60008167ffffffffffffffff811115611d6e57611d6d6136e0565b5b6040519080825280601f01601f191660200182016040528015611da05781602001600182028036833780820191505090505b5090505b60008514611e2d57600182611db991906147ef565b9150600a85611dc891906148ef565b6030611dd49190613ef4565b60f81b818381518110611dea57611de9614184565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e2691906148be565b9450611da4565b8093505050505b919050565b6060600080611e47846124d8565b90506000611e54826124d8565b90506000600d82611e6591906148ef565b6008611e719190613ef4565b90506000806000611e80613310565b6001600a611e8d896124d8565b611e9791906148ef565b10611eb257611ea58661250b565b8095508192505050611ed0565b611ec7600a87611ec291906148be565b612869565b80955081925050505b6000604051602001611ee1906149b8565b604051602081830303815290604052905060005b601481101561204a57806006611f0b9190613ef4565b9450869350806001108015611f205750601281105b15611f3857611f3185858486612c83565b9150611f48565b611f458585848685612d20565b91505b600060028a611f5791906148ef565b1415611fb857600160028a611f6c91906148ef565b611f769190613ef4565b87611f8191906147ef565b93506006841015611fb357600160028a611f9b91906148ef565b611fa59190613ef4565b87611fb09190613ef4565b93505b612025565b600160028a611fc791906148ef565b141561202457600160028a611fdc91906148ef565b611fe69190613ef4565b87611ff19190613ef4565b9350836012101561202357600160028a61200b91906148ef565b6120159190613ef4565b8761202091906147ef565b93505b5b5b839650600a8961203591906148be565b98508080612042906145f0565b915050611ef5565b508060405160200161205c9190614a60565b60405160208183030381529060405290508085995099505050505050505050915091565b60606000825114156120a3576040518060200160405280600081525090506121df565b60006040518060600160405280604081526020016150ba60409139905060006003600285516120d29190613ef4565b6120dc91906148be565b60046120e89190614a82565b67ffffffffffffffff811115612101576121006136e0565b5b6040519080825280601f01601f1916602001820160405280156121335781602001600182028036833780820191505090505b509050600182016020820185865187015b8082101561219f576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050612144565b50506003865106600181146121bb57600281146121ce576121d6565b603d6001830353603d60028303536121d6565b603d60018303535b50505080925050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090614b28565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161240a919061342b565b60405180910390a3505050565b612422848484611987565b61242e84848484612e83565b61246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614bba565b60405180910390fd5b50505050565b61247d838361301a565b61248a6000848484612e83565b6124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614bba565b60405180910390fd5b505050565b505050565b505050565b6000816040516020016124eb9190614bfb565b6040516020818303038152906040528051906020012060001c9050919050565b612513613310565b600061251d613310565b6000612528856131f4565b905060006125456402540be4008761254091906148be565b6131f4565b90506125688260006003811061255e5761255d614184565b5b6020020151611cd8565b6125898360016003811061257f5761257e614184565b5b6020020151611cd8565b6125aa846002600381106125a05761259f614184565b5b6020020151611cd8565b6040516020016125bc93929190614cfa565b604051602081830303815290604052836000600881106125df576125de614184565b5b60200201819052506000600190505b600781101561279c57612669600782600761260991906147ef565b8560006003811061261d5761261c614184565b5b602002015161262c9190614a82565b838560006003811061264157612640614184565b5b60200201516126509190614a82565b61265a9190613ef4565b61266491906148be565b611cd8565b6126db600783600761267b91906147ef565b8660016003811061268f5761268e614184565b5b602002015161269e9190614a82565b84866001600381106126b3576126b2614184565b5b60200201516126c29190614a82565b6126cc9190613ef4565b6126d691906148be565b611cd8565b61274d60078460076126ed91906147ef565b8760026003811061270157612700614184565b5b60200201516127109190614a82565b858760026003811061272557612724614184565b5b60200201516127349190614a82565b61273e9190613ef4565b61274891906148be565b611cd8565b60405160200161275f93929190614cfa565b60405160208183030381529060405284826008811061278157612780614184565b5b60200201819052508080612794906145f0565b9150506125ee565b50600060016006886127ae91906148ef565b6127b89190613ef4565b90506127db826000600381106127d1576127d0614184565b5b6020020151611cd8565b6127fc836001600381106127f2576127f1614184565b5b6020020151611cd8565b61281d8460026003811061281357612812614184565b5b6020020151611cd8565b60405160200161282f93929190614cfa565b6040516020818303038152906040528460076008811061285257612851614184565b5b602002018190525083819550955050505050915091565b612871613310565b600061287b613310565b600060028561288a91906148ef565b1415612a79576040518061010001604052806040518060400160405280600781526020017f236162303064310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233933313464380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233761323964650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233632336465350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233439353265620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233331363666320000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233138376266380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23303038666666000000000000000000000000000000000000000000000000008152508152509050612c74565b6001600285612a8891906148ef565b1415612c73576040518061010001604052806040518060400160405280600781526020017f236539303062640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236363323161620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236166343339390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233932363438370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233735383537350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233538613636330000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233362633835310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233165653933660000000000000000000000000000000000000000000000000081525081525090505b5b60008181935093505050915091565b606060005b6008811015612d14578383600883612ca091906148ef565b60088110612cb157612cb0614184565b5b6020020151612cbf88611cd8565b612cd38489612cce9190613ef4565b611cd8565b612cdc8a611cd8565b604051602001612cf0959493929190614e87565b60405160208183030381529060405293508080612d0c906145f0565b915050612c88565b50829050949350505050565b606060008490506000831480612d365750601383145b15612dd05760005b6004811015612dca578185600883612d5691906148ef565b60088110612d6757612d66614184565b5b6020020151612d758a611cd8565b612d89848b612d849190613ef4565b611cd8565b612d928c611cd8565b604051602001612da6959493929190614e87565b60405160208183030381529060405291508080612dc2906145f0565b915050612d3e565b50612e76565b6001831480612ddf5750601283145b15612e755760005b6006811015612e73578185600883612dff91906148ef565b60088110612e1057612e0f614184565b5b6020020151612e1e8a611cd8565b612e32848b612e2d9190613ef4565b611cd8565b612e3b8c611cd8565b604051602001612e4f959493929190614e87565b60405160208183030381529060405291508080612e6b906145f0565b915050612de7565b505b5b8091505095945050505050565b6000612ea48473ffffffffffffffffffffffffffffffffffffffff16613267565b1561300d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ecd6117ef565b8786866040518563ffffffff1660e01b8152600401612eef9493929190614f53565b602060405180830381600087803b158015612f0957600080fd5b505af1925050508015612f3a57506040513d601f19601f82011682018060405250810190612f379190614fb4565b60015b612fbd573d8060008114612f6a576040519150601f19603f3d011682016040523d82523d6000602084013e612f6f565b606091505b50600081511415612fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fac90614bba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613012565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561308a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130819061502d565b60405180910390fd5b61309381611c6c565b156130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90615099565b60405180910390fd5b6130df600083836124ce565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461312f9190613ef4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131f0600083836124d3565b5050565b6131fc613338565b613204613338565b60005b600381101561325d576101008461321e91906148ef565b82826003811061323157613230614184565b5b6020020181815250506103e88461324891906148be565b93508080613255906145f0565b915050613207565b5080915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461329690613b2d565b90600052602060002090601f0160209004810192826132b857600085556132ff565b82601f106132d157805160ff19168380011785556132ff565b828001600101855582156132ff579182015b828111156132fe5782518255916020019190600101906132e3565b5b50905061330c919061335a565b5090565b6040518061010001604052806008905b60608152602001906001900390816133205790505090565b6040518060600160405280600390602082028036833780820191505090505090565b5b8082111561337357600081600090555060010161335b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133c08161338b565b81146133cb57600080fd5b50565b6000813590506133dd816133b7565b92915050565b6000602082840312156133f9576133f8613381565b5b6000613407848285016133ce565b91505092915050565b60008115159050919050565b61342581613410565b82525050565b6000602082019050613440600083018461341c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613480578082015181840152602081019050613465565b8381111561348f576000848401525b50505050565b6000601f19601f8301169050919050565b60006134b182613446565b6134bb8185613451565b93506134cb818560208601613462565b6134d481613495565b840191505092915050565b600060208201905081810360008301526134f981846134a6565b905092915050565b6000819050919050565b61351481613501565b811461351f57600080fd5b50565b6000813590506135318161350b565b92915050565b60006020828403121561354d5761354c613381565b5b600061355b84828501613522565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061358f82613564565b9050919050565b61359f81613584565b82525050565b60006020820190506135ba6000830184613596565b92915050565b6135c981613584565b81146135d457600080fd5b50565b6000813590506135e6816135c0565b92915050565b6000806040838503121561360357613602613381565b5b6000613611858286016135d7565b925050602061362285828601613522565b9150509250929050565b60008060006060848603121561364557613644613381565b5b6000613653868287016135d7565b9350506020613664868287016135d7565b925050604061367586828701613522565b9150509250925092565b61368881613501565b82525050565b60006020820190506136a3600083018461367f565b92915050565b6000602082840312156136bf576136be613381565b5b60006136cd848285016135d7565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61371882613495565b810181811067ffffffffffffffff82111715613737576137366136e0565b5b80604052505050565b600061374a613377565b9050613756828261370f565b919050565b600067ffffffffffffffff821115613776576137756136e0565b5b61377f82613495565b9050602081019050919050565b82818337600083830152505050565b60006137ae6137a98461375b565b613740565b9050828152602081018484840111156137ca576137c96136db565b5b6137d584828561378c565b509392505050565b600082601f8301126137f2576137f16136d6565b5b813561380284826020860161379b565b91505092915050565b60006020828403121561382157613820613381565b5b600082013567ffffffffffffffff81111561383f5761383e613386565b5b61384b848285016137dd565b91505092915050565b61385d81613410565b811461386857600080fd5b50565b60008135905061387a81613854565b92915050565b6000806040838503121561389757613896613381565b5b60006138a5858286016135d7565b92505060206138b68582860161386b565b9150509250929050565b600067ffffffffffffffff8211156138db576138da6136e0565b5b6138e482613495565b9050602081019050919050565b60006139046138ff846138c0565b613740565b9050828152602081018484840111156139205761391f6136db565b5b61392b84828561378c565b509392505050565b600082601f830112613948576139476136d6565b5b81356139588482602086016138f1565b91505092915050565b6000806000806080858703121561397b5761397a613381565b5b6000613989878288016135d7565b945050602061399a878288016135d7565b93505060406139ab87828801613522565b925050606085013567ffffffffffffffff8111156139cc576139cb613386565b5b6139d887828801613933565b91505092959194509250565b6000602082840312156139fa576139f9613381565b5b6000613a088482850161386b565b91505092915050565b60008060408385031215613a2857613a27613381565b5b6000613a36858286016135d7565b9250506020613a47858286016135d7565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613a7157613a706136d6565b5b8235905067ffffffffffffffff811115613a8e57613a8d613a51565b5b602083019150836020820283011115613aaa57613aa9613a56565b5b9250929050565b60008060208385031215613ac857613ac7613381565b5b600083013567ffffffffffffffff811115613ae657613ae5613386565b5b613af285828601613a5b565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b4557607f821691505b60208210811415613b5957613b58613afe565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bbb602183613451565b9150613bc682613b5f565b604082019050919050565b60006020820190508181036000830152613bea81613bae565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613c4d603e83613451565b9150613c5882613bf1565b604082019050919050565b60006020820190508181036000830152613c7c81613c40565b9050919050565b7f4d696e7420697320706175736564000000000000000000000000000000000000600082015250565b6000613cb9600e83613451565b9150613cc482613c83565b602082019050919050565b60006020820190508181036000830152613ce881613cac565b9050919050565b7f4e6f2077686974656c6973740000000000000000000000000000000000000000600082015250565b6000613d25600c83613451565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613d91600883613451565b9150613d9c82613d5b565b602082019050919050565b60006020820190508181036000830152613dc081613d84565b9050919050565b7f416c7265616479206d696e746564206d6178207175616e74697479207065722060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b6000613e23602683613451565b9150613e2e82613dc7565b604082019050919050565b60006020820190508181036000830152613e5281613e16565b9050919050565b7f4d7573742073656e6420746865206d696e742070726963650000000000000000600082015250565b6000613e8f601883613451565b9150613e9a82613e59565b602082019050919050565b60006020820190508181036000830152613ebe81613e82565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613eff82613501565b9150613f0a83613501565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3f57613f3e613ec5565b5b828201905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613fa6602e83613451565b9150613fb182613f4a565b604082019050919050565b60006020820190508181036000830152613fd581613f99565b9050919050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b6000614012600a83613451565b915061401d82613fdc565b602082019050919050565b6000602082019050818103600083015261404181614005565b9050919050565b7f4e6f72746865726e4c69676874733a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006140a4602183613451565b91506140af82614048565b604082019050919050565b600060208201905081810360008301526140d381614097565b9050919050565b600081905092915050565b7f4e6f72746865726e204c69676874732023000000000000000000000000000000600082015250565b600061411b6011836140da565b9150614126826140e5565b601182019050919050565b600061413c82613446565b61414681856140da565b9350614156818560208601613462565b80840191505092915050565b600061416d8261410e565b91506141798284614131565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b60006141e96009836140da565b91506141f4826141b3565b600982019050919050565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b60006142356013836140da565b9150614240826141ff565b601382019050919050565b60008190508160005260206000209050919050565b6000815461426d81613b2d565b61427781866140da565b9450600182166000811461429257600181146142a3576142d6565b60ff198316865281860193506142d6565b6142ac8561424b565b60005b838110156142ce578154818901526001820191506020810190506142af565b838801955050505b50505092915050565b7f222c2022696d61676522203a2022646174613a696d6167652f7376672b786d6c60008201527f3b6261736536342c000000000000000000000000000000000000000000000000602082015250565b600061433b6028836140da565b9150614346826142df565b602882019050919050565b7f222c20226174747269627574657322203a205b7b2274726169745f747970652260008201527f3a2022506c616e6574222c202276616c7565223a202200000000000000000000602082015250565b60006143ad6036836140da565b91506143b882614351565b603682019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b60006143f96004836140da565b9150614404826143c3565b600482019050919050565b600061441a826141dc565b91506144268287614131565b915061443182614228565b915061443d8286614260565b91506144488261432e565b91506144548285614131565b915061445f826143a0565b915061446b8284614131565b9150614476826143ec565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006144ba601d836140da565b91506144c582614484565b601d82019050919050565b60006144db826144ad565b91506144e78284614131565b915081905092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614528601883613451565b9150614533826144f2565b602082019050919050565b600060208201905081810360008301526145578161451b565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006145ba602983613451565b91506145c58261455e565b604082019050919050565b600060208201905081810360008301526145e9816145ad565b9050919050565b60006145fb82613501565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561462e5761462d613ec5565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614695602683613451565b91506146a082614639565b604082019050919050565b600060208201905081810360008301526146c481614688565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614727602583613451565b9150614732826146cb565b604082019050919050565b600060208201905081810360008301526147568161471a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147b9602483613451565b91506147c48261475d565b604082019050919050565b600060208201905081810360008301526147e8816147ac565b9050919050565b60006147fa82613501565b915061480583613501565b92508282101561481857614817613ec5565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614859602083613451565b915061486482614823565b602082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148c982613501565b91506148d483613501565b9250826148e4576148e361488f565b5b828204905092915050565b60006148fa82613501565b915061490583613501565b9250826149155761491461488f565b5b828206905092915050565b7f3c7376672077696474683d223130323422206865696768743d2231303234222060008201527f76696577426f783d223020302033322033322220786d6c6e733d22687474703a60208201527f2f2f7777772e77332e6f72672f323030302f737667223e000000000000000000604082015250565b60006149a26057836140da565b91506149ad82614920565b605782019050919050565b60006149c382614995565b9150819050919050565b600081519050919050565b600081905092915050565b60006149ee826149cd565b6149f881856149d8565b9350614a08818560208601613462565b80840191505092915050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b6000614a4a6006836140da565b9150614a5582614a14565b600682019050919050565b6000614a6c82846149e3565b9150614a7782614a3d565b915081905092915050565b6000614a8d82613501565b9150614a9883613501565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ad157614ad0613ec5565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b12601983613451565b9150614b1d82614adc565b602082019050919050565b60006020820190508181036000830152614b4181614b05565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614ba4603283613451565b9150614baf82614b48565b604082019050919050565b60006020820190508181036000830152614bd381614b97565b9050919050565b6000819050919050565b614bf5614bf082613501565b614bda565b82525050565b6000614c078284614be4565b60208201915081905092915050565b7f7267622800000000000000000000000000000000000000000000000000000000600082015250565b6000614c4c6004836140da565b9150614c5782614c16565b600482019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c986001836140da565b9150614ca382614c62565b600182019050919050565b7f2900000000000000000000000000000000000000000000000000000000000000600082015250565b6000614ce46001836140da565b9150614cef82614cae565b600182019050919050565b6000614d0582614c3f565b9150614d118286614131565b9150614d1c82614c8b565b9150614d288285614131565b9150614d3382614c8b565b9150614d3f8284614131565b9150614d4a82614cd7565b9150819050949350505050565b7f3c706174682066696c6c3d220000000000000000000000000000000000000000600082015250565b6000614d8d600c836140da565b9150614d9882614d57565b600c82019050919050565b7f2220643d224d0000000000000000000000000000000000000000000000000000600082015250565b6000614dd96006836140da565b9150614de482614da3565b600682019050919050565b7f6831763148000000000000000000000000000000000000000000000000000000600082015250565b6000614e256005836140da565b9150614e3082614def565b600582019050919050565b7f7a222f3e00000000000000000000000000000000000000000000000000000000600082015250565b6000614e716004836140da565b9150614e7c82614e3b565b600482019050919050565b6000614e9382886149e3565b9150614e9e82614d80565b9150614eaa8287614131565b9150614eb582614dcc565b9150614ec18286614131565b9150614ecc82614c8b565b9150614ed88285614131565b9150614ee382614e18565b9150614eef8284614131565b9150614efa82614e64565b91508190509695505050505050565b600082825260208201905092915050565b6000614f25826149cd565b614f2f8185614f09565b9350614f3f818560208601613462565b614f4881613495565b840191505092915050565b6000608082019050614f686000830187613596565b614f756020830186613596565b614f82604083018561367f565b8181036060830152614f948184614f1a565b905095945050505050565b600081519050614fae816133b7565b92915050565b600060208284031215614fca57614fc9613381565b5b6000614fd884828501614f9f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615017602083613451565b915061502282614fe1565b602082019050919050565b600060208201905081810360008301526150468161500a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615083601c83613451565b915061508e8261504d565b602082019050919050565b600060208201905081810360008301526150b281615076565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220404a8d008129245d842d567b7353b942781f2ee55b97ede1ad4d8a07bf85ab2c64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146106d1578063edac985b1461070e578063f2fde38b14610737578063f4a0a52814610760576101e3565b8063b88d4fde14610619578063c87b56dd14610642578063ca7ce3ec1461067f578063e268e4d3146106a8576101e3565b806390c3f38f116100d157806390c3f38f1461055f57806395d89b41146105885780639b19251a146105b3578063a22cb465146105f0576101e3565b8063715018a6146104c95780637284e416146104e05780638c74bf0e1461050b5780638da5cb5b14610534576101e3565b80633a602b4d1161017a5780635ac1e3bb116101495780635ac1e3bb146103e75780636352211e146104245780636817c76c1461046157806370a082311461048c576101e3565b80633a602b4d1461033f5780633ccfd60b1461037c57806342842e0e14610393578063453c2310146103bc576101e3565b806314f710fe116101b657806314f710fe146102b657806323b872dd146102c057806331ffd6f1146102e957806332cb6b0c14610314576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906133e3565b610789565b60405161021c919061342b565b60405180910390f35b34801561023157600080fd5b5061023a61086b565b60405161024791906134df565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613537565b6108fd565b60405161028491906135a5565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906135ec565b610943565b005b6102be610a5b565b005b3480156102cc57600080fd5b506102e760048036038101906102e2919061362c565b610cbd565b005b3480156102f557600080fd5b506102fe610d1d565b60405161030b919061342b565b60405180910390f35b34801561032057600080fd5b50610329610d30565b604051610336919061368e565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906136a9565b610d35565b604051610373919061368e565b60405180910390f35b34801561038857600080fd5b50610391610d4d565b005b34801561039f57600080fd5b506103ba60048036038101906103b5919061362c565b610dd8565b005b3480156103c857600080fd5b506103d1610df8565b6040516103de919061368e565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190613537565b610dfe565b60405161041b91906134df565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190613537565b6110ab565b60405161045891906135a5565b60405180910390f35b34801561046d57600080fd5b5061047661115d565b604051610483919061368e565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae91906136a9565b611163565b6040516104c0919061368e565b60405180910390f35b3480156104d557600080fd5b506104de61121b565b005b3480156104ec57600080fd5b506104f561122f565b60405161050291906134df565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613537565b6112bd565b005b34801561054057600080fd5b5061054961135c565b60405161055691906135a5565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061380b565b611386565b005b34801561059457600080fd5b5061059d6113a8565b6040516105aa91906134df565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d591906136a9565b61143a565b6040516105e7919061342b565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190613880565b61145a565b005b34801561062557600080fd5b50610640600480360381019061063b9190613961565b611470565b005b34801561064e57600080fd5b5061066960048036038101906106649190613537565b6114d2565b60405161067691906134df565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a191906139e4565b61152c565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190613537565b611551565b005b3480156106dd57600080fd5b506106f860048036038101906106f39190613a11565b611563565b604051610705919061342b565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190613ab1565b6115f7565b005b34801561074357600080fd5b5061075e600480360381019061075991906136a9565b6116a4565b005b34801561076c57600080fd5b5061078760048036038101906107829190613537565b611728565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086457506108638261173a565b5b9050919050565b60606000805461087a90613b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690613b2d565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b6000610908826117a4565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094e826110ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690613bd1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109de6117ef565b73ffffffffffffffffffffffffffffffffffffffff161480610a0d5750610a0c81610a076117ef565b611563565b5b610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390613c63565b60405180910390fd5b610a5683836117f7565b505050565b600a60009054906101000a900460ff16610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613ccf565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613d3b565b60405180910390fd5b6000610b42600e6118b0565b905060968110610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90613da7565b60405180910390fd5b600954600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613e39565b60405180910390fd5b600854341015610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613ea5565b60405180910390fd5b610c5933826118be565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ca99190613ef4565b92505081905550610cba600e6118dc565b50565b610cce610cc86117ef565b826118f2565b610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490613fbc565b60405180910390fd5b610d18838383611987565b505050565b600a60009054906101000a900460ff1681565b609681565b600c6020528060005260406000206000915090505481565b610d55611bee565b60004711610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90614028565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610dd657600080fd5b565b610df383838360405180602001604052806000815250611470565b505050565b60095481565b6060610e0982611c6c565b610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f906140ba565b60405180910390fd5b6000610e5383611cd8565b604051602001610e639190614162565b604051602081830303815290604052905060006040518060e001604052806040518060400160405280600981526020017f546865204561727468000000000000000000000000000000000000000000000081525081526020016040518060400160405280601281526020017f54656567617264656e277320537461722062000000000000000000000000000081525081526020016040518060400160405280600981526020017f544f492d3730302064000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f4b65706c65722d3136343920630000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f54524150504953542d312064000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4b322d373265000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280601281526020017f50726f78696d612043656e74617572692062000000000000000000000000000081525081525090506060600061102b86611e39565b809250819350505061108184600b61104285612080565b86856007811061105557611054614184565b5b602002015160405160200161106d949392919061440f565b604051602081830303815290604052612080565b60405160200161109191906144d0565b604051602081830303815290604052945050505050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b9061453e565b60405180910390fd5b80915050919050565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906145d0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611223611bee565b61122d60006121e4565b565b600b805461123c90613b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461126890613b2d565b80156112b55780601f1061128a576101008083540402835291602001916112b5565b820191906000526020600020905b81548152906001019060200180831161129857829003601f168201915b505050505081565b6112c5611bee565b6096816112d2600e6118b0565b6112dc9190613ef4565b111561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613da7565b60405180910390fd5b60005b818110156113585761133b33611336600e6118b0565b6118be565b611345600e6118dc565b8080611350906145f0565b915050611320565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61138e611bee565b80600b90805190602001906113a492919061328a565b5050565b6060600180546113b790613b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546113e390613b2d565b80156114305780601f1061140557610100808354040283529160200191611430565b820191906000526020600020905b81548152906001019060200180831161141357829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b61146c6114656117ef565b83836122aa565b5050565b61148161147b6117ef565b836118f2565b6114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613fbc565b60405180910390fd5b6114cc84848484612417565b50505050565b60606114dd82611c6c565b61151c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611513906140ba565b60405180910390fd5b61152582610dfe565b9050919050565b611534611bee565b80600a60006101000a81548160ff02191690831515021790555050565b611559611bee565b8060098190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115ff611bee565b60005b8282905081101561169f576001600d600085858581811061162657611625614184565b5b905060200201602081019061163b91906136a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611697906145f0565b915050611602565b505050565b6116ac611bee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561171c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611713906146ab565b60405180910390fd5b611725816121e4565b50565b611730611bee565b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117ad81611c6c565b6117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e39061453e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661186a836110ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6118d8828260405180602001604052806000815250612473565b5050565b6001816000016000828254019250508190555050565b6000806118fe836110ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611940575061193f8185611563565b5b8061197e57508373ffffffffffffffffffffffffffffffffffffffff16611966846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119a7826110ab565b73ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061473d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a64906147cf565b60405180910390fd5b611a788383836124ce565b611a836000826117f7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad391906147ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2a9190613ef4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611be98383836124d3565b505050565b611bf66117ef565b73ffffffffffffffffffffffffffffffffffffffff16611c1461135c565b73ffffffffffffffffffffffffffffffffffffffff1614611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c619061486f565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611d20576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e34565b600082905060005b60008214611d52578080611d3b906145f0565b915050600a82611d4b91906148be565b9150611d28565b60008167ffffffffffffffff811115611d6e57611d6d6136e0565b5b6040519080825280601f01601f191660200182016040528015611da05781602001600182028036833780820191505090505b5090505b60008514611e2d57600182611db991906147ef565b9150600a85611dc891906148ef565b6030611dd49190613ef4565b60f81b818381518110611dea57611de9614184565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e2691906148be565b9450611da4565b8093505050505b919050565b6060600080611e47846124d8565b90506000611e54826124d8565b90506000600d82611e6591906148ef565b6008611e719190613ef4565b90506000806000611e80613310565b6001600a611e8d896124d8565b611e9791906148ef565b10611eb257611ea58661250b565b8095508192505050611ed0565b611ec7600a87611ec291906148be565b612869565b80955081925050505b6000604051602001611ee1906149b8565b604051602081830303815290604052905060005b601481101561204a57806006611f0b9190613ef4565b9450869350806001108015611f205750601281105b15611f3857611f3185858486612c83565b9150611f48565b611f458585848685612d20565b91505b600060028a611f5791906148ef565b1415611fb857600160028a611f6c91906148ef565b611f769190613ef4565b87611f8191906147ef565b93506006841015611fb357600160028a611f9b91906148ef565b611fa59190613ef4565b87611fb09190613ef4565b93505b612025565b600160028a611fc791906148ef565b141561202457600160028a611fdc91906148ef565b611fe69190613ef4565b87611ff19190613ef4565b9350836012101561202357600160028a61200b91906148ef565b6120159190613ef4565b8761202091906147ef565b93505b5b5b839650600a8961203591906148be565b98508080612042906145f0565b915050611ef5565b508060405160200161205c9190614a60565b60405160208183030381529060405290508085995099505050505050505050915091565b60606000825114156120a3576040518060200160405280600081525090506121df565b60006040518060600160405280604081526020016150ba60409139905060006003600285516120d29190613ef4565b6120dc91906148be565b60046120e89190614a82565b67ffffffffffffffff811115612101576121006136e0565b5b6040519080825280601f01601f1916602001820160405280156121335781602001600182028036833780820191505090505b509050600182016020820185865187015b8082101561219f576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050612144565b50506003865106600181146121bb57600281146121ce576121d6565b603d6001830353603d60028303536121d6565b603d60018303535b50505080925050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090614b28565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161240a919061342b565b60405180910390a3505050565b612422848484611987565b61242e84848484612e83565b61246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614bba565b60405180910390fd5b50505050565b61247d838361301a565b61248a6000848484612e83565b6124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614bba565b60405180910390fd5b505050565b505050565b505050565b6000816040516020016124eb9190614bfb565b6040516020818303038152906040528051906020012060001c9050919050565b612513613310565b600061251d613310565b6000612528856131f4565b905060006125456402540be4008761254091906148be565b6131f4565b90506125688260006003811061255e5761255d614184565b5b6020020151611cd8565b6125898360016003811061257f5761257e614184565b5b6020020151611cd8565b6125aa846002600381106125a05761259f614184565b5b6020020151611cd8565b6040516020016125bc93929190614cfa565b604051602081830303815290604052836000600881106125df576125de614184565b5b60200201819052506000600190505b600781101561279c57612669600782600761260991906147ef565b8560006003811061261d5761261c614184565b5b602002015161262c9190614a82565b838560006003811061264157612640614184565b5b60200201516126509190614a82565b61265a9190613ef4565b61266491906148be565b611cd8565b6126db600783600761267b91906147ef565b8660016003811061268f5761268e614184565b5b602002015161269e9190614a82565b84866001600381106126b3576126b2614184565b5b60200201516126c29190614a82565b6126cc9190613ef4565b6126d691906148be565b611cd8565b61274d60078460076126ed91906147ef565b8760026003811061270157612700614184565b5b60200201516127109190614a82565b858760026003811061272557612724614184565b5b60200201516127349190614a82565b61273e9190613ef4565b61274891906148be565b611cd8565b60405160200161275f93929190614cfa565b60405160208183030381529060405284826008811061278157612780614184565b5b60200201819052508080612794906145f0565b9150506125ee565b50600060016006886127ae91906148ef565b6127b89190613ef4565b90506127db826000600381106127d1576127d0614184565b5b6020020151611cd8565b6127fc836001600381106127f2576127f1614184565b5b6020020151611cd8565b61281d8460026003811061281357612812614184565b5b6020020151611cd8565b60405160200161282f93929190614cfa565b6040516020818303038152906040528460076008811061285257612851614184565b5b602002018190525083819550955050505050915091565b612871613310565b600061287b613310565b600060028561288a91906148ef565b1415612a79576040518061010001604052806040518060400160405280600781526020017f236162303064310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233933313464380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233761323964650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233632336465350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233439353265620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233331363666320000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233138376266380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23303038666666000000000000000000000000000000000000000000000000008152508152509050612c74565b6001600285612a8891906148ef565b1415612c73576040518061010001604052806040518060400160405280600781526020017f236539303062640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236363323161620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236166343339390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233932363438370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233735383537350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233538613636330000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233362633835310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233165653933660000000000000000000000000000000000000000000000000081525081525090505b5b60008181935093505050915091565b606060005b6008811015612d14578383600883612ca091906148ef565b60088110612cb157612cb0614184565b5b6020020151612cbf88611cd8565b612cd38489612cce9190613ef4565b611cd8565b612cdc8a611cd8565b604051602001612cf0959493929190614e87565b60405160208183030381529060405293508080612d0c906145f0565b915050612c88565b50829050949350505050565b606060008490506000831480612d365750601383145b15612dd05760005b6004811015612dca578185600883612d5691906148ef565b60088110612d6757612d66614184565b5b6020020151612d758a611cd8565b612d89848b612d849190613ef4565b611cd8565b612d928c611cd8565b604051602001612da6959493929190614e87565b60405160208183030381529060405291508080612dc2906145f0565b915050612d3e565b50612e76565b6001831480612ddf5750601283145b15612e755760005b6006811015612e73578185600883612dff91906148ef565b60088110612e1057612e0f614184565b5b6020020151612e1e8a611cd8565b612e32848b612e2d9190613ef4565b611cd8565b612e3b8c611cd8565b604051602001612e4f959493929190614e87565b60405160208183030381529060405291508080612e6b906145f0565b915050612de7565b505b5b8091505095945050505050565b6000612ea48473ffffffffffffffffffffffffffffffffffffffff16613267565b1561300d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ecd6117ef565b8786866040518563ffffffff1660e01b8152600401612eef9493929190614f53565b602060405180830381600087803b158015612f0957600080fd5b505af1925050508015612f3a57506040513d601f19601f82011682018060405250810190612f379190614fb4565b60015b612fbd573d8060008114612f6a576040519150601f19603f3d011682016040523d82523d6000602084013e612f6f565b606091505b50600081511415612fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fac90614bba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613012565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561308a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130819061502d565b60405180910390fd5b61309381611c6c565b156130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90615099565b60405180910390fd5b6130df600083836124ce565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461312f9190613ef4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131f0600083836124d3565b5050565b6131fc613338565b613204613338565b60005b600381101561325d576101008461321e91906148ef565b82826003811061323157613230614184565b5b6020020181815250506103e88461324891906148be565b93508080613255906145f0565b915050613207565b5080915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461329690613b2d565b90600052602060002090601f0160209004810192826132b857600085556132ff565b82601f106132d157805160ff19168380011785556132ff565b828001600101855582156132ff579182015b828111156132fe5782518255916020019190600101906132e3565b5b50905061330c919061335a565b5090565b6040518061010001604052806008905b60608152602001906001900390816133205790505090565b6040518060600160405280600390602082028036833780820191505090505090565b5b8082111561337357600081600090555060010161335b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133c08161338b565b81146133cb57600080fd5b50565b6000813590506133dd816133b7565b92915050565b6000602082840312156133f9576133f8613381565b5b6000613407848285016133ce565b91505092915050565b60008115159050919050565b61342581613410565b82525050565b6000602082019050613440600083018461341c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613480578082015181840152602081019050613465565b8381111561348f576000848401525b50505050565b6000601f19601f8301169050919050565b60006134b182613446565b6134bb8185613451565b93506134cb818560208601613462565b6134d481613495565b840191505092915050565b600060208201905081810360008301526134f981846134a6565b905092915050565b6000819050919050565b61351481613501565b811461351f57600080fd5b50565b6000813590506135318161350b565b92915050565b60006020828403121561354d5761354c613381565b5b600061355b84828501613522565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061358f82613564565b9050919050565b61359f81613584565b82525050565b60006020820190506135ba6000830184613596565b92915050565b6135c981613584565b81146135d457600080fd5b50565b6000813590506135e6816135c0565b92915050565b6000806040838503121561360357613602613381565b5b6000613611858286016135d7565b925050602061362285828601613522565b9150509250929050565b60008060006060848603121561364557613644613381565b5b6000613653868287016135d7565b9350506020613664868287016135d7565b925050604061367586828701613522565b9150509250925092565b61368881613501565b82525050565b60006020820190506136a3600083018461367f565b92915050565b6000602082840312156136bf576136be613381565b5b60006136cd848285016135d7565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61371882613495565b810181811067ffffffffffffffff82111715613737576137366136e0565b5b80604052505050565b600061374a613377565b9050613756828261370f565b919050565b600067ffffffffffffffff821115613776576137756136e0565b5b61377f82613495565b9050602081019050919050565b82818337600083830152505050565b60006137ae6137a98461375b565b613740565b9050828152602081018484840111156137ca576137c96136db565b5b6137d584828561378c565b509392505050565b600082601f8301126137f2576137f16136d6565b5b813561380284826020860161379b565b91505092915050565b60006020828403121561382157613820613381565b5b600082013567ffffffffffffffff81111561383f5761383e613386565b5b61384b848285016137dd565b91505092915050565b61385d81613410565b811461386857600080fd5b50565b60008135905061387a81613854565b92915050565b6000806040838503121561389757613896613381565b5b60006138a5858286016135d7565b92505060206138b68582860161386b565b9150509250929050565b600067ffffffffffffffff8211156138db576138da6136e0565b5b6138e482613495565b9050602081019050919050565b60006139046138ff846138c0565b613740565b9050828152602081018484840111156139205761391f6136db565b5b61392b84828561378c565b509392505050565b600082601f830112613948576139476136d6565b5b81356139588482602086016138f1565b91505092915050565b6000806000806080858703121561397b5761397a613381565b5b6000613989878288016135d7565b945050602061399a878288016135d7565b93505060406139ab87828801613522565b925050606085013567ffffffffffffffff8111156139cc576139cb613386565b5b6139d887828801613933565b91505092959194509250565b6000602082840312156139fa576139f9613381565b5b6000613a088482850161386b565b91505092915050565b60008060408385031215613a2857613a27613381565b5b6000613a36858286016135d7565b9250506020613a47858286016135d7565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613a7157613a706136d6565b5b8235905067ffffffffffffffff811115613a8e57613a8d613a51565b5b602083019150836020820283011115613aaa57613aa9613a56565b5b9250929050565b60008060208385031215613ac857613ac7613381565b5b600083013567ffffffffffffffff811115613ae657613ae5613386565b5b613af285828601613a5b565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b4557607f821691505b60208210811415613b5957613b58613afe565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bbb602183613451565b9150613bc682613b5f565b604082019050919050565b60006020820190508181036000830152613bea81613bae565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613c4d603e83613451565b9150613c5882613bf1565b604082019050919050565b60006020820190508181036000830152613c7c81613c40565b9050919050565b7f4d696e7420697320706175736564000000000000000000000000000000000000600082015250565b6000613cb9600e83613451565b9150613cc482613c83565b602082019050919050565b60006020820190508181036000830152613ce881613cac565b9050919050565b7f4e6f2077686974656c6973740000000000000000000000000000000000000000600082015250565b6000613d25600c83613451565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613d91600883613451565b9150613d9c82613d5b565b602082019050919050565b60006020820190508181036000830152613dc081613d84565b9050919050565b7f416c7265616479206d696e746564206d6178207175616e74697479207065722060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b6000613e23602683613451565b9150613e2e82613dc7565b604082019050919050565b60006020820190508181036000830152613e5281613e16565b9050919050565b7f4d7573742073656e6420746865206d696e742070726963650000000000000000600082015250565b6000613e8f601883613451565b9150613e9a82613e59565b602082019050919050565b60006020820190508181036000830152613ebe81613e82565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613eff82613501565b9150613f0a83613501565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3f57613f3e613ec5565b5b828201905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613fa6602e83613451565b9150613fb182613f4a565b604082019050919050565b60006020820190508181036000830152613fd581613f99565b9050919050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b6000614012600a83613451565b915061401d82613fdc565b602082019050919050565b6000602082019050818103600083015261404181614005565b9050919050565b7f4e6f72746865726e4c69676874733a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006140a4602183613451565b91506140af82614048565b604082019050919050565b600060208201905081810360008301526140d381614097565b9050919050565b600081905092915050565b7f4e6f72746865726e204c69676874732023000000000000000000000000000000600082015250565b600061411b6011836140da565b9150614126826140e5565b601182019050919050565b600061413c82613446565b61414681856140da565b9350614156818560208601613462565b80840191505092915050565b600061416d8261410e565b91506141798284614131565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b60006141e96009836140da565b91506141f4826141b3565b600982019050919050565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b60006142356013836140da565b9150614240826141ff565b601382019050919050565b60008190508160005260206000209050919050565b6000815461426d81613b2d565b61427781866140da565b9450600182166000811461429257600181146142a3576142d6565b60ff198316865281860193506142d6565b6142ac8561424b565b60005b838110156142ce578154818901526001820191506020810190506142af565b838801955050505b50505092915050565b7f222c2022696d61676522203a2022646174613a696d6167652f7376672b786d6c60008201527f3b6261736536342c000000000000000000000000000000000000000000000000602082015250565b600061433b6028836140da565b9150614346826142df565b602882019050919050565b7f222c20226174747269627574657322203a205b7b2274726169745f747970652260008201527f3a2022506c616e6574222c202276616c7565223a202200000000000000000000602082015250565b60006143ad6036836140da565b91506143b882614351565b603682019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b60006143f96004836140da565b9150614404826143c3565b600482019050919050565b600061441a826141dc565b91506144268287614131565b915061443182614228565b915061443d8286614260565b91506144488261432e565b91506144548285614131565b915061445f826143a0565b915061446b8284614131565b9150614476826143ec565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006144ba601d836140da565b91506144c582614484565b601d82019050919050565b60006144db826144ad565b91506144e78284614131565b915081905092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614528601883613451565b9150614533826144f2565b602082019050919050565b600060208201905081810360008301526145578161451b565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006145ba602983613451565b91506145c58261455e565b604082019050919050565b600060208201905081810360008301526145e9816145ad565b9050919050565b60006145fb82613501565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561462e5761462d613ec5565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614695602683613451565b91506146a082614639565b604082019050919050565b600060208201905081810360008301526146c481614688565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614727602583613451565b9150614732826146cb565b604082019050919050565b600060208201905081810360008301526147568161471a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147b9602483613451565b91506147c48261475d565b604082019050919050565b600060208201905081810360008301526147e8816147ac565b9050919050565b60006147fa82613501565b915061480583613501565b92508282101561481857614817613ec5565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614859602083613451565b915061486482614823565b602082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148c982613501565b91506148d483613501565b9250826148e4576148e361488f565b5b828204905092915050565b60006148fa82613501565b915061490583613501565b9250826149155761491461488f565b5b828206905092915050565b7f3c7376672077696474683d223130323422206865696768743d2231303234222060008201527f76696577426f783d223020302033322033322220786d6c6e733d22687474703a60208201527f2f2f7777772e77332e6f72672f323030302f737667223e000000000000000000604082015250565b60006149a26057836140da565b91506149ad82614920565b605782019050919050565b60006149c382614995565b9150819050919050565b600081519050919050565b600081905092915050565b60006149ee826149cd565b6149f881856149d8565b9350614a08818560208601613462565b80840191505092915050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b6000614a4a6006836140da565b9150614a5582614a14565b600682019050919050565b6000614a6c82846149e3565b9150614a7782614a3d565b915081905092915050565b6000614a8d82613501565b9150614a9883613501565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ad157614ad0613ec5565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b12601983613451565b9150614b1d82614adc565b602082019050919050565b60006020820190508181036000830152614b4181614b05565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614ba4603283613451565b9150614baf82614b48565b604082019050919050565b60006020820190508181036000830152614bd381614b97565b9050919050565b6000819050919050565b614bf5614bf082613501565b614bda565b82525050565b6000614c078284614be4565b60208201915081905092915050565b7f7267622800000000000000000000000000000000000000000000000000000000600082015250565b6000614c4c6004836140da565b9150614c5782614c16565b600482019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c986001836140da565b9150614ca382614c62565b600182019050919050565b7f2900000000000000000000000000000000000000000000000000000000000000600082015250565b6000614ce46001836140da565b9150614cef82614cae565b600182019050919050565b6000614d0582614c3f565b9150614d118286614131565b9150614d1c82614c8b565b9150614d288285614131565b9150614d3382614c8b565b9150614d3f8284614131565b9150614d4a82614cd7565b9150819050949350505050565b7f3c706174682066696c6c3d220000000000000000000000000000000000000000600082015250565b6000614d8d600c836140da565b9150614d9882614d57565b600c82019050919050565b7f2220643d224d0000000000000000000000000000000000000000000000000000600082015250565b6000614dd96006836140da565b9150614de482614da3565b600682019050919050565b7f6831763148000000000000000000000000000000000000000000000000000000600082015250565b6000614e256005836140da565b9150614e3082614def565b600582019050919050565b7f7a222f3e00000000000000000000000000000000000000000000000000000000600082015250565b6000614e716004836140da565b9150614e7c82614e3b565b600482019050919050565b6000614e9382886149e3565b9150614e9e82614d80565b9150614eaa8287614131565b9150614eb582614dcc565b9150614ec18286614131565b9150614ecc82614c8b565b9150614ed88285614131565b9150614ee382614e18565b9150614eef8284614131565b9150614efa82614e64565b91508190509695505050505050565b600082825260208201905092915050565b6000614f25826149cd565b614f2f8185614f09565b9350614f3f818560208601613462565b614f4881613495565b840191505092915050565b6000608082019050614f686000830187613596565b614f756020830186613596565b614f82604083018561367f565b8181036060830152614f948184614f1a565b905095945050505050565b600081519050614fae816133b7565b92915050565b600060208284031215614fca57614fc9613381565b5b6000614fd884828501614f9f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615017602083613451565b915061502282614fe1565b602082019050919050565b600060208201905081810360008301526150468161500a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615083601c83613451565b915061508e8261504d565b602082019050919050565b600060208201905081810360008301526150b281615076565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220404a8d008129245d842d567b7353b942781f2ee55b97ede1ad4d8a07bf85ab2c64736f6c63430008090033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.