ETH Price: $3,467.16 (-1.73%)
Gas: 3 Gwei

Token

The Vampire Game (VGAME)
 

Overview

Max Total Supply

1,822 VGAME

Holders

657

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 VGAME
0x3fdF286882885e9fBea3E6162499dbcFA87701Ab
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:
VampireGame

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 25 : VampireGame.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Arrays.sol";

import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";

import "./allowlist/AllowList.sol";
import "./traits/TokenTraits.sol";
import "./traits/ITraits.sol";
import "./IVampireGame.sol";

/// @title The Vampire Game NFT contract
///
/// Note: The original Wolf Game's contract was used as insipiration, and a
/// few parts of the contract were taken directly, in particular the trait selection
/// and rarity using Walker's Alias method, and using a separate `Traits` contract
/// for getting the tokenURI.
///
/// Some info about how this contract works:
///
/// ### Allow-list
///
/// Using a merkle-tree based allow-list that caps the amount of nfts a wallet
/// can mint. This increases a bit the gas cost to mint on **presale**, but we
/// compensate this by paying half of the minting price when we reveal the NFTs.
///
/// ### On-chain vs Off-chain
///
/// What is on-chain here?
/// - The generated traits
/// - The revealed traits metadata
/// - The traits img data
///
/// What is off-chain?
/// - The random number we get for batch reveals. We use a neutral, trusted third party 
///   that is widely known in the community: Chainlink VRF.
/// - The non-revealed traits metadata (before your nft is revealed).
///
/// ### Minting and Revealing
///
/// 1. The user mints an NFT
/// 2. After a few mints, we request a random number to Chainlink VRF
/// 3. We use this random number to reveal the batch of NFTs that were minted
///    before we got the seed.
///
/// Why? We believe that as long as minting and revealing happens in the same 
/// transaction, people will be able to cheat.
///
/// ### Traits
///
/// The traits are all stored on-chain in another contract "Traits" similar to Wolf Game.
///
/// ### Game Controllers
///
/// For us to be able to expand on this game, future "game controller" contracts will be
/// able to freely call `mint` functions, and `transferFrom`, the logic to safeguard
/// those functions will be delegated to those contracts.
///
/// Unfortunatelly, to be able to expand, and to not fall into traps like Wolf Game did,
/// we had to leave a few things open that requires our users to _trust us_ for now. We
/// hope to make this trustless some day.
///
contract VampireGame is
    IVampireGame,
    IVampireGameControls,
    ERC721Enumerable,
    AllowList,
    Ownable,
    ReentrancyGuard,
    VRFConsumerBase
{
    /// @notice used to find seeds for token ids
    using Arrays for uint256[];

    /// ==== Immutable
    // Most of the immutable variables are initiated in the constructor
    // to make it easier to test

    /// @notice minting price in wei
    uint256 public immutable MINT_PRICE;
    /// @notice max amount of tokens that can be minted
    uint256 public immutable MAX_SUPPLY;
    /// @notice max mints per address
    uint256 public immutable MAX_PER_ADDRESS;
    /// @notice max mints per address in presale
    uint256 public immutable MAX_PER_ADDRESS_PRESALE;
    /// @notice price in $LINK to make VRF requests
    uint256 public LINK_VRF_PRICE;
    /// @notice number of tokens that can be bought with ether
    uint256 public PAID_TOKENS;
    /// @notice size of the batch that will be revealed by a single 
    uint256 public SEED_BATCH_SIZE;
    /// @notice random numbers generated from Chainlink VRF.
    uint256[] public seeds;
    /// @notice array of tokenIds in ascending order that matches the length of the `seeds` array.
    /// @dev using this to set which seeds are for which token, for example if let's say
    /// the array has the values [100, 1000], then tokens from 0~99 will use seed[0] and
    /// tokens from 100~999 will use seed[1].
    uint256[] public seedTokenBoundaries;
    /// @notice mapping from tokenId to tokenTraits
    mapping(uint256 => TokenTraits) public tokenTraits;
    /// @notice mapping from token hash to tokenId to prevent duplicated traits
    mapping(uint256 => uint256) public existingCombinations;
    /// @notice mapping from address to amount of tokens minted
    mapping(address => uint8) public amountMintedByAddress;
    /// @notice game controllers they can access special functions
    mapping(address => bool) public controllers;
    /// @notice chainlink key hash
    bytes32 public immutable KEY_HASH;
    /// @notice LINK token
    IERC20 public immutable LINK_TOKEN;
    /// @notice contract storing the traits data
    ITraits public traits;
    /// @notice address to withdraw the eth
    address private immutable splitter;
    /// @notice controls if mintWithEthPresale is paused
    bool public mintWithEthPresalePaused = true;
    /// @notice controls if mintWithEth is paused
    bool public mintWithEthPaused = true;
    /// @notice controls if mintFromController is paused
    bool public mintFromControllerPaused = true;
    /// @notice controls if token reveal is paused
    bool public revealPaused = true;
    /// @notice list of probabilities for each trait type  0 - 9 are associated with Sheep, 10 - 18 are associated with Wolves
    /// @dev won't mutate but can't make it immutable
    uint8[][18] public RARITIES;
    /// @notice list of aliases for Walker's Alias algorithm 0 - 9 are associated with Sheep, 10 - 18 are associated with Wolves
    /// @dev won't mutate but can't make it immutable
    uint8[][18] public ALIASES;

    /// === Constructor

    /// @dev constructor, most of the immutable props can be set here so it's easier to test
    /// @param _LINK_KEY_HASH Chainlink's VRF Key Hash
    /// @param _LINK_ADDRESS Chainlink's LINK contract address
    /// @param _LINK_VRF_COORDINATOR_ADDRESS Chainlink's coordinator contract address
    /// @param _LINK_VRF_PRICE Price in $LINK to request a random number from Chainlink VRF
    /// @param _MINT_PRICE price to mint one token in wei
    /// @param _MAX_SUPPLY maximum amount of available tokens to mint
    /// @param _MAX_PER_ADDRESS maximum amount of tokens one address can mint
    /// @param _MAX_PER_ADDRESS_PRESALE maximum amount of tokens one address can mint
    /// @param _SEED_BATCH_SIZE amount of tokens revealed by one seed
    /// @param _PAID_TOKENS maxiumum amount of tokens that can be bought with eth
    /// @param _splitter address to where the funds will go
    constructor(
        bytes32 _LINK_KEY_HASH,
        address _LINK_ADDRESS,
        address _LINK_VRF_COORDINATOR_ADDRESS,
        uint256 _LINK_VRF_PRICE,
        uint256 _MINT_PRICE,
        uint256 _MAX_SUPPLY,
        uint256 _MAX_PER_ADDRESS,
        uint256 _MAX_PER_ADDRESS_PRESALE,
        uint256 _SEED_BATCH_SIZE,
        uint256 _PAID_TOKENS,
        address _splitter
    )
        VRFConsumerBase(_LINK_VRF_COORDINATOR_ADDRESS, _LINK_ADDRESS)
        ERC721("The Vampire Game", "VGAME")
    {
        LINK_TOKEN = IERC20(_LINK_ADDRESS);
        KEY_HASH = _LINK_KEY_HASH;
        LINK_VRF_PRICE = _LINK_VRF_PRICE;
        MINT_PRICE = _MINT_PRICE;
        MAX_SUPPLY = _MAX_SUPPLY;
        MAX_PER_ADDRESS = _MAX_PER_ADDRESS;
        MAX_PER_ADDRESS_PRESALE = _MAX_PER_ADDRESS_PRESALE;
        SEED_BATCH_SIZE = _SEED_BATCH_SIZE;
        PAID_TOKENS = _PAID_TOKENS;
        splitter = _splitter;

        // Humans
        // Skin
        RARITIES[0] = [50, 15, 15, 250, 255];
        ALIASES[0] = [3, 4, 4, 0, 3];
        // Face
        RARITIES[1] = [
            133,
            189,
            57,
            255,
            243,
            133,
            114,
            135,
            168,
            38,
            222,
            57,
            95,
            57,
            152,
            114,
            57,
            133,
            189
        ];
        ALIASES[1] = [
            1,
            0,
            3,
            1,
            3,
            3,
            3,
            4,
            7,
            4,
            8,
            4,
            8,
            10,
            10,
            10,
            18,
            18,
            14
        ];
        // T-Shirt
        RARITIES[2] = [
            181,
            224,
            147,
            236,
            220,
            168,
            160,
            84,
            173,
            224,
            221,
            254,
            140,
            252,
            224,
            250,
            100,
            207,
            84,
            252,
            196,
            140,
            228,
            140,
            255,
            183,
            241,
            140
        ];
        ALIASES[2] = [
            1,
            0,
            3,
            1,
            3,
            3,
            4,
            11,
            11,
            4,
            9,
            10,
            13,
            11,
            13,
            14,
            15,
            15,
            20,
            17,
            19,
            24,
            20,
            24,
            22,
            26,
            24,
            26
        ];
        // Pants
        RARITIES[3] = [
            126,
            171,
            225,
            240,
            227,
            112,
            255,
            240,
            217,
            80,
            64,
            160,
            228,
            80,
            64,
            167
        ];
        ALIASES[3] = [2, 0, 1, 2, 3, 3, 4, 6, 7, 4, 6, 7, 8, 8, 15, 12];
        // Boots
        RARITIES[4] = [150, 30, 60, 255, 150, 60];
        ALIASES[4] = [0, 3, 3, 0, 3, 4];
        // Accessory
        RARITIES[5] = [
            210,
            135,
            80,
            245,
            235,
            110,
            80,
            100,
            190,
            100,
            255,
            160,
            215,
            80,
            100,
            185,
            250,
            240,
            240,
            100
        ];
        ALIASES[5] = [
            0,
            0,
            3,
            0,
            3,
            4,
            10,
            12,
            4,
            16,
            8,
            16,
            10,
            17,
            18,
            12,
            15,
            16,
            17,
            18
        ];
        // Hair
        RARITIES[6] = [250, 115, 100, 40, 175, 255, 180, 100, 175, 185];
        ALIASES[6] = [0, 0, 4, 6, 0, 4, 5, 9, 6, 8];
        // Cape
        RARITIES[7] = [255];
        ALIASES[7] = [0];
        // predatorIndex
        RARITIES[8] = [255];
        ALIASES[8] = [0];

        // Vampires
        // Skin
        RARITIES[9] = [
            234,
            239,
            234,
            234,
            255,
            234,
            244,
            249,
            130,
            234,
            234,
            247,
            234
        ];
        ALIASES[9] = [0, 0, 1, 2, 3, 4, 5, 6, 12, 7, 9, 10, 11];
        // Face
        RARITIES[10] = [
            45,
            255,
            165,
            60,
            195,
            195,
            45,
            120,
            75,
            75,
            105,
            120,
            255,
            180,
            150
        ];
        ALIASES[10] = [1, 0, 1, 4, 2, 4, 5, 12, 12, 13, 13, 14, 5, 12, 13];
        // Clothes
        RARITIES[11] = [
            147,
            180,
            246,
            201,
            210,
            252,
            219,
            189,
            195,
            156,
            177,
            171,
            165,
            225,
            135,
            135,
            186,
            135,
            150,
            243,
            135,
            255,
            231,
            141,
            183,
            150,
            135
        ];
        ALIASES[11] = [
            2,
            2,
            0,
            2,
            3,
            4,
            5,
            6,
            7,
            3,
            3,
            4,
            4,
            8,
            5,
            6,
            13,
            13,
            19,
            16,
            19,
            19,
            21,
            21,
            21,
            21,
            22
        ];
        // Pants
        RARITIES[12] = [255];
        ALIASES[12] = [0];
        // Boots
        RARITIES[13] = [255];
        ALIASES[13] = [0];
        // Accessory
        RARITIES[14] = [255];
        ALIASES[14] = [0];
        // Hair
        RARITIES[15] = [255];
        ALIASES[15] = [0];
        // Cape
        RARITIES[16] = [9, 9, 150, 90, 9, 210, 9, 9, 255];
        ALIASES[16] = [5, 5, 0, 2, 8, 3, 8, 8, 5];
        // predatorIndex
        RARITIES[17] = [255, 8, 160, 73];
        ALIASES[17] = [0, 0, 0, 2];
    }

    /// ==== Modifiers

    modifier onlyControllers() {
        require(controllers[_msgSender()], "ONLY_CONTROLLERS");
        _;
    }

    /// ==== Minting

    /// @notice mint an unrevealed token using eth
    /// @param amount amount to mint
    function mintWithETH(uint8 amount) external payable nonReentrant {
        require(!mintWithEthPaused, "MINT_WITH_ETH_PAUSED");
        uint8 addressMintedSoFar = amountMintedByAddress[_msgSender()];
        require(
            addressMintedSoFar + amount <= MAX_PER_ADDRESS,
            "MAX_TOKEN_PER_WALLET"
        );
        require(totalSupply() + amount <= PAID_TOKENS, "NOT_ENOUGH_TOKENS");
        require(amount > 0, "INVALID_AMOUNT");
        require(amount * MINT_PRICE == msg.value, "WRONG_VALUE");
        amountMintedByAddress[_msgSender()] = addressMintedSoFar + amount;
        _mintMany(_msgSender(), amount);
    }

    /// @notice mint an unrevealed token using eth
    /// @param amount amount to mint
    function mintWithETHPresale(uint8 amount, bytes32[] calldata proof)
        external
        payable
        nonReentrant
    {
        require(!mintWithEthPresalePaused, "PRESALE_PAUSED");
        require(isAddressInAllowList(_msgSender(), proof), "NOT_IN_ALLOWLIST");
        uint8 addressMintedSoFar = amountMintedByAddress[_msgSender()];
        require(
            addressMintedSoFar + amount <= MAX_PER_ADDRESS_PRESALE,
            "MAX_TOKEN_PER_WALLET"
        );
        require(totalSupply() + amount <= PAID_TOKENS, "NOT_ENOUGH_TOKENS");
        require(amount > 0, "INVALID_AMOUNT");
        require(amount * MINT_PRICE == msg.value, "WRONG_VALUE");
        amountMintedByAddress[_msgSender()] = addressMintedSoFar + amount;
        _mintMany(_msgSender(), amount);
    }

    /// @dev mint any amount of tokens to an address
    /// common logic to many functions, the function calling
    /// this should do the guard checks
    function _mintMany(address to, uint8 amount) private {
        uint256 supply = totalSupply();
        for (uint8 i = 0; i < amount; i++) {
            uint256 tokenId = supply + i;
            _safeMint(to, tokenId);
            if ((tokenId + 1) % SEED_BATCH_SIZE == 0) {
                requestRandomness(KEY_HASH, LINK_VRF_PRICE);
            }
        }
    }

    /// ==== Revealing

    /// @notice reveal the metadata of multiple of tokenIds.
    /// @dev admin check if this won't fail
    function revealGenZeroTokens(uint256[] calldata tokenIds)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 tokenId = tokenIds[i];
            require(canRevealToken(tokenId), "CANT_REVEAL");

            // Find seed index in the seedTokenBoundaries array
            uint256 seedIndex = seedTokenBoundaries.findUpperBound(tokenId);
            uint256 seed = uint256(keccak256(abi.encode(seeds[seedIndex], tokenId)));

            _revealToken(tokenId, seed);
        }
    }

    /// @dev returns true if a token can be revealed.
    /// Conditions for a token to be revealed:
    /// - Was not revealed yet
    /// - There is a seed that was added after the was already minted
    function canRevealToken(uint256 tokenId)
        private
        view
        returns (bool)
    {
        // Token already revealed
        if (tokenTraits[tokenId].exists) {
            return false;
        }

        // No seeds
        if (seedTokenBoundaries.length == 0) {
            return false;
        }

        // If the last element of the seedTokenBoundaries array is greater
        // than the tokenId it means that there is a seed available for that
        // token so the token can be revealed
        return seedTokenBoundaries[seedTokenBoundaries.length - 1] > tokenId;
    }

    /// @dev reveal one token given an id and a seed
    function _revealToken(uint256 tokenId, uint256 seed) private {
        (
            TokenTraits memory tt,
            uint256 ttHash
        ) = _generateNonDuplicatedTokenTraits(tokenId, seed);
        tokenTraits[tokenId] = tt;
        existingCombinations[ttHash] = tokenId;
    }

    /// @dev recursive function to generate a TokenTraits without colliding
    /// with other previously generated traits. It uses a seed from
    /// Chainlink VRF and if there is a collision, it keeps re-hashing the
    /// seed with the tokenId until it finds a unique set of traits.
    /// @param tokenId the id of the token to generate the traits for
    /// @param seed a value derived from a randomly generated value
    /// @return tt a TokenTraits struct
    function _generateNonDuplicatedTokenTraits(uint256 tokenId, uint256 seed)
        private
        returns (TokenTraits memory tt, uint256 ttHash)
    {
        // generate traits from seed
        tt = selectTraits(seed);

        // hash to check if the token is unique
        ttHash = structToHash(tt);
        if (existingCombinations[ttHash] == 0) {
            tokenTraits[tokenId] = tt;
            existingCombinations[ttHash] = tokenId;
            return (tt, ttHash);
        }

        // If it's here, then the generated traits collided with another
        // set of traits. Hopefully this won't happen.

        // generates a new seed combining the current seed and the tokenId
        uint256 newSeed = uint256(keccak256(abi.encode(seed, tokenId)));

        // recursive call D:
        return _generateNonDuplicatedTokenTraits(tokenId, newSeed);
    }

    /// @dev select traits based on the seed value.
    /// @param seed a uint256 to derive traits from
    /// @return tt the TokenTraits
    function selectTraits(uint256 seed)
        private
        view
        returns (TokenTraits memory tt)
    {
        tt.exists = true;
        tt.isVampire = (seed & 0xFFFF) % 10 == 0;
        uint8 shift = tt.isVampire ? 9 : 0;
        seed >>= 16;
        tt.skin = selectTrait(uint16(seed & 0xFFFF), 0 + shift);
        seed >>= 16;
        tt.face = selectTrait(uint16(seed & 0xFFFF), 1 + shift);
        seed >>= 16;
        tt.clothes = selectTrait(uint16(seed & 0xFFFF), 2 + shift);
        seed >>= 16;
        tt.pants = selectTrait(uint16(seed & 0xFFFF), 3 + shift);
        seed >>= 16;
        tt.boots = selectTrait(uint16(seed & 0xFFFF), 4 + shift);
        seed >>= 16;
        tt.accessory = selectTrait(uint16(seed & 0xFFFF), 5 + shift);
        seed >>= 16;
        tt.hair = selectTrait(uint16(seed & 0xFFFF), 6 + shift);
        seed >>= 16;
        tt.cape = selectTrait(uint16(seed & 0xFFFF), 7 + shift);
        seed >>= 16;
        tt.predatorIndex = selectTrait(uint16(seed & 0xFFFF), 8 + shift);
    }

    /// @dev select a trait from the traitType
    /// @param seed a uint256 number to get the trait value from
    /// @param traitType the trait type
    function selectTrait(uint16 seed, uint8 traitType)
        private
        view
        returns (uint8)
    {
        uint8 trait = uint8(seed) % uint8(RARITIES[traitType].length);
        if (seed >> 8 < RARITIES[traitType][trait]) return trait;
        return ALIASES[traitType][trait];
    }

    /// @dev hash a TokenTraits struct
    /// @param tt the TokenTraits struct
    /// @return the uint256 hash
    function structToHash(TokenTraits memory tt)
        private
        pure
        returns (uint256)
    {
        return
            uint256(
                bytes32(
                    abi.encodePacked(
                        tt.isVampire,
                        tt.skin,
                        tt.face,
                        tt.clothes,
                        tt.pants,
                        tt.boots,
                        tt.accessory,
                        tt.hair,
                        tt.cape,
                        tt.predatorIndex
                    )
                )
            );
    }

    /// ==== State Control

    /// @notice set the new merkle tree root for allow-list
    function setMerkleTreeRoot(bytes32 newMerkleTreeRoot) external onlyOwner {
        _setMerkleTreeRoot(newMerkleTreeRoot);
    }

    /// @notice set the max amount of gen 0 tokens
    function setPaidTokens(uint256 _PAID_TOKENS) external onlyOwner {
        require(PAID_TOKENS != _PAID_TOKENS, "NO_CHANGES");
        PAID_TOKENS = _PAID_TOKENS;
    }

    /// @notice pause/unpause mintWithEthPresale function
    function setMintWithEthPresalePaused(bool paused) external onlyOwner {
        require(paused != mintWithEthPresalePaused, "NO_CHANGES");
        mintWithEthPresalePaused = paused;
    }

    /// @notice pause/unpause mintWithEth function
    function setMintWithEthPaused(bool paused) external onlyOwner {
        require(paused != mintWithEthPaused, "NO_CHANGES");
        mintWithEthPaused = paused;
    }

    /// @notice pause/unpause mintFromController function
    function setMintFromControllerPaused(bool paused) external onlyOwner {
        require(paused != mintFromControllerPaused, "NO_CHANGES");
        mintFromControllerPaused = paused;
    }

    /// @notice pause/unpause token reveal functions
    function setRevealPaused(bool paused) external onlyOwner {
        require(paused != revealPaused, "NO_CHANGES");
        revealPaused = paused;
    }

    /// @notice set the contract for the traits rendering
    /// @param _traits the contract address
    function setTraits(address _traits) external onlyOwner {
        traits = ITraits(_traits);
    }

    /// @notice add controller authority to an address
    /// @param _controller address to the game controller
    function addController(address _controller) external onlyOwner {
        controllers[_controller] = true;
    }

    /// @notice remove controller authority from an address
    /// @param _controller address to the game controller
    function removeController(address _controller) external onlyOwner {
        controllers[_controller] = false;
    }

    /// ==== Withdraw

    /// @notice withdraw the ether from the contract
    function withdraw() external onlyOwner {
        uint256 contractBalance = address(this).balance;
        // solhint-disable-next-line avoid-low-level-calls
        (bool sent, ) = splitter.call{value: contractBalance}("");
        require(sent, "FAILED_TO_WITHDRAW");
    }

    /// @notice withdraw ERC20 tokens from the contract
    /// people always randomly transfer ERC20 tokens to the
    /// @param erc20TokenAddress the ERC20 token address
    /// @param recipient who will get the tokens
    /// @param amount how many tokens
    function withdrawERC20(
        address erc20TokenAddress,
        address recipient,
        uint256 amount
    ) external onlyOwner {
        IERC20 erc20Contract = IERC20(erc20TokenAddress);
        bool sent = erc20Contract.transfer(recipient, amount);
        require(sent, "ERC20_WITHDRAW_FAILED");
    }

    /// @notice reserve some tokens for the team. Can only reserve gen 0 tokens
    /// we also need token 0 to so ssetup market places befor mint
    function reserve(address to, uint256 amount) external onlyOwner {
        require(totalSupply() + amount < PAID_TOKENS);
        uint256 supply = totalSupply();
        for (uint8 i = 0; i < amount; i++) {
            uint256 tokenId = supply + i;
            _safeMint(to, tokenId);
        }
    }

    /// @notice delete all entries in the seeds and seedTokenBoundaries arrays
    /// just in case something weird happens
    function cleanSeeds() external onlyOwner {
        require(seeds.length > 0, "NO_SEEDS");
        for (uint256 i = 0; i < seeds.length; i++) {
            delete seeds[i];
            delete seedTokenBoundaries[i];
        }
    }

    /// @notice set the price for requesting a random number to Chainlink VRF
    /// Note that the base link token has 18 zeroes.
    function setVRFPrice(uint256 _LINK_VRF_PRICE) external onlyOwner {
        require(_LINK_VRF_PRICE != LINK_VRF_PRICE, "NO_CHANGES");
        LINK_VRF_PRICE = _LINK_VRF_PRICE;
    }

    /// @notice owner request reveal seed, just in case something goes wrong
    function requestRevealSeed() external onlyOwner {
        requestRandomness(KEY_HASH, LINK_VRF_PRICE);
    }

    /// ==== IVampireGameControls Overrides

    /// @notice see {IVampireGameControls.mintFromController(receiver, amount)}
    function mintFromController(address receiver, uint256 amount)
        external
        override
    {
        require(!mintFromControllerPaused, "MINT_FROM_CONTROLLER_PAUSED");
        require(controllers[_msgSender()], "NOT_AUTHORIZED");
        require(totalSupply() + amount <= MAX_SUPPLY, "NOT_ENOUGH_TOKENS");
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = totalSupply();
            _safeMint(receiver, tokenId);
        }
    }

    /// @notice for a game controller to reveal the metadata of multiple token ids
    function controllerRevealTokens(
        uint256[] calldata tokenIds,
        uint256[] calldata _seeds
    ) external override onlyControllers {
        require(!revealPaused, "REVEAL_PAUSED");
        require(
            tokenIds.length == seeds.length,
            "INPUTS_SHOULD_HAVE_SAME_LENGTH"
        );
        for (uint256 i = 0; i < tokenIds.length; i++) {
            _revealToken(tokenIds[i], _seeds[i]);
        }
    }

    /// ==== IVampireGame Overrides

    /// @notice see {IVampireGame.getGenZeroSupply()}
    function getGenZeroSupply() external view override returns (uint256) {
        return PAID_TOKENS;
    }

    /// @notice see {IVampireGame.getMaxSupply()}
    function getMaxSupply() external view override returns (uint256) {
        return MAX_SUPPLY;
    }

    /// @notice see {IVampireGame.getTokenTraits(tokenId)}
    function getTokenTraits(uint256 tokenId)
        external
        view
        override
        returns (TokenTraits memory)
    {
        return tokenTraits[tokenId];
    }

    /// @notice see {IVampireGame.isTokenRevealed(tokenId)}
    function isTokenRevealed(uint256 tokenId)
        public
        view
        override
        returns (bool)
    {
        return tokenTraits[tokenId].exists;
    }

    /// ==== ERC721 Overrides

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        // Hardcode approval of game controllers
        if (!controllers[_msgSender()])
            require(
                _isApprovedOrOwner(_msgSender(), tokenId),
                "ERC721: transfer caller is not owner nor approved"
            );
        _transfer(from, to, tokenId);
    }

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

    /// ==== Chainlink VRF Overrides

    /// @notice Fulfills randomness from Chainlink VRF
    /// @param requestId returned id of VRF request
    /// @param randomness random number from VRF
    function fulfillRandomness(bytes32 requestId, uint256 randomness)
        internal
        override
    {
        uint256 minted = totalSupply();

        // the amount of tokens minted has to be greater than the latest recorded
        // seed boundary, otherwise it means that there is already a seed for tokens
        // up to the current amount of tokens
        if (
            seedTokenBoundaries.length == 0 ||
            minted > seedTokenBoundaries[seedTokenBoundaries.length - 1]
        ) {
            seeds.push(randomness);
            seedTokenBoundaries.push(minted);
        }
        // Otherwise we discard the number. I'm hoping this doesn't happen though :D
        // More info: I'm hoping that this won't happen bevause we'll only ask for seeds
        // on spaced enough intervals, but not guaranteeing it in the contract
    }
}

File 2 of 25 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 3 of 25 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 5 of 25 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 25 : Arrays.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

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

import "./interfaces/LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

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

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    internal
    virtual;

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

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

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

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

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

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

File 8 of 25 : AllowList.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/// @title AllowList
/// @notice Adds simple merkle-tree based allow-list functionality to a contract.
contract AllowList {
    /// @notice stores the Merkle Tree root.
    bytes32 internal _merkleTreeRoot;

    /// @notice Sets the new merkle tree root
    /// @param newMerkleTreeRoot the new root of the merkle tree
    function _setMerkleTreeRoot(bytes32 newMerkleTreeRoot) internal {
        require(_merkleTreeRoot != newMerkleTreeRoot, "NO_CHANGES");
        _merkleTreeRoot = newMerkleTreeRoot;
    }

    /// @notice test if an address is part of the merkle tree
    /// @param _address the address to verify
    /// @param proof array of other hashes for proof calculation
    /// @return true if the address is part of the merkle tree
    function isAddressInAllowList(address _address, bytes32[] calldata proof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_address));
        return MerkleProof.verify(proof, _merkleTreeRoot, leaf);
    }
}

File 9 of 25 : TokenTraits.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

struct TokenTraits {
    /// @dev every initialised token should have this as true
    /// this is just used to check agains a non-initialized struct
    bool exists;
    bool isVampire;
    // Shared Traits
    uint8 skin;
    uint8 face;
    uint8 clothes;
    // Human-only Traits
    uint8 pants;
    uint8 boots;
    uint8 accessory;
    uint8 hair;
    // Vampire-only Traits
    uint8 cape;
    uint8 predatorIndex;
}

File 10 of 25 : ITraits.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

interface ITraits {
  function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 25 : IVampireGame.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

import "./traits/TokenTraits.sol";

/// @notice Interface to interact with the VampireGame contract
interface IVampireGame {
    /// @notice get the total supply of gen-0
    function getGenZeroSupply() external view returns (uint256);

    /// @notice get the total supply of tokens
    function getMaxSupply() external view returns (uint256);

    /// @notice get the TokenTraits for a given tokenId
    function getTokenTraits(uint256 tokenId) external view returns (TokenTraits memory);

    /// @notice returns true if a token is aleady revealed
    function isTokenRevealed(uint256 tokenId) external view returns (bool);
}

/// @notice Interface to control parts of the VampireGame ERC 721
interface IVampireGameControls {
    /// @notice mint any amount of nft to any address
    /// Requirements:
    /// - message sender should be an allowed address (game contract)
    /// - amount + totalSupply() has to be smaller than MAX_SUPPLY
    function mintFromController(address receiver, uint256 amount) external;

    /// @notice reveal a list of tokens using specific seeds for each
    function controllerRevealTokens(uint256[] calldata tokenIds, uint256[] calldata _seeds) external;
}

File 12 of 25 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 13 of 25 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 14 of 25 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 25 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 16 of 25 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 18 of 25 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 20 of 25 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 21 of 25 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 22 of 25 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @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 / b + (a % b == 0 ? 0 : 1);
    }
}

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

interface LinkTokenInterface {

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

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

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

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

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

  function increaseApproval(
    address spender,
    uint256 subtractedValue
  ) external;

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

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

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

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

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

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

}

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

contract VRFRequestIDBase {

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

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

File 25 of 25 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_LINK_KEY_HASH","type":"bytes32"},{"internalType":"address","name":"_LINK_ADDRESS","type":"address"},{"internalType":"address","name":"_LINK_VRF_COORDINATOR_ADDRESS","type":"address"},{"internalType":"uint256","name":"_LINK_VRF_PRICE","type":"uint256"},{"internalType":"uint256","name":"_MINT_PRICE","type":"uint256"},{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"},{"internalType":"uint256","name":"_MAX_PER_ADDRESS","type":"uint256"},{"internalType":"uint256","name":"_MAX_PER_ADDRESS_PRESALE","type":"uint256"},{"internalType":"uint256","name":"_SEED_BATCH_SIZE","type":"uint256"},{"internalType":"uint256","name":"_PAID_TOKENS","type":"uint256"},{"internalType":"address","name":"_splitter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ALIASES","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KEY_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LINK_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LINK_VRF_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS_PRESALE","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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"RARITIES","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEED_BATCH_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMintedByAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cleanSeeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_seeds","type":"uint256[]"}],"name":"controllerRevealTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"controllers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"existingCombinations","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":[],"name":"getGenZeroSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenTraits","outputs":[{"components":[{"internalType":"bool","name":"exists","type":"bool"},{"internalType":"bool","name":"isVampire","type":"bool"},{"internalType":"uint8","name":"skin","type":"uint8"},{"internalType":"uint8","name":"face","type":"uint8"},{"internalType":"uint8","name":"clothes","type":"uint8"},{"internalType":"uint8","name":"pants","type":"uint8"},{"internalType":"uint8","name":"boots","type":"uint8"},{"internalType":"uint8","name":"accessory","type":"uint8"},{"internalType":"uint8","name":"hair","type":"uint8"},{"internalType":"uint8","name":"cape","type":"uint8"},{"internalType":"uint8","name":"predatorIndex","type":"uint8"}],"internalType":"struct TokenTraits","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isAddressInAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintFromController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintFromControllerPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintWithETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWithETHPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintWithEthPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWithEthPresalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestRevealSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"revealGenZeroTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"","type":"uint256"}],"name":"seedTokenBoundaries","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"newMerkleTreeRoot","type":"bytes32"}],"name":"setMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setMintFromControllerPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setMintWithEthPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setMintWithEthPresalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PAID_TOKENS","type":"uint256"}],"name":"setPaidTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setRevealPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_traits","type":"address"}],"name":"setTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_LINK_VRF_PRICE","type":"uint256"}],"name":"setVRFPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenTraits","outputs":[{"internalType":"bool","name":"exists","type":"bool"},{"internalType":"bool","name":"isVampire","type":"bool"},{"internalType":"uint8","name":"skin","type":"uint8"},{"internalType":"uint8","name":"face","type":"uint8"},{"internalType":"uint8","name":"clothes","type":"uint8"},{"internalType":"uint8","name":"pants","type":"uint8"},{"internalType":"uint8","name":"boots","type":"uint8"},{"internalType":"uint8","name":"accessory","type":"uint8"},{"internalType":"uint8","name":"hair","type":"uint8"},{"internalType":"uint8","name":"cape","type":"uint8"},{"internalType":"uint8","name":"predatorIndex","type":"uint8"}],"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":[],"name":"traits","outputs":[{"internalType":"contract ITraits","name":"","type":"address"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20TokenAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101a06040526017805463ffffffff60a01b1916630101010160a01b1790553480156200002b57600080fd5b50604051620059ad380380620059ad8339810160408190526200004e9162001169565b604080518082018252601081526f5468652056616d706972652047616d6560801b6020808301918252835180850190945260058452645647414d4560d81b9084015281518c938e93929091620000a79160009162001003565b508051620000bd90600190602084019062001003565b505050620000da620000d462000fad60201b60201c565b62000fb1565b6001600c556001600160601b0319606092831b811660a090815291831b811660809081528d841b8216610160526101408f9052600e8c905560c08b905260e08a90526101008990526101208890526010879055600f86815585851b90921661018052604080519384018152603284526020840183905283019190915260fa9282019290925260ff918101919091526200017890601890600562001092565b506040805160a081018252600380825260046020830181905292820192909252600060608201526080810191909152620001b790602a90600562001092565b506040805161026081018252608580825260bd60208301819052603993830184905260ff606084015260f3608084015260a08301829052607260c08401819052608760e085015260a8610100850152602661012085015260de6101408501526101608401859052605f6101808501526101a0840185905260986101c08501526101e08401526102008301939093526102208201526102408101919091526200026490601990601362001092565b506040805161026081018252600180825260006020830152600392820183905260608201526080810182905260a0810182905260c0810191909152600460e082018190526007610100830152610120820181905260086101408301819052610160830191909152610180820152600a6101a082018190526101c082018190526101e082015260126102008201819052610220820152600e6102408201526200031190602b90601362001092565b50604080516103808101825260b5815260e06020820181905260939282019290925260ec606082015260dc608082015260a860a08083019190915260c0820152605482820181905260ad610100830152610120820183905260dd61014083015260fe610160830152608c610180830181905260fc6101a084018190526101c084019490945260fa6101e0840152606461020084015260cf61022084015261024083019190915261026082019290925260c46102808201526102a0810182905260e46102c08201526102e0810182905260ff61030082015260b761032082015260f16103408201526103608101919091526200041190601a90601c62001092565b506040805161038081018252600180825260006020830152600392820183905260608201526080810182905260a0810191909152600460c08201819052600b60e0830181905261010083018190526101208301919091526009610140830152600a610160830152600d61018083018190526101a08301919091526101c0820152600e6101e0820152600f6102008201819052610220820152601461024082018190526011610260830152601361028083015260186102a083018190526102c08301919091526102e082018190526016610300830152601a61032083018190526103408301919091526103608201526200050f90602c90601c62001092565b506040805161020081018252607e815260ab602082015260e18183015260f06060820181905260e36080830152607060a08084019190915260ff60c084015260e083019190915260d961010083015260506101208301819052610140830184905261016083019190915260e46101808301526101a08201526101c081019190915260a76101e0820152620005a890601b90601062001092565b506040805161020081018252600280825260006020830152600192820192909252606081019190915260036080820181905260a0820152600460c08201819052600660e0830181905260076101008401819052610120840192909252610140830152610160820152600861018082018190526101a0820152600f6101c0820152600c6101e08201526200064090602d90601062001092565b506040805160c0810182526096808252601e6020830152603c92820183905260ff6060830152608082015260a08101919091526200068390601c90600662001092565b506040805160c081018252600080825260036020830181905292820183905260608201526080810191909152600460a0820152620006c690602e90600662001092565b50604080516102808101825260d2815260876020820152605091810182905260f5606082015260eb6080820152606e60a08083019190915260c08201839052606460e0830181905260be610100840152610120830181905260ff61014084015261016083019190915260d76101808301526101a08201929092526101c0810182905260b96101e082015260fa61020082015260f061022082018190526102408201526102608101919091526200078190601d90601462001092565b506040805161028081018252600080825260208201819052600392820183905260608201526080810191909152600460a08201819052600a60c08301819052600c60e08401819052610100840192909252601061012084018190526008610140850152610160840181905261018084019190915260116101a0840181905260126101c085018190526101e0850193909352600f6102008501526102208401919091526102408301526102608201526200083f90602f90601462001092565b50604080516101408101825260fa81526073602082015260649181018290526028606082015260af6080820181905260ff60a083015260b460c083015260e082019290925261010081019190915260b9610120820152620008a590601e90600a62001092565b5060408051610140810182526000808252602082018190526004928201839052600660608301819052608083019190915260a0820192909252600560c0820152600960e082015261010081019190915260086101208201526200090d90603090600a62001092565b50604080516020810190915260ff81526200092d90601f90600162001092565b506040805160208101909152600081526200094d90603190600162001092565b5060408051602080820190925260ff81526200096c9190600162001092565b506040805160208101909152600081526200098c90603290600162001092565b50604080516101a08101825260ea80825260ef60208301529181018290526060810182905260ff608082015260a0810182905260f460c082015260f960e082015260826101008201526101208101829052610140810182905260f761016082015261018081019190915262000a0690602190600d62001092565b50604080516101a081018252600080825260208201526001918101919091526002606082015260036080820152600460a0820152600560c0820152600660e0820152600c61010082015260076101208201526009610140820152600a610160820152600b61018082015262000a8090603390600d62001092565b50604080516101e081018252602d80825260ff6020830181905260a593830193909352603c606083015260c36080830181905260a083015260c0820152607860e08201819052604b6101008301819052610120830152606961014083015261016082015261018081019190915260b46101a082015260966101c082015262000b0d90602290600f62001092565b50604080516101e081018252600180825260006020830152918101919091526004606082018190526002608083015260a0820152600560c08201819052600c60e083018190526101008301819052600d61012084018190526101408401819052600e6101608501526101808401929092526101a08301526101c082015262000b9a90603490600f62001092565b5060408051610360810182526093815260b4602082015260f69181019190915260c9606082015260d2608082015260fc60a082015260db60c082015260bd60e082015260c3610100820152609c61012082015260b161014082015260ab61016082015260a561018082015260e16101a082015260876101c082018190526101e0820181905260ba61020083015261022082018190526096610240830181905260f3610260840152610280830182905260ff6102a084015260e76102c0840152608d6102e084015260b761030084015261032083015261034082015262000c8590602390601b62001092565b5060408051610360810182526002808252602082018190526000928201929092526060810191909152600360808201819052600460a08301819052600560c08401819052600660e0850181905260076101008601526101208501849052610140850193909352610160840182905261018084019190915260086101a08401526101c08301526101e0820152600d610200820181905261022082015260136102408201819052601061026083015261028082018190526102a082015260156102c082018190526102e082018190526103008201819052610320820152601661034082015262000d7890603590601b62001092565b50604080516020810190915260ff815262000d9890602490600162001092565b5060408051602081019091526000815262000db890603690600162001092565b50604080516020810190915260ff815262000dd890602590600162001092565b5060408051602081019091526000815262000df890603790600162001092565b50604080516020810190915260ff815262000e1890602690600162001092565b5060408051602081019091526000815262000e3890603890600162001092565b50604080516020810190915260ff815262000e5890602790600162001092565b5060408051602081019091526000815262000e7890603990600162001092565b506040805161012081018252600980825260208201819052609692820192909252605a60608201526080810182905260d260a082015260c0810182905260e0810182905260ff61010082015262000ed3916028919062001092565b50604080516101208101825260058082526020820181905260009282019290925260026060820152600860808201819052600360a083015260c0820181905260e082015261010081019190915262000f3090603a90600962001092565b506040805160808101825260ff81526008602082015260a0918101919091526049606082015262000f6690602990600462001092565b5060408051608081018252600080825260208201819052918101919091526002606082015262000f9b90603b90600462001092565b50505050505050505050505062001241565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620010119062001204565b90600052602060002090601f01602090048101928262001035576000855562001080565b82601f106200105057805160ff191683800117855562001080565b8280016001018555821562001080579182015b828111156200108057825182559160200191906001019062001063565b506200108e92915062001135565b5090565b82805482825590600052602060002090601f01602090048101928215620010805791602002820160005b83821115620010fc57835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302620010bc565b80156200112b5782816101000a81549060ff0219169055600101602081600001049283019260010302620010fc565b50506200108e9291505b5b808211156200108e576000815560010162001136565b80516001600160a01b03811681146200116457600080fd5b919050565b60008060008060008060008060008060006101608c8e0312156200118c57600080fd5b8b519a506200119e60208d016200114c565b9950620011ae60408d016200114c565b985060608c0151975060808c0151965060a08c0151955060c08c0151945060e08c015193506101008c015192506101208c01519150620011f26101408d016200114c565b90509295989b509295989b9093969950565b600181811c908216806200121957607f821691505b602082108114156200123b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c60c05160e0516101005161012051610140516101605160601c6101805160601c6146b0620012fd600039600061139101526000610d4f01526000818161073d0152818161108d0152612df101526000818161051801526117a30152600081816104ac015261207a0152600081816105cc015281816106c70152611da8015260008181610a4101528181611896015261216d015260008181611ba801526128c30152600061289401526146b06000f3fe6080604052600436106103e45760003560e01c80638ff378ce11610208578063c6b7773f11610118578063e1860ce7116100ab578063eedac3a61161007a578063eedac3a614610d3d578063f0503e8014610d71578063f2fde38b14610d91578063f6a74ed714610db1578063fc1ea44314610dd157600080fd5b8063e1860ce714610c9e578063e1fc334f14610cbe578063e5956db714610cde578063e985e9c514610cf457600080fd5b8063da8c229e116100e7578063da8c229e14610b31578063dab8a58e14610b61578063dd6302ef14610b82578063e05c57bf14610ba257600080fd5b8063c6b7773f14610a8f578063c87b56dd14610ad1578063cc47a40b14610af1578063d6d6b9ec14610b1157600080fd5b8063a4a8be851161019b578063b88d4fde1161016a578063b88d4fde146109ef578063bf31201914610a0f578063c002d23d14610a2f578063c084f54014610a63578063c58bf0a314610a7957600080fd5b8063a4a8be851461096b578063a69956eb1461098c578063a7fc7a07146109bc578063b482d83f146109dc57600080fd5b80639d0c054d116101d75780639d0c054d146108de578063a1b8f374146108fe578063a22cb4651461092b578063a2ecc4031461094b57600080fd5b80638ff378ce1461085b57806394985ddd1461087c57806394e568471461089c57806395d89b41146108c957600080fd5b806342842e0e116103035780635aac17ef1161029657806370a082311161026557806370a08231146107d3578063715018a6146107f357806371d26919146108085780637cd88f451461081d5780638da5cb5b1461083d57600080fd5b80635aac17ef1461075f5780635c520a4b146107725780636352211e146107935780636f4f7366146107b357600080fd5b80634c0f38c2116102d25780634c0f38c2146106b85780634f6ccce7146106eb57806350dc46561461070b57806351dc86a51461072b57600080fd5b806342842e0e1461064357806344004cc114610663578063460348fa146106835780634a9fedb1146106a357600080fd5b80631f3a8fb41161037b57806332cb6b0c1161034a57806332cb6b0c146105ba5780633431a753146105ee57806338014ba01461060e5780633ccfd60b1461062e57600080fd5b80631f3a8fb41461053a57806323b872dd1461055a5780632f3b100e1461057a5780632f745c591461059a57600080fd5b80630aaef285116103b75780630aaef2851461049a57806315e1e831146104dc57806318160ddd146104f15780631a454b2c1461050657600080fd5b806301ffc9a7146103e957806306fdde031461041e578063081812fc14610440578063095ea7b314610478575b600080fd5b3480156103f557600080fd5b50610409610404366004613ff2565b610df1565b60405190151581526020015b60405180910390f35b34801561042a57600080fd5b50610433610e1c565b6040516104159190614202565b34801561044c57600080fd5b5061046061045b366004613fb7565b610eae565b6040516001600160a01b039091168152602001610415565b34801561048457600080fd5b50610498610493366004613ea5565b610f48565b005b3480156104a657600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610415565b3480156104e857600080fd5b5061049861105e565b3480156104fd57600080fd5b506008546104ce565b34801561051257600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b34801561054657600080fd5b50610498610555366004613f7d565b6110b7565b34801561056657600080fd5b50610498610575366004613d34565b611132565b34801561058657600080fd5b50610498610595366004613f7d565b61117a565b3480156105a657600080fd5b506104ce6105b5366004613ea5565b6111f5565b3480156105c657600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105fa57600080fd5b50610498610609366004613fb7565b61128b565b34801561061a57600080fd5b50610498610629366004613f7d565b6112dc565b34801561063a57600080fd5b50610498611355565b34801561064f57600080fd5b5061049861065e366004613d34565b61143b565b34801561066f57600080fd5b5061049861067e366004613d34565b611456565b34801561068f57600080fd5b5061040961069e366004613e1b565b611555565b3480156106af57600080fd5b50600f546104ce565b3480156106c457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006104ce565b3480156106f757600080fd5b506104ce610706366004613fb7565b6115db565b34801561071757600080fd5b50610498610726366004613fb7565b61166e565b34801561073757600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b61049861076d3660046140b5565b6116a1565b34801561077e57600080fd5b5060175461040990600160a01b900460ff1681565b34801561079f57600080fd5b506104606107ae366004613fb7565b61193a565b3480156107bf57600080fd5b506104986107ce366004613ce6565b6119b1565b3480156107df57600080fd5b506104ce6107ee366004613ce6565b6119fd565b3480156107ff57600080fd5b50610498611a84565b34801561081457600080fd5b50610498611aba565b34801561082957600080fd5b506104ce610838366004613fb7565b611b7c565b34801561084957600080fd5b50600b546001600160a01b0316610460565b34801561086757600080fd5b5060175461040990600160b81b900460ff1681565b34801561088857600080fd5b50610498610897366004613fd0565b611b9d565b3480156108a857600080fd5b506108bc6108b7366004613fb7565b611c1f565b604051610415919061433c565b3480156108d557600080fd5b50610433611ced565b3480156108ea57600080fd5b506104986108f9366004613ea5565b611cfc565b34801561090a57600080fd5b506104ce610919366004613fb7565b60146020526000908152604090205481565b34801561093757600080fd5b50610498610946366004613e6e565b611e2e565b34801561095757600080fd5b50610498610966366004613f7d565b611ef3565b34801561097757600080fd5b5060175461040990600160a81b900460ff1681565b34801561099857600080fd5b506104096109a7366004613fb7565b60009081526013602052604090205460ff1690565b3480156109c857600080fd5b506104986109d7366004613ce6565b611f6e565b6104986109ea36600461409a565b611fbc565b3480156109fb57600080fd5b50610498610a0a366004613d70565b61220f565b348015610a1b57600080fd5b50610498610a2a366004613fb7565b612247565b348015610a3b57600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000081565b348015610a6f57600080fd5b506104ce600f5481565b348015610a8557600080fd5b506104ce60105481565b348015610a9b57600080fd5b50610abf610aaa366004613ce6565b60156020526000908152604090205460ff1681565b60405160ff9091168152602001610415565b348015610add57600080fd5b50610433610aec366004613fb7565b612298565b348015610afd57600080fd5b50610498610b0c366004613ea5565b612397565b348015610b1d57600080fd5b50610abf610b2c366004613fd0565b61242b565b348015610b3d57600080fd5b50610409610b4c366004613ce6565b60166020526000908152604090205460ff1681565b348015610b6d57600080fd5b5060175461040990600160b01b900460ff1681565b348015610b8e57600080fd5b50610abf610b9d366004613fd0565b612471565b348015610bae57600080fd5b50610c3b610bbd366004613fb7565b60136020526000908152604090205460ff80821691610100810482169162010000820481169163010000008104821691640100000000820481169165010000000000810482169166010000000000008204811691600160381b8104821691600160401b8204811691600160481b8104821691600160501b909104168b565b604080519b15158c5299151560208c015260ff988916998b019990995295871660608a0152938616608089015291851660a0880152841660c0870152831660e0860152821661010085015281166101208401521661014082015261016001610415565b348015610caa57600080fd5b50610498610cb9366004613f11565b612481565b348015610cca57600080fd5b50601754610460906001600160a01b031681565b348015610cea57600080fd5b506104ce600e5481565b348015610d0057600080fd5b50610409610d0f366004613d01565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d4957600080fd5b506104607f000000000000000000000000000000000000000000000000000000000000000081565b348015610d7d57600080fd5b506104ce610d8c366004613fb7565b6125c5565b348015610d9d57600080fd5b50610498610dac366004613ce6565b6125d5565b348015610dbd57600080fd5b50610498610dcc366004613ce6565b61266d565b348015610ddd57600080fd5b50610498610dec366004613ecf565b6126b8565b60006001600160e01b0319821663780e9d6360e01b1480610e165750610e16826127d2565b92915050565b606060008054610e2b90614542565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5790614542565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610f2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f538261193a565b9050806001600160a01b0316836001600160a01b03161415610fc15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f23565b336001600160a01b0382161480610fdd5750610fdd8133610d0f565b61104f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f23565b6110598383612822565b505050565b600b546001600160a01b031633146110885760405162461bcd60e51b8152600401610f2390614267565b6110b47f0000000000000000000000000000000000000000000000000000000000000000600e54612890565b50565b600b546001600160a01b031633146110e15760405162461bcd60e51b8152600401610f2390614267565b601760169054906101000a900460ff16151581151514156111145760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526016602052604090205460ff1661116f576111533382612a23565b61116f5760405162461bcd60e51b8152600401610f23906142eb565b611059838383612b16565b600b546001600160a01b031633146111a45760405162461bcd60e51b8152600401610f2390614267565b601760149054906101000a900460ff16151581151514156111d75760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160a01b0260ff60a01b19909216919091179055565b6000611200836119fd565b82106112625760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610f23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146112b55760405162461bcd60e51b8152600401610f2390614267565b80600f5414156112d75760405162461bcd60e51b8152600401610f23906142c7565b600f55565b600b546001600160a01b031633146113065760405162461bcd60e51b8152600401610f2390614267565b60178054906101000a900460ff16151581151514156113375760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160b81b0260ff60b81b19909216919091179055565b600b546001600160a01b0316331461137f5760405162461bcd60e51b8152600401610f2390614267565b60405147906000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169083908381818185875af1925050503d80600081146113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113f1565b606091505b50509050806114375760405162461bcd60e51b81526020600482015260126024820152714641494c45445f544f5f574954484452415760701b6044820152606401610f23565b5050565b6110598383836040518060200160405280600081525061220f565b600b546001600160a01b031633146114805760405162461bcd60e51b8152600401610f2390614267565b60405163a9059cbb60e01b81526001600160a01b03838116600483015260248201839052849160009183169063a9059cbb90604401602060405180830381600087803b1580156114cf57600080fd5b505af11580156114e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115079190613f9a565b90508061154e5760405162461bcd60e51b8152602060048201526015602482015274115490cc8c17d5d2551211149055d7d19052531151605a1b6044820152606401610f23565b5050505050565b6040516bffffffffffffffffffffffff19606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506115d284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612cc1565b95945050505050565b60006115e660085490565b82106116495760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610f23565b6008828154811061165c5761165c61462a565b90600052602060002001549050919050565b600b546001600160a01b031633146116985760405162461bcd60e51b8152600401610f2390614267565b6110b481612d70565b6002600c5414156116f45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f23565b6002600c55601754600160a01b900460ff16156117445760405162461bcd60e51b815260206004820152600e60248201526d14149154d0531157d4105554d15160921b6044820152606401610f23565b61174f338383611555565b61178e5760405162461bcd60e51b815260206004820152601060248201526f1393d517d25397d0531313d5d31254d560821b6044820152606401610f23565b3360009081526015602052604090205460ff167f00000000000000000000000000000000000000000000000000000000000000006117cc8583614480565b60ff1611156118145760405162461bcd60e51b815260206004820152601460248201527313505617d513d2d15397d4115497d5d05313115560621b6044820152606401610f23565b600f548460ff1661182460085490565b61182e9190614468565b111561184c5760405162461bcd60e51b8152600401610f239061429c565b60008460ff16116118905760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610f23565b346118be7f000000000000000000000000000000000000000000000000000000000000000060ff87166144b9565b146118f95760405162461bcd60e51b815260206004820152600b60248201526a57524f4e475f56414c554560a81b6044820152606401610f23565b6119038482614480565b336000818152601560205260409020805460ff191660ff939093169290921790915561192f9085612d97565b50506001600c555050565b6000818152600260205260408120546001600160a01b031680610e165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610f23565b600b546001600160a01b031633146119db5760405162461bcd60e51b8152600401610f2390614267565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611a685760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610f23565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314611aae5760405162461bcd60e51b8152600401610f2390614267565b611ab86000612e2d565b565b600b546001600160a01b03163314611ae45760405162461bcd60e51b8152600401610f2390614267565b601154611b1e5760405162461bcd60e51b81526020600482015260086024820152674e4f5f534545445360c01b6044820152606401610f23565b60005b6011548110156110b45760118181548110611b3e57611b3e61462a565b906000526020600020016000905560128181548110611b5f57611b5f61462a565b600091825260208220015580611b7481614577565b915050611b21565b60128181548110611b8c57600080fd5b600091825260209091200154905081565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611c155760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610f23565b6114378282612e7f565b611c27613c18565b50600090815260136020908152604091829020825161016081018452905460ff8082161515835261010080830482161515948401949094526201000082048116948301949094526301000000810484166060830152640100000000810484166080830152650100000000008104841660a083015266010000000000008104841660c0830152600160381b8104841660e0830152600160401b8104841692820192909252600160481b82048316610120820152600160501b90910490911661014082015290565b606060018054610e2b90614542565b601754600160b01b900460ff1615611d565760405162461bcd60e51b815260206004820152601b60248201527f4d494e545f46524f4d5f434f4e54524f4c4c45525f50415553454400000000006044820152606401610f23565b3360009081526016602052604090205460ff16611da65760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610f23565b7f000000000000000000000000000000000000000000000000000000000000000081611dd160085490565b611ddb9190614468565b1115611df95760405162461bcd60e51b8152600401610f239061429c565b60005b81811015611059576000611e0f60085490565b9050611e1b8482612f30565b5080611e2681614577565b915050611dfc565b6001600160a01b038216331415611e875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f23565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314611f1d5760405162461bcd60e51b8152600401610f2390614267565b601760159054906101000a900460ff1615158115151415611f505760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160a81b0260ff60a81b19909216919091179055565b600b546001600160a01b03163314611f985760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b6002600c54141561200f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f23565b6002600c55601754600160a81b900460ff16156120655760405162461bcd60e51b81526020600482015260146024820152731352539517d5d2551217d1551217d4105554d15160621b6044820152606401610f23565b3360009081526015602052604090205460ff167f00000000000000000000000000000000000000000000000000000000000000006120a38383614480565b60ff1611156120eb5760405162461bcd60e51b815260206004820152601460248201527313505617d513d2d15397d4115497d5d05313115560621b6044820152606401610f23565b600f548260ff166120fb60085490565b6121059190614468565b11156121235760405162461bcd60e51b8152600401610f239061429c565b60008260ff16116121675760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610f23565b346121957f000000000000000000000000000000000000000000000000000000000000000060ff85166144b9565b146121d05760405162461bcd60e51b815260206004820152600b60248201526a57524f4e475f56414c554560a81b6044820152606401610f23565b6121da8282614480565b336000818152601560205260409020805460ff191660ff93909316929092179091556122069083612d97565b50506001600c55565b6122193383612a23565b6122355760405162461bcd60e51b8152600401610f23906142eb565b61224184848484612f4a565b50505050565b600b546001600160a01b031633146122715760405162461bcd60e51b8152600401610f2390614267565b600e548114156122935760405162461bcd60e51b8152600401610f23906142c7565b600e55565b6000818152600260205260409020546060906001600160a01b03166123175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f23565b60175460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b15801561235b57600080fd5b505afa15801561236f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e16919081019061402c565b600b546001600160a01b031633146123c15760405162461bcd60e51b8152600401610f2390614267565b600f54816123ce60085490565b6123d89190614468565b106123e257600080fd5b60006123ed60085490565b905060005b828160ff16101561224157600061240c60ff831684614468565b90506124188582612f30565b508061242381614592565b9150506123f2565b6018826012811061243b57600080fd5b01818154811061244a57600080fd5b9060005260206000209060209182820401919006915091509054906101000a900460ff1681565b602a826012811061243b57600080fd5b3360009081526016602052604090205460ff166124d35760405162461bcd60e51b815260206004820152601060248201526f4f4e4c595f434f4e54524f4c4c45525360801b6044820152606401610f23565b601754600160b81b900460ff161561251d5760405162461bcd60e51b815260206004820152600d60248201526c14915591505317d4105554d151609a1b6044820152606401610f23565b601154831461256e5760405162461bcd60e51b815260206004820152601e60248201527f494e505554535f53484f554c445f484156455f53414d455f4c454e47544800006044820152606401610f23565b60005b8381101561154e576125b385858381811061258e5761258e61462a565b905060200201358484848181106125a7576125a761462a565b90506020020135612f7d565b806125bd81614577565b915050612571565b60118181548110611b8c57600080fd5b600b546001600160a01b031633146125ff5760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b0381166126645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f23565b6110b481612e2d565b600b546001600160a01b031633146126975760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b03166000908152601660205260409020805460ff19169055565b600b546001600160a01b031633146126e25760405162461bcd60e51b8152600401610f2390614267565b60005b818110156110595760008383838181106127015761270161462a565b9050602002013590506127138161312f565b61274d5760405162461bcd60e51b815260206004820152600b60248201526a10d0539517d4915591505360aa1b6044820152606401610f23565b600061275a601283613193565b90506000601182815481106127715761277161462a565b906000526020600020015483604051602001612797929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c90506127bc8382612f7d565b50505080806127ca90614577565b9150506126e5565b60006001600160e01b031982166380ac58cd60e01b148061280357506001600160e01b03198216635b5e139f60e01b145b80610e1657506301ffc9a760e01b6001600160e01b0319831614610e16565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906128578261193a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001612900929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b815260040161292d939291906141db565b602060405180830381600087803b15801561294757600080fd5b505af115801561295b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297f9190613f9a565b506000838152600d6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526129db906001614468565b6000858152600d6020526040902055612a1b8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b949350505050565b6000818152600260205260408120546001600160a01b0316612a9c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f23565b6000612aa78361193a565b9050806001600160a01b0316846001600160a01b03161480612ae25750836001600160a01b0316612ad784610eae565b6001600160a01b0316145b80612a1b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612a1b565b826001600160a01b0316612b298261193a565b6001600160a01b031614612b915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610f23565b6001600160a01b038216612bf35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f23565b612bfe83838361325e565b612c09600082612822565b6001600160a01b0383166000908152600360205260408120805460019290612c329084906144d8565b90915550506001600160a01b0382166000908152600360205260408120805460019290612c60908490614468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b8551811015612d65576000868281518110612ce357612ce361462a565b60200260200101519050808311612d25576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612d52565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612d5d81614577565b915050612cc6565b509092149392505050565b80600a541415612d925760405162461bcd60e51b8152600401610f23906142c7565b600a55565b6000612da260085490565b905060005b8260ff168160ff161015612241576000612dc460ff831684614468565b9050612dd08582612f30565b601054612dde826001614468565b612de891906145b2565b612e1a57612e187f0000000000000000000000000000000000000000000000000000000000000000600e54612890565b505b5080612e2581614592565b915050612da7565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612e8a60085490565b6012549091501580612ec5575060128054612ea7906001906144d8565b81548110612eb757612eb761462a565b906000526020600020015481115b15611059576011805460018082019092557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6801929092556012805492830181556000527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34449091015550565b611437828260405180602001604052806000815250613316565b612f55848484612b16565b612f6184848484613349565b6122415760405162461bcd60e51b8152600401610f2390614215565b600080612f8a8484613453565b91509150816013600086815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055506101208201518160000160096101000a81548160ff021916908360ff16021790555061014082015181600001600a6101000a81548160ff021916908360ff16021790555090505083601460008381526020019081526020016000208190555050505050565b60008181526013602052604081205460ff161561314e57506000919050565b60125461315d57506000919050565b60128054839190613170906001906144d8565b815481106131805761318061462a565b9060005260206000200154119050919050565b81546000906131a457506000610e16565b82546000905b808210156132005760006131be8383613666565b9050848682815481106131d3576131d361462a565b906000526020600020015411156131ec578091506131fa565b6131f7816001614468565b92505b506131aa565b600082118015613235575083856132186001856144d8565b815481106132285761322861462a565b9060005260206000200154145b1561324e576132456001836144d8565b92505050610e16565b509050610e16565b505092915050565b6001600160a01b0383166132b9576132b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6132dc565b816001600160a01b0316836001600160a01b0316146132dc576132dc8382613688565b6001600160a01b0382166132f35761105981613725565b826001600160a01b0316826001600160a01b0316146110595761105982826137d4565b6133208383613818565b61332d6000848484613349565b6110595760405162461bcd60e51b8152600401610f2390614215565b60006001600160a01b0384163b1561344b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061338d90339089908890889060040161419e565b602060405180830381600087803b1580156133a757600080fd5b505af19250505080156133d7575060408051601f3d908101601f191682019092526133d49181019061400f565b60015b613431573d808015613405576040519150601f19603f3d011682016040523d82523d6000602084013e61340a565b606091505b5080516134295760405162461bcd60e51b8152600401610f2390614215565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612a1b565b506001612a1b565b61345b613c18565b600061346683613966565b915061347182613adc565b60008181526014602052604090205490915061362757816013600086815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055506101208201518160000160096101000a81548160ff021916908360ff16021790555061014082015181600001600a6101000a81548160ff021916908360ff16021790555090505083601460008381526020019081526020016000208190555061365f565b604080516020808201869052818301879052825180830384018152606090920190925280519101206136598582613453565b92509250505b9250929050565b600061367560028484186144a5565b61368190848416614468565b9392505050565b60006001613695846119fd565b61369f91906144d8565b6000838152600760205260409020549091508082146136f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613737906001906144d8565b6000838152600960205260408120546008805493945090928490811061375f5761375f61462a565b9060005260206000200154905080600883815481106137805761378061462a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806137b8576137b8614614565b6001900381819060005260206000200160009055905550505050565b60006137df836119fd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661386e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f23565b6000818152600260205260409020546001600160a01b0316156138d35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f23565b6138df6000838361325e565b6001600160a01b0382166000908152600360205260408120805460019290613908908490614468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61396e613c18565b60018152613981600a61ffff84166145b2565b156020820181905260009061399757600061399a565b60095b60109390931c9290506139bb61ffff84166139b6836000614480565b613b3c565b60ff16604083015260109290921c916139dd61ffff84166139b6836001614480565b60ff16606083015260109290921c916139ff61ffff84166139b6836002614480565b60ff16608083015260109290921c91613a2161ffff84166139b6836003614480565b60ff1660a083015260109290921c91613a4361ffff84166139b6836004614480565b60ff1660c083015260109290921c91613a6561ffff84166139b6836005614480565b60ff1660e083015260109290921c91613a8761ffff84166139b6836006614480565b60ff1661010083015260109290921c91613aaa61ffff84166139b6836007614480565b60ff1661012083015260109290921c91613acd61ffff84166139b6836008614480565b60ff1661014083015250919050565b6020808201516040808401516060850151608086015160a087015160c088015160e08901516101008a01516101208b01516101408c0151985160009b613b249b9a91016140ff565b604051602081830303815290604052610e16906144ef565b60008060188360ff1660128110613b5557613b5561462a565b0154613b6190856145c6565b905060188360ff1660128110613b7957613b7961462a565b018160ff1681548110613b8e57613b8e61462a565b60009182526020918290209181049091015460ff601f9092166101000a90048116600886901c9091161015613bc4579050610e16565b602a8360ff1660128110613bda57613bda61462a565b018160ff1681548110613bef57613bef61462a565b90600052602060002090602091828204019190069054906101000a900460ff1691505092915050565b6040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290565b80356001600160a01b0381168114613c8b57600080fd5b919050565b60008083601f840112613ca257600080fd5b50813567ffffffffffffffff811115613cba57600080fd5b6020830191508360208260051b850101111561365f57600080fd5b803560ff81168114613c8b57600080fd5b600060208284031215613cf857600080fd5b61368182613c74565b60008060408385031215613d1457600080fd5b613d1d83613c74565b9150613d2b60208401613c74565b90509250929050565b600080600060608486031215613d4957600080fd5b613d5284613c74565b9250613d6060208501613c74565b9150604084013590509250925092565b60008060008060808587031215613d8657600080fd5b613d8f85613c74565b9350613d9d60208601613c74565b925060408501359150606085013567ffffffffffffffff811115613dc057600080fd5b8501601f81018713613dd157600080fd5b8035613de4613ddf82614440565b61440f565b818152886020838501011115613df957600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060408486031215613e3057600080fd5b613e3984613c74565b9250602084013567ffffffffffffffff811115613e5557600080fd5b613e6186828701613c90565b9497909650939450505050565b60008060408385031215613e8157600080fd5b613e8a83613c74565b91506020830135613e9a81614656565b809150509250929050565b60008060408385031215613eb857600080fd5b613ec183613c74565b946020939093013593505050565b60008060208385031215613ee257600080fd5b823567ffffffffffffffff811115613ef957600080fd5b613f0585828601613c90565b90969095509350505050565b60008060008060408587031215613f2757600080fd5b843567ffffffffffffffff80821115613f3f57600080fd5b613f4b88838901613c90565b90965094506020870135915080821115613f6457600080fd5b50613f7187828801613c90565b95989497509550505050565b600060208284031215613f8f57600080fd5b813561368181614656565b600060208284031215613fac57600080fd5b815161368181614656565b600060208284031215613fc957600080fd5b5035919050565b60008060408385031215613fe357600080fd5b50508035926020909101359150565b60006020828403121561400457600080fd5b813561368181614664565b60006020828403121561402157600080fd5b815161368181614664565b60006020828403121561403e57600080fd5b815167ffffffffffffffff81111561405557600080fd5b8201601f8101841361406657600080fd5b8051614074613ddf82614440565b81815285602083850101111561408957600080fd5b6115d2826020830160208601614516565b6000602082840312156140ac57600080fd5b61368182613cd5565b6000806000604084860312156140ca57600080fd5b613e3984613cd5565b600081518084526140eb816020860160208601614516565b601f01601f19169290920160200192915050565b8a151560f890811b82526001600160f81b03198b821b811660018401528a821b8116600284015289821b8116600384015288821b8116600484015287821b8116600584015286821b811660068401529085901b1660078201526000614173600883018560f81b6001600160f81b0319169052565b61418c600983018460f81b6001600160f81b0319169052565b50600a019a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906141d1908301846140d3565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006115d260608301846140d3565b60208152600061368160208301846140d3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704e4f545f454e4f5547485f544f4b454e5360781b604082015260600190565b6020808252600a90820152694e4f5f4348414e47455360b01b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8151151581526101608101602083015161435a602084018215159052565b50604083015161436f604084018260ff169052565b506060830151614384606084018260ff169052565b506080830151614399608084018260ff169052565b5060a08301516143ae60a084018260ff169052565b5060c08301516143c360c084018260ff169052565b5060e08301516143d860e084018260ff169052565b506101008381015160ff81168483015250506101208381015160ff81168483015250506101408381015160ff811684830152613256565b604051601f8201601f1916810167ffffffffffffffff8111828210171561443857614438614640565b604052919050565b600067ffffffffffffffff82111561445a5761445a614640565b50601f01601f191660200190565b6000821982111561447b5761447b6145e8565b500190565b600060ff821660ff84168060ff0382111561449d5761449d6145e8565b019392505050565b6000826144b4576144b46145fe565b500490565b60008160001904831182151516156144d3576144d36145e8565b500290565b6000828210156144ea576144ea6145e8565b500390565b80516020808301519190811015614510576000198160200360031b1b821691505b50919050565b60005b83811015614531578181015183820152602001614519565b838111156122415750506000910152565b600181811c9082168061455657607f821691505b6020821081141561451057634e487b7160e01b600052602260045260246000fd5b600060001982141561458b5761458b6145e8565b5060010190565b600060ff821660ff8114156145a9576145a96145e8565b60010192915050565b6000826145c1576145c16145fe565b500690565b600060ff8316806145d9576145d96145fe565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146110b457600080fd5b6001600160e01b0319811681146110b457600080fdfea264697066735822122083d7f0c7575df90acd1781fff54203829dbc3b2d967e863da10a040c82b8ce2464736f6c63430008070033aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79520000000000000000000000000000000000000000000000001bc16d674ec80000000000000000000000000000000000000000000000000000011059dd247b4000000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000026230e75989a76c4e7a5d939200243acf9b41d35

Deployed Bytecode

0x6080604052600436106103e45760003560e01c80638ff378ce11610208578063c6b7773f11610118578063e1860ce7116100ab578063eedac3a61161007a578063eedac3a614610d3d578063f0503e8014610d71578063f2fde38b14610d91578063f6a74ed714610db1578063fc1ea44314610dd157600080fd5b8063e1860ce714610c9e578063e1fc334f14610cbe578063e5956db714610cde578063e985e9c514610cf457600080fd5b8063da8c229e116100e7578063da8c229e14610b31578063dab8a58e14610b61578063dd6302ef14610b82578063e05c57bf14610ba257600080fd5b8063c6b7773f14610a8f578063c87b56dd14610ad1578063cc47a40b14610af1578063d6d6b9ec14610b1157600080fd5b8063a4a8be851161019b578063b88d4fde1161016a578063b88d4fde146109ef578063bf31201914610a0f578063c002d23d14610a2f578063c084f54014610a63578063c58bf0a314610a7957600080fd5b8063a4a8be851461096b578063a69956eb1461098c578063a7fc7a07146109bc578063b482d83f146109dc57600080fd5b80639d0c054d116101d75780639d0c054d146108de578063a1b8f374146108fe578063a22cb4651461092b578063a2ecc4031461094b57600080fd5b80638ff378ce1461085b57806394985ddd1461087c57806394e568471461089c57806395d89b41146108c957600080fd5b806342842e0e116103035780635aac17ef1161029657806370a082311161026557806370a08231146107d3578063715018a6146107f357806371d26919146108085780637cd88f451461081d5780638da5cb5b1461083d57600080fd5b80635aac17ef1461075f5780635c520a4b146107725780636352211e146107935780636f4f7366146107b357600080fd5b80634c0f38c2116102d25780634c0f38c2146106b85780634f6ccce7146106eb57806350dc46561461070b57806351dc86a51461072b57600080fd5b806342842e0e1461064357806344004cc114610663578063460348fa146106835780634a9fedb1146106a357600080fd5b80631f3a8fb41161037b57806332cb6b0c1161034a57806332cb6b0c146105ba5780633431a753146105ee57806338014ba01461060e5780633ccfd60b1461062e57600080fd5b80631f3a8fb41461053a57806323b872dd1461055a5780632f3b100e1461057a5780632f745c591461059a57600080fd5b80630aaef285116103b75780630aaef2851461049a57806315e1e831146104dc57806318160ddd146104f15780631a454b2c1461050657600080fd5b806301ffc9a7146103e957806306fdde031461041e578063081812fc14610440578063095ea7b314610478575b600080fd5b3480156103f557600080fd5b50610409610404366004613ff2565b610df1565b60405190151581526020015b60405180910390f35b34801561042a57600080fd5b50610433610e1c565b6040516104159190614202565b34801561044c57600080fd5b5061046061045b366004613fb7565b610eae565b6040516001600160a01b039091168152602001610415565b34801561048457600080fd5b50610498610493366004613ea5565b610f48565b005b3480156104a657600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000a81565b604051908152602001610415565b3480156104e857600080fd5b5061049861105e565b3480156104fd57600080fd5b506008546104ce565b34801561051257600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000000381565b34801561054657600080fd5b50610498610555366004613f7d565b6110b7565b34801561056657600080fd5b50610498610575366004613d34565b611132565b34801561058657600080fd5b50610498610595366004613f7d565b61117a565b3480156105a657600080fd5b506104ce6105b5366004613ea5565b6111f5565b3480156105c657600080fd5b506104ce7f000000000000000000000000000000000000000000000000000000000000c35081565b3480156105fa57600080fd5b50610498610609366004613fb7565b61128b565b34801561061a57600080fd5b50610498610629366004613f7d565b6112dc565b34801561063a57600080fd5b50610498611355565b34801561064f57600080fd5b5061049861065e366004613d34565b61143b565b34801561066f57600080fd5b5061049861067e366004613d34565b611456565b34801561068f57600080fd5b5061040961069e366004613e1b565b611555565b3480156106af57600080fd5b50600f546104ce565b3480156106c457600080fd5b507f000000000000000000000000000000000000000000000000000000000000c3506104ce565b3480156106f757600080fd5b506104ce610706366004613fb7565b6115db565b34801561071757600080fd5b50610498610726366004613fb7565b61166e565b34801561073757600080fd5b506104ce7faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44581565b61049861076d3660046140b5565b6116a1565b34801561077e57600080fd5b5060175461040990600160a01b900460ff1681565b34801561079f57600080fd5b506104606107ae366004613fb7565b61193a565b3480156107bf57600080fd5b506104986107ce366004613ce6565b6119b1565b3480156107df57600080fd5b506104ce6107ee366004613ce6565b6119fd565b3480156107ff57600080fd5b50610498611a84565b34801561081457600080fd5b50610498611aba565b34801561082957600080fd5b506104ce610838366004613fb7565b611b7c565b34801561084957600080fd5b50600b546001600160a01b0316610460565b34801561086757600080fd5b5060175461040990600160b81b900460ff1681565b34801561088857600080fd5b50610498610897366004613fd0565b611b9d565b3480156108a857600080fd5b506108bc6108b7366004613fb7565b611c1f565b604051610415919061433c565b3480156108d557600080fd5b50610433611ced565b3480156108ea57600080fd5b506104986108f9366004613ea5565b611cfc565b34801561090a57600080fd5b506104ce610919366004613fb7565b60146020526000908152604090205481565b34801561093757600080fd5b50610498610946366004613e6e565b611e2e565b34801561095757600080fd5b50610498610966366004613f7d565b611ef3565b34801561097757600080fd5b5060175461040990600160a81b900460ff1681565b34801561099857600080fd5b506104096109a7366004613fb7565b60009081526013602052604090205460ff1690565b3480156109c857600080fd5b506104986109d7366004613ce6565b611f6e565b6104986109ea36600461409a565b611fbc565b3480156109fb57600080fd5b50610498610a0a366004613d70565b61220f565b348015610a1b57600080fd5b50610498610a2a366004613fb7565b612247565b348015610a3b57600080fd5b506104ce7f000000000000000000000000000000000000000000000000011059dd247b400081565b348015610a6f57600080fd5b506104ce600f5481565b348015610a8557600080fd5b506104ce60105481565b348015610a9b57600080fd5b50610abf610aaa366004613ce6565b60156020526000908152604090205460ff1681565b60405160ff9091168152602001610415565b348015610add57600080fd5b50610433610aec366004613fb7565b612298565b348015610afd57600080fd5b50610498610b0c366004613ea5565b612397565b348015610b1d57600080fd5b50610abf610b2c366004613fd0565b61242b565b348015610b3d57600080fd5b50610409610b4c366004613ce6565b60166020526000908152604090205460ff1681565b348015610b6d57600080fd5b5060175461040990600160b01b900460ff1681565b348015610b8e57600080fd5b50610abf610b9d366004613fd0565b612471565b348015610bae57600080fd5b50610c3b610bbd366004613fb7565b60136020526000908152604090205460ff80821691610100810482169162010000820481169163010000008104821691640100000000820481169165010000000000810482169166010000000000008204811691600160381b8104821691600160401b8204811691600160481b8104821691600160501b909104168b565b604080519b15158c5299151560208c015260ff988916998b019990995295871660608a0152938616608089015291851660a0880152841660c0870152831660e0860152821661010085015281166101208401521661014082015261016001610415565b348015610caa57600080fd5b50610498610cb9366004613f11565b612481565b348015610cca57600080fd5b50601754610460906001600160a01b031681565b348015610cea57600080fd5b506104ce600e5481565b348015610d0057600080fd5b50610409610d0f366004613d01565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d4957600080fd5b506104607f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca81565b348015610d7d57600080fd5b506104ce610d8c366004613fb7565b6125c5565b348015610d9d57600080fd5b50610498610dac366004613ce6565b6125d5565b348015610dbd57600080fd5b50610498610dcc366004613ce6565b61266d565b348015610ddd57600080fd5b50610498610dec366004613ecf565b6126b8565b60006001600160e01b0319821663780e9d6360e01b1480610e165750610e16826127d2565b92915050565b606060008054610e2b90614542565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5790614542565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610f2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f538261193a565b9050806001600160a01b0316836001600160a01b03161415610fc15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f23565b336001600160a01b0382161480610fdd5750610fdd8133610d0f565b61104f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f23565b6110598383612822565b505050565b600b546001600160a01b031633146110885760405162461bcd60e51b8152600401610f2390614267565b6110b47faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445600e54612890565b50565b600b546001600160a01b031633146110e15760405162461bcd60e51b8152600401610f2390614267565b601760169054906101000a900460ff16151581151514156111145760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526016602052604090205460ff1661116f576111533382612a23565b61116f5760405162461bcd60e51b8152600401610f23906142eb565b611059838383612b16565b600b546001600160a01b031633146111a45760405162461bcd60e51b8152600401610f2390614267565b601760149054906101000a900460ff16151581151514156111d75760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160a01b0260ff60a01b19909216919091179055565b6000611200836119fd565b82106112625760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610f23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146112b55760405162461bcd60e51b8152600401610f2390614267565b80600f5414156112d75760405162461bcd60e51b8152600401610f23906142c7565b600f55565b600b546001600160a01b031633146113065760405162461bcd60e51b8152600401610f2390614267565b60178054906101000a900460ff16151581151514156113375760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160b81b0260ff60b81b19909216919091179055565b600b546001600160a01b0316331461137f5760405162461bcd60e51b8152600401610f2390614267565b60405147906000906001600160a01b037f00000000000000000000000026230e75989a76c4e7a5d939200243acf9b41d35169083908381818185875af1925050503d80600081146113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113f1565b606091505b50509050806114375760405162461bcd60e51b81526020600482015260126024820152714641494c45445f544f5f574954484452415760701b6044820152606401610f23565b5050565b6110598383836040518060200160405280600081525061220f565b600b546001600160a01b031633146114805760405162461bcd60e51b8152600401610f2390614267565b60405163a9059cbb60e01b81526001600160a01b03838116600483015260248201839052849160009183169063a9059cbb90604401602060405180830381600087803b1580156114cf57600080fd5b505af11580156114e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115079190613f9a565b90508061154e5760405162461bcd60e51b8152602060048201526015602482015274115490cc8c17d5d2551211149055d7d19052531151605a1b6044820152606401610f23565b5050505050565b6040516bffffffffffffffffffffffff19606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506115d284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612cc1565b95945050505050565b60006115e660085490565b82106116495760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610f23565b6008828154811061165c5761165c61462a565b90600052602060002001549050919050565b600b546001600160a01b031633146116985760405162461bcd60e51b8152600401610f2390614267565b6110b481612d70565b6002600c5414156116f45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f23565b6002600c55601754600160a01b900460ff16156117445760405162461bcd60e51b815260206004820152600e60248201526d14149154d0531157d4105554d15160921b6044820152606401610f23565b61174f338383611555565b61178e5760405162461bcd60e51b815260206004820152601060248201526f1393d517d25397d0531313d5d31254d560821b6044820152606401610f23565b3360009081526015602052604090205460ff167f00000000000000000000000000000000000000000000000000000000000000036117cc8583614480565b60ff1611156118145760405162461bcd60e51b815260206004820152601460248201527313505617d513d2d15397d4115497d5d05313115560621b6044820152606401610f23565b600f548460ff1661182460085490565b61182e9190614468565b111561184c5760405162461bcd60e51b8152600401610f239061429c565b60008460ff16116118905760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610f23565b346118be7f000000000000000000000000000000000000000000000000011059dd247b400060ff87166144b9565b146118f95760405162461bcd60e51b815260206004820152600b60248201526a57524f4e475f56414c554560a81b6044820152606401610f23565b6119038482614480565b336000818152601560205260409020805460ff191660ff939093169290921790915561192f9085612d97565b50506001600c555050565b6000818152600260205260408120546001600160a01b031680610e165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610f23565b600b546001600160a01b031633146119db5760405162461bcd60e51b8152600401610f2390614267565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611a685760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610f23565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314611aae5760405162461bcd60e51b8152600401610f2390614267565b611ab86000612e2d565b565b600b546001600160a01b03163314611ae45760405162461bcd60e51b8152600401610f2390614267565b601154611b1e5760405162461bcd60e51b81526020600482015260086024820152674e4f5f534545445360c01b6044820152606401610f23565b60005b6011548110156110b45760118181548110611b3e57611b3e61462a565b906000526020600020016000905560128181548110611b5f57611b5f61462a565b600091825260208220015580611b7481614577565b915050611b21565b60128181548110611b8c57600080fd5b600091825260209091200154905081565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79521614611c155760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610f23565b6114378282612e7f565b611c27613c18565b50600090815260136020908152604091829020825161016081018452905460ff8082161515835261010080830482161515948401949094526201000082048116948301949094526301000000810484166060830152640100000000810484166080830152650100000000008104841660a083015266010000000000008104841660c0830152600160381b8104841660e0830152600160401b8104841692820192909252600160481b82048316610120820152600160501b90910490911661014082015290565b606060018054610e2b90614542565b601754600160b01b900460ff1615611d565760405162461bcd60e51b815260206004820152601b60248201527f4d494e545f46524f4d5f434f4e54524f4c4c45525f50415553454400000000006044820152606401610f23565b3360009081526016602052604090205460ff16611da65760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610f23565b7f000000000000000000000000000000000000000000000000000000000000c35081611dd160085490565b611ddb9190614468565b1115611df95760405162461bcd60e51b8152600401610f239061429c565b60005b81811015611059576000611e0f60085490565b9050611e1b8482612f30565b5080611e2681614577565b915050611dfc565b6001600160a01b038216331415611e875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f23565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314611f1d5760405162461bcd60e51b8152600401610f2390614267565b601760159054906101000a900460ff1615158115151415611f505760405162461bcd60e51b8152600401610f23906142c7565b60178054911515600160a81b0260ff60a81b19909216919091179055565b600b546001600160a01b03163314611f985760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b6002600c54141561200f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f23565b6002600c55601754600160a81b900460ff16156120655760405162461bcd60e51b81526020600482015260146024820152731352539517d5d2551217d1551217d4105554d15160621b6044820152606401610f23565b3360009081526015602052604090205460ff167f000000000000000000000000000000000000000000000000000000000000000a6120a38383614480565b60ff1611156120eb5760405162461bcd60e51b815260206004820152601460248201527313505617d513d2d15397d4115497d5d05313115560621b6044820152606401610f23565b600f548260ff166120fb60085490565b6121059190614468565b11156121235760405162461bcd60e51b8152600401610f239061429c565b60008260ff16116121675760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610f23565b346121957f000000000000000000000000000000000000000000000000011059dd247b400060ff85166144b9565b146121d05760405162461bcd60e51b815260206004820152600b60248201526a57524f4e475f56414c554560a81b6044820152606401610f23565b6121da8282614480565b336000818152601560205260409020805460ff191660ff93909316929092179091556122069083612d97565b50506001600c55565b6122193383612a23565b6122355760405162461bcd60e51b8152600401610f23906142eb565b61224184848484612f4a565b50505050565b600b546001600160a01b031633146122715760405162461bcd60e51b8152600401610f2390614267565b600e548114156122935760405162461bcd60e51b8152600401610f23906142c7565b600e55565b6000818152600260205260409020546060906001600160a01b03166123175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f23565b60175460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b15801561235b57600080fd5b505afa15801561236f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e16919081019061402c565b600b546001600160a01b031633146123c15760405162461bcd60e51b8152600401610f2390614267565b600f54816123ce60085490565b6123d89190614468565b106123e257600080fd5b60006123ed60085490565b905060005b828160ff16101561224157600061240c60ff831684614468565b90506124188582612f30565b508061242381614592565b9150506123f2565b6018826012811061243b57600080fd5b01818154811061244a57600080fd5b9060005260206000209060209182820401919006915091509054906101000a900460ff1681565b602a826012811061243b57600080fd5b3360009081526016602052604090205460ff166124d35760405162461bcd60e51b815260206004820152601060248201526f4f4e4c595f434f4e54524f4c4c45525360801b6044820152606401610f23565b601754600160b81b900460ff161561251d5760405162461bcd60e51b815260206004820152600d60248201526c14915591505317d4105554d151609a1b6044820152606401610f23565b601154831461256e5760405162461bcd60e51b815260206004820152601e60248201527f494e505554535f53484f554c445f484156455f53414d455f4c454e47544800006044820152606401610f23565b60005b8381101561154e576125b385858381811061258e5761258e61462a565b905060200201358484848181106125a7576125a761462a565b90506020020135612f7d565b806125bd81614577565b915050612571565b60118181548110611b8c57600080fd5b600b546001600160a01b031633146125ff5760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b0381166126645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f23565b6110b481612e2d565b600b546001600160a01b031633146126975760405162461bcd60e51b8152600401610f2390614267565b6001600160a01b03166000908152601660205260409020805460ff19169055565b600b546001600160a01b031633146126e25760405162461bcd60e51b8152600401610f2390614267565b60005b818110156110595760008383838181106127015761270161462a565b9050602002013590506127138161312f565b61274d5760405162461bcd60e51b815260206004820152600b60248201526a10d0539517d4915591505360aa1b6044820152606401610f23565b600061275a601283613193565b90506000601182815481106127715761277161462a565b906000526020600020015483604051602001612797929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c90506127bc8382612f7d565b50505080806127ca90614577565b9150506126e5565b60006001600160e01b031982166380ac58cd60e01b148061280357506001600160e01b03198216635b5e139f60e01b145b80610e1657506301ffc9a760e01b6001600160e01b0319831614610e16565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906128578261193a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001612900929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b815260040161292d939291906141db565b602060405180830381600087803b15801561294757600080fd5b505af115801561295b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297f9190613f9a565b506000838152600d6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526129db906001614468565b6000858152600d6020526040902055612a1b8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b949350505050565b6000818152600260205260408120546001600160a01b0316612a9c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f23565b6000612aa78361193a565b9050806001600160a01b0316846001600160a01b03161480612ae25750836001600160a01b0316612ad784610eae565b6001600160a01b0316145b80612a1b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612a1b565b826001600160a01b0316612b298261193a565b6001600160a01b031614612b915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610f23565b6001600160a01b038216612bf35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f23565b612bfe83838361325e565b612c09600082612822565b6001600160a01b0383166000908152600360205260408120805460019290612c329084906144d8565b90915550506001600160a01b0382166000908152600360205260408120805460019290612c60908490614468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b8551811015612d65576000868281518110612ce357612ce361462a565b60200260200101519050808311612d25576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612d52565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612d5d81614577565b915050612cc6565b509092149392505050565b80600a541415612d925760405162461bcd60e51b8152600401610f23906142c7565b600a55565b6000612da260085490565b905060005b8260ff168160ff161015612241576000612dc460ff831684614468565b9050612dd08582612f30565b601054612dde826001614468565b612de891906145b2565b612e1a57612e187faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445600e54612890565b505b5080612e2581614592565b915050612da7565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612e8a60085490565b6012549091501580612ec5575060128054612ea7906001906144d8565b81548110612eb757612eb761462a565b906000526020600020015481115b15611059576011805460018082019092557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6801929092556012805492830181556000527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34449091015550565b611437828260405180602001604052806000815250613316565b612f55848484612b16565b612f6184848484613349565b6122415760405162461bcd60e51b8152600401610f2390614215565b600080612f8a8484613453565b91509150816013600086815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055506101208201518160000160096101000a81548160ff021916908360ff16021790555061014082015181600001600a6101000a81548160ff021916908360ff16021790555090505083601460008381526020019081526020016000208190555050505050565b60008181526013602052604081205460ff161561314e57506000919050565b60125461315d57506000919050565b60128054839190613170906001906144d8565b815481106131805761318061462a565b9060005260206000200154119050919050565b81546000906131a457506000610e16565b82546000905b808210156132005760006131be8383613666565b9050848682815481106131d3576131d361462a565b906000526020600020015411156131ec578091506131fa565b6131f7816001614468565b92505b506131aa565b600082118015613235575083856132186001856144d8565b815481106132285761322861462a565b9060005260206000200154145b1561324e576132456001836144d8565b92505050610e16565b509050610e16565b505092915050565b6001600160a01b0383166132b9576132b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6132dc565b816001600160a01b0316836001600160a01b0316146132dc576132dc8382613688565b6001600160a01b0382166132f35761105981613725565b826001600160a01b0316826001600160a01b0316146110595761105982826137d4565b6133208383613818565b61332d6000848484613349565b6110595760405162461bcd60e51b8152600401610f2390614215565b60006001600160a01b0384163b1561344b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061338d90339089908890889060040161419e565b602060405180830381600087803b1580156133a757600080fd5b505af19250505080156133d7575060408051601f3d908101601f191682019092526133d49181019061400f565b60015b613431573d808015613405576040519150601f19603f3d011682016040523d82523d6000602084013e61340a565b606091505b5080516134295760405162461bcd60e51b8152600401610f2390614215565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612a1b565b506001612a1b565b61345b613c18565b600061346683613966565b915061347182613adc565b60008181526014602052604090205490915061362757816013600086815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055506101208201518160000160096101000a81548160ff021916908360ff16021790555061014082015181600001600a6101000a81548160ff021916908360ff16021790555090505083601460008381526020019081526020016000208190555061365f565b604080516020808201869052818301879052825180830384018152606090920190925280519101206136598582613453565b92509250505b9250929050565b600061367560028484186144a5565b61368190848416614468565b9392505050565b60006001613695846119fd565b61369f91906144d8565b6000838152600760205260409020549091508082146136f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613737906001906144d8565b6000838152600960205260408120546008805493945090928490811061375f5761375f61462a565b9060005260206000200154905080600883815481106137805761378061462a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806137b8576137b8614614565b6001900381819060005260206000200160009055905550505050565b60006137df836119fd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661386e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f23565b6000818152600260205260409020546001600160a01b0316156138d35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f23565b6138df6000838361325e565b6001600160a01b0382166000908152600360205260408120805460019290613908908490614468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61396e613c18565b60018152613981600a61ffff84166145b2565b156020820181905260009061399757600061399a565b60095b60109390931c9290506139bb61ffff84166139b6836000614480565b613b3c565b60ff16604083015260109290921c916139dd61ffff84166139b6836001614480565b60ff16606083015260109290921c916139ff61ffff84166139b6836002614480565b60ff16608083015260109290921c91613a2161ffff84166139b6836003614480565b60ff1660a083015260109290921c91613a4361ffff84166139b6836004614480565b60ff1660c083015260109290921c91613a6561ffff84166139b6836005614480565b60ff1660e083015260109290921c91613a8761ffff84166139b6836006614480565b60ff1661010083015260109290921c91613aaa61ffff84166139b6836007614480565b60ff1661012083015260109290921c91613acd61ffff84166139b6836008614480565b60ff1661014083015250919050565b6020808201516040808401516060850151608086015160a087015160c088015160e08901516101008a01516101208b01516101408c0151985160009b613b249b9a91016140ff565b604051602081830303815290604052610e16906144ef565b60008060188360ff1660128110613b5557613b5561462a565b0154613b6190856145c6565b905060188360ff1660128110613b7957613b7961462a565b018160ff1681548110613b8e57613b8e61462a565b60009182526020918290209181049091015460ff601f9092166101000a90048116600886901c9091161015613bc4579050610e16565b602a8360ff1660128110613bda57613bda61462a565b018160ff1681548110613bef57613bef61462a565b90600052602060002090602091828204019190069054906101000a900460ff1691505092915050565b6040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290565b80356001600160a01b0381168114613c8b57600080fd5b919050565b60008083601f840112613ca257600080fd5b50813567ffffffffffffffff811115613cba57600080fd5b6020830191508360208260051b850101111561365f57600080fd5b803560ff81168114613c8b57600080fd5b600060208284031215613cf857600080fd5b61368182613c74565b60008060408385031215613d1457600080fd5b613d1d83613c74565b9150613d2b60208401613c74565b90509250929050565b600080600060608486031215613d4957600080fd5b613d5284613c74565b9250613d6060208501613c74565b9150604084013590509250925092565b60008060008060808587031215613d8657600080fd5b613d8f85613c74565b9350613d9d60208601613c74565b925060408501359150606085013567ffffffffffffffff811115613dc057600080fd5b8501601f81018713613dd157600080fd5b8035613de4613ddf82614440565b61440f565b818152886020838501011115613df957600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060408486031215613e3057600080fd5b613e3984613c74565b9250602084013567ffffffffffffffff811115613e5557600080fd5b613e6186828701613c90565b9497909650939450505050565b60008060408385031215613e8157600080fd5b613e8a83613c74565b91506020830135613e9a81614656565b809150509250929050565b60008060408385031215613eb857600080fd5b613ec183613c74565b946020939093013593505050565b60008060208385031215613ee257600080fd5b823567ffffffffffffffff811115613ef957600080fd5b613f0585828601613c90565b90969095509350505050565b60008060008060408587031215613f2757600080fd5b843567ffffffffffffffff80821115613f3f57600080fd5b613f4b88838901613c90565b90965094506020870135915080821115613f6457600080fd5b50613f7187828801613c90565b95989497509550505050565b600060208284031215613f8f57600080fd5b813561368181614656565b600060208284031215613fac57600080fd5b815161368181614656565b600060208284031215613fc957600080fd5b5035919050565b60008060408385031215613fe357600080fd5b50508035926020909101359150565b60006020828403121561400457600080fd5b813561368181614664565b60006020828403121561402157600080fd5b815161368181614664565b60006020828403121561403e57600080fd5b815167ffffffffffffffff81111561405557600080fd5b8201601f8101841361406657600080fd5b8051614074613ddf82614440565b81815285602083850101111561408957600080fd5b6115d2826020830160208601614516565b6000602082840312156140ac57600080fd5b61368182613cd5565b6000806000604084860312156140ca57600080fd5b613e3984613cd5565b600081518084526140eb816020860160208601614516565b601f01601f19169290920160200192915050565b8a151560f890811b82526001600160f81b03198b821b811660018401528a821b8116600284015289821b8116600384015288821b8116600484015287821b8116600584015286821b811660068401529085901b1660078201526000614173600883018560f81b6001600160f81b0319169052565b61418c600983018460f81b6001600160f81b0319169052565b50600a019a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906141d1908301846140d3565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006115d260608301846140d3565b60208152600061368160208301846140d3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704e4f545f454e4f5547485f544f4b454e5360781b604082015260600190565b6020808252600a90820152694e4f5f4348414e47455360b01b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8151151581526101608101602083015161435a602084018215159052565b50604083015161436f604084018260ff169052565b506060830151614384606084018260ff169052565b506080830151614399608084018260ff169052565b5060a08301516143ae60a084018260ff169052565b5060c08301516143c360c084018260ff169052565b5060e08301516143d860e084018260ff169052565b506101008381015160ff81168483015250506101208381015160ff81168483015250506101408381015160ff811684830152613256565b604051601f8201601f1916810167ffffffffffffffff8111828210171561443857614438614640565b604052919050565b600067ffffffffffffffff82111561445a5761445a614640565b50601f01601f191660200190565b6000821982111561447b5761447b6145e8565b500190565b600060ff821660ff84168060ff0382111561449d5761449d6145e8565b019392505050565b6000826144b4576144b46145fe565b500490565b60008160001904831182151516156144d3576144d36145e8565b500290565b6000828210156144ea576144ea6145e8565b500390565b80516020808301519190811015614510576000198160200360031b1b821691505b50919050565b60005b83811015614531578181015183820152602001614519565b838111156122415750506000910152565b600181811c9082168061455657607f821691505b6020821081141561451057634e487b7160e01b600052602260045260246000fd5b600060001982141561458b5761458b6145e8565b5060010190565b600060ff821660ff8114156145a9576145a96145e8565b60010192915050565b6000826145c1576145c16145fe565b500690565b600060ff8316806145d9576145d96145fe565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146110b457600080fd5b6001600160e01b0319811681146110b457600080fdfea264697066735822122083d7f0c7575df90acd1781fff54203829dbc3b2d967e863da10a040c82b8ce2464736f6c63430008070033

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

aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79520000000000000000000000000000000000000000000000001bc16d674ec80000000000000000000000000000000000000000000000000000011059dd247b4000000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000026230e75989a76c4e7a5d939200243acf9b41d35

-----Decoded View---------------
Arg [0] : _LINK_KEY_HASH (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [1] : _LINK_ADDRESS (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [2] : _LINK_VRF_COORDINATOR_ADDRESS (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [3] : _LINK_VRF_PRICE (uint256): 2000000000000000000
Arg [4] : _MINT_PRICE (uint256): 76660000000000000
Arg [5] : _MAX_SUPPLY (uint256): 50000
Arg [6] : _MAX_PER_ADDRESS (uint256): 10
Arg [7] : _MAX_PER_ADDRESS_PRESALE (uint256): 3
Arg [8] : _SEED_BATCH_SIZE (uint256): 1000
Arg [9] : _PAID_TOKENS (uint256): 10000
Arg [10] : _splitter (address): 0x26230E75989a76C4e7A5D939200243aCf9B41d35

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [1] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [2] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [3] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [4] : 000000000000000000000000000000000000000000000000011059dd247b4000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000c350
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [9] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [10] : 00000000000000000000000026230e75989a76c4e7a5d939200243acf9b41d35


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.