ETH Price: $3,389.00 (+1.49%)

Token

Cryptoflats (CNRS-0)
 

Overview

Max Total Supply

9 CNRS-0

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CNRS-0
0x56c6a93cf4167ed039a62c59c3b144cf962fb99d
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:
CryptoflatsNFT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 1200 runs

Other Settings:
default evmVersion
File 1 of 19 : CryptoflatsNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "../utils/ERC721BalanceMemory.sol";
import "../utils/Locker.sol";
import "./ICryptoflatsNFTGen.sol";
import "./ERC721R.sol";

contract CryptoflatsNFT is 
    ICryptoflatsNFTGen,
    ERC721R,
    ERC2981,
    Ownable,
    Locker,
    ERC721BalanceMemory
{
    event Received(address indexed from, uint256 amount);
    event CNRSMinted(uint256 quantity);
    event OwnerMinted(uint256 quantity);

    using Strings for uint256;

    string private _baseURIOption;
    Type[] private _raritiesArray;


    /*********************************************************************************/
    /*                            CRYPTOFLATS GEN OPTIONS                            */
    /*********************************************************************************/

    uint8 public constant MAX_ALLOWED_MINT_FOR_FREE_WHITELIST = 1;
    uint8 public constant MAX_ALLOWED_MINT_FOR_DISCOUNT_WHITELIST = 3;
    uint96 public constant DEFAULT_ROYALTY = 500; // 5%


    // Owner can change price once a week for 1 - 0.001 ether
    uint256 public constant LOCK_PERIOD = 604800; // One week in seconds
    uint256 public constant MAX_INITIAL_PRICE_FOR_PUBLIC_SALE = 1 ether;
    uint256 public constant MIN_INITIAL_PRICE_FOR_PUBLIC_SALE = 0.001 ether;
    uint256 public constant MAX_INITIAL_PRICE_FOR_EARLY_ACCESS_SALE = 0.5 ether;
    uint256 public constant MIN_INITIAL_PRICE_FOR_EARLY_ACCESS_SALE = MIN_INITIAL_PRICE_FOR_PUBLIC_SALE;


    uint16 public immutable PLACES_FOR_FREE_ACCESS_WHITELIST;
    uint16 public immutable PLACES_FOR_EARLY_ACCESS_WHITELIST;
    uint256 public immutable MAX_SUPPLY;



    /*********************************************************************************/
    /*                        CRYPTOFLATS GEN DYNAMIC OPTIONS                        */
    /*********************************************************************************/
    uint16 public earlyAccessPlacesCounter;
    uint16 public freeAccessPlacesCounter;


    address payable public teamWallet;
    uint256 public gen;
    
    uint256 public earlyAccessPrice;
    uint256 public publicSalePrice;



    bytes32 public whitelistFreePurchaseRoot;
    bytes32 public whitelistEarlyAccessRoot;


    mapping(address => bool) public isWhitelistFreePurchaseUserMintedOnce;
    mapping(address => uint256) public getMintCountForEarlyAccessUser;




    bool public isPublicSaleActive;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_,
        address payable teamWallet_,
        uint256 gen_,
        uint256 maxSupply_,
        uint256 publicSalePrice_,
        uint256 earlyAccessPrice_,
        uint16 placesForFreeAccessWhitelist_,
        uint16 placesForEarlyAccessWhitelist_
    ) ERC721R(name_, symbol_, maxSupply_) {
        gen = gen_;
        _baseURIOption = baseURI_;
        teamWallet = teamWallet_;
        
        earlyAccessPrice = earlyAccessPrice_;
        publicSalePrice = publicSalePrice_;
        
        MAX_SUPPLY = maxSupply_;
        PLACES_FOR_FREE_ACCESS_WHITELIST = placesForFreeAccessWhitelist_;
        PLACES_FOR_EARLY_ACCESS_WHITELIST = placesForEarlyAccessWhitelist_;
        
        isPublicSaleActive = false;


        _setDefaultRoyalty(msg.sender, DEFAULT_ROYALTY);
    }


    receive() external payable {
        emit Received(msg.sender, msg.value);
    }


    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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


    function supportsInterface(bytes4 interfaceId) 
        public 
        view 
        virtual 
        override(ERC2981, ERC721R) 
        returns (bool) {
        return super.supportsInterface(interfaceId);
    }



    function getNFTType(uint256 _id) external view returns (Type) {
        require(_exists(_id), string(abi.encodePacked(symbol(), ": Token doesn't exsits")));
        Type rarity;

        if(gen == 0) {
          rarity = _id < 999 ? Type.Gold: Type.Diamond;
        } else {
          rarity = _raritiesArray[_id];
        }

        return rarity;
    }


    function mint(uint256 quantity) external payable {
        require(quantity > 0, string(abi.encodePacked(symbol(), ": Quantity should be greather then zero!")));

        if(msg.sender != owner()) {
            require(isPublicSaleActive == true, string(abi.encodePacked(symbol(), ": Public sale is inactive!")));
            assert(msg.value >= (publicSalePrice * quantity));
        } else {
            emit OwnerMinted(quantity);
        }

        _mintRandom(msg.sender, quantity);
        emit CNRSMinted(quantity);
    }


    function mintFreeAccess(bytes32[] calldata whitelistFreePurchaseProof) external {
        require(
            isUserFreePurchaseWhitelist(whitelistFreePurchaseProof, msg.sender),
            string(abi.encodePacked(symbol(), ": Unfortunately, you are not in a free purchase whitelist!"))
        );

        isWhitelistFreePurchaseUserMintedOnce[msg.sender] = true;
        _mintRandom(msg.sender, 1);
        emit CNRSMinted(1);

    }

    function mintEarlyAccess(
        bytes32[] calldata whitelistEarlyAccessProof,
        uint256 quantity
    ) external payable {
        require(
            quantity > 0,
            string(abi.encodePacked(symbol(), ": Insufficient quantity"))
        );
        require(
            isUserEarlyAccessWhitelist(whitelistEarlyAccessProof, msg.sender),
            string(abi.encodePacked(symbol(), ": Unfortunately, you are not in early access whitelist!"))
        );
        require(
            getMintCountForEarlyAccessUser[msg.sender] + quantity <= MAX_ALLOWED_MINT_FOR_DISCOUNT_WHITELIST,
            string(abi.encodePacked(symbol(), ": Early access mint is only possible in the amount of 3 pieces!"))
        );
        assert(msg.value >= (earlyAccessPrice * quantity));


        unchecked {
            getMintCountForEarlyAccessUser[msg.sender] += quantity;
        }

        _mintRandom(msg.sender, quantity);

        emit CNRSMinted(quantity);
    }


    function isUserFreePurchaseWhitelist(
        bytes32[] calldata whitelistMerkleProof,
        address account
    ) public view returns (bool) {
        if(
            whitelistFreePurchaseRoot == bytes32(0) ||
            whitelistMerkleProof.length == 0 ||
            account == address(0) ||
            isWhitelistFreePurchaseUserMintedOnce[account] == true
        ) {
            return false;
        }


        return MerkleProof.verify(
            whitelistMerkleProof,
            whitelistFreePurchaseRoot,
            keccak256(abi.encodePacked(account))
        );
    }


    function isUserEarlyAccessWhitelist(
        bytes32[] calldata whitelistMerkleProof,
        address account
    ) public view returns (bool) {
        if(
            whitelistEarlyAccessRoot == bytes32(0) ||
            whitelistMerkleProof.length == 0 ||
            account == address(0) ||
            getMintCountForEarlyAccessUser[account] >= MAX_ALLOWED_MINT_FOR_DISCOUNT_WHITELIST
        ) {
            return false;
        }

        return MerkleProof.verify(
            whitelistMerkleProof,
            whitelistEarlyAccessRoot,
            keccak256(abi.encodePacked(account))
        );
    }





    /*********************************************************************************/
    /*                       CRYPTOFLATS GEN OWNABLE FUNCTIONS                       */
    /*********************************************************************************/

    function airdrop(address to, uint256 tokenId) external onlyOwner {
      require(_exists(tokenId) == false, string(abi.encodePacked(symbol(), ": token ID is already minted!")));
      _mintAtIndex(to, tokenId);
    }


    function setRaritiesArray(Type[] memory rarityArray) external onlyOwner {
      if(_raritiesArray.length == 0) {
        _raritiesArray = rarityArray;
      } else {
        for(uint256 i = 0; i < rarityArray.length;){
          _raritiesArray.push(rarityArray[i]);
          unchecked{ ++i; }
        }
      }
    }


    function clearRaritiesArray() external onlyOwner {
      delete _raritiesArray;
    }

    function getRaritiesArray() external onlyOwner view returns (Type[] memory) {
      return _raritiesArray;
    }

    function setNewTeamWallet(address payable newTeamWallet) external onlyOwner {
        teamWallet = newTeamWallet;
        emit TeamWalletTransferred(msg.sender, teamWallet, newTeamWallet);
    }


    function setNewFreePurchaseWhitelistRoot(bytes32 newFreePurchaseWhitelistRoot, int16 value) external onlyOwner {
        if(value >= 0) {
            _addInFreeAccessCounter(uint16(value));
        } else {
            _subFromFreeAccessCounter(uint16(-value));
        }
        
        emit WhitelistRootChanged(
            msg.sender,
            whitelistFreePurchaseRoot,
            newFreePurchaseWhitelistRoot,
            "Free Purchase"
        );
        whitelistFreePurchaseRoot = newFreePurchaseWhitelistRoot;
    }


    function setNewEarlyAccessWhitelistRoot(bytes32 newEarlyAccessWhitelistRoot, int16 value) external onlyOwner {
        if(value >= 0) {
            _addInEarlyAccessCounter(uint16(value));
        } else {
            _subFromEarlyAccessCounter(uint16(-value));
        }


        emit WhitelistRootChanged(
            msg.sender,
            whitelistFreePurchaseRoot,
            newEarlyAccessWhitelistRoot,
            "Early Access"
        );
        whitelistEarlyAccessRoot = newEarlyAccessWhitelistRoot;
    }

    function activatePublicSale() external onlyOwner
    {
        isPublicSaleActive = true;
    }

    function deactivatePublicSale() external onlyOwner
    {
        isPublicSaleActive = false;
    }


    function changePublicSalePrice(uint256 newPublicSalePrice) 
        external
        onlyOwner
        lockWithDelayBySelector(
            LOCK_PERIOD,
            bytes4(keccak256("changePublicSalePrice(uint256)")
        )) {
        require(
            newPublicSalePrice <= MAX_INITIAL_PRICE_FOR_PUBLIC_SALE && 
            newPublicSalePrice >= MIN_INITIAL_PRICE_FOR_PUBLIC_SALE,
            string(abi.encodePacked(symbol(), ": New public sale price is not in limit diapason"))
        );
        
        publicSalePrice = newPublicSalePrice;
    }


    function changeEarlyAccessSalePrice(uint256 newEarlyAccessSalePrice)
        external
        onlyOwner
        lockWithDelayBySelector(
            LOCK_PERIOD,
            bytes4(keccak256("changeEarlyAccessSalePrice(uint256)")
        )) {
        require(
            newEarlyAccessSalePrice <= MAX_INITIAL_PRICE_FOR_EARLY_ACCESS_SALE && 
            newEarlyAccessSalePrice >= MIN_INITIAL_PRICE_FOR_EARLY_ACCESS_SALE,
            string(abi.encodePacked(symbol(), ": New early access sale price is not in limit diapason"))
        );
        
        earlyAccessPrice = newEarlyAccessSalePrice;
    }


    function withdrawBalance()
        external
        onlyOwner
        returns (bool) {
        uint256 balance = address(this).balance;
        require(balance > 0, string(abi.encodePacked(symbol(), ": zero balance")));
        
        (bool sent, ) = teamWallet.call{value: balance}("");
        require(sent, string(abi.encodePacked(symbol(), ": Failed to send Ether")));
        
        return sent;
    }







    /*********************************************************************************/
    /*                            CRYPTOFLATS GEN HELPERS                            */
    /*********************************************************************************/
    function _addInEarlyAccessCounter(uint16 term) private {
        require((earlyAccessPlacesCounter + term) <= PLACES_FOR_EARLY_ACCESS_WHITELIST, string(abi.encodePacked(symbol(), ": it's not possible to add a term, since the limit for early access places will be exceeded!")));
        unchecked {
            earlyAccessPlacesCounter += term;
        }
    }

    function _subFromEarlyAccessCounter(uint16 substract) private {
        require(earlyAccessPlacesCounter > substract, string(abi.encodePacked(symbol(), ": It's impossible to subtract the difference because the subtracted value exceeds the reduced value!")));
        unchecked {
            earlyAccessPlacesCounter -= substract;
        }
    }


    function _addInFreeAccessCounter(uint16 term) private {
        require((freeAccessPlacesCounter + term) <= PLACES_FOR_FREE_ACCESS_WHITELIST, string(abi.encodePacked(symbol(), ": it's not possible to add a term, since the limit for free access places will be exceeded!")));
        unchecked {
            freeAccessPlacesCounter += term;
        }
    }

    function _subFromFreeAccessCounter(uint16 substract) private {
        require(freeAccessPlacesCounter > substract, string(abi.encodePacked(symbol(), ": It's impossible to subtract the difference because the subtracted value exceeds the reduced value!")));
        unchecked {
            freeAccessPlacesCounter -= substract;
        }
    }



    /*********************************************************************************/
    /*                          CRYPTOFLATS GEN OVERRIDINGS                          */
    /*********************************************************************************/

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        if(from == address(0)) {
            _addId(to, tokenId);
        } else {
            _removeId(from, tokenId);
            _addId(to, tokenId);
        }
    }


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 19 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 4 of 19 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 5 of 19 : 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 6 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 7 of 19 : 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 8 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 9 of 19 : 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 10 of 19 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 11 of 19 : 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 19 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 13 of 19 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 14 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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 15 of 19 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

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

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

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

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

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

        return result;
    }
}

File 16 of 19 : ERC721R.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/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. This does random batch minting.
 */
abstract contract ERC721R is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata
{
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint => uint) private _availableTokens;
    uint256 private _numAvailableTokens;
    uint256 immutable _maxSupply;


    // 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_, uint maxSupply_) {
        _name = name_;
        _symbol = symbol_;
        _maxSupply = maxSupply_;
        _numAvailableTokens = maxSupply_;
    }

    /**
     * @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);
    }

    function totalSupply() public view virtual returns (uint256) {
        return _maxSupply - _numAvailableTokens;
    }

    function maxSupply() public view virtual returns (uint256) {
        return _maxSupply;
    }

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to yourself");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    function _mintIdWithoutBalanceUpdate(address to, uint256 tokenId) private {
        _beforeTokenTransfer(address(0), to, tokenId);

        _owners[tokenId] = to;

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

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

    function _mintRandom(address to, uint quantity) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(quantity > 0, "ERC721R: need to mint at least one token");
        require(_numAvailableTokens >= quantity, "ERC721R: minting more tokens than available");

        uint updatedNumAvailableTokens = _numAvailableTokens;
        for (uint256 i = 0; i < quantity;) {
            uint256 tokenId = getRandomAvailableTokenId(
                to,
                updatedNumAvailableTokens
            );

            _mintIdWithoutBalanceUpdate(to, tokenId);

            unchecked { 
                ++i;
                --updatedNumAvailableTokens;
            }
        }

        _numAvailableTokens = updatedNumAvailableTokens;

        unchecked {
            _balances[to] += quantity;
        }
    }




    function getRandomAvailableTokenId(
        address to,
        uint updatedNumAvailableTokens
    ) internal returns (uint256) {
        uint256 randomNum = uint256(
            keccak256(
                abi.encode(
                    to,
                    tx.gasprice,
                    block.number,
                    block.timestamp,
                    block.prevrandao,
                    blockhash(block.number - 1),
                    address(this),
                    updatedNumAvailableTokens
                )
            )
        );
        uint256 randomIndex = randomNum % updatedNumAvailableTokens;
        return getAvailableTokenAtIndex(randomIndex, updatedNumAvailableTokens);
    }

    // Implements https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle. Code taken from CryptoPhunksV2
    function getAvailableTokenAtIndex(
        uint256 indexToUse,
        uint updatedNumAvailableTokens
    ) internal returns (uint256) {
        uint256 valAtIndex = _availableTokens[indexToUse];
        uint256 result = valAtIndex == 0 ? indexToUse : valAtIndex;

        uint256 lastIndex = updatedNumAvailableTokens - 1;
        uint256 lastValInArray = _availableTokens[lastIndex];
        if (indexToUse != lastIndex) {
            _availableTokens[indexToUse] = lastValInArray == 0 ? lastIndex : lastValInArray;
        }
        if (lastValInArray != 0) {
            // Gas refund courtsey of @dievardump
            delete _availableTokens[lastIndex];
        }

        return result;
    }

    // Not as good as minting a specific tokenId, but will behave the same at the start
    // allowing you to explicitly mint some tokens at launch.
    function _mintAtIndex(address to, uint index) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(
            _numAvailableTokens >= 1,
            "ERC721R: minting more tokens than available"
        );

        uint tokenId = getAvailableTokenAtIndex(index, _numAvailableTokens);
        --_numAvailableTokens;

        _mintIdWithoutBalanceUpdate(to, tokenId);

        unchecked {
            _balances[to] += 1;
        }
    }

    /**
     * @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(
            ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721: transfer to the zero address");
        require(_balances[from] > 0, "ERC721: tranfer failed due to the fact that there is no NFT on your balance");

        _beforeTokenTransfer(from, to, tokenId);

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

        unchecked {
            _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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

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

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

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

    /**
     * @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 17 of 19 : ICryptoflatsNFTGen.sol
/**
* @author NiceArti (https://github.com/NiceArti) 
* To maintain developer you can also donate to this address - 0xDc3d3fA1aEbd13fF247E5F5D84A08A495b3215FB
* @title The interface for implementing the CryptoFlatsNft smart contract 
* with a full description of each function and their implementation 
* is presented to your attention.
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;


enum Type {
    Standart,
    Silver,
    Gold,
    Diamond
}
interface ICryptoflatsNFTGen
{
    /**
    * @notice an event that trigers when team wallet is transferred
    * @param from - address of user who called transfer event
    * @param oldTeamWalletAddress - old address of team wallet
    * @param newTeamWalletAddress - new address of team wallet
    */
    event TeamWalletTransferred (
        address indexed from,
        address indexed oldTeamWalletAddress,
        address indexed newTeamWalletAddress
    );

    /**
    * @notice an event that trigers when nft type changed
    * @param id - token id
    * @param newNftType - new nft type setted
    */
    event CryptoflatsNftTypeChanged (
        uint256 id,
        string newNftType
    );


    /**
    * @notice an event that trigers when whitelist root changed
    * @param from - address of user who called change whitelist event
    * @param oldWhitelistRoot - old whitelist root
    * @param newWhitelistRoot - new whitelist root
    * @param whitelistNaming - naming of whitelist (free purchase or early access)
    */
    event WhitelistRootChanged (
        address indexed from,
        bytes32 oldWhitelistRoot,
        bytes32 newWhitelistRoot,
        string whitelistNaming
    );



    function getNFTType(uint256 _tokenId) external view returns (Type);


    /**
    * @notice displays the price for the whitelist of users
    * who received early access to the purchase of this NFT
    * @return uint256 - price for early access
    */
    function earlyAccessPrice()
        external
        view
        returns (uint256);


    /**
    * @notice determines the price of the NFT for everyone
    * who wants to purchase this asset
    * @return uint256 - price for public sale
    */
    function publicSalePrice()
        external
        view
        returns (uint256);


    /**
    * @notice the public address of the team that receives a reward 
    * in the form of 5% from the resale of the NFT. Also, to maintain 
    * the project, you can also donate to this address
    * @return address 
    */
    function teamWallet()
        external
        view
        returns (address payable);


    /**
    * @dev user data is stored on the backend, a complete merkle tree
    * has already been collected in the blockchain, which is recreated
    * every time you try to determine whether a user is a member of the whitelist
    * @notice The root of the Merkle tree as proof that the user is
    * a whitelist participant in this project who has the opportunity
    * to purchase a one-time NFT for free
    * @return bytes32 - Merkle proof root of free purchase whitelist
    */
    function whitelistFreePurchaseRoot()
        external
        view
        returns (bytes32);


    /**
    * @dev user data is stored on the backend, a complete merkle tree
    * has already been collected in the blockchain, which is recreated
    * every time you try to determine whether a user is a member of the whitelist
    * @notice The root of the Merkle tree as proof that the user is a
    * whitelist participant in this project who has the opportunity
    * to purchase NFT three times at a low price
    * @return bytes32 - Merkle proof root of early accessed whitelist
    */
    function whitelistEarlyAccessRoot()
        external
        view
        returns (bytes32);


    /**
    * @param user - wallet address of any user
    * @notice allows participants of the free mint to receive NFT
    * completely free paying only a transaction fee
    * @return bool - returns 'true' if user has already been minted 
    * NFT for free once
    */ 
    function isWhitelistFreePurchaseUserMintedOnce(address user)
        external
        view
        returns (bool);


    /**
    * @param user - wallet address of any user
    * @notice returns how many NFT-es were screwed up at a discount by
    * a user from a whitelist with early access. The maximum value is three
    * @return uint256
    */ 
    function getMintCountForEarlyAccessUser(address user)
        external
        view
        returns(uint256);


    /**
    * @notice current genesis of Cryptoflats NFT
    * @return uint256
    */ 
    function gen()
        external
        view
        returns(uint256);


    /**
    * @dev returns struct with user whitelist status
    * @param whitelistMerkleProof - bytes32 array of merkle proofs
    * @param account - address of user who may be whitelisted
    * @notice free purchasing is available only once for whitelisted
    * @return bool
    */ 
    function isUserFreePurchaseWhitelist(
        bytes32[] calldata whitelistMerkleProof,
        address account
    ) 
        external
        view
        returns(bool);

    /**
    * @dev returns true if user is from early access whitelist
    * @param whitelistMerkleProof - bytes32 array of merkle proofs
    * @param account - address of user who may be whitelisted
    * @custom:notice discount for users with early access is available only thee times
    * @return bool
    */ 
    function isUserEarlyAccessWhitelist(
        bytes32[] calldata whitelistMerkleProof,
        address account
    ) 
        external
        view
        returns(bool);



    /**
    * @dev creates nft with already setted rarity for it's ID and send them to caller
    * @dev account can mint only when publicSale is available
    * @dev owner can mint nft anytime
    * @param quantity - amount of NFTs to create and send to address 
    * @custom:info account (not owner) that mints nft should pay in amount of `quantity * publicSalePrice`
    * 
    * @custom:require quantity to be > 0
    */ 
    function mint(uint256 quantity) external payable;


    /**
    * @dev creates nft with already setted rarity for it's ID and send them to caller
    * @dev account can mint only if he/she is added in free wl, and price is 0
    * @param whitelistFreePurchaseProof - proof that address is in wl 
    * 
    * @custom:require quantity to be > 0
    */ 
    function mintFreeAccess(
        bytes32[] calldata whitelistFreePurchaseProof
    ) external;



    /**
    * @dev creates nft with already setted rarity for it's ID and send them to caller
    * @param whitelistEarlyAccessProof - proof that address is in wl 
    * @param quantity - amount of NFTs to create and send to address 
    * @custom:notice account can mint only when publicSale is available
    * @custom:notice owner can mint nft anytime
    * @custom:notice account can mint only if he/she is added in early access wl, and price is `quantity * earlyAccessPrice`
    * 
    * @custom:require quantity to be > 0
    * @custom:require msg.value to be >= earlyAccessPrice * quantity
    */ 
    function mintEarlyAccess(
        bytes32[] calldata whitelistEarlyAccessProof,
        uint256 quantity
    ) external payable;



    /**
    * @dev accessible only via contract owner
    * @param rarityArray - array of rarities by json metadata
    */ 
    function setRaritiesArray(Type[] memory rarityArray) external;



    /**
    * @dev accessible only via contract owner
    * @param newTeamWallet - new team wallet address
    * @notice if for some reason there is a need to change the address of the 
    * team's wallet to a new one, then the owner will have the opportunity to
    * do this in order to save the assets received for the contract
    */ 
    function setNewTeamWallet(address payable newTeamWallet) external;


    /**
    * @dev accessible only via contract owner
    * @param newFreePurchaseWhitelistRoot - new free purchase whitelist root
    * @param value - if positive it adds amount if negative it substracts
    * @notice during the promotion of the project, the whitelist can both grow
    * and decrease, and in order for each user to be properly encouraged by
    * the team, the team allowed a change in the root tree of the whitelist
    */ 
    function setNewFreePurchaseWhitelistRoot(bytes32 newFreePurchaseWhitelistRoot, int16 value) external;


    /**
    * @dev accessible only via contract owner
    * @param newEarlyAccessWhitelistRoot - new early access whitelist root
    * @param value - if positive it adds amount if negative it substracts
    * @notice during the promotion of the project, the whitelist can both grow
    * and decrease, and in order for each user to be properly encouraged by
    * the team, the team allowed a change in the root tree of the whitelist
    */ 
    function setNewEarlyAccessWhitelistRoot(bytes32 newEarlyAccessWhitelistRoot, int16 value) external;


    /**
    * @dev accessible only via contract owner
    * @notice since the funds that users pay for the purchase of NFT go
    * into the contract, it is necessary to allow the owner to collect
    * the funds accumulated in the contract after user purchases
    * @return bool if balance withdraw was success
    */
    function withdrawBalance() external returns(bool);
}

File 18 of 19 : ERC721BalanceMemory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

abstract contract ERC721BalanceMemory {
    using EnumerableSet for EnumerableSet.UintSet;

    mapping (address account => EnumerableSet.UintSet holdingIds) private _holdingIdsByAccountAddress;

    function _addId(address account, uint256 id) internal virtual {
        _holdingIdsByAccountAddress[account].add(id);
    }

    function _removeId(address account, uint256 id) internal virtual  {
        _holdingIdsByAccountAddress[account].remove(id);
    }


    function getHoldingIdsByAccountAddress(address account) public virtual view returns (uint256[] memory) {
        return _holdingIdsByAccountAddress[account].values();
    }
}

File 19 of 19 : Locker.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


abstract contract Locker {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _delay;
    uint256 private _status;


    mapping(bytes4 selector => uint256 lockPeriod) private _delayBySelector;

    constructor() {
        _status = _UNLOCKED;
    }

    /**
     * @dev Locks the function untill it wouldn't be unlocked 
     */
    modifier lock() {
        _lock();
        _;
    }


    /**
     * @dev Locks the function untill it wouldn't be unlocked 
     */
    modifier lockWithDelay(uint256 delay) {
        uint256 currentTime = block.timestamp;
        uint256 nextAprrovedDelay = currentTime + delay;

        if(isLocked() == false)
        {
            _delay = nextAprrovedDelay;
            _lock();
            _;
        }
        else
        {
            require(_delay <= currentTime, "Locker: this function is locked!");
            
            _unlock();
            _delay = nextAprrovedDelay;

            _lock();
            _;
        }
    }


    modifier lockWithDelayBySelector(uint256 delay, bytes4 selector) {
        uint256 currentTime = block.timestamp;
        uint256 nextAprrovedDelay = currentTime + delay;
        uint256 delayBySelector = _delayBySelector[selector];
        bool isNotLocked = delayBySelector == 0 || delayBySelector >= nextAprrovedDelay;

        if(isNotLocked) {
            _delayBySelector[selector] = nextAprrovedDelay;
        } else {
            require(delayBySelector <= currentTime, "Locker: this function is locked by selector!");
        }

        _;
    }


    /**
     * @dev Unlocks the function 
     */
    modifier unlock() {
        _unlock();
        _;
    }


    function isLocked() public virtual view returns (bool)
    {
        return _status == _LOCKED;
    }

    function _lock() private {
        // Verify if status is not locked otherwise exit function
        require(_status != _LOCKED, "Locker: this function is locked!");

        // Any calls to lock after this point will fail
        _status = _LOCKED;
    }


    function _unlock() private {
        // Verify if status is not locked otherwise exit function
        require(_status != _UNLOCKED, "Locker: this function is not locked!");

        _status = _UNLOCKED;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address payable","name":"teamWallet_","type":"address"},{"internalType":"uint256","name":"gen_","type":"uint256"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"publicSalePrice_","type":"uint256"},{"internalType":"uint256","name":"earlyAccessPrice_","type":"uint256"},{"internalType":"uint16","name":"placesForFreeAccessWhitelist_","type":"uint16"},{"internalType":"uint16","name":"placesForEarlyAccessWhitelist_","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"CNRSMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"string","name":"newNftType","type":"string"}],"name":"CryptoflatsNftTypeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"OwnerMinted","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"oldTeamWalletAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newTeamWalletAddress","type":"address"}],"name":"TeamWalletTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"bytes32","name":"oldWhitelistRoot","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"newWhitelistRoot","type":"bytes32"},{"indexed":false,"internalType":"string","name":"whitelistNaming","type":"string"}],"name":"WhitelistRootChanged","type":"event"},{"inputs":[],"name":"DEFAULT_ROYALTY","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALLOWED_MINT_FOR_DISCOUNT_WHITELIST","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALLOWED_MINT_FOR_FREE_WHITELIST","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_INITIAL_PRICE_FOR_EARLY_ACCESS_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_INITIAL_PRICE_FOR_PUBLIC_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_INITIAL_PRICE_FOR_EARLY_ACCESS_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_INITIAL_PRICE_FOR_PUBLIC_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PLACES_FOR_EARLY_ACCESS_WHITELIST","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PLACES_FOR_FREE_ACCESS_WHITELIST","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEarlyAccessSalePrice","type":"uint256"}],"name":"changeEarlyAccessSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPublicSalePrice","type":"uint256"}],"name":"changePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearRaritiesArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyAccessPlacesCounter","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyAccessPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAccessPlacesCounter","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getHoldingIdsByAccountAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"getMintCountForEarlyAccessUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getNFTType","outputs":[{"internalType":"enum Type","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRaritiesArray","outputs":[{"internalType":"enum Type[]","name":"","type":"uint8[]"}],"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":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"whitelistMerkleProof","type":"bytes32[]"},{"internalType":"address","name":"account","type":"address"}],"name":"isUserEarlyAccessWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"whitelistMerkleProof","type":"bytes32[]"},{"internalType":"address","name":"account","type":"address"}],"name":"isUserFreePurchaseWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelistFreePurchaseUserMintedOnce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"whitelistEarlyAccessProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintEarlyAccess","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"whitelistFreePurchaseProof","type":"bytes32[]"}],"name":"mintFreeAccess","outputs":[],"stateMutability":"nonpayable","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":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"bytes32","name":"newEarlyAccessWhitelistRoot","type":"bytes32"},{"internalType":"int16","name":"value","type":"int16"}],"name":"setNewEarlyAccessWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newFreePurchaseWhitelistRoot","type":"bytes32"},{"internalType":"int16","name":"value","type":"int16"}],"name":"setNewFreePurchaseWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newTeamWallet","type":"address"}],"name":"setNewTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Type[]","name":"rarityArray","type":"uint8[]"}],"name":"setRaritiesArray","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":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":[],"name":"whitelistEarlyAccessRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistFreePurchaseRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101006040523480156200001257600080fd5b50604051620048a1380380620048a183398101604081905262000035916200033b565b8989866000620000468482620004bc565b506001620000558382620004bc565b506080819052600355506200006c905033620000ef565b6001600c556012869055600f620000848982620004bc565b5060118054600160201b600160c01b0319166401000000006001600160a01b038a16021790556013839055601484905560e085905261ffff82811660a052811660c0526019805460ff19169055620000df336101f462000141565b5050505050505050505062000588565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001b55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200020d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001ac565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200026e57600080fd5b81516001600160401b03808211156200028b576200028b62000246565b604051601f8301601f19908116603f01168101908282118183101715620002b657620002b662000246565b81604052838152602092508683858801011115620002d357600080fd5b600091505b83821015620002f75785820183015181830184015290820190620002d8565b600093810190920192909252949350505050565b80516001600160a01b03811681146200032357600080fd5b919050565b805161ffff811681146200032357600080fd5b6000806000806000806000806000806101408b8d0312156200035c57600080fd5b8a516001600160401b03808211156200037457600080fd5b620003828e838f016200025c565b9b5060208d01519150808211156200039957600080fd5b620003a78e838f016200025c565b9a5060408d0151915080821115620003be57600080fd5b50620003cd8d828e016200025c565b985050620003de60608c016200030b565b965060808b0151955060a08b0151945060c08b0151935060e08b015192506200040b6101008c0162000328565b91506200041c6101208c0162000328565b90509295989b9194979a5092959850565b600181811c908216806200044257607f821691505b6020821081036200046357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004b757600081815260208120601f850160051c81016020861015620004925750805b601f850160051c820191505b81811015620004b3578281556001016200049e565b5050505b505050565b81516001600160401b03811115620004d857620004d862000246565b620004f081620004e984546200042d565b8462000469565b602080601f8311600181146200052857600084156200050f5750858301515b600019600386901b1c1916600185901b178555620004b3565b600085815260208120601f198616915b82811015620005595788860151825594840194600190910190840162000538565b5085821015620005785787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e0516142ca620005d760003960006106800152600081816108680152612a8f01526000818161057d015261295e015260008181610a970152610f1701526142ca6000f3fe6080604052600436106103a65760003560e01c806366a62ac9116101e7578063a61bc62d1161010d578063d7a240de116100a0578063e93f091e1161006f578063e93f091e14610b26578063e985e9c514610b53578063f2fde38b14610b9c578063f6a56e4d14610bbc57600080fd5b8063d7a240de14610abb578063de14715414610adb578063e19fe27f14610af1578063e23f0fc114610b0657600080fd5b8063c2584cc2116100dc578063c2584cc214610a28578063c6a4eb3914610a48578063c87b56dd14610a68578063d5abeb0114610a8857600080fd5b8063a61bc62d146109b2578063af506beb146109d2578063b42dfa0d146109f2578063b88d4fde14610a0857600080fd5b80638ba4cc3c116101855780639b6860c8116101545780639b6860c814610951578063a0712d6814610967578063a22cb4651461097a578063a4e2d6341461099a57600080fd5b80638ba4cc3c146108e85780638da5cb5b1461090857806395d89b411461092657806397385fcd1461093b57600080fd5b806374666648116101c157806374666648146108565780637a2768171461088a57806380cc01ee146108ba57806389a2c7c1146108cd57600080fd5b806366a62ac91461080c57806370a0823114610821578063715018a61461084157600080fd5b80632a55205a116102cc5780634fda72851161026a5780635fd8c710116102395780635fd8c710146107b55780636352211e146107ca578063639559ed146107ea578063667f133b1461053957600080fd5b80634fda72851461072b5780635022acdd1461074b57806359927044146107605780635cb960e31461078857600080fd5b806333628a83116102a657806333628a83146106a257806337ba2b9e146106b857806342842e0e146106d857806343a32282146106f857600080fd5b80632a55205a146106085780632b600adc1461064757806332cb6b0c1461066e57600080fd5b806311eb3047116103445780631902691311610313578063190269131461056b5780631e84c413146105b257806323b872dd146105cc5780632493cdd5146105ec57600080fd5b806311eb30471461050f57806318160ddd14610524578063181edaec146105395780631820cabb1461055457600080fd5b806306fdde031161038057806306fdde0314610468578063081812fc1461048a578063095ea7b3146104c25780630d19f2d0146104e257600080fd5b806301ffc9a7146103e7578063029c89da1461041c57806302bf5b0e1461043e57600080fd5b366103e25760405134815233907f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258749060200160405180910390a2005b600080fd5b3480156103f357600080fd5b506104076104023660046134dd565b610bdd565b60405190151581526020015b60405180910390f35b34801561042857600080fd5b5061043c610437366004613541565b610bee565b005b34801561044a57600080fd5b5061045a6706f05b59d3b2000081565b604051908152602001610413565b34801561047457600080fd5b5061047d610c93565b6040516104139190613648565b34801561049657600080fd5b506104aa6104a536600461365b565b610d25565b6040516001600160a01b039091168152602001610413565b3480156104ce57600080fd5b5061043c6104dd366004613689565b610dd0565b3480156104ee57600080fd5b5061045a6104fd3660046136b5565b60186020526000908152604090205481565b34801561051b57600080fd5b5061043c610ef9565b34801561053057600080fd5b5061045a610f10565b34801561054557600080fd5b5061045a66038d7ea4c6800081565b34801561056057600080fd5b5061045a62093a8081565b34801561057757600080fd5b5061059f7f000000000000000000000000000000000000000000000000000000000000000081565b60405161ffff9091168152602001610413565b3480156105be57600080fd5b506019546104079060ff1681565b3480156105d857600080fd5b5061043c6105e73660046136d2565b610f45565b3480156105f857600080fd5b5061045a670de0b6b3a764000081565b34801561061457600080fd5b50610628610623366004613713565b610fcc565b604080516001600160a01b039093168352602083019190915201610413565b34801561065357600080fd5b5061065c600381565b60405160ff9091168152602001610413565b34801561067a57600080fd5b5061045a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106ae57600080fd5b5061045a60165481565b3480156106c457600080fd5b506104076106d336600461377a565b6110ab565b3480156106e457600080fd5b5061043c6106f33660046136d2565b61117f565b34801561070457600080fd5b5061070e6101f481565b6040516bffffffffffffffffffffffff9091168152602001610413565b34801561073757600080fd5b5061043c61074636600461365b565b61119a565b34801561075757600080fd5b5061043c611310565b34801561076c57600080fd5b506011546104aa9064010000000090046001600160a01b031681565b34801561079457600080fd5b506107a86107a336600461365b565b611326565b6040516104139190613809565b3480156107c157600080fd5b506104076113e7565b3480156107d657600080fd5b506104aa6107e536600461365b565b6114e6565b3480156107f657600080fd5b506107ff611571565b6040516104139190613817565b34801561081857600080fd5b5061043c611600565b34801561082d57600080fd5b5061045a61083c3660046136b5565b611614565b34801561084d57600080fd5b5061043c6116ae565b34801561086257600080fd5b5061059f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561089657600080fd5b506104076108a53660046136b5565b60176020526000908152604090205460ff1681565b61043c6108c8366004613862565b6116c0565b3480156108d957600080fd5b5060115461059f9061ffff1681565b3480156108f457600080fd5b5061043c610903366004613689565b611835565b34801561091457600080fd5b50600a546001600160a01b03166104aa565b34801561093257600080fd5b5061047d6118a6565b34801561094757600080fd5b5061045a60155481565b34801561095d57600080fd5b5061045a60145481565b61043c61097536600461365b565b6118b5565b34801561098657600080fd5b5061043c6109953660046138ae565b6119f8565b3480156109a657600080fd5b50600c54600214610407565b3480156109be57600080fd5b5061043c6109cd3660046138ec565b611a03565b3480156109de57600080fd5b5061043c6109ed3660046138ec565b611aaf565b3480156109fe57600080fd5b5061045a60125481565b348015610a1457600080fd5b5061043c610a23366004613917565b611b5b565b348015610a3457600080fd5b5061043c610a433660046139db565b611be9565b348015610a5457600080fd5b50610407610a6336600461377a565b611c99565b348015610a7457600080fd5b5061047d610a8336600461365b565b611d50565b348015610a9457600080fd5b507f000000000000000000000000000000000000000000000000000000000000000061045a565b348015610ac757600080fd5b5061043c610ad636600461365b565b611e38565b348015610ae757600080fd5b5061045a60135481565b348015610afd57600080fd5b5061065c600181565b348015610b1257600080fd5b5061043c610b213660046136b5565b611fae565b348015610b3257600080fd5b50610b46610b413660046136b5565b61202e565b6040516104139190613a1d565b348015610b5f57600080fd5b50610407610b6e366004613a55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ba857600080fd5b5061043c610bb73660046136b5565b612052565b348015610bc857600080fd5b5060115461059f9062010000900461ffff1681565b6000610be8826120df565b92915050565b610bf661211d565b601054600003610c17578051610c139060109060208401906133dd565b5050565b60005b8151811015610c13576010828281518110610c3757610c37613a83565b602090810291909101810151825460018101845560009384529282902091830490910180549192909160ff601f9092166101000a918202191690836003811115610c8357610c836137d1565b0217905550600101610c1a565b50565b606060008054610ca290613a99565b80601f0160208091040260200160405190810160405280929190818152602001828054610cce90613a99565b8015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b820191906000526020600020905b815481529060010190602001808311610cfe57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b0316610db45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ddb826114e6565b9050806001600160a01b0316836001600160a01b031603610e3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20617070726f76616c20746f20796f757273656c66000000006044820152606401610dab565b336001600160a01b0382161480610e7857506001600160a01b038116600090815260076020908152604080832033845290915290205460ff165b610eea5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610dab565b610ef48383612177565b505050565b610f0161211d565b6019805460ff19166001179055565b60006003547f0000000000000000000000000000000000000000000000000000000000000000610f409190613ae9565b905090565b610f4f33826121f2565b610fc15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610dab565b610ef48383836122fa565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff1692820192909252829161106d5750604080518082019091526008546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090611091906bffffffffffffffffffffffff1687613afc565b61109b9190613b29565b91519350909150505b9250929050565b60165460009015806110bb575082155b806110cd57506001600160a01b038216155b806110f157506001600160a01b038216600090815260186020526040902054600311155b156110fe57506000611178565b611175848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016546040516bffffffffffffffffffffffff19606089901b16602082015290925060340190505b60405160208183030381529060405280519060200120612555565b90505b9392505050565b610ef483838360405180602001604052806000815250611b5b565b6111a261211d565b62093a807f4fda7285c2ad2b913ccab12c7b1c1998f8ecd3514729c71f37a1cb031e0433434260006111d48483613b3d565b6001600160e01b031984166000908152600d60205260408120549192508115806111fe5750828210155b90508015611227576001600160e01b031985166000908152600d6020526040902083905561129d565b8382111561129d5760405162461bcd60e51b815260206004820152602c60248201527f4c6f636b65723a20746869732066756e6374696f6e206973206c6f636b65642060448201527f62792073656c6563746f722100000000000000000000000000000000000000006064820152608401610dab565b670de0b6b3a764000087111580156112bc575066038d7ea4c680008710155b6112c46118a6565b6040516020016112d49190613b50565b604051602081830303815290604052906113015760405162461bcd60e51b8152600401610dab9190613648565b50505060149490945550505050565b61131861211d565b61132460106000613491565b565b6000818152600460205260408120546001600160a01b031615156113486118a6565b6040516020016113589190613bb7565b604051602081830303815290604052906113855760405162461bcd60e51b8152600401610dab9190613648565b5060006012546000036113ac576103e783106113a25760036113a5565b60025b9050610be8565b601083815481106113bf576113bf613a83565b90600052602060002090602091828204019190069054906101000a900460ff16905092915050565b60006113f161211d565b478015156113fd6118a6565b60405160200161140d9190613bf8565b6040516020818303038152906040529061143a5760405162461bcd60e51b8152600401610dab9190613648565b5060115460405160009164010000000090046001600160a01b03169083908381818185875af1925050503d8060008114611490576040519150601f19603f3d011682016040523d82523d6000602084013e611495565b606091505b50509050806114a26118a6565b6040516020016114b29190613c39565b604051602081830303815290604052906114df5760405162461bcd60e51b8152600401610dab9190613648565b5091505090565b6000818152600460205260408120546001600160a01b031680610be85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610dab565b606061157b61211d565b6010805480602002602001604051908101604052809291908181526020018280548015610d1b57602002820191906000526020600020906000905b82829054906101000a900460ff1660038111156115d5576115d56137d1565b8152602060019283018181049485019490930390920291018084116115b65790505050505050905090565b61160861211d565b6019805460ff19169055565b60006001600160a01b0382166116925760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610dab565b506001600160a01b031660009081526005602052604090205490565b6116b661211d565b611324600061256b565b600081116116cc6118a6565b6040516020016116dc9190613c7a565b604051602081830303815290604052906117095760405162461bcd60e51b8152600401610dab9190613648565b506117158383336110ab565b61171d6118a6565b60405160200161172d9190613cbb565b6040516020818303038152906040529061175a5760405162461bcd60e51b8152600401610dab9190613648565b5033600090815260186020526040902054600390611779908390613b3d565b11156117836118a6565b6040516020016117939190613d22565b604051602081830303815290604052906117c05760405162461bcd60e51b8152600401610dab9190613648565b50806013546117cf9190613afc565b3410156117de576117de613d89565b3360008181526018602052604090208054830190556117fd90826125ca565b6040518181527f4bdc98fccbc8aaf5f0a8085837d7f9fe1e00663850d6bb908b39a4c761c969d49060200160405180910390a1505050565b61183d61211d565b6000818152600460205260409020546001600160a01b03161561185e6118a6565b60405160200161186e9190613d9f565b6040516020818303038152906040529061189b5760405162461bcd60e51b8152600401610dab9190613648565b50610c13828261276a565b606060018054610ca290613a99565b600081116118c16118a6565b6040516020016118d19190613de0565b604051602081830303815290604052906118fe5760405162461bcd60e51b8152600401610dab9190613648565b50600a546001600160a01b031633146119845760195460ff1615156001146119246118a6565b6040516020016119349190613e47565b604051602081830303815290604052906119615760405162461bcd60e51b8152600401610dab9190613648565b50806014546119709190613afc565b34101561197f5761197f613d89565b6119b8565b6040518181527fa77bebf1c3cb7d722d2561d415ee46e9cd9bf50b67b6e59ab0903a2dd217c6739060200160405180910390a15b6119c233826125ca565b6040518181527f4bdc98fccbc8aaf5f0a8085837d7f9fe1e00663850d6bb908b39a4c761c969d49060200160405180910390a150565b610c13338383612888565b611a0b61211d565b60008160010b12611a2457611a1f81612956565b611a35565b611a35611a3082613e88565b612a06565b60155460408051918252602082018490526060908201819052600d908201527f4672656520507572636861736500000000000000000000000000000000000000608082015233907f17467026d5d46f0da8d45b221bdb8d35c103ec7b695d58c70fabe76a43a375ab9060a00160405180910390a250601555565b611ab761211d565b60008160010b12611ad057611acb81612a87565b611ae1565b611ae1611adc82613e88565b612b26565b60155460408051918252602082018490526060908201819052600c908201527f4561726c79204163636573730000000000000000000000000000000000000000608082015233907f17467026d5d46f0da8d45b221bdb8d35c103ec7b695d58c70fabe76a43a375ab9060a00160405180910390a250601655565b611b6533836121f2565b611bd75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610dab565b611be384848484612b95565b50505050565b611bf4828233611c99565b611bfc6118a6565b604051602001611c0c9190613ea9565b60405160208183030381529060405290611c395760405162461bcd60e51b8152600401610dab9190613648565b50336000818152601760205260409020805460ff19166001908117909155611c6191906125ca565b604051600181527f4bdc98fccbc8aaf5f0a8085837d7f9fe1e00663850d6bb908b39a4c761c969d49060200160405180910390a15050565b6015546000901580611ca9575082155b80611cbb57506001600160a01b038216155b80611ce357506001600160a01b03821660009081526017602052604090205460ff1615156001145b15611cf057506000611178565b611175848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff19606089901b166020820152909250603401905061115a565b6000818152600460205260409020546060906001600160a01b0316611ddd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610dab565b6000611de7612c1e565b90506000815111611e075760405180602001604052806000815250611178565b80611e1184612c2d565b604051602001611e22929190613f10565b6040516020818303038152906040529392505050565b611e4061211d565b62093a807fd7a240de0847ef1628907426054925e6e45886731d5419526ed9d7e4e6811ac3426000611e728483613b3d565b6001600160e01b031984166000908152600d6020526040812054919250811580611e9c5750828210155b90508015611ec5576001600160e01b031985166000908152600d60205260409020839055611f3b565b83821115611f3b5760405162461bcd60e51b815260206004820152602c60248201527f4c6f636b65723a20746869732066756e6374696f6e206973206c6f636b65642060448201527f62792073656c6563746f722100000000000000000000000000000000000000006064820152608401610dab565b6706f05b59d3b200008711158015611f5a575066038d7ea4c680008710155b611f626118a6565b604051602001611f729190613f92565b60405160208183030381529060405290611f9f5760405162461bcd60e51b8152600401610dab9190613648565b50505060139490945550505050565b611fb661211d565b601180547fffffffffffffffff0000000000000000000000000000000000000000ffffffff166401000000006001600160a01b038481168281029390931793849055604051929391909104169033907fb2f57f9141a3cea9491b10ef57b70c7c0104528262925565bb99acfde8aa8ec190600090a450565b6001600160a01b0381166000908152600e60205260409020606090610be890612ccd565b61205a61211d565b6001600160a01b0381166120d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dab565b610c908161256b565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610be85750610be882612cda565b600a546001600160a01b031633146113245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dab565b6000818152600660205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906121b9826114e6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b031661227c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610dab565b6000612287836114e6565b9050806001600160a01b0316846001600160a01b031614806122c25750836001600160a01b03166122b784610d25565b6001600160a01b0316145b806122f257506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661230d826114e6565b6001600160a01b0316146123895760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610dab565b6001600160a01b0382166124045760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dab565b6001600160a01b0383166000908152600560205260409020546124b55760405162461bcd60e51b815260206004820152604b60248201527f4552433732313a207472616e666572206661696c65642064756520746f20746860448201527f6520666163742074686174207468657265206973206e6f204e4654206f6e207960648201527f6f75722062616c616e6365000000000000000000000000000000000000000000608482015260a401610dab565b6124c0838383612d75565b6124cb600082612177565b6001600160a01b0380841660008181526005602090815260408083208054600019019055938616808352848320805460010190558583526004909152838220805473ffffffffffffffffffffffffffffffffffffffff1916821790559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826125628584612da1565b14949350505050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166126205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610dab565b600081116126965760405162461bcd60e51b815260206004820152602860248201527f455243373231523a206e65656420746f206d696e74206174206c65617374206f60448201527f6e6520746f6b656e0000000000000000000000000000000000000000000000006064820152608401610dab565b80600354101561270e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231523a206d696e74696e67206d6f726520746f6b656e732074686160448201527f6e20617661696c61626c650000000000000000000000000000000000000000006064820152608401610dab565b60035460005b828110156127445760006127288584612dee565b90506127348582612e80565b5060001990910190600101612714565b506003556001600160a01b03909116600090815260056020526040902080549091019055565b6001600160a01b0382166127c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610dab565b600160035410156128395760405162461bcd60e51b815260206004820152602b60248201527f455243373231523a206d696e74696e67206d6f726520746f6b656e732074686160448201527f6e20617661696c61626c650000000000000000000000000000000000000000006064820152608401610dab565b600061284782600354612ef2565b905060036000815461285890613ff9565b909155506128668382612e80565b50506001600160a01b0316600090815260056020526040902080546001019055565b816001600160a01b0316836001600160a01b0316036128e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610dab565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60115461ffff7f000000000000000000000000000000000000000000000000000000000000000081169161299291849162010000900416614010565b61ffff1611156129a06118a6565b6040516020016129b0919061402b565b604051602081830303815290604052906129dd5760405162461bcd60e51b8152600401610dab9190613648565b506011805461ffff6201000080830482169094011690920263ffff000019909216919091179055565b60115461ffff808316620100009092041611612a206118a6565b604051602001612a3091906140b8565b60405160208183030381529060405290612a5d5760405162461bcd60e51b8152600401610dab9190613648565b506011805461ffff620100008083048216949094031690920263ffff000019909216919091179055565b60115461ffff7f0000000000000000000000000000000000000000000000000000000000000000811691612abd91849116614010565b61ffff161115612acb6118a6565b604051602001612adb919061416b565b60405160208183030381529060405290612b085760405162461bcd60e51b8152600401610dab9190613648565b506011805461ffff19811661ffff9182169390930116919091179055565b60115461ffff808316911611612b3a6118a6565b604051602001612b4a91906140b8565b60405160208183030381529060405290612b775760405162461bcd60e51b8152600401610dab9190613648565b506011805461ffff19811661ffff9182169390930316919091179055565b612ba08484846122fa565b612bac84848484612f77565b611be35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610dab565b6060600f8054610ca290613a99565b60606000612c3a836130ce565b600101905060008167ffffffffffffffff811115612c5a57612c5a6134fa565b6040519080825280601f01601f191660200182016040528015612c84576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084612c8e57509392505050565b60606000611178836131b0565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612d3d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610be857507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610be8565b6001600160a01b038316612d8d57610ef4828261320c565b612d97838261322e565b610ef4828261320c565b600081815b8451811015612de657612dd282868381518110612dc557612dc5613a83565b6020026020010151613250565b915080612dde816141f8565b915050612da6565b509392505050565b600080833a434244612e01600184613ae9565b604080516001600160a01b0390971660208801528601949094526060850192909252608084015260a08301524060c08201523060e082015261010081018490526101200160408051601f19818403018152919052805160209091012090506000612e6b8483614211565b9050612e778185612ef2565b95945050505050565b612e8c60008383612d75565b600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600082815260026020526040812054818115612f0e5781612f10565b845b90506000612f1f600186613ae9565b600081815260026020526040902054909150868214612f56578015612f445780612f46565b815b6000888152600260205260409020555b8015612f6c576000828152600260205260408120555b509095945050505050565b60006001600160a01b0384163b156130c357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fbb903390899088908890600401614225565b6020604051808303816000875af1925050508015612ff6575060408051601f3d908101601f19168201909252612ff391810190614261565b60015b6130a9573d808015613024576040519150601f19603f3d011682016040523d82523d6000602084013e613029565b606091505b5080516000036130a15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610dab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122f2565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613117577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310613143576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061316157662386f26fc10000830492506010015b6305f5e1008310613179576305f5e100830492506008015b612710831061318d57612710830492506004015b6064831061319f576064830492506002015b600a8310610be85760010192915050565b60608160000180548060200260200160405190810160405280929190818152602001828054801561320057602002820191906000526020600020905b8154815260200190600101908083116131ec575b50505050509050919050565b6001600160a01b0382166000908152600e60205260409020610ef4908261327c565b6001600160a01b0382166000908152600e60205260409020610ef49082613288565b600081831061326c576000828152602084905260409020611178565b5060009182526020526040902090565b60006111788383613294565b600061117883836132e3565b60008181526001830160205260408120546132db57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610be8565b506000610be8565b600081815260018301602052604081205480156133cc576000613307600183613ae9565b855490915060009061331b90600190613ae9565b905081811461338057600086600001828154811061333b5761333b613a83565b906000526020600020015490508087600001848154811061335e5761335e613a83565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806133915761339161427e565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610be8565b6000915050610be8565b5092915050565b82805482825590600052602060002090601f016020900481019282156134815791602002820160005b8382111561345257835183826101000a81548160ff02191690836003811115613431576134316137d1565b02179055509260200192600101602081600001049283019260010302613406565b801561347f5782816101000a81549060ff0219169055600101602081600001049283019260010302613452565b505b5061348d9291506134b2565b5090565b50805460008255601f016020900490600052602060002090810190610c9091905b5b8082111561348d57600081556001016134b3565b6001600160e01b031981168114610c9057600080fd5b6000602082840312156134ef57600080fd5b8135611178816134c7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613539576135396134fa565b604052919050565b6000602080838503121561355457600080fd5b823567ffffffffffffffff8082111561356c57600080fd5b818501915085601f83011261358057600080fd5b813581811115613592576135926134fa565b8060051b91506135a3848301613510565b81815291830184019184810190888411156135bd57600080fd5b938501935b838510156135ec5784359250600483106135dc5760008081fd5b82825293850193908501906135c2565b98975050505050505050565b60005b838110156136135781810151838201526020016135fb565b50506000910152565b600081518084526136348160208601602086016135f8565b601f01601f19169290920160200192915050565b602081526000611178602083018461361c565b60006020828403121561366d57600080fd5b5035919050565b6001600160a01b0381168114610c9057600080fd5b6000806040838503121561369c57600080fd5b82356136a781613674565b946020939093013593505050565b6000602082840312156136c757600080fd5b813561117881613674565b6000806000606084860312156136e757600080fd5b83356136f281613674565b9250602084013561370281613674565b929592945050506040919091013590565b6000806040838503121561372657600080fd5b50508035926020909101359150565b60008083601f84011261374757600080fd5b50813567ffffffffffffffff81111561375f57600080fd5b6020830191508360208260051b85010111156110a457600080fd5b60008060006040848603121561378f57600080fd5b833567ffffffffffffffff8111156137a657600080fd5b6137b286828701613735565b90945092505060208401356137c681613674565b809150509250925092565b634e487b7160e01b600052602160045260246000fd5b6004811061380557634e487b7160e01b600052602160045260246000fd5b9052565b60208101610be882846137e7565b6020808252825182820181905260009190848201906040850190845b81811015613856576138468385516137e7565b9284019291840191600101613833565b50909695505050505050565b60008060006040848603121561387757600080fd5b833567ffffffffffffffff81111561388e57600080fd5b61389a86828701613735565b909790965060209590950135949350505050565b600080604083850312156138c157600080fd5b82356138cc81613674565b9150602083013580151581146138e157600080fd5b809150509250929050565b600080604083850312156138ff57600080fd5b8235915060208301358060010b81146138e157600080fd5b6000806000806080858703121561392d57600080fd5b843561393881613674565b935060208581013561394981613674565b935060408601359250606086013567ffffffffffffffff8082111561396d57600080fd5b818801915088601f83011261398157600080fd5b813581811115613993576139936134fa565b6139a5601f8201601f19168501613510565b915080825289848285010111156139bb57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080602083850312156139ee57600080fd5b823567ffffffffffffffff811115613a0557600080fd5b613a1185828601613735565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b8181101561385657835183529284019291840191600101613a39565b60008060408385031215613a6857600080fd5b8235613a7381613674565b915060208301356138e181613674565b634e487b7160e01b600052603260045260246000fd5b600181811c90821680613aad57607f821691505b602082108103613acd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610be857610be8613ad3565b8082028115828204841417610be857610be8613ad3565b634e487b7160e01b600052601260045260246000fd5b600082613b3857613b38613b13565b500490565b80820180821115610be857610be8613ad3565b60008251613b628184602087016135f8565b7f3a204e6577207075626c69632073616c65207072696365206973206e6f7420699201918252507f6e206c696d6974206469617061736f6e000000000000000000000000000000006020820152603001919050565b60008251613bc98184602087016135f8565b7f3a20546f6b656e20646f65736e27742065787369747300000000000000000000920191825250601601919050565b60008251613c0a8184602087016135f8565b7f3a207a65726f2062616c616e6365000000000000000000000000000000000000920191825250600e01919050565b60008251613c4b8184602087016135f8565b7f3a204661696c656420746f2073656e6420457468657200000000000000000000920191825250601601919050565b60008251613c8c8184602087016135f8565b7f3a20496e73756666696369656e74207175616e74697479000000000000000000920191825250601701919050565b60008251613ccd8184602087016135f8565b7f3a20556e666f7274756e6174656c792c20796f7520617265206e6f7420696e209201918252507f6561726c79206163636573732077686974656c697374210000000000000000006020820152603701919050565b60008251613d348184602087016135f8565b7f3a204561726c7920616363657373206d696e74206973206f6e6c7920706f73739201918252507f69626c6520696e2074686520616d6f756e74206f6620332070696563657321006020820152603f01919050565b634e487b7160e01b600052600160045260246000fd5b60008251613db18184602087016135f8565b7f3a20746f6b656e20494420697320616c7265616479206d696e74656421000000920191825250601d01919050565b60008251613df28184602087016135f8565b7f3a205175616e746974792073686f756c642062652067726561746865722074689201918252507f656e207a65726f210000000000000000000000000000000000000000000000006020820152602801919050565b60008251613e598184602087016135f8565b7f3a205075626c69632073616c6520697320696e61637469766521000000000000920191825250601a01919050565b60008160010b617fff198103613ea057613ea0613ad3565b60000392915050565b60008251613ebb8184602087016135f8565b7f3a20556e666f7274756e6174656c792c20796f7520617265206e6f7420696e209201918252507f6120667265652070757263686173652077686974656c697374210000000000006020820152603a01919050565b60008351613f228184602088016135f8565b7f2f000000000000000000000000000000000000000000000000000000000000009083019081528351613f5c8160018401602088016135f8565b7f2e6a736f6e00000000000000000000000000000000000000000000000000000060019290910191820152600601949350505050565b60008251613fa48184602087016135f8565b7f3a204e6577206561726c79206163636573732073616c652070726963652069739201918252507f206e6f7420696e206c696d6974206469617061736f6e000000000000000000006020820152603601919050565b60008161400857614008613ad3565b506000190190565b61ffff8181168382160190808211156133d6576133d6613ad3565b6000825161403d8184602087016135f8565b7f3a2069742773206e6f7420706f737369626c6520746f206164642061207465729201918252507f6d2c2073696e636520746865206c696d697420666f722066726565206163636560208201527f737320706c616365732077696c6c2062652065786365656465642100000000006040820152605b01919050565b600082516140ca8184602087016135f8565b7f3a204974277320696d706f737369626c6520746f2073756274726163742074689201918252507f6520646966666572656e6365206265636175736520746865207375627472616360208201527f7465642076616c7565206578636565647320746865207265647563656420766160408201527f6c756521000000000000000000000000000000000000000000000000000000006060820152606401919050565b6000825161417d8184602087016135f8565b7f3a2069742773206e6f7420706f737369626c6520746f206164642061207465729201918252507f6d2c2073696e636520746865206c696d697420666f72206561726c792061636360208201527f65737320706c616365732077696c6c20626520657863656564656421000000006040820152605c01919050565b60006001820161420a5761420a613ad3565b5060010190565b60008261422057614220613b13565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152614257608083018461361c565b9695505050505050565b60006020828403121561427357600080fd5b8151611178816134c7565b634e487b7160e01b600052603160045260246000fdfea264697066735822122035f248a2f49967b2e584f30905e903212410c6a31b1e514a8783383f1c3dfe2d64736f6c634300081200330000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000001d6b3e373b947319a4b76a851bb17c1deccadb1d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000457000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000000000000000006f00000000000000000000000000000000000000000000000000000000000000de000000000000000000000000000000000000000000000000000000000000000b43727970746f666c6174730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434e52532d300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d656859477267786334776662704d65546a6d77446957753531664e717554716e5478367731414a4457774a700000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103a65760003560e01c806366a62ac9116101e7578063a61bc62d1161010d578063d7a240de116100a0578063e93f091e1161006f578063e93f091e14610b26578063e985e9c514610b53578063f2fde38b14610b9c578063f6a56e4d14610bbc57600080fd5b8063d7a240de14610abb578063de14715414610adb578063e19fe27f14610af1578063e23f0fc114610b0657600080fd5b8063c2584cc2116100dc578063c2584cc214610a28578063c6a4eb3914610a48578063c87b56dd14610a68578063d5abeb0114610a8857600080fd5b8063a61bc62d146109b2578063af506beb146109d2578063b42dfa0d146109f2578063b88d4fde14610a0857600080fd5b80638ba4cc3c116101855780639b6860c8116101545780639b6860c814610951578063a0712d6814610967578063a22cb4651461097a578063a4e2d6341461099a57600080fd5b80638ba4cc3c146108e85780638da5cb5b1461090857806395d89b411461092657806397385fcd1461093b57600080fd5b806374666648116101c157806374666648146108565780637a2768171461088a57806380cc01ee146108ba57806389a2c7c1146108cd57600080fd5b806366a62ac91461080c57806370a0823114610821578063715018a61461084157600080fd5b80632a55205a116102cc5780634fda72851161026a5780635fd8c710116102395780635fd8c710146107b55780636352211e146107ca578063639559ed146107ea578063667f133b1461053957600080fd5b80634fda72851461072b5780635022acdd1461074b57806359927044146107605780635cb960e31461078857600080fd5b806333628a83116102a657806333628a83146106a257806337ba2b9e146106b857806342842e0e146106d857806343a32282146106f857600080fd5b80632a55205a146106085780632b600adc1461064757806332cb6b0c1461066e57600080fd5b806311eb3047116103445780631902691311610313578063190269131461056b5780631e84c413146105b257806323b872dd146105cc5780632493cdd5146105ec57600080fd5b806311eb30471461050f57806318160ddd14610524578063181edaec146105395780631820cabb1461055457600080fd5b806306fdde031161038057806306fdde0314610468578063081812fc1461048a578063095ea7b3146104c25780630d19f2d0146104e257600080fd5b806301ffc9a7146103e7578063029c89da1461041c57806302bf5b0e1461043e57600080fd5b366103e25760405134815233907f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258749060200160405180910390a2005b600080fd5b3480156103f357600080fd5b506104076104023660046134dd565b610bdd565b60405190151581526020015b60405180910390f35b34801561042857600080fd5b5061043c610437366004613541565b610bee565b005b34801561044a57600080fd5b5061045a6706f05b59d3b2000081565b604051908152602001610413565b34801561047457600080fd5b5061047d610c93565b6040516104139190613648565b34801561049657600080fd5b506104aa6104a536600461365b565b610d25565b6040516001600160a01b039091168152602001610413565b3480156104ce57600080fd5b5061043c6104dd366004613689565b610dd0565b3480156104ee57600080fd5b5061045a6104fd3660046136b5565b60186020526000908152604090205481565b34801561051b57600080fd5b5061043c610ef9565b34801561053057600080fd5b5061045a610f10565b34801561054557600080fd5b5061045a66038d7ea4c6800081565b34801561056057600080fd5b5061045a62093a8081565b34801561057757600080fd5b5061059f7f000000000000000000000000000000000000000000000000000000000000006f81565b60405161ffff9091168152602001610413565b3480156105be57600080fd5b506019546104079060ff1681565b3480156105d857600080fd5b5061043c6105e73660046136d2565b610f45565b3480156105f857600080fd5b5061045a670de0b6b3a764000081565b34801561061457600080fd5b50610628610623366004613713565b610fcc565b604080516001600160a01b039093168352602083019190915201610413565b34801561065357600080fd5b5061065c600381565b60405160ff9091168152602001610413565b34801561067a57600080fd5b5061045a7f000000000000000000000000000000000000000000000000000000000000045781565b3480156106ae57600080fd5b5061045a60165481565b3480156106c457600080fd5b506104076106d336600461377a565b6110ab565b3480156106e457600080fd5b5061043c6106f33660046136d2565b61117f565b34801561070457600080fd5b5061070e6101f481565b6040516bffffffffffffffffffffffff9091168152602001610413565b34801561073757600080fd5b5061043c61074636600461365b565b61119a565b34801561075757600080fd5b5061043c611310565b34801561076c57600080fd5b506011546104aa9064010000000090046001600160a01b031681565b34801561079457600080fd5b506107a86107a336600461365b565b611326565b6040516104139190613809565b3480156107c157600080fd5b506104076113e7565b3480156107d657600080fd5b506104aa6107e536600461365b565b6114e6565b3480156107f657600080fd5b506107ff611571565b6040516104139190613817565b34801561081857600080fd5b5061043c611600565b34801561082d57600080fd5b5061045a61083c3660046136b5565b611614565b34801561084d57600080fd5b5061043c6116ae565b34801561086257600080fd5b5061059f7f00000000000000000000000000000000000000000000000000000000000000de81565b34801561089657600080fd5b506104076108a53660046136b5565b60176020526000908152604090205460ff1681565b61043c6108c8366004613862565b6116c0565b3480156108d957600080fd5b5060115461059f9061ffff1681565b3480156108f457600080fd5b5061043c610903366004613689565b611835565b34801561091457600080fd5b50600a546001600160a01b03166104aa565b34801561093257600080fd5b5061047d6118a6565b34801561094757600080fd5b5061045a60155481565b34801561095d57600080fd5b5061045a60145481565b61043c61097536600461365b565b6118b5565b34801561098657600080fd5b5061043c6109953660046138ae565b6119f8565b3480156109a657600080fd5b50600c54600214610407565b3480156109be57600080fd5b5061043c6109cd3660046138ec565b611a03565b3480156109de57600080fd5b5061043c6109ed3660046138ec565b611aaf565b3480156109fe57600080fd5b5061045a60125481565b348015610a1457600080fd5b5061043c610a23366004613917565b611b5b565b348015610a3457600080fd5b5061043c610a433660046139db565b611be9565b348015610a5457600080fd5b50610407610a6336600461377a565b611c99565b348015610a7457600080fd5b5061047d610a8336600461365b565b611d50565b348015610a9457600080fd5b507f000000000000000000000000000000000000000000000000000000000000045761045a565b348015610ac757600080fd5b5061043c610ad636600461365b565b611e38565b348015610ae757600080fd5b5061045a60135481565b348015610afd57600080fd5b5061065c600181565b348015610b1257600080fd5b5061043c610b213660046136b5565b611fae565b348015610b3257600080fd5b50610b46610b413660046136b5565b61202e565b6040516104139190613a1d565b348015610b5f57600080fd5b50610407610b6e366004613a55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ba857600080fd5b5061043c610bb73660046136b5565b612052565b348015610bc857600080fd5b5060115461059f9062010000900461ffff1681565b6000610be8826120df565b92915050565b610bf661211d565b601054600003610c17578051610c139060109060208401906133dd565b5050565b60005b8151811015610c13576010828281518110610c3757610c37613a83565b602090810291909101810151825460018101845560009384529282902091830490910180549192909160ff601f9092166101000a918202191690836003811115610c8357610c836137d1565b0217905550600101610c1a565b50565b606060008054610ca290613a99565b80601f0160208091040260200160405190810160405280929190818152602001828054610cce90613a99565b8015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b820191906000526020600020905b815481529060010190602001808311610cfe57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b0316610db45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ddb826114e6565b9050806001600160a01b0316836001600160a01b031603610e3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20617070726f76616c20746f20796f757273656c66000000006044820152606401610dab565b336001600160a01b0382161480610e7857506001600160a01b038116600090815260076020908152604080832033845290915290205460ff165b610eea5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610dab565b610ef48383612177565b505050565b610f0161211d565b6019805460ff19166001179055565b60006003547f0000000000000000000000000000000000000000000000000000000000000457610f409190613ae9565b905090565b610f4f33826121f2565b610fc15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610dab565b610ef48383836122fa565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff1692820192909252829161106d5750604080518082019091526008546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090611091906bffffffffffffffffffffffff1687613afc565b61109b9190613b29565b91519350909150505b9250929050565b60165460009015806110bb575082155b806110cd57506001600160a01b038216155b806110f157506001600160a01b038216600090815260186020526040902054600311155b156110fe57506000611178565b611175848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016546040516bffffffffffffffffffffffff19606089901b16602082015290925060340190505b60405160208183030381529060405280519060200120612555565b90505b9392505050565b610ef483838360405180602001604052806000815250611b5b565b6111a261211d565b62093a807f4fda7285c2ad2b913ccab12c7b1c1998f8ecd3514729c71f37a1cb031e0433434260006111d48483613b3d565b6001600160e01b031984166000908152600d60205260408120549192508115806111fe5750828210155b90508015611227576001600160e01b031985166000908152600d6020526040902083905561129d565b8382111561129d5760405162461bcd60e51b815260206004820152602c60248201527f4c6f636b65723a20746869732066756e6374696f6e206973206c6f636b65642060448201527f62792073656c6563746f722100000000000000000000000000000000000000006064820152608401610dab565b670de0b6b3a764000087111580156112bc575066038d7ea4c680008710155b6112c46118a6565b6040516020016112d49190613b50565b604051602081830303815290604052906113015760405162461bcd60e51b8152600401610dab9190613648565b50505060149490945550505050565b61131861211d565b61132460106000613491565b565b6000818152600460205260408120546001600160a01b031615156113486118a6565b6040516020016113589190613bb7565b604051602081830303815290604052906113855760405162461bcd60e51b8152600401610dab9190613648565b5060006012546000036113ac576103e783106113a25760036113a5565b60025b9050610be8565b601083815481106113bf576113bf613a83565b90600052602060002090602091828204019190069054906101000a900460ff16905092915050565b60006113f161211d565b478015156113fd6118a6565b60405160200161140d9190613bf8565b6040516020818303038152906040529061143a5760405162461bcd60e51b8152600401610dab9190613648565b5060115460405160009164010000000090046001600160a01b03169083908381818185875af1925050503d8060008114611490576040519150601f19603f3d011682016040523d82523d6000602084013e611495565b606091505b50509050806114a26118a6565b6040516020016114b29190613c39565b604051602081830303815290604052906114df5760405162461bcd60e51b8152600401610dab9190613648565b5091505090565b6000818152600460205260408120546001600160a01b031680610be85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610dab565b606061157b61211d565b6010805480602002602001604051908101604052809291908181526020018280548015610d1b57602002820191906000526020600020906000905b82829054906101000a900460ff1660038111156115d5576115d56137d1565b8152602060019283018181049485019490930390920291018084116115b65790505050505050905090565b61160861211d565b6019805460ff19169055565b60006001600160a01b0382166116925760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610dab565b506001600160a01b031660009081526005602052604090205490565b6116b661211d565b611324600061256b565b600081116116cc6118a6565b6040516020016116dc9190613c7a565b604051602081830303815290604052906117095760405162461bcd60e51b8152600401610dab9190613648565b506117158383336110ab565b61171d6118a6565b60405160200161172d9190613cbb565b6040516020818303038152906040529061175a5760405162461bcd60e51b8152600401610dab9190613648565b5033600090815260186020526040902054600390611779908390613b3d565b11156117836118a6565b6040516020016117939190613d22565b604051602081830303815290604052906117c05760405162461bcd60e51b8152600401610dab9190613648565b50806013546117cf9190613afc565b3410156117de576117de613d89565b3360008181526018602052604090208054830190556117fd90826125ca565b6040518181527f4bdc98fccbc8aaf5f0a8085837d7f9fe1e00663850d6bb908b39a4c761c969d49060200160405180910390a1505050565b61183d61211d565b6000818152600460205260409020546001600160a01b03161561185e6118a6565b60405160200161186e9190613d9f565b6040516020818303038152906040529061189b5760405162461bcd60e51b8152600401610dab9190613648565b50610c13828261276a565b606060018054610ca290613a99565b600081116118c16118a6565b6040516020016118d19190613de0565b604051602081830303815290604052906118fe5760405162461bcd60e51b8152600401610dab9190613648565b50600a546001600160a01b031633146119845760195460ff1615156001146119246118a6565b6040516020016119349190613e47565b604051602081830303815290604052906119615760405162461bcd60e51b8152600401610dab9190613648565b50806014546119709190613afc565b34101561197f5761197f613d89565b6119b8565b6040518181527fa77bebf1c3cb7d722d2561d415ee46e9cd9bf50b67b6e59ab0903a2dd217c6739060200160405180910390a15b6119c233826125ca565b6040518181527f4bdc98fccbc8aaf5f0a8085837d7f9fe1e00663850d6bb908b39a4c761c969d49060200160405180910390a150565b610c13338383612888565b611a0b61211d565b60008160010b12611a2457611a1f81612956565b611a35565b611a35611a3082613e88565b612a06565b60155460408051918252602082018490526060908201819052600d908201527f4672656520507572636861736500000000000000000000000000000000000000608082015233907f17467026d5d46f0da8d45b221bdb8d35c103ec7b695d58c70fabe76a43a375ab9060a00160405180910390a250601555565b611ab761211d565b60008160010b12611ad057611acb81612a87565b611ae1565b611ae1611adc82613e88565b612b26565b60155460408051918252602082018490526060908201819052600c908201527f4561726c79204163636573730000000000000000000000000000000000000000608082015233907f17467026d5d46f0da8d45b221bdb8d35c103ec7b695d58c70fabe76a43a375ab9060a00160405180910390a250601655565b611b6533836121f2565b611bd75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610dab565b611be384848484612b95565b50505050565b611bf4828233611c99565b611bfc6118a6565b604051602001611c0c9190613ea9565b60405160208183030381529060405290611c395760405162461bcd60e51b8152600401610dab9190613648565b50336000818152601760205260409020805460ff19166001908117909155611c6191906125ca565b604051600181527f4bdc98fccbc8aaf5f0a8085837d7f9fe1e00663850d6bb908b39a4c761c969d49060200160405180910390a15050565b6015546000901580611ca9575082155b80611cbb57506001600160a01b038216155b80611ce357506001600160a01b03821660009081526017602052604090205460ff1615156001145b15611cf057506000611178565b611175848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff19606089901b166020820152909250603401905061115a565b6000818152600460205260409020546060906001600160a01b0316611ddd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610dab565b6000611de7612c1e565b90506000815111611e075760405180602001604052806000815250611178565b80611e1184612c2d565b604051602001611e22929190613f10565b6040516020818303038152906040529392505050565b611e4061211d565b62093a807fd7a240de0847ef1628907426054925e6e45886731d5419526ed9d7e4e6811ac3426000611e728483613b3d565b6001600160e01b031984166000908152600d6020526040812054919250811580611e9c5750828210155b90508015611ec5576001600160e01b031985166000908152600d60205260409020839055611f3b565b83821115611f3b5760405162461bcd60e51b815260206004820152602c60248201527f4c6f636b65723a20746869732066756e6374696f6e206973206c6f636b65642060448201527f62792073656c6563746f722100000000000000000000000000000000000000006064820152608401610dab565b6706f05b59d3b200008711158015611f5a575066038d7ea4c680008710155b611f626118a6565b604051602001611f729190613f92565b60405160208183030381529060405290611f9f5760405162461bcd60e51b8152600401610dab9190613648565b50505060139490945550505050565b611fb661211d565b601180547fffffffffffffffff0000000000000000000000000000000000000000ffffffff166401000000006001600160a01b038481168281029390931793849055604051929391909104169033907fb2f57f9141a3cea9491b10ef57b70c7c0104528262925565bb99acfde8aa8ec190600090a450565b6001600160a01b0381166000908152600e60205260409020606090610be890612ccd565b61205a61211d565b6001600160a01b0381166120d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dab565b610c908161256b565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610be85750610be882612cda565b600a546001600160a01b031633146113245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dab565b6000818152600660205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906121b9826114e6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b031661227c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610dab565b6000612287836114e6565b9050806001600160a01b0316846001600160a01b031614806122c25750836001600160a01b03166122b784610d25565b6001600160a01b0316145b806122f257506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661230d826114e6565b6001600160a01b0316146123895760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610dab565b6001600160a01b0382166124045760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dab565b6001600160a01b0383166000908152600560205260409020546124b55760405162461bcd60e51b815260206004820152604b60248201527f4552433732313a207472616e666572206661696c65642064756520746f20746860448201527f6520666163742074686174207468657265206973206e6f204e4654206f6e207960648201527f6f75722062616c616e6365000000000000000000000000000000000000000000608482015260a401610dab565b6124c0838383612d75565b6124cb600082612177565b6001600160a01b0380841660008181526005602090815260408083208054600019019055938616808352848320805460010190558583526004909152838220805473ffffffffffffffffffffffffffffffffffffffff1916821790559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826125628584612da1565b14949350505050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166126205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610dab565b600081116126965760405162461bcd60e51b815260206004820152602860248201527f455243373231523a206e65656420746f206d696e74206174206c65617374206f60448201527f6e6520746f6b656e0000000000000000000000000000000000000000000000006064820152608401610dab565b80600354101561270e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231523a206d696e74696e67206d6f726520746f6b656e732074686160448201527f6e20617661696c61626c650000000000000000000000000000000000000000006064820152608401610dab565b60035460005b828110156127445760006127288584612dee565b90506127348582612e80565b5060001990910190600101612714565b506003556001600160a01b03909116600090815260056020526040902080549091019055565b6001600160a01b0382166127c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610dab565b600160035410156128395760405162461bcd60e51b815260206004820152602b60248201527f455243373231523a206d696e74696e67206d6f726520746f6b656e732074686160448201527f6e20617661696c61626c650000000000000000000000000000000000000000006064820152608401610dab565b600061284782600354612ef2565b905060036000815461285890613ff9565b909155506128668382612e80565b50506001600160a01b0316600090815260056020526040902080546001019055565b816001600160a01b0316836001600160a01b0316036128e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610dab565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60115461ffff7f000000000000000000000000000000000000000000000000000000000000006f81169161299291849162010000900416614010565b61ffff1611156129a06118a6565b6040516020016129b0919061402b565b604051602081830303815290604052906129dd5760405162461bcd60e51b8152600401610dab9190613648565b506011805461ffff6201000080830482169094011690920263ffff000019909216919091179055565b60115461ffff808316620100009092041611612a206118a6565b604051602001612a3091906140b8565b60405160208183030381529060405290612a5d5760405162461bcd60e51b8152600401610dab9190613648565b506011805461ffff620100008083048216949094031690920263ffff000019909216919091179055565b60115461ffff7f00000000000000000000000000000000000000000000000000000000000000de811691612abd91849116614010565b61ffff161115612acb6118a6565b604051602001612adb919061416b565b60405160208183030381529060405290612b085760405162461bcd60e51b8152600401610dab9190613648565b506011805461ffff19811661ffff9182169390930116919091179055565b60115461ffff808316911611612b3a6118a6565b604051602001612b4a91906140b8565b60405160208183030381529060405290612b775760405162461bcd60e51b8152600401610dab9190613648565b506011805461ffff19811661ffff9182169390930316919091179055565b612ba08484846122fa565b612bac84848484612f77565b611be35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610dab565b6060600f8054610ca290613a99565b60606000612c3a836130ce565b600101905060008167ffffffffffffffff811115612c5a57612c5a6134fa565b6040519080825280601f01601f191660200182016040528015612c84576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084612c8e57509392505050565b60606000611178836131b0565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612d3d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610be857507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610be8565b6001600160a01b038316612d8d57610ef4828261320c565b612d97838261322e565b610ef4828261320c565b600081815b8451811015612de657612dd282868381518110612dc557612dc5613a83565b6020026020010151613250565b915080612dde816141f8565b915050612da6565b509392505050565b600080833a434244612e01600184613ae9565b604080516001600160a01b0390971660208801528601949094526060850192909252608084015260a08301524060c08201523060e082015261010081018490526101200160408051601f19818403018152919052805160209091012090506000612e6b8483614211565b9050612e778185612ef2565b95945050505050565b612e8c60008383612d75565b600081815260046020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600082815260026020526040812054818115612f0e5781612f10565b845b90506000612f1f600186613ae9565b600081815260026020526040902054909150868214612f56578015612f445780612f46565b815b6000888152600260205260409020555b8015612f6c576000828152600260205260408120555b509095945050505050565b60006001600160a01b0384163b156130c357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fbb903390899088908890600401614225565b6020604051808303816000875af1925050508015612ff6575060408051601f3d908101601f19168201909252612ff391810190614261565b60015b6130a9573d808015613024576040519150601f19603f3d011682016040523d82523d6000602084013e613029565b606091505b5080516000036130a15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610dab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122f2565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613117577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310613143576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061316157662386f26fc10000830492506010015b6305f5e1008310613179576305f5e100830492506008015b612710831061318d57612710830492506004015b6064831061319f576064830492506002015b600a8310610be85760010192915050565b60608160000180548060200260200160405190810160405280929190818152602001828054801561320057602002820191906000526020600020905b8154815260200190600101908083116131ec575b50505050509050919050565b6001600160a01b0382166000908152600e60205260409020610ef4908261327c565b6001600160a01b0382166000908152600e60205260409020610ef49082613288565b600081831061326c576000828152602084905260409020611178565b5060009182526020526040902090565b60006111788383613294565b600061117883836132e3565b60008181526001830160205260408120546132db57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610be8565b506000610be8565b600081815260018301602052604081205480156133cc576000613307600183613ae9565b855490915060009061331b90600190613ae9565b905081811461338057600086600001828154811061333b5761333b613a83565b906000526020600020015490508087600001848154811061335e5761335e613a83565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806133915761339161427e565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610be8565b6000915050610be8565b5092915050565b82805482825590600052602060002090601f016020900481019282156134815791602002820160005b8382111561345257835183826101000a81548160ff02191690836003811115613431576134316137d1565b02179055509260200192600101602081600001049283019260010302613406565b801561347f5782816101000a81549060ff0219169055600101602081600001049283019260010302613452565b505b5061348d9291506134b2565b5090565b50805460008255601f016020900490600052602060002090810190610c9091905b5b8082111561348d57600081556001016134b3565b6001600160e01b031981168114610c9057600080fd5b6000602082840312156134ef57600080fd5b8135611178816134c7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613539576135396134fa565b604052919050565b6000602080838503121561355457600080fd5b823567ffffffffffffffff8082111561356c57600080fd5b818501915085601f83011261358057600080fd5b813581811115613592576135926134fa565b8060051b91506135a3848301613510565b81815291830184019184810190888411156135bd57600080fd5b938501935b838510156135ec5784359250600483106135dc5760008081fd5b82825293850193908501906135c2565b98975050505050505050565b60005b838110156136135781810151838201526020016135fb565b50506000910152565b600081518084526136348160208601602086016135f8565b601f01601f19169290920160200192915050565b602081526000611178602083018461361c565b60006020828403121561366d57600080fd5b5035919050565b6001600160a01b0381168114610c9057600080fd5b6000806040838503121561369c57600080fd5b82356136a781613674565b946020939093013593505050565b6000602082840312156136c757600080fd5b813561117881613674565b6000806000606084860312156136e757600080fd5b83356136f281613674565b9250602084013561370281613674565b929592945050506040919091013590565b6000806040838503121561372657600080fd5b50508035926020909101359150565b60008083601f84011261374757600080fd5b50813567ffffffffffffffff81111561375f57600080fd5b6020830191508360208260051b85010111156110a457600080fd5b60008060006040848603121561378f57600080fd5b833567ffffffffffffffff8111156137a657600080fd5b6137b286828701613735565b90945092505060208401356137c681613674565b809150509250925092565b634e487b7160e01b600052602160045260246000fd5b6004811061380557634e487b7160e01b600052602160045260246000fd5b9052565b60208101610be882846137e7565b6020808252825182820181905260009190848201906040850190845b81811015613856576138468385516137e7565b9284019291840191600101613833565b50909695505050505050565b60008060006040848603121561387757600080fd5b833567ffffffffffffffff81111561388e57600080fd5b61389a86828701613735565b909790965060209590950135949350505050565b600080604083850312156138c157600080fd5b82356138cc81613674565b9150602083013580151581146138e157600080fd5b809150509250929050565b600080604083850312156138ff57600080fd5b8235915060208301358060010b81146138e157600080fd5b6000806000806080858703121561392d57600080fd5b843561393881613674565b935060208581013561394981613674565b935060408601359250606086013567ffffffffffffffff8082111561396d57600080fd5b818801915088601f83011261398157600080fd5b813581811115613993576139936134fa565b6139a5601f8201601f19168501613510565b915080825289848285010111156139bb57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080602083850312156139ee57600080fd5b823567ffffffffffffffff811115613a0557600080fd5b613a1185828601613735565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b8181101561385657835183529284019291840191600101613a39565b60008060408385031215613a6857600080fd5b8235613a7381613674565b915060208301356138e181613674565b634e487b7160e01b600052603260045260246000fd5b600181811c90821680613aad57607f821691505b602082108103613acd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610be857610be8613ad3565b8082028115828204841417610be857610be8613ad3565b634e487b7160e01b600052601260045260246000fd5b600082613b3857613b38613b13565b500490565b80820180821115610be857610be8613ad3565b60008251613b628184602087016135f8565b7f3a204e6577207075626c69632073616c65207072696365206973206e6f7420699201918252507f6e206c696d6974206469617061736f6e000000000000000000000000000000006020820152603001919050565b60008251613bc98184602087016135f8565b7f3a20546f6b656e20646f65736e27742065787369747300000000000000000000920191825250601601919050565b60008251613c0a8184602087016135f8565b7f3a207a65726f2062616c616e6365000000000000000000000000000000000000920191825250600e01919050565b60008251613c4b8184602087016135f8565b7f3a204661696c656420746f2073656e6420457468657200000000000000000000920191825250601601919050565b60008251613c8c8184602087016135f8565b7f3a20496e73756666696369656e74207175616e74697479000000000000000000920191825250601701919050565b60008251613ccd8184602087016135f8565b7f3a20556e666f7274756e6174656c792c20796f7520617265206e6f7420696e209201918252507f6561726c79206163636573732077686974656c697374210000000000000000006020820152603701919050565b60008251613d348184602087016135f8565b7f3a204561726c7920616363657373206d696e74206973206f6e6c7920706f73739201918252507f69626c6520696e2074686520616d6f756e74206f6620332070696563657321006020820152603f01919050565b634e487b7160e01b600052600160045260246000fd5b60008251613db18184602087016135f8565b7f3a20746f6b656e20494420697320616c7265616479206d696e74656421000000920191825250601d01919050565b60008251613df28184602087016135f8565b7f3a205175616e746974792073686f756c642062652067726561746865722074689201918252507f656e207a65726f210000000000000000000000000000000000000000000000006020820152602801919050565b60008251613e598184602087016135f8565b7f3a205075626c69632073616c6520697320696e61637469766521000000000000920191825250601a01919050565b60008160010b617fff198103613ea057613ea0613ad3565b60000392915050565b60008251613ebb8184602087016135f8565b7f3a20556e666f7274756e6174656c792c20796f7520617265206e6f7420696e209201918252507f6120667265652070757263686173652077686974656c697374210000000000006020820152603a01919050565b60008351613f228184602088016135f8565b7f2f000000000000000000000000000000000000000000000000000000000000009083019081528351613f5c8160018401602088016135f8565b7f2e6a736f6e00000000000000000000000000000000000000000000000000000060019290910191820152600601949350505050565b60008251613fa48184602087016135f8565b7f3a204e6577206561726c79206163636573732073616c652070726963652069739201918252507f206e6f7420696e206c696d6974206469617061736f6e000000000000000000006020820152603601919050565b60008161400857614008613ad3565b506000190190565b61ffff8181168382160190808211156133d6576133d6613ad3565b6000825161403d8184602087016135f8565b7f3a2069742773206e6f7420706f737369626c6520746f206164642061207465729201918252507f6d2c2073696e636520746865206c696d697420666f722066726565206163636560208201527f737320706c616365732077696c6c2062652065786365656465642100000000006040820152605b01919050565b600082516140ca8184602087016135f8565b7f3a204974277320696d706f737369626c6520746f2073756274726163742074689201918252507f6520646966666572656e6365206265636175736520746865207375627472616360208201527f7465642076616c7565206578636565647320746865207265647563656420766160408201527f6c756521000000000000000000000000000000000000000000000000000000006060820152606401919050565b6000825161417d8184602087016135f8565b7f3a2069742773206e6f7420706f737369626c6520746f206164642061207465729201918252507f6d2c2073696e636520746865206c696d697420666f72206561726c792061636360208201527f65737320706c616365732077696c6c20626520657863656564656421000000006040820152605c01919050565b60006001820161420a5761420a613ad3565b5060010190565b60008261422057614220613b13565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152614257608083018461361c565b9695505050505050565b60006020828403121561427357600080fd5b8151611178816134c7565b634e487b7160e01b600052603160045260246000fdfea264697066735822122035f248a2f49967b2e584f30905e903212410c6a31b1e514a8783383f1c3dfe2d64736f6c63430008120033

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

0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000001d6b3e373b947319a4b76a851bb17c1deccadb1d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000457000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000000000000000006f00000000000000000000000000000000000000000000000000000000000000de000000000000000000000000000000000000000000000000000000000000000b43727970746f666c6174730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434e52532d300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d656859477267786334776662704d65546a6d77446957753531664e717554716e5478367731414a4457774a700000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Cryptoflats
Arg [1] : symbol_ (string): CNRS-0
Arg [2] : baseURI_ (string): https://ipfs.io/ipfs/QmehYGrgxc4wfbpMeTjmwDiWu51fNquTqnTx6w1AJDWwJp
Arg [3] : teamWallet_ (address): 0x1d6B3E373B947319a4B76A851bb17C1dEcCADb1D
Arg [4] : gen_ (uint256): 0
Arg [5] : maxSupply_ (uint256): 1111
Arg [6] : publicSalePrice_ (uint256): 30000000000000000
Arg [7] : earlyAccessPrice_ (uint256): 15000000000000000
Arg [8] : placesForFreeAccessWhitelist_ (uint16): 111
Arg [9] : placesForEarlyAccessWhitelist_ (uint16): 222

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [3] : 0000000000000000000000001d6b3e373b947319a4b76a851bb17c1deccadb1d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000457
Arg [6] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [7] : 00000000000000000000000000000000000000000000000000354a6ba7a18000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000006f
Arg [9] : 00000000000000000000000000000000000000000000000000000000000000de
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [11] : 43727970746f666c617473000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [13] : 434e52532d300000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [15] : 68747470733a2f2f697066732e696f2f697066732f516d656859477267786334
Arg [16] : 776662704d65546a6d77446957753531664e717554716e5478367731414a4457
Arg [17] : 774a700000000000000000000000000000000000000000000000000000000000


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.