Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
4191
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MetaTravelers
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 0 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** ████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████ ██████████████████████████████▓╝╘███████████████████████████████ ████████████████████████████▓▓ ▓█████████████████████████████ ██████████████████████▓▀╙ ╙▀▓██████████████████████ ███████████████████▀" ,▄▄▄▄▄▄▄▄▄▄, "▀███████████████████ ████████████████▓╜ ▄█████████████████▓w ╙█████████████████ ██████████████▓┘ ╔███████████████████████▓╕ └███████████████ █████████████▓ ╓██▓╝``╙▓████████████▓╩```██▓, ▀█████████████ ████████████╝ ▄███▓ `▀████████▓" ████▄ ▐████████████ ███████████▓ ▓████▓ ╒ ▀███▓▀ █████▓ ▀███████████ ██████████▓ ▐█████▓ ]▓▄ ╙╝ ▄▓[ █████▓L ███████████ █████████▓╝ ██████▓ ]███▓, ,▓██▓[ ██████▓ ╚██████████ ███████Ü ███████▓▓▓▓▓▓▓▓▓r ▓▓▓▓▓▓▓▓▓██████▓ ║███████ ████████▓▄╖ ██████▓ ██████▓ ╓▄█████████ ██████████▓ ▐██████▓&&&&&&&& &&&&&&&&▄█████▓F ███████████ ███████████@ █████▓ █████▓ ▐███████████ ███████████▓L █████▄╥▄▄▄▄▄╥╓ ▄▄▄▄▄▄▄▄▄████▓ ╔████████████ █████████████N ▀████████████r ███████████▓╝ ▄█████████████ ██████████████▓ ▀██████████▓▄▄██████████▓╝ ,███████████████ ████████████████▓, "▀▓████████████████▓╝ ,▄████████████████ ███████████████████▄ "╙▀▀▓▓▓▀▀▀╩" ,▄███████████████████ ██████████████████████▓▄µ ╓▄███████████████████████ █████████████████████████████▓ ██████████████████████████████ ██████████████████████████████▓,,███████████████████████████████ ████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████ */ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol"; contract MetaTravelers is ERC721Enumerable, ERC721Pausable, ERC721Burnable, VRFConsumerBase, Ownable { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIdTracker; string private _baseTokenURI; /** * @dev Minting variables */ uint256 public constant PRICE = .09 ether; uint256 public constant MAX_QUANTITY = 3; uint256 public constant MAX_EA_QUANTITY = 5; // max quantity that each early adopter can mint uint256 public constant MAX_SUPPLY = 7777; uint256 public constant MAX_RESERVE = 33; uint256 public constant MAX_EARLY_ADOPTER = 2775; uint256 public constant MAX_PRESALE = 2997; uint256 public constant MAX_MINTPASS = 1332; mapping(address => bool) private _earlyAdopterList; mapping(address => bool) private _preSaleList; mapping(address => uint256) private _earlyAdopterPurchased; mapping(address => uint256) private _preSalePurchased; mapping(address => uint256) private _publicSalePurchased; mapping(address => uint256) private _mintPassQuantity; bool public isReserveComplete = false; bool public isEarlyAdopterSale = false; bool public isPreSale = false; bool public isMintPassSale = false; bool public isPublicSale = false; /** * @dev Provenance variables */ string public provenanceHash; uint256 public startingIndex; /** * @dev Chainlink VRF variables */ bytes32 internal _keyHash; uint256 internal _fee; /** * @dev Initializes the contract with the name, symbol, and baseTokenURI, * and pauses the contract by default */ constructor ( string memory name, string memory symbol, string memory baseTokenURI, address vrfCoordinator, address linkToken, bytes32 keyHash, uint256 fee ) ERC721(name, symbol) VRFConsumerBase(vrfCoordinator, linkToken) { _baseTokenURI = baseTokenURI; _keyHash = keyHash; _fee = fee; _pause(); } event AssetsMinted(address owner, uint256 quantity); event RequestedRandomness(bytes32 requestId); event StartingIndexSet(bytes32 requestId, uint256 randomNumber); /** * @dev Update the base token URI for returning metadata */ function setBaseTokenURI(string memory baseTokenURI) external onlyOwner { _baseTokenURI = baseTokenURI; } /** * @dev Add wallet addresses to the Early Adopter mappings used for private sale */ function addToEarlyAdopterList(address[] calldata addresses) external onlyOwner { for(uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Cannot add null address"); require(!_earlyAdopterList[addresses[i]], "Duplicate entry"); _earlyAdopterList[addresses[i]] = true; } } /** * @dev Add wallet addresses to the PreSale mappings used for private sale */ function addToPreSaleList(address[] calldata addresses) external onlyOwner { for(uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Cannot add null address"); require(!_preSaleList[addresses[i]], "Duplicate entry"); _preSaleList[addresses[i]] = true; } } /** * @dev Add wallet addresses to the Mint Pass mapping used for private sale */ function addToMintPassList(address[] calldata addresses, uint256[] calldata quantities) external onlyOwner { require(addresses.length == quantities.length); for(uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Cannot add null address"); _mintPassQuantity[addresses[i]] = quantities[i]; } } /** * @dev Returns the quantity available for the message sender to mint during the mint pass sale */ function getMintPassQuantity(address user) external view returns (uint256) { return _mintPassQuantity[user]; } /** * @dev Toggle whether early adopter minting is enabled/disabled */ function toggleEarlyAdopter() external onlyOwner { isEarlyAdopterSale = !isEarlyAdopterSale; } /** * @dev Toggle whether preSale minting is enabled/disabled */ function togglePreSale() external onlyOwner { isPreSale = !isPreSale; } /** * @dev Toggle whether mint pass minting is enabled/disabled */ function toggleMintPassSale() external onlyOwner { isMintPassSale = !isMintPassSale; } /** * @dev Toggle whether public sale minting is enabled/disabled */ function togglePublicSale() external onlyOwner { isPublicSale = !isPublicSale; } /** * @dev Base minting function to be reused by other minting functions */ function _baseMint(address to) private { _tokenIdTracker.increment(); _mint(to, _tokenIdTracker.current()); } /** * @dev Early Adopter sale restricted to a list of specified wallet address */ function earlyAdopterMint(address to, uint256 quantity) external payable { require(isEarlyAdopterSale, 'Early Adopter sale is not live'); require(_earlyAdopterList[_msgSender()], "User not on Early Adopter list"); require(totalSupply() + quantity <= MAX_EARLY_ADOPTER, "Early Adopter sale is sold out"); require(_earlyAdopterPurchased[_msgSender()] + quantity <= MAX_EA_QUANTITY, "Limit per wallet exceeded"); require(msg.value == PRICE * quantity, "Ether value sent is not correct"); for(uint256 i=0; i<quantity; i++){ _earlyAdopterPurchased[_msgSender()]++; _baseMint(to); } emit AssetsMinted(to, quantity); } /** * @dev PreSale restricted to a list of specified wallet address */ function preSaleMint(address to, uint256 quantity) external payable { require(isPreSale, 'PreSale is not live'); require(_preSaleList[_msgSender()], "User not on PreSale list"); require(totalSupply() + quantity <= MAX_EARLY_ADOPTER + MAX_PRESALE, "PreSale is sold out"); require(_preSalePurchased[_msgSender()] + quantity <= MAX_QUANTITY, "Limit per wallet exceeded"); require(msg.value == PRICE * quantity, "Ether value sent is not correct"); for(uint256 i=0; i<quantity; i++){ _preSalePurchased[_msgSender()]++; _baseMint(to); } emit AssetsMinted(to, quantity); } /** * @dev Mint pass sale based on snapshot of mint pass holders */ function mintPassMint(address to, uint256 quantity) external payable { require(isMintPassSale, 'Mint pass sale is not live'); require(_mintPassQuantity[_msgSender()] > 0, "User does not have valid mint pass"); require(totalSupply() + quantity <= MAX_EARLY_ADOPTER + MAX_PRESALE + MAX_MINTPASS, "Mint pass sale is sold out"); require(msg.value == PRICE * quantity, "Ether value sent is not correct"); for(uint256 i=0; i<quantity; i++){ require(_mintPassQuantity[_msgSender()] > 0, "No mint pass mints left"); _mintPassQuantity[_msgSender()]--; _baseMint(to); } emit AssetsMinted(to, quantity); } /** * @dev Creates a new token for `to`. Its token ID will be automatically * assigned (and available on the emitted {IERC721-Transfer} event), and the token * URI autogenerated based on the base URI passed at construction. * * See {ERC721-_mint}. */ function publicSaleMint(address to, uint256 quantity) external payable { require(isPublicSale, "Public sale is not live"); require(totalSupply() + quantity <= MAX_SUPPLY, "Purchase exceeds max supply"); require(quantity <= MAX_QUANTITY, "Order exceeds max quantity"); require(msg.value == PRICE * quantity, "Ether value sent is not correct"); require(_publicSalePurchased[_msgSender()] + quantity <= MAX_QUANTITY, "Limit per wallet exceeded"); for(uint256 i=0; i<quantity; i++){ _publicSalePurchased[_msgSender()]++; _baseMint(to); } emit AssetsMinted(to, quantity); } /** * @dev Reserve MetaTravelers */ function reserveMetaTravelers() external onlyOwner { require(!isReserveComplete, "MetaTravelers: Already reserved"); for(uint256 i=0; i<MAX_RESERVE; i++){ _baseMint(_msgSender()); } isReserveComplete = true; emit AssetsMinted(_msgSender(), MAX_RESERVE); } /** * @dev Set the provenanceHash used for verifying fair and random distribution */ function setProvenanceHash(string memory newProvenanceHash) external onlyOwner { provenanceHash = newProvenanceHash; } /** * @dev Set the startingIndex using Chainlink VRF for provable on-chain randomness * See callback function 'fulfillRandomness' */ function setStartingIndex() external onlyOwner returns (bytes32) { bytes memory tempProvenanceHash = bytes(provenanceHash); require(tempProvenanceHash.length > 0, "Need to set provenance hash"); require(startingIndex == 0, "Starting index is already set"); require(LINK.balanceOf(address(this)) >= _fee, "Not enough LINK"); bytes32 requestId = requestRandomness(_keyHash, _fee); emit RequestedRandomness(requestId); return requestId; } /** * @dev Callback function used by VRF Coordinator. * Sets the startingIndex based on the random number generated by Chainlink VRF */ function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override { startingIndex = randomness % MAX_SUPPLY; // Prevent default sequence if (startingIndex == 0) { startingIndex += 1; } emit StartingIndexSet(requestId, randomness); } /** * @dev Used to withdraw funds from the contract */ function withdraw() external onlyOwner() { uint256 balance = address(this).balance; payable(_msgSender()).transfer(balance); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token."); return bytes(_baseTokenURI).length > 0 ? string(abi.encodePacked(_baseTokenURI, tokenId.toString())) : ""; } /** * @dev Used to pause contract minting per ERC721Pausable */ function pause() external onlyOwner() { _pause(); } /** * @dev Used to unpause contract minting per ERC721Pausable */ function unpause() external onlyOwner() { _unpause(); } /** * @dev Required due to inheritance */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev Required due to inheritance */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } }
// 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } }
// 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(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// 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); } }
// 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; } }
// 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// 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; }
// 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); }
// 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); }
// 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); } } } }
// 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); } }
// 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; } }
// 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); }
// 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); }
// 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 ); }
// 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)); } }
{ "optimizer": { "enabled": true, "runs": 0 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"address","name":"vrfCoordinator","type":"address"},{"internalType":"address","name":"linkToken","type":"address"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"},{"internalType":"uint256","name":"fee","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"AssetsMinted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"}],"name":"RequestedRandomness","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"randomNumber","type":"uint256"}],"name":"StartingIndexSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_EARLY_ADOPTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EA_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTPASS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE","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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToEarlyAdopterList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"addToMintPassList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPreSaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"earlyAdopterMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getMintPassQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEarlyAdopterSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintPassSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReserveComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPassMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMetaTravelers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleEarlyAdopter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintPassSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526015805464ffffffffff191690553480156200001f57600080fd5b5060405162003edb38038062003edb83398101604081905262000042916200034d565b8383888881600090805190602001906200005e929190620001d3565b50805162000074906001906020840190620001d3565b5050600a805460ff19169055506001600160601b0319606092831b811660a052911b16608052620000ac620000a63390565b620000e3565b8451620000c190600e906020880190620001d3565b5060188290556019819055620000d662000135565b505050505050506200046a565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001805760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001b63390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620001e19062000417565b90600052602060002090601f01602090048101928262000205576000855562000250565b82601f106200022057805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200025057825182559160200191906001019062000233565b506200025e92915062000262565b5090565b5b808211156200025e576000815560010162000263565b80516001600160a01b03811681146200029157600080fd5b919050565b600082601f830112620002a857600080fd5b81516001600160401b0380821115620002c557620002c562000454565b604051601f8301601f19908116603f01168101908282118183101715620002f057620002f062000454565b816040528381526020925086838588010111156200030d57600080fd5b600091505b8382101562000331578582018301518183018401529082019062000312565b83821115620003435760008385830101525b9695505050505050565b600080600080600080600060e0888a0312156200036957600080fd5b87516001600160401b03808211156200038157600080fd5b6200038f8b838c0162000296565b985060208a0151915080821115620003a657600080fd5b620003b48b838c0162000296565b975060408a0151915080821115620003cb57600080fd5b50620003da8a828b0162000296565b955050620003eb6060890162000279565b9350620003fb6080890162000279565b925060a0880151915060c0880151905092959891949750929550565b600181811c908216806200042c57607f821691505b602082108114156200044e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c613a37620004a46000396000818161156501526129ca015260008181611fe2015261299b0152613a376000f3fe60806040526004361061027b5760003560e01c806301ffc9a71461028057806305301270146102b557806306fdde03146102d4578063081812fc146102f6578063095ea7b314610323578063109695231461034557806318160ddd1461036557806323b872dd146103845780632f745c59146103a457806330176e13146103c457806332cb6b0c146103e45780633ccfd60b146103fa5780633f4ba83a1461040f57806342842e0e1461042457806342966c681461044457806346ff3f781461046457806348b34fe1146104775780634ced47341461048c5780634d4c4e99146104ac5780634ebbae73146104c25780634f6ccce7146104e357806354bac24f146105035780635c975abb146105165780635e9d20691461052e578063615e73e1146105485780636352211e1461057e57806369dca4411461059e5780636a0b8d2d146105b45780636ca49de3146105d457806370a08231146105e9578063715018a6146106095780637f6dcbf81461061e5780638456cb59146106335780638d859f3e146106485780638da5cb5b1461066457806394985ddd1461067957806395d89b4114610699578063a22cb465146106ae578063a4776369146106ce578063a5a865dc146106e1578063ac5ae11b14610702578063b88d4fde14610715578063c6ab67a314610735578063c87b56dd1461074a578063ca3cb5221461076a578063cb774d471461077f578063d57e007f14610795578063d6cd3904146107b5578063de7535dd146107ca578063e222c7f9146107e0578063e41ee46a146107f5578063e985e9c51461080a578063e98665501461082a578063eff31e9e1461083f578063f2fde38b14610854578063ff9ddf9814610874575b600080fd5b34801561028c57600080fd5b506102a061029b36600461343d565b610894565b60405190151581526020015b60405180910390f35b3480156102c157600080fd5b506015546102a090610100900460ff1681565b3480156102e057600080fd5b506102e96108a5565b6040516102ac9190613671565b34801561030257600080fd5b506103166103113660046134bf565b610937565b6040516102ac91906135e0565b34801561032f57600080fd5b5061034361033e366004613328565b6109c4565b005b34801561035157600080fd5b50610343610360366004613477565b610ad5565b34801561037157600080fd5b506008545b6040519081526020016102ac565b34801561039057600080fd5b5061034361039f36600461323a565b610b1b565b3480156103b057600080fd5b506103766103bf366004613328565b610b4d565b3480156103d057600080fd5b506103436103df366004613477565b610be3565b3480156103f057600080fd5b50610376611e6181565b34801561040657600080fd5b50610343610c25565b34801561041b57600080fd5b50610343610c83565b34801561043057600080fd5b5061034361043f36600461323a565b610cbc565b34801561045057600080fd5b5061034361045f3660046134bf565b610cd7565b610343610472366004613328565b610d51565b34801561048357600080fd5b50610376600581565b34801561049857600080fd5b506015546102a09062010000900460ff1681565b3480156104b857600080fd5b50610376610bb581565b3480156104ce57600080fd5b506015546102a0906301000000900460ff1681565b3480156104ef57600080fd5b506103766104fe3660046134bf565b610f3d565b610343610511366004613328565b610fd0565b34801561052257600080fd5b50600a5460ff166102a0565b34801561053a57600080fd5b506015546102a09060ff1681565b34801561055457600080fd5b506103766105633660046131e5565b6001600160a01b031660009081526014602052604090205490565b34801561058a57600080fd5b506103166105993660046134bf565b61119d565b3480156105aa57600080fd5b50610376610ad781565b3480156105c057600080fd5b506103436105cf366004613393565b611214565b3480156105e057600080fd5b50610343611321565b3480156105f557600080fd5b506103766106043660046131e5565b61136d565b34801561061557600080fd5b506103436113f4565b34801561062a57600080fd5b5061034361142d565b34801561063f57600080fd5b50610343611514565b34801561065457600080fd5b5061037667013fbe85edc9000081565b34801561067057600080fd5b5061031661154b565b34801561068557600080fd5b5061034361069436600461341b565b61155a565b3480156106a557600080fd5b506102e96115dc565b3480156106ba57600080fd5b506103436106c93660046132f1565b6115eb565b6103436106dc366004613328565b6116ac565b3480156106ed57600080fd5b506015546102a090600160201b900460ff1681565b610343610710366004613328565b6118af565b34801561072157600080fd5b50610343610730366004613276565b611a65565b34801561074157600080fd5b506102e9611a9d565b34801561075657600080fd5b506102e96107653660046134bf565b611b2b565b34801561077657600080fd5b50610343611bf7565b34801561078b57600080fd5b5061037660175481565b3480156107a157600080fd5b506103436107b0366004613352565b611c45565b3480156107c157600080fd5b50610343611d9b565b3480156107d657600080fd5b5061037661053481565b3480156107ec57600080fd5b50610343611deb565b34801561080157600080fd5b50610376600381565b34801561081657600080fd5b506102a0610825366004613207565b611e3b565b34801561083657600080fd5b50610376611e69565b34801561084b57600080fd5b50610376602181565b34801561086057600080fd5b5061034361086f3660046131e5565b6120f8565b34801561088057600080fd5b5061034361088f366004613352565b612195565b600061089f826122eb565b92915050565b6060600080546108b4906138c5565b80601f01602080910402602001604051908101604052809291908181526020018280546108e0906138c5565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b600061094282612310565b6109a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109cf8261119d565b9050806001600160a01b0316836001600160a01b03161415610a3d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161099f565b336001600160a01b0382161480610a595750610a598133611e3b565b610ac65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606482015260840161099f565b610ad0838361232d565b505050565b33610ade61154b565b6001600160a01b031614610b045760405162461bcd60e51b815260040161099f90613740565b8051610b17906016906020840190613070565b5050565b610b26335b8261239b565b610b425760405162461bcd60e51b815260040161099f906137a6565b610ad0838383612465565b6000610b588361136d565b8210610bba5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161099f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610bec61154b565b6001600160a01b031614610c125760405162461bcd60e51b815260040161099f90613740565b8051610b1790600e906020840190613070565b33610c2e61154b565b6001600160a01b031614610c545760405162461bcd60e51b815260040161099f90613740565b6040514790339082156108fc029083906000818181858888f19350505050158015610b17573d6000803e3d6000fd5b33610c8c61154b565b6001600160a01b031614610cb25760405162461bcd60e51b815260040161099f90613740565b610cba6125fe565b565b610ad083838360405180602001604052806000815250611a65565b610ce033610b20565b610d455760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161099f565b610d4e81612681565b50565b60155462010000900460ff16610d9f5760405162461bcd60e51b815260206004820152601360248201527250726553616c65206973206e6f74206c69766560681b604482015260640161099f565b3360009081526010602052604090205460ff16610df95760405162461bcd60e51b8152602060048201526018602482015277155cd95c881b9bdd081bdb88141c9954d85b19481b1a5cdd60421b604482015260640161099f565b610e07610bb5610ad7613820565b81610e1160085490565b610e1b9190613820565b1115610e5f5760405162461bcd60e51b8152602060048201526013602482015272141c9954d85b19481a5cc81cdbdb19081bdd5d606a1b604482015260640161099f565b33600090815260126020526040902054600390610e7d908390613820565b1115610e9b5760405162461bcd60e51b815260040161099f9061370d565b610ead8167013fbe85edc9000061384c565b3414610ecb5760405162461bcd60e51b815260040161099f906136d6565b60005b81811015610f1157336000908152601260205260408120805491610ef183613900565b9190505550610eff83612716565b80610f0981613900565b915050610ece565b506000805160206139c28339815191528282604051610f31929190613631565b60405180910390a15050565b6000610f4860085490565b8210610fab5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161099f565b60088281548110610fbe57610fbe613971565b90600052602060002001549050919050565b601554610100900460ff166110275760405162461bcd60e51b815260206004820152601e60248201527f4561726c792041646f707465722073616c65206973206e6f74206c6976650000604482015260640161099f565b336000908152600f602052604090205460ff166110865760405162461bcd60e51b815260206004820152601e60248201527f55736572206e6f74206f6e204561726c792041646f70746572206c6973740000604482015260640161099f565b610ad78161109360085490565b61109d9190613820565b11156110eb5760405162461bcd60e51b815260206004820152601e60248201527f4561726c792041646f707465722073616c6520697320736f6c64206f75740000604482015260640161099f565b33600090815260116020526040902054600590611109908390613820565b11156111275760405162461bcd60e51b815260040161099f9061370d565b6111398167013fbe85edc9000061384c565b34146111575760405162461bcd60e51b815260040161099f906136d6565b60005b81811015610f115733600090815260116020526040812080549161117d83613900565b919050555061118b83612716565b8061119581613900565b91505061115a565b6000818152600260205260408120546001600160a01b03168061089f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161099f565b3361121d61154b565b6001600160a01b0316146112435760405162461bcd60e51b815260040161099f90613740565b82811461124f57600080fd5b60005b8381101561131a57600085858381811061126e5761126e613971565b905060200201602081019061128391906131e5565b6001600160a01b031614156112aa5760405162461bcd60e51b815260040161099f90613775565b8282828181106112bc576112bc613971565b90506020020135601460008787858181106112d9576112d9613971565b90506020020160208101906112ee91906131e5565b6001600160a01b031681526020810191909152604001600020558061131281613900565b915050611252565b5050505050565b3361132a61154b565b6001600160a01b0316146113505760405162461bcd60e51b815260040161099f90613740565b6015805461ff001981166101009182900460ff1615909102179055565b60006001600160a01b0382166113d85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161099f565b506001600160a01b031660009081526003602052604090205490565b336113fd61154b565b6001600160a01b0316146114235760405162461bcd60e51b815260040161099f90613740565b610cba6000612736565b3361143661154b565b6001600160a01b03161461145c5760405162461bcd60e51b815260040161099f90613740565b60155460ff16156114af5760405162461bcd60e51b815260206004820152601f60248201527f4d65746154726176656c6572733a20416c726561647920726573657276656400604482015260640161099f565b60005b60218110156114d6576114c433612716565b806114ce81613900565b9150506114b2565b506015805460ff191660011790556000805160206139c28339815191526114fa3390565b602160405161150a929190613631565b60405180910390a1565b3361151d61154b565b6001600160a01b0316146115435760405162461bcd60e51b815260040161099f90613740565b610cba612788565b600c546001600160a01b031690565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146115d25760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00604482015260640161099f565b610b178282612803565b6060600180546108b4906138c5565b6001600160a01b0382163314156116405760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015260640161099f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6015546301000000900460ff166117025760405162461bcd60e51b815260206004820152601a6024820152794d696e7420706173732073616c65206973206e6f74206c69766560301b604482015260640161099f565b336000908152601460205260409020546117695760405162461bcd60e51b815260206004820152602260248201527f5573657220646f6573206e6f7420686176652076616c6964206d696e74207061604482015261737360f01b606482015260840161099f565b61053461177a610bb5610ad7613820565b6117849190613820565b8161178e60085490565b6117989190613820565b11156117e35760405162461bcd60e51b815260206004820152601a602482015279135a5b9d081c185cdcc81cd85b19481a5cc81cdbdb19081bdd5d60321b604482015260640161099f565b6117f58167013fbe85edc9000061384c565b34146118135760405162461bcd60e51b815260040161099f906136d6565b60005b81811015610f1157336000908152601460205260409020546118745760405162461bcd60e51b8152602060048201526017602482015276139bc81b5a5b9d081c185cdcc81b5a5b9d1cc81b19599d604a1b604482015260640161099f565b33600090815260146020526040812080549161188f836138ae565b919050555061189d83612716565b806118a781613900565b915050611816565b601554600160201b900460ff166119025760405162461bcd60e51b81526020600482015260176024820152765075626c69632073616c65206973206e6f74206c69766560481b604482015260640161099f565b611e618161190f60085490565b6119199190613820565b11156119655760405162461bcd60e51b815260206004820152601b60248201527a50757263686173652065786365656473206d617820737570706c7960281b604482015260640161099f565b60038111156119b35760405162461bcd60e51b815260206004820152601a6024820152794f726465722065786365656473206d6178207175616e7469747960301b604482015260640161099f565b6119c58167013fbe85edc9000061384c565b34146119e35760405162461bcd60e51b815260040161099f906136d6565b33600090815260136020526040902054600390611a01908390613820565b1115611a1f5760405162461bcd60e51b815260040161099f9061370d565b60005b81811015610f1157336000908152601360205260408120805491611a4583613900565b9190505550611a5383612716565b80611a5d81613900565b915050611a22565b611a6f338361239b565b611a8b5760405162461bcd60e51b815260040161099f906137a6565b611a9784848484612867565b50505050565b60168054611aaa906138c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad6906138c5565b8015611b235780601f10611af857610100808354040283529160200191611b23565b820191906000526020600020905b815481529060010190602001808311611b0657829003601f168201915b505050505081565b6060611b3682612310565b611b9b5760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b606482015260840161099f565b6000600e8054611baa906138c5565b905011611bc6576040518060200160405280600081525061089f565b600e611bd18361289a565b604051602001611be2929190613539565b60405160208183030381529060405292915050565b33611c0061154b565b6001600160a01b031614611c265760405162461bcd60e51b815260040161099f90613740565b6015805462ff0000198116620100009182900460ff1615909102179055565b33611c4e61154b565b6001600160a01b031614611c745760405162461bcd60e51b815260040161099f90613740565b60005b81811015610ad0576000838383818110611c9357611c93613971565b9050602002016020810190611ca891906131e5565b6001600160a01b03161415611ccf5760405162461bcd60e51b815260040161099f90613775565b60106000848484818110611ce557611ce5613971565b9050602002016020810190611cfa91906131e5565b6001600160a01b0316815260208101919091526040016000205460ff1615611d345760405162461bcd60e51b815260040161099f906137f7565b600160106000858585818110611d4c57611d4c613971565b9050602002016020810190611d6191906131e5565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611d9381613900565b915050611c77565b33611da461154b565b6001600160a01b031614611dca5760405162461bcd60e51b815260040161099f90613740565b6015805463ff00000019811663010000009182900460ff1615909102179055565b33611df461154b565b6001600160a01b031614611e1a5760405162461bcd60e51b815260040161099f90613740565b6015805460ff60201b198116600160201b9182900460ff1615909102179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600033611e7461154b565b6001600160a01b031614611e9a5760405162461bcd60e51b815260040161099f90613740565b600060168054611ea9906138c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed5906138c5565b8015611f225780601f10611ef757610100808354040283529160200191611f22565b820191906000526020600020905b815481529060010190602001808311611f0557829003601f168201915b505050505090506000815111611f785760405162461bcd60e51b815260206004820152601b60248201527a09ccacac840e8de40e6cae840e0e4deeccadcc2dcc6ca40d0c2e6d602b1b604482015260640161099f565b60175415611fc85760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161099f565b6019546040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906120179030906004016135e0565b60206040518083038186803b15801561202f57600080fd5b505afa158015612043573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061206791906134d8565b10156120a75760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204c494e4b60881b604482015260640161099f565b60006120b7601854601954612997565b90507fe5f5b44d72d4143c278eb745c4acc0695c4a5bc616be5beecf46abe29661780e816040516120ea91815260200190565b60405180910390a191505090565b3361210161154b565b6001600160a01b0316146121275760405162461bcd60e51b815260040161099f90613740565b6001600160a01b03811661218c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099f565b610d4e81612736565b3361219e61154b565b6001600160a01b0316146121c45760405162461bcd60e51b815260040161099f90613740565b60005b81811015610ad05760008383838181106121e3576121e3613971565b90506020020160208101906121f891906131e5565b6001600160a01b0316141561221f5760405162461bcd60e51b815260040161099f90613775565b600f600084848481811061223557612235613971565b905060200201602081019061224a91906131e5565b6001600160a01b0316815260208101919091526040016000205460ff16156122845760405162461bcd60e51b815260040161099f906137f7565b6001600f600085858581811061229c5761229c613971565b90506020020160208101906122b191906131e5565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806122e381613900565b9150506121c7565b60006001600160e01b0319821663780e9d6360e01b148061089f575061089f82612b22565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123628261119d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123a682612310565b6124075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161099f565b60006124128361119d565b9050806001600160a01b0316846001600160a01b0316148061244d5750836001600160a01b031661244284610937565b6001600160a01b0316145b8061245d575061245d8185611e3b565b949350505050565b826001600160a01b03166124788261119d565b6001600160a01b0316146124e05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161099f565b6001600160a01b0382166125425760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161099f565b61254d838383612b72565b61255860008261232d565b6001600160a01b038316600090815260036020526040812080546001929061258190849061386b565b90915550506001600160a01b03821660009081526003602052604081208054600192906125af908490613820565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206139e283398151915291a4505050565b600a5460ff166126475760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161099f565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405161150a91906135e0565b600061268c8261119d565b905061269a81600084612b72565b6126a560008361232d565b6001600160a01b03811660009081526003602052604081208054600192906126ce90849061386b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416906000805160206139e2833981519152908390a45050565b612724600d80546001019055565b610d4e81612731600d5490565b612b7d565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156127ce5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161099f565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126743390565b61280f611e618261391b565b60178190556128315760016017600082825461282b9190613820565b90915550505b60408051838152602081018390527fa0562a0d65ac91c22f0819742210c3d20adb1237260606aef60af9717484950d9101610f31565b612872848484612465565b61287e84848484612ca9565b611a975760405162461bcd60e51b815260040161099f90613684565b6060816128be5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128e857806128d281613900565b91506128e19050600a83613838565b91506128c2565b6000816001600160401b0381111561290257612902613987565b6040519080825280601f01601f19166020018201604052801561292c576020820181803683370190505b5090505b841561245d5761294160018361386b565b915061294e600a8661391b565b612959906030613820565b60f81b81838151811061296e5761296e613971565b60200101906001600160f81b031916908160001a905350612990600a86613838565b9450612930565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001612a07929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612a349392919061364a565b602060405180830381600087803b158015612a4e57600080fd5b505af1158015612a62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a8691906133fe565b506000838152600b6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a090910190925281519183019190912093879052919052612ae2906001613820565b6000858152600b602052604090205561245d8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60006001600160e01b031982166380ac58cd60e01b1480612b5357506001600160e01b03198216635b5e139f60e01b145b8061089f57506301ffc9a760e01b6001600160e01b031983161461089f565b610ad0838383612db6565b6001600160a01b038216612bd35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161099f565b612bdc81612310565b15612c285760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604482015260640161099f565b612c3460008383612b72565b6001600160a01b0382166000908152600360205260408120805460019290612c5d908490613820565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206139e2833981519152908290a45050565b60006001600160a01b0384163b15612dab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ced9033908990889088906004016135f4565b602060405180830381600087803b158015612d0757600080fd5b505af1925050508015612d37575060408051601f3d908101601f19168201909252612d349181019061345a565b60015b612d91573d808015612d65576040519150601f19603f3d011682016040523d82523d6000602084013e612d6a565b606091505b508051612d895760405162461bcd60e51b815260040161099f90613684565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061245d565b506001949350505050565b612dc1838383612e28565b600a5460ff1615610ad05760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161099f565b6001600160a01b038316612e8357612e7e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ea6565b816001600160a01b0316836001600160a01b031614612ea657612ea68382612ee0565b6001600160a01b038216612ebd57610ad081612f7d565b826001600160a01b0316826001600160a01b031614610ad057610ad0828261302c565b60006001612eed8461136d565b612ef7919061386b565b600083815260076020526040902054909150808214612f4a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f8f9060019061386b565b60008381526009602052604081205460088054939450909284908110612fb757612fb7613971565b906000526020600020015490508060088381548110612fd857612fd8613971565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130105761301061395b565b6001900381819060005260206000200160009055905550505050565b60006130378361136d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461307c906138c5565b90600052602060002090601f01602090048101928261309e57600085556130e4565b82601f106130b757805160ff19168380011785556130e4565b828001600101855582156130e4579182015b828111156130e45782518255916020019190600101906130c9565b506130f09291506130f4565b5090565b5b808211156130f057600081556001016130f5565b60006001600160401b038084111561312357613123613987565b604051601f8501601f19908116603f0116810190828211818310171561314b5761314b613987565b8160405280935085815286868601111561316457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461319557600080fd5b919050565b60008083601f8401126131ac57600080fd5b5081356001600160401b038111156131c357600080fd5b6020830191508360208260051b85010111156131de57600080fd5b9250929050565b6000602082840312156131f757600080fd5b6132008261317e565b9392505050565b6000806040838503121561321a57600080fd5b6132238361317e565b91506132316020840161317e565b90509250929050565b60008060006060848603121561324f57600080fd5b6132588461317e565b92506132666020850161317e565b9150604084013590509250925092565b6000806000806080858703121561328c57600080fd5b6132958561317e565b93506132a36020860161317e565b92506040850135915060608501356001600160401b038111156132c557600080fd5b8501601f810187136132d657600080fd5b6132e587823560208401613109565b91505092959194509250565b6000806040838503121561330457600080fd5b61330d8361317e565b9150602083013561331d8161399d565b809150509250929050565b6000806040838503121561333b57600080fd5b6133448361317e565b946020939093013593505050565b6000806020838503121561336557600080fd5b82356001600160401b0381111561337b57600080fd5b6133878582860161319a565b90969095509350505050565b600080600080604085870312156133a957600080fd5b84356001600160401b03808211156133c057600080fd5b6133cc8883890161319a565b909650945060208701359150808211156133e557600080fd5b506133f28782880161319a565b95989497509550505050565b60006020828403121561341057600080fd5b81516132008161399d565b6000806040838503121561342e57600080fd5b50508035926020909101359150565b60006020828403121561344f57600080fd5b8135613200816139ab565b60006020828403121561346c57600080fd5b8151613200816139ab565b60006020828403121561348957600080fd5b81356001600160401b0381111561349f57600080fd5b8201601f810184136134b057600080fd5b61245d84823560208401613109565b6000602082840312156134d157600080fd5b5035919050565b6000602082840312156134ea57600080fd5b5051919050565b60008151808452613509816020860160208601613882565b601f01601f19169290920160200192915050565b6000815161352f818560208601613882565b9290920192915050565b600080845481600182811c91508083168061355557607f831692505b602080841082141561357557634e487b7160e01b86526022600452602486fd5b818015613589576001811461359a576135c7565b60ff198616895284890196506135c7565b60008b81526020902060005b868110156135bf5781548b8201529085019083016135a6565b505084890196505b5050505050506135d7818561351d565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613627908301846134f1565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b60018060a01b03841681528260208201526060604082015260006135d760608301846134f1565b60208152600061320060208301846134f1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b602080825260199082015278131a5b5a5d081c195c881dd85b1b195d08195e18d959591959603a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527643616e6e6f7420616464206e756c6c206164647265737360481b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600f908201526e4475706c696361746520656e74727960881b604082015260600190565b600082198211156138335761383361392f565b500190565b60008261384757613847613945565b500490565b60008160001904831182151516156138665761386661392f565b500290565b60008282101561387d5761387d61392f565b500390565b60005b8381101561389d578181015183820152602001613885565b83811115611a975750506000910152565b6000816138bd576138bd61392f565b506000190190565b600181811c908216806138d957607f821691505b602082108114156138fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139145761391461392f565b5060010190565b60008261392a5761392a613945565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610d4e57600080fd5b6001600160e01b031981168114610d4e57600080fdfe48ab551616fa96d8766a4795180ef0312e24b226fc48f24d0bef6494b31d9df7ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e2e8de32ca1aa91bd6d314da6016bed9d1c10063b3a8d0949f66a543988c40cc64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000000000000000000000000000000000000000000154d65746154726176656c6572733a204e6962697275000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e494249525500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d577a6f76487835545838345a65524c4a4851414238704276627134744d6a5a3943324b5078525152533475532f00000000000000000000
Deployed Bytecode
0x60806040526004361061027b5760003560e01c806301ffc9a71461028057806305301270146102b557806306fdde03146102d4578063081812fc146102f6578063095ea7b314610323578063109695231461034557806318160ddd1461036557806323b872dd146103845780632f745c59146103a457806330176e13146103c457806332cb6b0c146103e45780633ccfd60b146103fa5780633f4ba83a1461040f57806342842e0e1461042457806342966c681461044457806346ff3f781461046457806348b34fe1146104775780634ced47341461048c5780634d4c4e99146104ac5780634ebbae73146104c25780634f6ccce7146104e357806354bac24f146105035780635c975abb146105165780635e9d20691461052e578063615e73e1146105485780636352211e1461057e57806369dca4411461059e5780636a0b8d2d146105b45780636ca49de3146105d457806370a08231146105e9578063715018a6146106095780637f6dcbf81461061e5780638456cb59146106335780638d859f3e146106485780638da5cb5b1461066457806394985ddd1461067957806395d89b4114610699578063a22cb465146106ae578063a4776369146106ce578063a5a865dc146106e1578063ac5ae11b14610702578063b88d4fde14610715578063c6ab67a314610735578063c87b56dd1461074a578063ca3cb5221461076a578063cb774d471461077f578063d57e007f14610795578063d6cd3904146107b5578063de7535dd146107ca578063e222c7f9146107e0578063e41ee46a146107f5578063e985e9c51461080a578063e98665501461082a578063eff31e9e1461083f578063f2fde38b14610854578063ff9ddf9814610874575b600080fd5b34801561028c57600080fd5b506102a061029b36600461343d565b610894565b60405190151581526020015b60405180910390f35b3480156102c157600080fd5b506015546102a090610100900460ff1681565b3480156102e057600080fd5b506102e96108a5565b6040516102ac9190613671565b34801561030257600080fd5b506103166103113660046134bf565b610937565b6040516102ac91906135e0565b34801561032f57600080fd5b5061034361033e366004613328565b6109c4565b005b34801561035157600080fd5b50610343610360366004613477565b610ad5565b34801561037157600080fd5b506008545b6040519081526020016102ac565b34801561039057600080fd5b5061034361039f36600461323a565b610b1b565b3480156103b057600080fd5b506103766103bf366004613328565b610b4d565b3480156103d057600080fd5b506103436103df366004613477565b610be3565b3480156103f057600080fd5b50610376611e6181565b34801561040657600080fd5b50610343610c25565b34801561041b57600080fd5b50610343610c83565b34801561043057600080fd5b5061034361043f36600461323a565b610cbc565b34801561045057600080fd5b5061034361045f3660046134bf565b610cd7565b610343610472366004613328565b610d51565b34801561048357600080fd5b50610376600581565b34801561049857600080fd5b506015546102a09062010000900460ff1681565b3480156104b857600080fd5b50610376610bb581565b3480156104ce57600080fd5b506015546102a0906301000000900460ff1681565b3480156104ef57600080fd5b506103766104fe3660046134bf565b610f3d565b610343610511366004613328565b610fd0565b34801561052257600080fd5b50600a5460ff166102a0565b34801561053a57600080fd5b506015546102a09060ff1681565b34801561055457600080fd5b506103766105633660046131e5565b6001600160a01b031660009081526014602052604090205490565b34801561058a57600080fd5b506103166105993660046134bf565b61119d565b3480156105aa57600080fd5b50610376610ad781565b3480156105c057600080fd5b506103436105cf366004613393565b611214565b3480156105e057600080fd5b50610343611321565b3480156105f557600080fd5b506103766106043660046131e5565b61136d565b34801561061557600080fd5b506103436113f4565b34801561062a57600080fd5b5061034361142d565b34801561063f57600080fd5b50610343611514565b34801561065457600080fd5b5061037667013fbe85edc9000081565b34801561067057600080fd5b5061031661154b565b34801561068557600080fd5b5061034361069436600461341b565b61155a565b3480156106a557600080fd5b506102e96115dc565b3480156106ba57600080fd5b506103436106c93660046132f1565b6115eb565b6103436106dc366004613328565b6116ac565b3480156106ed57600080fd5b506015546102a090600160201b900460ff1681565b610343610710366004613328565b6118af565b34801561072157600080fd5b50610343610730366004613276565b611a65565b34801561074157600080fd5b506102e9611a9d565b34801561075657600080fd5b506102e96107653660046134bf565b611b2b565b34801561077657600080fd5b50610343611bf7565b34801561078b57600080fd5b5061037660175481565b3480156107a157600080fd5b506103436107b0366004613352565b611c45565b3480156107c157600080fd5b50610343611d9b565b3480156107d657600080fd5b5061037661053481565b3480156107ec57600080fd5b50610343611deb565b34801561080157600080fd5b50610376600381565b34801561081657600080fd5b506102a0610825366004613207565b611e3b565b34801561083657600080fd5b50610376611e69565b34801561084b57600080fd5b50610376602181565b34801561086057600080fd5b5061034361086f3660046131e5565b6120f8565b34801561088057600080fd5b5061034361088f366004613352565b612195565b600061089f826122eb565b92915050565b6060600080546108b4906138c5565b80601f01602080910402602001604051908101604052809291908181526020018280546108e0906138c5565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b600061094282612310565b6109a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109cf8261119d565b9050806001600160a01b0316836001600160a01b03161415610a3d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161099f565b336001600160a01b0382161480610a595750610a598133611e3b565b610ac65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606482015260840161099f565b610ad0838361232d565b505050565b33610ade61154b565b6001600160a01b031614610b045760405162461bcd60e51b815260040161099f90613740565b8051610b17906016906020840190613070565b5050565b610b26335b8261239b565b610b425760405162461bcd60e51b815260040161099f906137a6565b610ad0838383612465565b6000610b588361136d565b8210610bba5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161099f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610bec61154b565b6001600160a01b031614610c125760405162461bcd60e51b815260040161099f90613740565b8051610b1790600e906020840190613070565b33610c2e61154b565b6001600160a01b031614610c545760405162461bcd60e51b815260040161099f90613740565b6040514790339082156108fc029083906000818181858888f19350505050158015610b17573d6000803e3d6000fd5b33610c8c61154b565b6001600160a01b031614610cb25760405162461bcd60e51b815260040161099f90613740565b610cba6125fe565b565b610ad083838360405180602001604052806000815250611a65565b610ce033610b20565b610d455760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161099f565b610d4e81612681565b50565b60155462010000900460ff16610d9f5760405162461bcd60e51b815260206004820152601360248201527250726553616c65206973206e6f74206c69766560681b604482015260640161099f565b3360009081526010602052604090205460ff16610df95760405162461bcd60e51b8152602060048201526018602482015277155cd95c881b9bdd081bdb88141c9954d85b19481b1a5cdd60421b604482015260640161099f565b610e07610bb5610ad7613820565b81610e1160085490565b610e1b9190613820565b1115610e5f5760405162461bcd60e51b8152602060048201526013602482015272141c9954d85b19481a5cc81cdbdb19081bdd5d606a1b604482015260640161099f565b33600090815260126020526040902054600390610e7d908390613820565b1115610e9b5760405162461bcd60e51b815260040161099f9061370d565b610ead8167013fbe85edc9000061384c565b3414610ecb5760405162461bcd60e51b815260040161099f906136d6565b60005b81811015610f1157336000908152601260205260408120805491610ef183613900565b9190505550610eff83612716565b80610f0981613900565b915050610ece565b506000805160206139c28339815191528282604051610f31929190613631565b60405180910390a15050565b6000610f4860085490565b8210610fab5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161099f565b60088281548110610fbe57610fbe613971565b90600052602060002001549050919050565b601554610100900460ff166110275760405162461bcd60e51b815260206004820152601e60248201527f4561726c792041646f707465722073616c65206973206e6f74206c6976650000604482015260640161099f565b336000908152600f602052604090205460ff166110865760405162461bcd60e51b815260206004820152601e60248201527f55736572206e6f74206f6e204561726c792041646f70746572206c6973740000604482015260640161099f565b610ad78161109360085490565b61109d9190613820565b11156110eb5760405162461bcd60e51b815260206004820152601e60248201527f4561726c792041646f707465722073616c6520697320736f6c64206f75740000604482015260640161099f565b33600090815260116020526040902054600590611109908390613820565b11156111275760405162461bcd60e51b815260040161099f9061370d565b6111398167013fbe85edc9000061384c565b34146111575760405162461bcd60e51b815260040161099f906136d6565b60005b81811015610f115733600090815260116020526040812080549161117d83613900565b919050555061118b83612716565b8061119581613900565b91505061115a565b6000818152600260205260408120546001600160a01b03168061089f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161099f565b3361121d61154b565b6001600160a01b0316146112435760405162461bcd60e51b815260040161099f90613740565b82811461124f57600080fd5b60005b8381101561131a57600085858381811061126e5761126e613971565b905060200201602081019061128391906131e5565b6001600160a01b031614156112aa5760405162461bcd60e51b815260040161099f90613775565b8282828181106112bc576112bc613971565b90506020020135601460008787858181106112d9576112d9613971565b90506020020160208101906112ee91906131e5565b6001600160a01b031681526020810191909152604001600020558061131281613900565b915050611252565b5050505050565b3361132a61154b565b6001600160a01b0316146113505760405162461bcd60e51b815260040161099f90613740565b6015805461ff001981166101009182900460ff1615909102179055565b60006001600160a01b0382166113d85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161099f565b506001600160a01b031660009081526003602052604090205490565b336113fd61154b565b6001600160a01b0316146114235760405162461bcd60e51b815260040161099f90613740565b610cba6000612736565b3361143661154b565b6001600160a01b03161461145c5760405162461bcd60e51b815260040161099f90613740565b60155460ff16156114af5760405162461bcd60e51b815260206004820152601f60248201527f4d65746154726176656c6572733a20416c726561647920726573657276656400604482015260640161099f565b60005b60218110156114d6576114c433612716565b806114ce81613900565b9150506114b2565b506015805460ff191660011790556000805160206139c28339815191526114fa3390565b602160405161150a929190613631565b60405180910390a1565b3361151d61154b565b6001600160a01b0316146115435760405162461bcd60e51b815260040161099f90613740565b610cba612788565b600c546001600160a01b031690565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795216146115d25760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00604482015260640161099f565b610b178282612803565b6060600180546108b4906138c5565b6001600160a01b0382163314156116405760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015260640161099f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6015546301000000900460ff166117025760405162461bcd60e51b815260206004820152601a6024820152794d696e7420706173732073616c65206973206e6f74206c69766560301b604482015260640161099f565b336000908152601460205260409020546117695760405162461bcd60e51b815260206004820152602260248201527f5573657220646f6573206e6f7420686176652076616c6964206d696e74207061604482015261737360f01b606482015260840161099f565b61053461177a610bb5610ad7613820565b6117849190613820565b8161178e60085490565b6117989190613820565b11156117e35760405162461bcd60e51b815260206004820152601a602482015279135a5b9d081c185cdcc81cd85b19481a5cc81cdbdb19081bdd5d60321b604482015260640161099f565b6117f58167013fbe85edc9000061384c565b34146118135760405162461bcd60e51b815260040161099f906136d6565b60005b81811015610f1157336000908152601460205260409020546118745760405162461bcd60e51b8152602060048201526017602482015276139bc81b5a5b9d081c185cdcc81b5a5b9d1cc81b19599d604a1b604482015260640161099f565b33600090815260146020526040812080549161188f836138ae565b919050555061189d83612716565b806118a781613900565b915050611816565b601554600160201b900460ff166119025760405162461bcd60e51b81526020600482015260176024820152765075626c69632073616c65206973206e6f74206c69766560481b604482015260640161099f565b611e618161190f60085490565b6119199190613820565b11156119655760405162461bcd60e51b815260206004820152601b60248201527a50757263686173652065786365656473206d617820737570706c7960281b604482015260640161099f565b60038111156119b35760405162461bcd60e51b815260206004820152601a6024820152794f726465722065786365656473206d6178207175616e7469747960301b604482015260640161099f565b6119c58167013fbe85edc9000061384c565b34146119e35760405162461bcd60e51b815260040161099f906136d6565b33600090815260136020526040902054600390611a01908390613820565b1115611a1f5760405162461bcd60e51b815260040161099f9061370d565b60005b81811015610f1157336000908152601360205260408120805491611a4583613900565b9190505550611a5383612716565b80611a5d81613900565b915050611a22565b611a6f338361239b565b611a8b5760405162461bcd60e51b815260040161099f906137a6565b611a9784848484612867565b50505050565b60168054611aaa906138c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad6906138c5565b8015611b235780601f10611af857610100808354040283529160200191611b23565b820191906000526020600020905b815481529060010190602001808311611b0657829003601f168201915b505050505081565b6060611b3682612310565b611b9b5760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b606482015260840161099f565b6000600e8054611baa906138c5565b905011611bc6576040518060200160405280600081525061089f565b600e611bd18361289a565b604051602001611be2929190613539565b60405160208183030381529060405292915050565b33611c0061154b565b6001600160a01b031614611c265760405162461bcd60e51b815260040161099f90613740565b6015805462ff0000198116620100009182900460ff1615909102179055565b33611c4e61154b565b6001600160a01b031614611c745760405162461bcd60e51b815260040161099f90613740565b60005b81811015610ad0576000838383818110611c9357611c93613971565b9050602002016020810190611ca891906131e5565b6001600160a01b03161415611ccf5760405162461bcd60e51b815260040161099f90613775565b60106000848484818110611ce557611ce5613971565b9050602002016020810190611cfa91906131e5565b6001600160a01b0316815260208101919091526040016000205460ff1615611d345760405162461bcd60e51b815260040161099f906137f7565b600160106000858585818110611d4c57611d4c613971565b9050602002016020810190611d6191906131e5565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611d9381613900565b915050611c77565b33611da461154b565b6001600160a01b031614611dca5760405162461bcd60e51b815260040161099f90613740565b6015805463ff00000019811663010000009182900460ff1615909102179055565b33611df461154b565b6001600160a01b031614611e1a5760405162461bcd60e51b815260040161099f90613740565b6015805460ff60201b198116600160201b9182900460ff1615909102179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600033611e7461154b565b6001600160a01b031614611e9a5760405162461bcd60e51b815260040161099f90613740565b600060168054611ea9906138c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed5906138c5565b8015611f225780601f10611ef757610100808354040283529160200191611f22565b820191906000526020600020905b815481529060010190602001808311611f0557829003601f168201915b505050505090506000815111611f785760405162461bcd60e51b815260206004820152601b60248201527a09ccacac840e8de40e6cae840e0e4deeccadcc2dcc6ca40d0c2e6d602b1b604482015260640161099f565b60175415611fc85760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161099f565b6019546040516370a0823160e01b81526001600160a01b037f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca16906370a08231906120179030906004016135e0565b60206040518083038186803b15801561202f57600080fd5b505afa158015612043573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061206791906134d8565b10156120a75760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204c494e4b60881b604482015260640161099f565b60006120b7601854601954612997565b90507fe5f5b44d72d4143c278eb745c4acc0695c4a5bc616be5beecf46abe29661780e816040516120ea91815260200190565b60405180910390a191505090565b3361210161154b565b6001600160a01b0316146121275760405162461bcd60e51b815260040161099f90613740565b6001600160a01b03811661218c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099f565b610d4e81612736565b3361219e61154b565b6001600160a01b0316146121c45760405162461bcd60e51b815260040161099f90613740565b60005b81811015610ad05760008383838181106121e3576121e3613971565b90506020020160208101906121f891906131e5565b6001600160a01b0316141561221f5760405162461bcd60e51b815260040161099f90613775565b600f600084848481811061223557612235613971565b905060200201602081019061224a91906131e5565b6001600160a01b0316815260208101919091526040016000205460ff16156122845760405162461bcd60e51b815260040161099f906137f7565b6001600f600085858581811061229c5761229c613971565b90506020020160208101906122b191906131e5565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806122e381613900565b9150506121c7565b60006001600160e01b0319821663780e9d6360e01b148061089f575061089f82612b22565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123628261119d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123a682612310565b6124075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161099f565b60006124128361119d565b9050806001600160a01b0316846001600160a01b0316148061244d5750836001600160a01b031661244284610937565b6001600160a01b0316145b8061245d575061245d8185611e3b565b949350505050565b826001600160a01b03166124788261119d565b6001600160a01b0316146124e05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161099f565b6001600160a01b0382166125425760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161099f565b61254d838383612b72565b61255860008261232d565b6001600160a01b038316600090815260036020526040812080546001929061258190849061386b565b90915550506001600160a01b03821660009081526003602052604081208054600192906125af908490613820565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206139e283398151915291a4505050565b600a5460ff166126475760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161099f565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405161150a91906135e0565b600061268c8261119d565b905061269a81600084612b72565b6126a560008361232d565b6001600160a01b03811660009081526003602052604081208054600192906126ce90849061386b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416906000805160206139e2833981519152908390a45050565b612724600d80546001019055565b610d4e81612731600d5490565b612b7d565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156127ce5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161099f565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126743390565b61280f611e618261391b565b60178190556128315760016017600082825461282b9190613820565b90915550505b60408051838152602081018390527fa0562a0d65ac91c22f0819742210c3d20adb1237260606aef60af9717484950d9101610f31565b612872848484612465565b61287e84848484612ca9565b611a975760405162461bcd60e51b815260040161099f90613684565b6060816128be5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128e857806128d281613900565b91506128e19050600a83613838565b91506128c2565b6000816001600160401b0381111561290257612902613987565b6040519080825280601f01601f19166020018201604052801561292c576020820181803683370190505b5090505b841561245d5761294160018361386b565b915061294e600a8661391b565b612959906030613820565b60f81b81838151811061296e5761296e613971565b60200101906001600160f81b031916908160001a905350612990600a86613838565b9450612930565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001612a07929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612a349392919061364a565b602060405180830381600087803b158015612a4e57600080fd5b505af1158015612a62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a8691906133fe565b506000838152600b6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a090910190925281519183019190912093879052919052612ae2906001613820565b6000858152600b602052604090205561245d8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60006001600160e01b031982166380ac58cd60e01b1480612b5357506001600160e01b03198216635b5e139f60e01b145b8061089f57506301ffc9a760e01b6001600160e01b031983161461089f565b610ad0838383612db6565b6001600160a01b038216612bd35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161099f565b612bdc81612310565b15612c285760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604482015260640161099f565b612c3460008383612b72565b6001600160a01b0382166000908152600360205260408120805460019290612c5d908490613820565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206139e2833981519152908290a45050565b60006001600160a01b0384163b15612dab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ced9033908990889088906004016135f4565b602060405180830381600087803b158015612d0757600080fd5b505af1925050508015612d37575060408051601f3d908101601f19168201909252612d349181019061345a565b60015b612d91573d808015612d65576040519150601f19603f3d011682016040523d82523d6000602084013e612d6a565b606091505b508051612d895760405162461bcd60e51b815260040161099f90613684565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061245d565b506001949350505050565b612dc1838383612e28565b600a5460ff1615610ad05760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161099f565b6001600160a01b038316612e8357612e7e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ea6565b816001600160a01b0316836001600160a01b031614612ea657612ea68382612ee0565b6001600160a01b038216612ebd57610ad081612f7d565b826001600160a01b0316826001600160a01b031614610ad057610ad0828261302c565b60006001612eed8461136d565b612ef7919061386b565b600083815260076020526040902054909150808214612f4a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f8f9060019061386b565b60008381526009602052604081205460088054939450909284908110612fb757612fb7613971565b906000526020600020015490508060088381548110612fd857612fd8613971565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130105761301061395b565b6001900381819060005260206000200160009055905550505050565b60006130378361136d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461307c906138c5565b90600052602060002090601f01602090048101928261309e57600085556130e4565b82601f106130b757805160ff19168380011785556130e4565b828001600101855582156130e4579182015b828111156130e45782518255916020019190600101906130c9565b506130f09291506130f4565b5090565b5b808211156130f057600081556001016130f5565b60006001600160401b038084111561312357613123613987565b604051601f8501601f19908116603f0116810190828211818310171561314b5761314b613987565b8160405280935085815286868601111561316457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461319557600080fd5b919050565b60008083601f8401126131ac57600080fd5b5081356001600160401b038111156131c357600080fd5b6020830191508360208260051b85010111156131de57600080fd5b9250929050565b6000602082840312156131f757600080fd5b6132008261317e565b9392505050565b6000806040838503121561321a57600080fd5b6132238361317e565b91506132316020840161317e565b90509250929050565b60008060006060848603121561324f57600080fd5b6132588461317e565b92506132666020850161317e565b9150604084013590509250925092565b6000806000806080858703121561328c57600080fd5b6132958561317e565b93506132a36020860161317e565b92506040850135915060608501356001600160401b038111156132c557600080fd5b8501601f810187136132d657600080fd5b6132e587823560208401613109565b91505092959194509250565b6000806040838503121561330457600080fd5b61330d8361317e565b9150602083013561331d8161399d565b809150509250929050565b6000806040838503121561333b57600080fd5b6133448361317e565b946020939093013593505050565b6000806020838503121561336557600080fd5b82356001600160401b0381111561337b57600080fd5b6133878582860161319a565b90969095509350505050565b600080600080604085870312156133a957600080fd5b84356001600160401b03808211156133c057600080fd5b6133cc8883890161319a565b909650945060208701359150808211156133e557600080fd5b506133f28782880161319a565b95989497509550505050565b60006020828403121561341057600080fd5b81516132008161399d565b6000806040838503121561342e57600080fd5b50508035926020909101359150565b60006020828403121561344f57600080fd5b8135613200816139ab565b60006020828403121561346c57600080fd5b8151613200816139ab565b60006020828403121561348957600080fd5b81356001600160401b0381111561349f57600080fd5b8201601f810184136134b057600080fd5b61245d84823560208401613109565b6000602082840312156134d157600080fd5b5035919050565b6000602082840312156134ea57600080fd5b5051919050565b60008151808452613509816020860160208601613882565b601f01601f19169290920160200192915050565b6000815161352f818560208601613882565b9290920192915050565b600080845481600182811c91508083168061355557607f831692505b602080841082141561357557634e487b7160e01b86526022600452602486fd5b818015613589576001811461359a576135c7565b60ff198616895284890196506135c7565b60008b81526020902060005b868110156135bf5781548b8201529085019083016135a6565b505084890196505b5050505050506135d7818561351d565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613627908301846134f1565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b60018060a01b03841681528260208201526060604082015260006135d760608301846134f1565b60208152600061320060208301846134f1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b602080825260199082015278131a5b5a5d081c195c881dd85b1b195d08195e18d959591959603a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527643616e6e6f7420616464206e756c6c206164647265737360481b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600f908201526e4475706c696361746520656e74727960881b604082015260600190565b600082198211156138335761383361392f565b500190565b60008261384757613847613945565b500490565b60008160001904831182151516156138665761386661392f565b500290565b60008282101561387d5761387d61392f565b500390565b60005b8381101561389d578181015183820152602001613885565b83811115611a975750506000910152565b6000816138bd576138bd61392f565b506000190190565b600181811c908216806138d957607f821691505b602082108114156138fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139145761391461392f565b5060010190565b60008261392a5761392a613945565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610d4e57600080fd5b6001600160e01b031981168114610d4e57600080fdfe48ab551616fa96d8766a4795180ef0312e24b226fc48f24d0bef6494b31d9df7ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e2e8de32ca1aa91bd6d314da6016bed9d1c10063b3a8d0949f66a543988c40cc64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000000000000000000000000000000000000000000154d65746154726176656c6572733a204e6962697275000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e494249525500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d577a6f76487835545838345a65524c4a4851414238704276627134744d6a5a3943324b5078525152533475532f00000000000000000000
-----Decoded View---------------
Arg [0] : name (string): MetaTravelers: Nibiru
Arg [1] : symbol (string): NIBIRU
Arg [2] : baseTokenURI (string): ipfs://QmWzovHx5TX84ZeRLJHQAB8pBvbq4tMjZ9C2KPxRQRS4uS/
Arg [3] : vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [4] : linkToken (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [5] : keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [6] : fee (uint256): 2000000000000000000
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [4] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [5] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [6] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [8] : 4d65746154726176656c6572733a204e69626972750000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 4e49424952550000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d577a6f76487835545838345a65524c4a48514142387042
Arg [13] : 76627134744d6a5a3943324b5078525152533475532f00000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.