ETH Price: $2,947.23 (-3.84%)
Gas: 2 Gwei

Token

S O P H O N (⭘)
 

Overview

Max Total Supply

3,332

Holders

876

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Gem: Protection Enabled Address
Balance
0 ⭘
0xae9c73fd0fd237c1c6f66fe009d24ce969e98704
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SOPHON

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : Sophon.sol
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.8.7;
import "./openzeppelin/token/ERC721/extensions/ERC721Enumerable.sol";
import  "./openzeppelin/access/Ownable.sol";
import "./ChainlinkIndexStorage.sol";
import {MerkleProof} from "./openzeppelin/cryptography/MerkleProof.sol";

interface IChainlink {
    function returnSpecificIdFromShuffledMapping(uint256, uint256) external returns(uint256);
}


contract SOPHON is ERC721Enumerable, Ownable {

    bytes32 public whitelistRoot;
    uint256 private mappingSpecifier;
    string private baseURI;
    
    uint256 public reincarnationReserve;
    uint256 public maxMintPerWallet;
    uint256 public maxSupply;
    uint256 public mintStart;
    bool public mintIsAcvtive;

    bool honorWhitelist = true;
    

    mapping(address => uint256) private _mintsPerWallet;
    mapping(address => bool) private _blaclistedWallets;

    address public ChainlinkVrfAddress;
    IChainlink ChainlinkVRF;
    

    constructor(
        string memory name,
        string memory symbol,
        uint256 _maxMintPerWallet,
        uint256 _maxSupply,
        uint256 _mintStart,
        uint256 _reincarnationReserve,
        bytes32 _whitelistRoot,
        address _VrfAddress
    ) ERC721(name, symbol) {
        ChainlinkVrfAddress = _VrfAddress;
        ChainlinkVRF = IChainlink(ChainlinkVrfAddress);
        maxMintPerWallet = _maxMintPerWallet;
        maxSupply = _maxSupply;
        mintStart = _mintStart;
        reincarnationReserve = _reincarnationReserve;
        whitelistRoot = _whitelistRoot;
        mintIsAcvtive = false;
        }


    function setWhitelistRoot(bytes32 newWhitelistRoot) external onlyOwner {
        whitelistRoot = newWhitelistRoot;
    }

    function mint(bytes32[] calldata whitelistProof) external {
        require(_blaclistedWallets[msg.sender] == false, "You are blacklisted.");
        require(mintIsAcvtive, "Minting isn't active yet.");
        require(mintStart < block.timestamp, "Mint timestamp hasn't been met yet.");
        require(_mintsPerWallet[msg.sender] < maxMintPerWallet, "You've already minted NFTs");

        uint256 amount =  maxMintPerWallet - _mintsPerWallet[msg.sender];
        require(totalSupply() + amount < maxSupply - reincarnationReserve, "Public mint has been over.");
        require(msg.sender == tx.origin, "Minter is not original sender.");


        // If needed, honor the global whitelist
        if (honorWhitelist) {
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            bool verified = MerkleProof.verify(whitelistProof, whitelistRoot, leaf);
            require(verified, "Your wallet is not whitelisted.");
        }
        
        _mintsPerWallet[msg.sender] = maxMintPerWallet;
        for (uint256 i = 0; i<amount; i++){
            if(totalSupply()%1111 == 0 && totalSupply() != 0){
                mappingSpecifier = mappingSpecifier +1;
            }
            uint256 mintIndex = ChainlinkVRF.returnSpecificIdFromShuffledMapping(mappingSpecifier, totalSupply()%1111);
            _safeMint(msg.sender, mintIndex);
        } 
    }

    function airdropMint(uint256 totalAirdropAmount) external onlyOwner {
            require(totalSupply() + totalAirdropAmount < maxSupply, "MaxSupply is reached.");
            for (uint256 i = 0; i < totalAirdropAmount; ++i){
                if(totalSupply()%1111 == 0 && totalSupply() != 0){
                    mappingSpecifier = mappingSpecifier +1;
                }
                uint256 mintIndex = ChainlinkVRF.returnSpecificIdFromShuffledMapping(mappingSpecifier, totalSupply()%1111);
                _safeMint(owner(), mintIndex);
                
            }
        }


    function addBlacklistedWallets(address[] calldata addresses) public onlyOwner{
        for (uint256 i = 0; i < addresses.length; ++i){
            _blaclistedWallets[addresses[i]] = true;
        }
    }

    function updateChainlinkVrfAddress(address _ChainlinkVrfAddress) public onlyOwner{
        ChainlinkVrfAddress = _ChainlinkVrfAddress;
    }

    function update_maxMintPerWallet(uint256 newLimit) public onlyOwner{
        maxMintPerWallet = newLimit;
    }
    function flipHonorWhitelist() public onlyOwner {
        honorWhitelist = !honorWhitelist;
    }

    function flipMintState() public onlyOwner {
        mintIsAcvtive = !mintIsAcvtive;
    }

    function updateMintStart(uint256 _timeStamp) public onlyOwner{
        mintStart = _timeStamp;
    }

    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }

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

File 2 of 18 : MerkleProof.sol
pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 3 of 18 : ChainlinkIndexStorage.sol
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.8.7;
import "./chainlink/VRFConsumerBase.sol";
import  "./openzeppelin/access/Ownable.sol";

abstract contract RandomNumberConsumer is VRFConsumerBase, Ownable{
    
    bytes32 internal keyHash;
    uint256 internal fee;
    uint256 public randomResult;
    

    constructor() 
        VRFConsumerBase(
            0xf0d54349aDdcf704F77AE15b96510dEA15cb7952, // VRF Coordinator
            0x514910771AF9Ca656af840dff83E8264EcF986CA  // LINK Token
        )
    {
        keyHash = 0xAA77729D3466CA35AE8D28B3BBAC7CC36A5031EFDC430821C02BC31A238AF445;
        fee = 2 * 10 ** 18;
    }}



contract ChainlinkRandomNumberConsumer is RandomNumberConsumer {

    mapping(uint256 => uint256[1111]) internal indexMapping;
    uint256[] internal expandedValues = new uint256[](3);
    address public SingularityERC721Adress;
    uint256 public reservedNFTCount;

    constructor(uint256 _reserved){
        reservedNFTCount = _reserved;
        createSortedMapping(0);}


    function getRandomNumber() public onlyOwner returns (bytes32 requestId) {
        require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK - fill contract with faucet");
        return requestRandomness(keyHash, fee);
    }

    /**
     * Callback function used by VRF Coordinator
     */
    function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
        randomResult = randomness;
    }

    //create expansionAmount of psuedo-random numbers from randomResult
    function expand(uint256 expansionAmount) external onlyOwner{
        uint256 randomValue = randomResult;
        require(randomValue != 0, "Random Number hasn't been updated yet.");
        for (uint256 i = 0; i < expansionAmount; i++) {
            expandedValues[i] = uint256(keccak256(abi.encode(randomValue, i)));
            }
    }

    function createSortedMapping(uint256 mappingSpecifier) public onlyOwner  {
        for (uint256 i = 0; i < 1111; i++){
            indexMapping[mappingSpecifier][i] = i+1 + 1111*mappingSpecifier;
        }
    }

    function shuffle(uint256 indexAmount, uint256 mappingSpecifier) external onlyOwner{ // index = 1111
        for (uint256 i = reservedNFTCount; i < indexAmount; i++) {
            uint256 n = i + uint256(keccak256(abi.encode(expandedValues[mappingSpecifier], block.timestamp))) % (indexAmount -i);
            if(reservedNFTCount > 0 && n < reservedNFTCount){
                n = n + reservedNFTCount; //This way instead of reserved NFTs, index of reservedNFT+reservedNFT gets swapped
            }

            uint256 temp = indexMapping[mappingSpecifier][n];
            indexMapping[mappingSpecifier][n] = indexMapping[mappingSpecifier][i];
            indexMapping[mappingSpecifier][i] = temp;
            }
        reservedNFTCount = 0; // Fix reservedNFTCount for future shuffles
    }

    function setNFTAddress(address newAddy) public onlyOwner{
        SingularityERC721Adress = newAddy;
    }

    function returnSpecificIdFromShuffledMapping(uint256 mappingSpecifier,uint256 index) external view returns(uint256){
        require(msg.sender == SingularityERC721Adress || msg.sender == owner());
        return indexMapping[mappingSpecifier][index];
    } 
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 9 of 18 : VRFConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./interfaces/LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {
  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(bytes32 requestId, uint256 randomness) internal virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 private constant USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(bytes32 _keyHash, uint256 _fee) internal returns (bytes32 requestId) {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface internal immutable LINK;
  address private immutable vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 => uint256) /* keyHash */ /* nonce */
    private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(address _vrfCoordinator, address _link) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 16 of 18 : VRFRequestIDBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract VRFRequestIDBase {
  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  ) internal pure returns (uint256) {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

File 17 of 18 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);

  function approve(address spender, uint256 value) external returns (bool success);

  function balanceOf(address owner) external view returns (uint256 balance);

  function decimals() external view returns (uint8 decimalPlaces);

  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);

  function increaseApproval(address spender, uint256 subtractedValue) external;

  function name() external view returns (string memory tokenName);

  function symbol() external view returns (string memory tokenSymbol);

  function totalSupply() external view returns (uint256 totalTokensIssued);

  function transfer(address to, uint256 value) external returns (bool success);

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  ) external returns (bool success);

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external returns (bool success);
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_mintStart","type":"uint256"},{"internalType":"uint256","name":"_reincarnationReserve","type":"uint256"},{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"},{"internalType":"address","name":"_VrfAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ChainlinkVrfAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addBlacklistedWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalAirdropAmount","type":"uint256"}],"name":"airdropMint","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":[],"name":"flipHonorWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","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":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"whitelistProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintIsAcvtive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStart","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":"reincarnationReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWhitelistRoot","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ChainlinkVrfAddress","type":"address"}],"name":"updateChainlinkVrfAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeStamp","type":"uint256"}],"name":"updateMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"update_maxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60806040526012805461ff0019166101001790553480156200002057600080fd5b50604051620027de380380620027de8339810160408190526200004391620001eb565b8787600062000053838262000335565b50600162000062828262000335565b5050506200007f62000079620000d060201b60201c565b620000d4565b601580546001600160a01b039092166001600160a01b0319928316811790915560168054909216179055600f94909455601092909255601155600e55600b5550506012805460ff1916905562000401565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200014e57600080fd5b81516001600160401b03808211156200016b576200016b62000126565b604051601f8301601f19908116603f0116810190828211818310171562000196576200019662000126565b81604052838152602092508683858801011115620001b357600080fd5b600091505b83821015620001d75785820183015181830184015290820190620001b8565b600093810190920192909252949350505050565b600080600080600080600080610100898b0312156200020957600080fd5b88516001600160401b03808211156200022157600080fd5b6200022f8c838d016200013c565b995060208b01519150808211156200024657600080fd5b50620002558b828c016200013c565b97505060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015160018060a01b03811681146200029557600080fd5b809150509295985092959890939650565b600181811c90821680620002bb57607f821691505b602082108103620002dc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033057600081815260208120601f850160051c810160208610156200030b5750805b601f850160051c820191505b818110156200032c5782815560010162000317565b5050505b505050565b81516001600160401b0381111562000351576200035162000126565b6200036981620003628454620002a6565b84620002e2565b602080601f831160018114620003a15760008415620003885750858301515b600019600386901b1c1916600185901b1785556200032c565b600085815260208120601f198616915b82811015620003d257888601518255948401946001909101908401620003b1565b5085821015620003f15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6123cd80620004116000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806370a0823111610125578063b88d4fde116100ad578063dcc47e6f1161007c578063dcc47e6f14610438578063e985e9c51461044b578063f2fde38b14610487578063f5aa406d1461049a578063f9493747146104ad57600080fd5b8063b88d4fde146103f6578063b8d7217214610409578063c87b56dd1461041c578063d5abeb011461042f57600080fd5b806395d89b41116100f457806395d89b41146103b2578063a22cb465146103ba578063b1c7ff67146103cd578063b228d925146103da578063b77a147b146103e357600080fd5b806370a082311461037d578063715018a6146103905780637ebd5d76146103985780638da5cb5b146103a157600080fd5b806325f1e56a116101a857806344799d6c1161017757806344799d6c146103295780634f6ccce71461033c57806355f804b31461034f57806359c74f29146103625780636352211e1461036a57600080fd5b806325f1e56a146102e75780632f745c59146102fa578063386bfc981461030d57806342842e0e1461031657600080fd5b8063095ea7b3116101ef578063095ea7b31461029357806318160ddd146102a65780632352172c146102b857806323b872dd146102cb578063255e4685146102de57600080fd5b806301ffc9a71461022157806306373d3a1461024957806306fdde0314610253578063081812fc14610268575b600080fd5b61023461022f366004611cca565b6104c0565b60405190151581526020015b60405180910390f35b6102516104eb565b005b61025b610510565b6040516102409190611d37565b61027b610276366004611d4a565b6105a2565b6040516001600160a01b039091168152602001610240565b6102516102a1366004611d7f565b6105c9565b6008545b604051908152602001610240565b6102516102c6366004611df5565b6106e3565b6102516102d9366004611e37565b61075b565b6102aa60115481565b60155461027b906001600160a01b031681565b6102aa610308366004611d7f565b61078c565b6102aa600b5481565b610251610324366004611e37565b610822565b610251610337366004611d4a565b61083d565b6102aa61034a366004611d4a565b6109af565b61025161035d366004611eff565b610a42565b610251610a56565b61027b610378366004611d4a565b610a72565b6102aa61038b366004611f48565b610ad2565b610251610b58565b6102aa600e5481565b600a546001600160a01b031661027b565b61025b610b6c565b6102516103c8366004611f63565b610b7b565b6012546102349060ff1681565b6102aa600f5481565b6102516103f1366004611df5565b610b86565b610251610404366004611f9f565b610fbe565b610251610417366004611d4a565b610ff0565b61025b61042a366004611d4a565b610ffd565b6102aa60105481565b610251610446366004611d4a565b611064565b61023461045936600461201b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610251610495366004611f48565b611071565b6102516104a8366004611d4a565b6110ea565b6102516104bb366004611f48565b6110f7565b60006001600160e01b0319821663780e9d6360e01b14806104e557506104e582611121565b92915050565b6104f3611171565b6012805461ff001981166101009182900460ff1615909102179055565b60606000805461051f9061204e565b80601f016020809104026020016040519081016040528092919081815260200182805461054b9061204e565b80156105985780601f1061056d57610100808354040283529160200191610598565b820191906000526020600020905b81548152906001019060200180831161057b57829003601f168201915b5050505050905090565b60006105ad826111cb565b506000908152600460205260409020546001600160a01b031690565b60006105d482610a72565b9050806001600160a01b0316836001600160a01b0316036106465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061066257506106628133610459565b6106d45760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161063d565b6106de838361122a565b505050565b6106eb611171565b60005b818110156106de5760016014600085858581811061070e5761070e612088565b90506020020160208101906107239190611f48565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055610754816120b4565b90506106ee565b6107653382611298565b6107815760405162461bcd60e51b815260040161063d906120cd565b6106de838383611317565b600061079783610ad2565b82106107f95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161063d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106de83838360405180602001604052806000815250610fbe565b610845611171565b6010548161085260085490565b61085c919061211b565b106108a15760405162461bcd60e51b815260206004820152601560248201527426b0bc29bab838363c9034b9903932b0b1b432b21760591b604482015260640161063d565b60005b818110156109ab576104576108b860085490565b6108c29190612144565b1580156108d0575060085415155b156108e757600c546108e390600161211b565b600c555b601654600c546000916001600160a01b0316906360f32ade9061045761090c60085490565b6109169190612144565b6040516001600160e01b031960e085901b168152600481019290925260248201526044016020604051808303816000875af1158015610959573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097d9190612158565b905061099a610994600a546001600160a01b031690565b826114be565b506109a4816120b4565b90506108a4565b5050565b60006109ba60085490565b8210610a1d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161063d565b60088281548110610a3057610a30612088565b90600052602060002001549050919050565b610a4a611171565b600d6109ab82826121bf565b610a5e611171565b6012805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806104e55760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161063d565b60006001600160a01b038216610b3c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161063d565b506001600160a01b031660009081526003602052604090205490565b610b60611171565b610b6a60006114d8565b565b60606001805461051f9061204e565b6109ab33838361152a565b3360009081526014602052604090205460ff1615610bdd5760405162461bcd60e51b81526020600482015260146024820152732cb7ba9030b93290313630b1b5b634b9ba32b21760611b604482015260640161063d565b60125460ff16610c2f5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e672069736e277420616374697665207965742e00000000000000604482015260640161063d565b4260115410610c8c5760405162461bcd60e51b815260206004820152602360248201527f4d696e742074696d657374616d70206861736e2774206265656e206d6574207960448201526232ba1760e91b606482015260840161063d565b600f543360009081526013602052604090205410610cec5760405162461bcd60e51b815260206004820152601a60248201527f596f7527766520616c7265616479206d696e746564204e465473000000000000604482015260640161063d565b33600090815260136020526040812054600f54610d09919061227f565b9050600e54601054610d1b919061227f565b81610d2560085490565b610d2f919061211b565b10610d7c5760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963206d696e7420686173206265656e206f7665722e000000000000604482015260640161063d565b333214610dcb5760405162461bcd60e51b815260206004820152601e60248201527f4d696e746572206973206e6f74206f726967696e616c2073656e6465722e0000604482015260640161063d565b601254610100900460ff1615610ea9576040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506000610e5785858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508590506115f8565b905080610ea65760405162461bcd60e51b815260206004820152601f60248201527f596f75722077616c6c6574206973206e6f742077686974656c69737465642e00604482015260640161063d565b50505b600f54336000908152601360205260408120919091555b81811015610fb857610457610ed460085490565b610ede9190612144565b158015610eec575060085415155b15610f0357600c54610eff90600161211b565b600c555b601654600c546000916001600160a01b0316906360f32ade90610457610f2860085490565b610f329190612144565b6040516001600160e01b031960e085901b168152600481019290925260248201526044016020604051808303816000875af1158015610f75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f999190612158565b9050610fa533826114be565b5080610fb0816120b4565b915050610ec0565b50505050565b610fc83383611298565b610fe45760405162461bcd60e51b815260040161063d906120cd565b610fb8848484846116a7565b610ff8611171565b601155565b6060611008826111cb565b60006110126116da565b90506000815111611032576040518060200160405280600081525061105d565b8061103c846116e9565b60405160200161104d929190612292565b6040516020818303038152906040525b9392505050565b61106c611171565b600f55565b611079611171565b6001600160a01b0381166110de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063d565b6110e7816114d8565b50565b6110f2611171565b600b55565b6110ff611171565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061115257506001600160e01b03198216635b5e139f60e01b145b806104e557506301ffc9a760e01b6001600160e01b03198316146104e5565b600a546001600160a01b03163314610b6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161063d565b6000818152600260205260409020546001600160a01b03166110e75760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161063d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061125f82610a72565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112a483610a72565b9050806001600160a01b0316846001600160a01b031614806112eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061130f5750836001600160a01b0316611304846105a2565b6001600160a01b0316145b949350505050565b826001600160a01b031661132a82610a72565b6001600160a01b03161461138e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161063d565b6001600160a01b0382166113f05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063d565b6113fb8383836117ea565b61140660008261122a565b6001600160a01b038316600090815260036020526040812080546001929061142f90849061227f565b90915550506001600160a01b038216600090815260036020526040812080546001929061145d90849061211b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109ab8282604051806020016040528060008152506118a2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361158b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600081815b855181101561169c57600086828151811061161a5761161a612088565b6020026020010151905080831161165c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611689565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611694816120b4565b9150506115fd565b509092149392505050565b6116b2848484611317565b6116be848484846118d5565b610fb85760405162461bcd60e51b815260040161063d906122c1565b6060600d805461051f9061204e565b6060816000036117105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173a5780611724816120b4565b91506117339050600a83612313565b9150611714565b60008167ffffffffffffffff81111561175557611755611e73565b6040519080825280601f01601f19166020018201604052801561177f576020820181803683370190505b5090505b841561130f5761179460018361227f565b91506117a1600a86612144565b6117ac90603061211b565b60f81b8183815181106117c1576117c1612088565b60200101906001600160f81b031916908160001a9053506117e3600a86612313565b9450611783565b6001600160a01b0383166118455761184081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611868565b816001600160a01b0316836001600160a01b0316146118685761186883826119d6565b6001600160a01b03821661187f576106de81611a73565b826001600160a01b0316826001600160a01b0316146106de576106de8282611b22565b6118ac8383611b66565b6118b960008484846118d5565b6106de5760405162461bcd60e51b815260040161063d906122c1565b60006001600160a01b0384163b156119cb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611919903390899088908890600401612327565b6020604051808303816000875af1925050508015611954575060408051601f3d908101601f1916820190925261195191810190612364565b60015b6119b1573d808015611982576040519150601f19603f3d011682016040523d82523d6000602084013e611987565b606091505b5080516000036119a95760405162461bcd60e51b815260040161063d906122c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061130f565b506001949350505050565b600060016119e384610ad2565b6119ed919061227f565b600083815260076020526040902054909150808214611a40576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a859060019061227f565b60008381526009602052604081205460088054939450909284908110611aad57611aad612088565b906000526020600020015490508060088381548110611ace57611ace612088565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b0657611b06612381565b6001900381819060005260206000200160009055905550505050565b6000611b2d83610ad2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bbc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063d565b6000818152600260205260409020546001600160a01b031615611c215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063d565b611c2d600083836117ea565b6001600160a01b0382166000908152600360205260408120805460019290611c5690849061211b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146110e757600080fd5b600060208284031215611cdc57600080fd5b813561105d81611cb4565b60005b83811015611d02578181015183820152602001611cea565b50506000910152565b60008151808452611d23816020860160208601611ce7565b601f01601f19169290920160200192915050565b60208152600061105d6020830184611d0b565b600060208284031215611d5c57600080fd5b5035919050565b80356001600160a01b0381168114611d7a57600080fd5b919050565b60008060408385031215611d9257600080fd5b611d9b83611d63565b946020939093013593505050565b60008083601f840112611dbb57600080fd5b50813567ffffffffffffffff811115611dd357600080fd5b6020830191508360208260051b8501011115611dee57600080fd5b9250929050565b60008060208385031215611e0857600080fd5b823567ffffffffffffffff811115611e1f57600080fd5b611e2b85828601611da9565b90969095509350505050565b600080600060608486031215611e4c57600080fd5b611e5584611d63565b9250611e6360208501611d63565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ea457611ea4611e73565b604051601f8501601f19908116603f01168101908282118183101715611ecc57611ecc611e73565b81604052809350858152868686011115611ee557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f1157600080fd5b813567ffffffffffffffff811115611f2857600080fd5b8201601f81018413611f3957600080fd5b61130f84823560208401611e89565b600060208284031215611f5a57600080fd5b61105d82611d63565b60008060408385031215611f7657600080fd5b611f7f83611d63565b915060208301358015158114611f9457600080fd5b809150509250929050565b60008060008060808587031215611fb557600080fd5b611fbe85611d63565b9350611fcc60208601611d63565b925060408501359150606085013567ffffffffffffffff811115611fef57600080fd5b8501601f8101871361200057600080fd5b61200f87823560208401611e89565b91505092959194509250565b6000806040838503121561202e57600080fd5b61203783611d63565b915061204560208401611d63565b90509250929050565b600181811c9082168061206257607f821691505b60208210810361208257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016120c6576120c661209e565b5060010190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b808201808211156104e5576104e561209e565b634e487b7160e01b600052601260045260246000fd5b6000826121535761215361212e565b500690565b60006020828403121561216a57600080fd5b5051919050565b601f8211156106de57600081815260208120601f850160051c810160208610156121985750805b601f850160051c820191505b818110156121b7578281556001016121a4565b505050505050565b815167ffffffffffffffff8111156121d9576121d9611e73565b6121ed816121e7845461204e565b84612171565b602080601f831160018114612222576000841561220a5750858301515b600019600386901b1c1916600185901b1785556121b7565b600085815260208120601f198616915b8281101561225157888601518255948401946001909101908401612232565b508582101561226f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156104e5576104e561209e565b600083516122a4818460208801611ce7565b8351908301906122b8818360208801611ce7565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826123225761232261212e565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235a90830184611d0b565b9695505050505050565b60006020828403121561237657600080fd5b815161105d81611cb4565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220268a88410e8e7fc6811f2f6a9967e1d746e38f432a0c068f14209bd1f671227264736f6c634300081100330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000006336b01000000000000000000000000000000000000000000000000000000000000001b02ac7ba315cf4f8581171880654462749440f47fd94aee3c39828a6b8585afbf60000000000000000000000008feb477353d4f6e5302ee885588123609960bd5a000000000000000000000000000000000000000000000000000000000000000b53204f20502048204f204e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e2ad980000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806370a0823111610125578063b88d4fde116100ad578063dcc47e6f1161007c578063dcc47e6f14610438578063e985e9c51461044b578063f2fde38b14610487578063f5aa406d1461049a578063f9493747146104ad57600080fd5b8063b88d4fde146103f6578063b8d7217214610409578063c87b56dd1461041c578063d5abeb011461042f57600080fd5b806395d89b41116100f457806395d89b41146103b2578063a22cb465146103ba578063b1c7ff67146103cd578063b228d925146103da578063b77a147b146103e357600080fd5b806370a082311461037d578063715018a6146103905780637ebd5d76146103985780638da5cb5b146103a157600080fd5b806325f1e56a116101a857806344799d6c1161017757806344799d6c146103295780634f6ccce71461033c57806355f804b31461034f57806359c74f29146103625780636352211e1461036a57600080fd5b806325f1e56a146102e75780632f745c59146102fa578063386bfc981461030d57806342842e0e1461031657600080fd5b8063095ea7b3116101ef578063095ea7b31461029357806318160ddd146102a65780632352172c146102b857806323b872dd146102cb578063255e4685146102de57600080fd5b806301ffc9a71461022157806306373d3a1461024957806306fdde0314610253578063081812fc14610268575b600080fd5b61023461022f366004611cca565b6104c0565b60405190151581526020015b60405180910390f35b6102516104eb565b005b61025b610510565b6040516102409190611d37565b61027b610276366004611d4a565b6105a2565b6040516001600160a01b039091168152602001610240565b6102516102a1366004611d7f565b6105c9565b6008545b604051908152602001610240565b6102516102c6366004611df5565b6106e3565b6102516102d9366004611e37565b61075b565b6102aa60115481565b60155461027b906001600160a01b031681565b6102aa610308366004611d7f565b61078c565b6102aa600b5481565b610251610324366004611e37565b610822565b610251610337366004611d4a565b61083d565b6102aa61034a366004611d4a565b6109af565b61025161035d366004611eff565b610a42565b610251610a56565b61027b610378366004611d4a565b610a72565b6102aa61038b366004611f48565b610ad2565b610251610b58565b6102aa600e5481565b600a546001600160a01b031661027b565b61025b610b6c565b6102516103c8366004611f63565b610b7b565b6012546102349060ff1681565b6102aa600f5481565b6102516103f1366004611df5565b610b86565b610251610404366004611f9f565b610fbe565b610251610417366004611d4a565b610ff0565b61025b61042a366004611d4a565b610ffd565b6102aa60105481565b610251610446366004611d4a565b611064565b61023461045936600461201b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610251610495366004611f48565b611071565b6102516104a8366004611d4a565b6110ea565b6102516104bb366004611f48565b6110f7565b60006001600160e01b0319821663780e9d6360e01b14806104e557506104e582611121565b92915050565b6104f3611171565b6012805461ff001981166101009182900460ff1615909102179055565b60606000805461051f9061204e565b80601f016020809104026020016040519081016040528092919081815260200182805461054b9061204e565b80156105985780601f1061056d57610100808354040283529160200191610598565b820191906000526020600020905b81548152906001019060200180831161057b57829003601f168201915b5050505050905090565b60006105ad826111cb565b506000908152600460205260409020546001600160a01b031690565b60006105d482610a72565b9050806001600160a01b0316836001600160a01b0316036106465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061066257506106628133610459565b6106d45760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161063d565b6106de838361122a565b505050565b6106eb611171565b60005b818110156106de5760016014600085858581811061070e5761070e612088565b90506020020160208101906107239190611f48565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055610754816120b4565b90506106ee565b6107653382611298565b6107815760405162461bcd60e51b815260040161063d906120cd565b6106de838383611317565b600061079783610ad2565b82106107f95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161063d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106de83838360405180602001604052806000815250610fbe565b610845611171565b6010548161085260085490565b61085c919061211b565b106108a15760405162461bcd60e51b815260206004820152601560248201527426b0bc29bab838363c9034b9903932b0b1b432b21760591b604482015260640161063d565b60005b818110156109ab576104576108b860085490565b6108c29190612144565b1580156108d0575060085415155b156108e757600c546108e390600161211b565b600c555b601654600c546000916001600160a01b0316906360f32ade9061045761090c60085490565b6109169190612144565b6040516001600160e01b031960e085901b168152600481019290925260248201526044016020604051808303816000875af1158015610959573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097d9190612158565b905061099a610994600a546001600160a01b031690565b826114be565b506109a4816120b4565b90506108a4565b5050565b60006109ba60085490565b8210610a1d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161063d565b60088281548110610a3057610a30612088565b90600052602060002001549050919050565b610a4a611171565b600d6109ab82826121bf565b610a5e611171565b6012805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806104e55760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161063d565b60006001600160a01b038216610b3c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161063d565b506001600160a01b031660009081526003602052604090205490565b610b60611171565b610b6a60006114d8565b565b60606001805461051f9061204e565b6109ab33838361152a565b3360009081526014602052604090205460ff1615610bdd5760405162461bcd60e51b81526020600482015260146024820152732cb7ba9030b93290313630b1b5b634b9ba32b21760611b604482015260640161063d565b60125460ff16610c2f5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e672069736e277420616374697665207965742e00000000000000604482015260640161063d565b4260115410610c8c5760405162461bcd60e51b815260206004820152602360248201527f4d696e742074696d657374616d70206861736e2774206265656e206d6574207960448201526232ba1760e91b606482015260840161063d565b600f543360009081526013602052604090205410610cec5760405162461bcd60e51b815260206004820152601a60248201527f596f7527766520616c7265616479206d696e746564204e465473000000000000604482015260640161063d565b33600090815260136020526040812054600f54610d09919061227f565b9050600e54601054610d1b919061227f565b81610d2560085490565b610d2f919061211b565b10610d7c5760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963206d696e7420686173206265656e206f7665722e000000000000604482015260640161063d565b333214610dcb5760405162461bcd60e51b815260206004820152601e60248201527f4d696e746572206973206e6f74206f726967696e616c2073656e6465722e0000604482015260640161063d565b601254610100900460ff1615610ea9576040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506000610e5785858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508590506115f8565b905080610ea65760405162461bcd60e51b815260206004820152601f60248201527f596f75722077616c6c6574206973206e6f742077686974656c69737465642e00604482015260640161063d565b50505b600f54336000908152601360205260408120919091555b81811015610fb857610457610ed460085490565b610ede9190612144565b158015610eec575060085415155b15610f0357600c54610eff90600161211b565b600c555b601654600c546000916001600160a01b0316906360f32ade90610457610f2860085490565b610f329190612144565b6040516001600160e01b031960e085901b168152600481019290925260248201526044016020604051808303816000875af1158015610f75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f999190612158565b9050610fa533826114be565b5080610fb0816120b4565b915050610ec0565b50505050565b610fc83383611298565b610fe45760405162461bcd60e51b815260040161063d906120cd565b610fb8848484846116a7565b610ff8611171565b601155565b6060611008826111cb565b60006110126116da565b90506000815111611032576040518060200160405280600081525061105d565b8061103c846116e9565b60405160200161104d929190612292565b6040516020818303038152906040525b9392505050565b61106c611171565b600f55565b611079611171565b6001600160a01b0381166110de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063d565b6110e7816114d8565b50565b6110f2611171565b600b55565b6110ff611171565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061115257506001600160e01b03198216635b5e139f60e01b145b806104e557506301ffc9a760e01b6001600160e01b03198316146104e5565b600a546001600160a01b03163314610b6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161063d565b6000818152600260205260409020546001600160a01b03166110e75760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161063d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061125f82610a72565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112a483610a72565b9050806001600160a01b0316846001600160a01b031614806112eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061130f5750836001600160a01b0316611304846105a2565b6001600160a01b0316145b949350505050565b826001600160a01b031661132a82610a72565b6001600160a01b03161461138e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161063d565b6001600160a01b0382166113f05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063d565b6113fb8383836117ea565b61140660008261122a565b6001600160a01b038316600090815260036020526040812080546001929061142f90849061227f565b90915550506001600160a01b038216600090815260036020526040812080546001929061145d90849061211b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109ab8282604051806020016040528060008152506118a2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361158b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600081815b855181101561169c57600086828151811061161a5761161a612088565b6020026020010151905080831161165c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611689565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611694816120b4565b9150506115fd565b509092149392505050565b6116b2848484611317565b6116be848484846118d5565b610fb85760405162461bcd60e51b815260040161063d906122c1565b6060600d805461051f9061204e565b6060816000036117105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173a5780611724816120b4565b91506117339050600a83612313565b9150611714565b60008167ffffffffffffffff81111561175557611755611e73565b6040519080825280601f01601f19166020018201604052801561177f576020820181803683370190505b5090505b841561130f5761179460018361227f565b91506117a1600a86612144565b6117ac90603061211b565b60f81b8183815181106117c1576117c1612088565b60200101906001600160f81b031916908160001a9053506117e3600a86612313565b9450611783565b6001600160a01b0383166118455761184081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611868565b816001600160a01b0316836001600160a01b0316146118685761186883826119d6565b6001600160a01b03821661187f576106de81611a73565b826001600160a01b0316826001600160a01b0316146106de576106de8282611b22565b6118ac8383611b66565b6118b960008484846118d5565b6106de5760405162461bcd60e51b815260040161063d906122c1565b60006001600160a01b0384163b156119cb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611919903390899088908890600401612327565b6020604051808303816000875af1925050508015611954575060408051601f3d908101601f1916820190925261195191810190612364565b60015b6119b1573d808015611982576040519150601f19603f3d011682016040523d82523d6000602084013e611987565b606091505b5080516000036119a95760405162461bcd60e51b815260040161063d906122c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061130f565b506001949350505050565b600060016119e384610ad2565b6119ed919061227f565b600083815260076020526040902054909150808214611a40576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a859060019061227f565b60008381526009602052604081205460088054939450909284908110611aad57611aad612088565b906000526020600020015490508060088381548110611ace57611ace612088565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b0657611b06612381565b6001900381819060005260206000200160009055905550505050565b6000611b2d83610ad2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bbc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063d565b6000818152600260205260409020546001600160a01b031615611c215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063d565b611c2d600083836117ea565b6001600160a01b0382166000908152600360205260408120805460019290611c5690849061211b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146110e757600080fd5b600060208284031215611cdc57600080fd5b813561105d81611cb4565b60005b83811015611d02578181015183820152602001611cea565b50506000910152565b60008151808452611d23816020860160208601611ce7565b601f01601f19169290920160200192915050565b60208152600061105d6020830184611d0b565b600060208284031215611d5c57600080fd5b5035919050565b80356001600160a01b0381168114611d7a57600080fd5b919050565b60008060408385031215611d9257600080fd5b611d9b83611d63565b946020939093013593505050565b60008083601f840112611dbb57600080fd5b50813567ffffffffffffffff811115611dd357600080fd5b6020830191508360208260051b8501011115611dee57600080fd5b9250929050565b60008060208385031215611e0857600080fd5b823567ffffffffffffffff811115611e1f57600080fd5b611e2b85828601611da9565b90969095509350505050565b600080600060608486031215611e4c57600080fd5b611e5584611d63565b9250611e6360208501611d63565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ea457611ea4611e73565b604051601f8501601f19908116603f01168101908282118183101715611ecc57611ecc611e73565b81604052809350858152868686011115611ee557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f1157600080fd5b813567ffffffffffffffff811115611f2857600080fd5b8201601f81018413611f3957600080fd5b61130f84823560208401611e89565b600060208284031215611f5a57600080fd5b61105d82611d63565b60008060408385031215611f7657600080fd5b611f7f83611d63565b915060208301358015158114611f9457600080fd5b809150509250929050565b60008060008060808587031215611fb557600080fd5b611fbe85611d63565b9350611fcc60208601611d63565b925060408501359150606085013567ffffffffffffffff811115611fef57600080fd5b8501601f8101871361200057600080fd5b61200f87823560208401611e89565b91505092959194509250565b6000806040838503121561202e57600080fd5b61203783611d63565b915061204560208401611d63565b90509250929050565b600181811c9082168061206257607f821691505b60208210810361208257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016120c6576120c661209e565b5060010190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b808201808211156104e5576104e561209e565b634e487b7160e01b600052601260045260246000fd5b6000826121535761215361212e565b500690565b60006020828403121561216a57600080fd5b5051919050565b601f8211156106de57600081815260208120601f850160051c810160208610156121985750805b601f850160051c820191505b818110156121b7578281556001016121a4565b505050505050565b815167ffffffffffffffff8111156121d9576121d9611e73565b6121ed816121e7845461204e565b84612171565b602080601f831160018114612222576000841561220a5750858301515b600019600386901b1c1916600185901b1785556121b7565b600085815260208120601f198616915b8281101561225157888601518255948401946001909101908401612232565b508582101561226f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156104e5576104e561209e565b600083516122a4818460208801611ce7565b8351908301906122b8818360208801611ce7565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826123225761232261212e565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235a90830184611d0b565b9695505050505050565b60006020828403121561237657600080fd5b815161105d81611cb4565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220268a88410e8e7fc6811f2f6a9967e1d746e38f432a0c068f14209bd1f671227264736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000006336b01000000000000000000000000000000000000000000000000000000000000001b02ac7ba315cf4f8581171880654462749440f47fd94aee3c39828a6b8585afbf60000000000000000000000008feb477353d4f6e5302ee885588123609960bd5a000000000000000000000000000000000000000000000000000000000000000b53204f20502048204f204e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e2ad980000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): S O P H O N
Arg [1] : symbol (string): ⭘
Arg [2] : _maxMintPerWallet (uint256): 1
Arg [3] : _maxSupply (uint256): 3333
Arg [4] : _mintStart (uint256): 1664528400
Arg [5] : _reincarnationReserve (uint256): 432
Arg [6] : _whitelistRoot (bytes32): 0x2ac7ba315cf4f8581171880654462749440f47fd94aee3c39828a6b8585afbf6
Arg [7] : _VrfAddress (address): 0x8Feb477353D4f6E5302ee885588123609960bD5A

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [4] : 000000000000000000000000000000000000000000000000000000006336b010
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001b0
Arg [6] : 2ac7ba315cf4f8581171880654462749440f47fd94aee3c39828a6b8585afbf6
Arg [7] : 0000000000000000000000008feb477353d4f6e5302ee885588123609960bd5a
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [9] : 53204f20502048204f204e000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : e2ad980000000000000000000000000000000000000000000000000000000000


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.